    :root{
      --bg: #f3efe9;
      --bg-soft: #ede7de;
      --text: #42507b;
      --text-dark: #24304f;
      --muted: #5f687d;
      --accent: #c97d00;
      --accent-hover: #a86500;
      --line: rgba(36,48,79,.18);
      --white: #ffffff;
      --shadow-soft: 0 12px 30px rgba(25, 30, 45, .05);
      --shadow-lg: 0 22px 60px rgba(25, 30, 45, .08);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --container: 1320px;
      --transition: 280ms ease;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:"Inter", sans-serif;
      background:var(--bg);
      color:var(--text-dark);
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      display:block;
      max-width:100%;
    }

    button, input, textarea, select{
      font:inherit;
    }

    .container{
      width:min(var(--container), calc(100% - 48px));
      margin-inline:auto;
    }

    .section{
      padding:110px 0;
      position:relative;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:58px;
      padding:0 28px;
      border-radius:999px;
      border:none;
      cursor:pointer;
      font-weight:700;
      transition:var(--transition);
      white-space:nowrap;
    }

.btn-primary{
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover{
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary{
  background: transparent;
  border: 1px solid rgba(36,48,79,.22);
  color: var(--text-dark);
}

.btn-secondary:hover{
  background: rgba(36,48,79,.06);
}

    /* HEADER */
    .site-header{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      z-index:999;
      background:rgba(243,239,233,.88);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(76,93,143,.06);
    }

    .header-inner{
      min-height:92px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }

    .brand{
      display:flex;
      align-items:center;
      min-width:180px;
    }

    .brand img{
      width:250px;
      height:auto;
      object-fit:contain;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:42px;
    }

    .nav a{
      font-size:1rem;
      color:var(--text-dark);
      transition:var(--transition);
    }

    .nav a:hover{
      color:var(--text);
    }

    .nav .nav-cta{
      padding:16px 28px;
      border:1px solid var(--line);
      border-radius:999px;
    }

    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border:none;
      background:transparent;
      cursor:pointer;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after{
      content:"";
      display:block;
      width:24px;
      height:2px;
      background:var(--text-dark);
      margin:5px auto;
      transition:var(--transition);
      border-radius:999px;
    }

    body.menu-open .menu-toggle span{
      opacity:0;
    }

    body.menu-open .menu-toggle::before{
      transform:translateY(7px) rotate(45deg);
    }

    body.menu-open .menu-toggle::after{
      transform:translateY(-7px) rotate(-45deg);
    }

    /* HERO */
    .hero{
      min-height:100vh;
      position:relative;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      background:
        linear-gradient(to bottom, rgba(243,239,233,0) 58%, rgba(76,93,143,.30) 100%),
        var(--bg);
    }

    .hero-inner{
      position:relative;
      width:100%;
      min-height:100vh;
      padding:110px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .hero-topline{
      position:absolute;
      top:22%;
      left:50%;
      transform:translateX(-50%);
      width:min(980px, calc(100% - 40px));
      text-align:center;
      z-index:4;
      font-family:"Cormorant Garamond", serif;
      font-size:clamp(2.2rem, 3.7vw, 4rem);
      line-height:1.05;
      color:var(--text-dark);
    }

    .hero-bg-title{
      position:absolute;
      inset:auto 0 15% 0;
      text-align:center;
      z-index:1;
      pointer-events:none;
    }

    .hero-bg-title h1{
      font-family:"Cormorant Garamond", serif;
      font-size:clamp(6rem, 20vw, 18rem);
      line-height:.82;
      letter-spacing:-.06em;
      color:var(--text);
      opacity:.98;
      text-transform:uppercase;
    }

    .hero-bg-title h1 span{
      display:block;
    }

    .hero-person{
      position:relative;
      z-index:3;
      width:min(520px, 40vw);
      margin-top:40px;
    }

    .hero-person img{
      width:100%;
      height:auto;
      object-fit:contain;
      filter:grayscale(100%);
      mix-blend-mode:multiply;
    }

    .hero-bottom-fade{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:280px;
      background:linear-gradient(to top, rgba(76,93,143,.45), rgba(243,239,233,.30), rgba(243,239,233,0));
      z-index:2;
      pointer-events:none;
    }

    .hero-cta{
      position:absolute;
      left:50%;
      bottom:92px;
      transform:translateX(-50%);
      z-index:5;
    }

    .hero-cta .btn-primary{
      min-width:252px;
      min-height:100px;
      font-size:1.2rem;
    }

    .scroll-note{
      position:absolute;
      left:50%;
      bottom:42px;
      transform:translateX(-50%);
      z-index:5;
      font-size:.78rem;
      letter-spacing:.34em;
      text-transform:uppercase;
      color:rgba(76,93,143,.46);
    }

    /* Intro */
    .intro{
      background:linear-gradient(180deg, #ece5dc 0%, var(--bg) 100%);
      padding-top:90px;
    }

    .section-head{
      max-width:980px;
      margin:0 auto 56px;
      text-align:center;
    }

    .section-head h2{
      font-family:"Cormorant Garamond", serif;
      font-size:clamp(2.6rem, 5vw, 5.3rem);
      line-height:.95;
      color:var(--text-dark);
      letter-spacing:-.03em;
    }

    .section-head h2 span{
      display:block;
      color:var(--accent);
      font-style:italic;
    }
    
    .process{
        width: 95%;
    }

    /* METODE SLIDER */
    .metode{
      background:var(--bg);
      padding-top:70px;
    }

    .metode-slider{
      position:relative;
      overflow:hidden;
    }

    .metode-track{
      display:flex;
      transition:transform .65s cubic-bezier(.22,.61,.36,1);
      will-change:transform;
    }

    .metode-slide{
      min-width:100%;
    }

.metode-inner{
  display:grid;
  grid-template-columns: 1fr .95fr;
  gap:60px;
  align-items:center;
  min-height:auto;
}


    .metode-text{
      padding-left:100px;
      max-width:620px;
    }

    .metode-number{
      font-family:"Cormorant Garamond", serif;
      font-size:clamp(5rem, 10vw, 8.5rem);
      color:rgba(47,57,89,.08);
      line-height:.9;
      margin-bottom:8px;
    }

    .metode-title{
      font-family:"Cormorant Garamond", serif;
      font-size:clamp(2.5rem, 4vw, 4rem);
      color:var(--text-dark);
      line-height:.95;
      margin-bottom:14px;
    }

    .metode-kicker{
      display:inline-block;
      font-size:.95rem;
      font-weight:800;
      color:var(--accent);
      letter-spacing:.18em;
      text-transform:uppercase;
      margin-bottom:28px;
      line-height:1.45;
    }

    .metode-lead{
      font-size:1.2rem;
      color:#788097;
      line-height:1.7;
      margin-bottom:18px;
      max-width:560px;
    }

    .metode-body{
      font-size:1.04rem;
      color:#9aa1b0;
      line-height:1.85;
      max-width:560px;
    }

.metode-visual{
  position:relative;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

    .metode-circle{
      position:absolute;
      width:min(560px, 90%);
      aspect-ratio:1/1;
      border-radius:50%;
      background:radial-gradient(circle at center, rgba(243,156,18,.95) 0%, rgba(243,185,72,.68) 45%, rgba(243,239,233,0) 76%);
      bottom:0;
      left:50%;
      transform:translateX(-50%);
      z-index:1;
      filter:blur(.1px);
    }

    .metode-image{
      position:relative;
      z-index:2;
      width:min(560px, 100%);
      display:flex;
      align-items:flex-end;
      justify-content:center;
      height:100%;
    }

    .metode-image img{
      max-height:540px;
      width:auto;
      object-fit:contain;
      filter:grayscale(100%);
      mix-blend-mode:multiply;
      drop-shadow:0 20px 40px rgba(0,0,0,.06);
    }

    .metode-dots{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:10px;
      margin:35px;
    }

    .metode-dot{
      width:12px;
      height:12px;
      border-radius:999px;
      background:#d8d2c8;
      cursor:pointer;
      transition:var(--transition);
    }

    .metode-dot.active{
      width:28px;
      background:var(--accent);
    }

    /* SERVICES */
    .services{
      background:linear-gradient(180deg, var(--bg) 0%, #eee7de 100%);
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }

    .service-card{
      background:rgba(255,255,255,.52);
      border:1px solid rgba(76,93,143,.08);
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }

    .service-card img{
      width:100%;
      height:300px;
      object-fit:cover;
    }

    .service-content{
      padding:24px;
    }

    .service-content h3{
      font-family:"Cormorant Garamond", serif;
      font-size:2rem;
      color:var(--text-dark);
      line-height:1;
      margin-bottom:12px;
    }

    .service-content p{
      color:#7f879a;
      line-height:1.8;
      font-size:1rem;
    }

    /* GALLERY */
    .gallery{
      background:var(--bg);
      padding: 75px 0;
      border-top:.5px dashed black;
    }

    .gallery-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr;
      grid-auto-rows:240px;
      gap:18px;
    }

    .gallery-item{
      overflow:hidden;
      border-radius:28px;
      box-shadow:var(--shadow-soft);
      background:#ddd;
      position:relative;
    }

    .gallery-item.large{
      grid-row:span 2;
    }

    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .75s ease;
    }

    .gallery-item:hover img{
      transform:scale(1.05);
    }

    .gallery-item::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.12) 100%);
      pointer-events:none;
    }

    /* CONTACT */
    .contact{
      background:linear-gradient(180deg, #ece5dc 0%, var(--bg) 100%);
    }

    .contact-box{
      max-width:1120px;
      margin:0 auto;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(76,93,143,.10);
      border-radius:36px;
      box-shadow:var(--shadow-lg);
      padding:42px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:30px;
    }

    .contact-info h3{
      font-family:"Cormorant Garamond", serif;
      font-size:clamp(2.3rem, 4vw, 3.5rem);
      color:var(--text-dark);
      line-height:.95;
      margin-bottom:14px;
    }

    .contact-info p{
      color:#7f879a;
      line-height:1.85;
      margin-bottom:24px;
    }

    .contact-points{
      display:grid;
      gap:12px;
      margin-bottom:22px;
    }

    .contact-point{
      padding:16px 18px;
      border-radius:18px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(76,93,143,.08);
    }

    .contact-point span{
      display:block;
      margin-bottom:6px;
      font-size:.8rem;
      color:var(--accent);
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.18em;
    }

    .contact-form{
      display:grid;
      gap:16px;
    }

    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    .field label{
      font-size:.92rem;
      font-weight:700;
      color:var(--text-dark);
    }

    .field input,
    .field select,
    .field textarea{
      width:100%;
      background:#faf8f4;
      border:1px solid rgba(76,93,143,.14);
      border-radius:16px;
      padding:15px 16px;
      outline:none;
      transition:var(--transition);
      color:var(--text-dark);
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus{
      border-color:rgba(76,93,143,.34);
      box-shadow:0 0 0 4px rgba(76,93,143,.07);
    }

    .field textarea{
      min-height:160px;
      resize:vertical;
    }

    .full{
      grid-column:1 / -1;
    }

    .consent{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#7f879a;
      line-height:1.6;
      font-size:.92rem;
    }

    .consent input{
      width:auto;
      margin-top:4px;
    }

    .form-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .wa-link{
      font-weight:700;
      color:var(--text);
    }
    
    .wa-link:hover{
      font-weight:1000;
      color:green;
    }

    /* FOOTER */
    .footer{
      padding:28px 0 42px;
      color:#556078;
    }

    .footer-inner{
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      padding-top:22px;
      border-top:1px solid rgba(76,93,143,.10);
    }

.footer a{
  color:#2f3959;
}

.footer a:hover{
  color:#1f2945;
}

    .floating-top{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:998;
      width:64px;
      height:64px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--text);
      color:#fff;
      font-size:1.4rem;
      box-shadow:var(--shadow-lg);
      cursor:pointer;
      transition:var(--transition);
    }

    .floating-top:hover{
      transform:translateY(-2px);
    }

    .reveal{
      opacity:0;
      transform:translateY(24px);
      transition:800ms ease;
    }

    .reveal.visible{
      opacity:1;
      transform:translateY(0);
    }

    @media (max-width: 1100px){
      .metode-inner,
      .contact-grid,
      .service-grid{
        grid-template-columns:1fr;
      }

      .gallery-grid{
        grid-template-columns:1fr 1fr;
      }

      .gallery-item.large{
        grid-row:span 1;
      }

      .metode-visual{
        min-height:480px;
      }

      .metode-text{
        padding-left:0;
        max-width:100%;
      }
    }

    @media (max-width: 920px){
      .nav{
        position:fixed;
        inset:92px 16px auto 16px;
        background:rgba(255,255,255,.95);
        border:1px solid rgba(76,93,143,.10);
        border-radius:24px;
        box-shadow:var(--shadow-lg);
        padding:22px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
      }

      body.menu-open .nav{
        display:flex;
      }

      .menu-toggle{
        display:block;
      }

      .hero-topline{
        top:18%;
      }

      .hero-person{
        width:min(480px, 58vw);
      }

      .brand img{
        width:210px;
      }
    }

    @media (max-width: 760px){
      .container{
        width:min(100% - 24px, 100%);
      }

      .header-inner{
        min-height:80px;
      }

      .nav{
        inset:80px 12px auto 12px;
      }

      .section{
        padding:80px 0;
      }

      .hero-inner{
        padding-top:92px;
        padding-left: 30px;
      }

      .hero-topline{
        top:15%;
        width:min(94%, 520px);
        font-size:clamp(1.8rem, 8vw, 2.6rem);
      }

      .hero-bg-title{
        inset:auto 0 23% 0;
      }

      .hero-bg-title h1{
        font-size:clamp(4.8rem, 23vw, 8rem);
      }

      .hero-person{
        width:min(86vw, 380px);
        margin-top:20px;
      }

      .hero-cta .btn-primary{
        min-width:210px;
        min-height:78px;
        font-size:1.08rem;
      }

      .scroll-note{
        bottom:30px;
      }

      .metode-inner{
        gap:20px;
        min-height:auto;
      }

      .metode-visual{
        min-height:380px;
      }

      .metode-image img{
        max-height:360px;
      }

      .service-card img{
        height:240px;
      }

      .form-row,
      .gallery-grid{
        grid-template-columns:1fr;
      }

      .contact-box{
        padding:24px;
      }

      .floating-top{
        width:56px;
        height:56px;
      }
    }
    
/* HERO NUEVO */
.hero-cover{
  min-height:100vh;
  background:var(--bg);
}

.hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(17,22,35,.62) 0%, rgba(17,22,35,.38) 36%, rgba(17,22,35,.18) 58%, rgba(17,22,35,.10) 100%),
    linear-gradient(to top, rgba(17,22,35,.28), rgba(17,22,35,.08));
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-inner-cover{
  z-index:2;
  justify-content:flex-start;
  align-items:center;
}

.hero-copy{
  max-width:760px;
  padding-top:60px;
  color:#fff;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:20px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hero-title-main{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3rem, 6vw, 6rem);
  line-height:.95;
  letter-spacing:-.04em;
  margin-bottom:18px;
}

.hero-description{
  font-size:1.12rem;
  line-height:1.85;
  max-width:720px;
  color:rgba(255,255,255,.92);
  margin-bottom:14px;
}

.hero-support{
  font-size:1rem;
  line-height:1.8;
  color:rgba(255,255,255,.78);
  margin-bottom:28px;
  max-width:640px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:22px;
}

.hero-actions .btn-secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}

.hero-actions .btn-secondary:hover{
  background:rgba(255,255,255,.14);
}

.hero-mini-points{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero-mini-points span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:.92rem;
}

/* PROBLEM */
.problem{
  background:linear-gradient(180deg, var(--bg) 0%, #efe8df 100%);
}

.problem-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.problem-box{
  background:rgba(255,255,255,.58);
  border:1px solid rgba(76,93,143,.10);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow-soft);
}

.problem-box h3{
  font-family:"Cormorant Garamond", serif;
  font-size:2.2rem;
  color:var(--text-dark);
  line-height:1.02;
  margin-bottom:18px;
}

.problem-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:22px;
}

.problem-list li{
  position:relative;
  padding-left:22px;
  color:#6f788d;
  line-height:1.7;
}

.problem-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
}

.problem-highlight{
  font-weight:700;
  color:var(--text-dark);
}

.problem-box p{
  color:#7f879a;
  line-height:1.9;
}

.problem-box p + p{
  margin-top:16px;
}

/* POSITIONING */
.positioning{
  background:var(--bg);
}

.positioning-content{
  max-width:920px;
  margin:0 auto;
  text-align:center;
}

.positioning-content p{
  font-size:1.08rem;
  line-height:1.95;
  color:#6f788d;
}

.positioning-content p + p{
  margin-top:18px;
}

/* PROJECTES */
.projects-intro{
  max-width:860px;
  margin:0 auto 40px;
  text-align:center;
}

.projects-intro p{
  color:#7f879a;
  line-height:1.9;
}

.projects-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}

.project-card{
  background:rgba(255,255,255,.56);
  border:1px solid rgba(76,93,143,.08);
  border-radius:28px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.project-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:14px;
}

.project-image{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  min-height:320px;
  background:#d9d9d9;
}

.project-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.project-image span{
  position:absolute;
  top:14px;
  left:14px;
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(17,22,35,.65);
  color:#fff;
  font-size:.84rem;
  font-weight:700;
}

.project-card p{
  color:#6f788d;
  line-height:1.8;
}

/* MISSATGE DE MARCA */
.brand-message{
  background:linear-gradient(180deg, #ece5dc 0%, var(--bg) 100%);
}

.brand-box{
  max-width:860px;
  margin:0 auto;
  padding:46px 38px;
  border-radius:34px;
  background:rgba(255,255,255,.56);
  border:1px solid rgba(76,93,143,.10);
  box-shadow:var(--shadow-soft);
  text-align:center;
}

.brand-box h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.6rem, 5vw, 4.5rem);
  line-height:.96;
  color:var(--text-dark);
  margin-bottom:16px;
}

.brand-box p{
  color:#7f879a;
  line-height:1.9;
  font-size:1.05rem;
}

.brand-box p + p{
  margin-top:10px;
}

.hidden-hp{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* IMÁGENES DEL PROCESO */
.metode-image img{
  width:100%;
  max-width:560px;
  max-height:540px;
  object-fit:cover;
  border-radius:28px;
  filter:none;
  mix-blend-mode:normal;
  box-shadow:var(--shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .problem-grid{
    grid-template-columns:1fr;
  }

  .project-images{
    grid-template-columns:1fr;
  }

  .project-image{
    min-height:260px;
  }
}

@media (max-width: 760px){
  .hero-copy{
    padding-top:30px;
  }

  .hero-title-main{
    font-size:clamp(2.2rem, 10vw, 3.7rem);
  }

  .hero-description,
  .hero-support{
    font-size:.98rem;
    line-height:1.75;
  }

  .problem-box,
  .brand-box{
    padding:24px;
  }

  .project-image{
    min-height:220px;
  }
}

.before-after-wrap{
  max-width:1100px;
  margin:20px auto 0;
}

.before-after-card{
  background:rgba(255,255,255,.45);
  border:1px solid rgba(76,93,143,.10);
  border-radius:32px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.before-after{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:26px;
  background:#d9d9d9;
  user-select:none;
  touch-action:none;
}

.before-after-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
}

.after-img{
  z-index:1;
}

.before-layer{
  position:absolute;
  inset:0;
  z-index:2;
  clip-path:inset(0 50% 0 0);
  -webkit-clip-path:inset(0 50% 0 0);
}

.before-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.before-after-line{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:rgba(255,255,255,.92);
  transform:translateX(-50%);
  z-index:3;
  box-shadow:0 0 0 1px rgba(17,22,35,.08);
}

.before-after-handle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:68px;
  height:68px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:var(--shadow-lg);
  cursor:ew-resize;
  display:grid;
  place-items:center;
  padding:0;
}

.before-after-grip{
  position:relative;
  display:block;
  width:18px;
  height:22px;
}

.before-after-grip::before,
.before-after-grip::after{
  content:"";
  position:absolute;
  top:0;
  width:4px;
  height:100%;
  border-radius:999px;
  background:var(--text-dark);
}

.before-after-grip::before{
  left:3px;
}

.before-after-grip::after{
  right:3px;
}

.before-after-arrows{
  border-top:3px solid var(--text-dark);
  transform:translateY(-1px);
}

.before-after-label{
  position:absolute;
  top:18px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(17,22,35,.65);
  color:#fff;
  font-size:.86rem;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.before-label{
  left:18px;
}

.after-label{
  right:18px;
}

@media (max-width: 760px){
  .before-after-card{
    padding:16px;
    border-radius:24px;
  }

  .before-after{
    aspect-ratio:4/5;
    border-radius:20px;
  }


.before-after-arrows{
  width:22px;
  height:10px;
}

  .before-after-label{
    min-height:36px;
    padding:0 12px;
    font-size:.8rem;
  }

.before-after-handle{
    width:56px;
    height:56px;
  }

  .before-after-grip{
    width:16px;
    height:20px;
  }

  .before-after-grip::before,
  .before-after-grip::after{
    width:3.5px;
  }
}

.form-status{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(76,93,143,.12);
  font-weight:600;
}

.footer-inner-legal{
  align-items:flex-start;
}

.footer-legal-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footer-legal-links a{
  color:var(--text);
  font-weight:600;
  transition:var(--transition);
}

.footer-legal-links a:hover,
.consent a:hover{
  color:var(--accent);
}

.consent a{
  text-decoration:underline;
  text-underline-offset:3px;
}

.legal-intro{
  max-width:760px;
  color:#6f788d;
  font-size:1.05rem;
  line-height:1.9;
  margin-bottom:18px;
}

.legal-page{
  min-height:100vh;
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(243,156,18,.10), transparent 26%),
    radial-gradient(circle at top right, rgba(76,93,143,.10), transparent 24%),
    linear-gradient(180deg, #f5f1eb 0%, #eee7de 100%);
  padding:148px 0 96px;
}

.legal-page::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.18), rgba(255,255,255,0) 20%);
}

.legal-shell{
  position:relative;
  max-width:940px;
  margin:0 auto;
  padding:52px 48px;
  border-radius:34px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(76,93,143,.10);
  box-shadow:
    0 24px 70px rgba(25, 30, 45, .08),
    inset 0 1px 0 rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
}

.legal-shell::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  border-radius:34px 34px 0 0;
  background:linear-gradient(90deg, var(--accent) 0%, rgba(76,93,143,.85) 100%);
  opacity:.9;
}

.legal-shell h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.8rem, 5vw, 5rem);
  line-height:.94;
  letter-spacing:-.03em;
  color:var(--text-dark);
  margin-bottom:10px;
  padding-right:30px;
}

.legal-updated{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(76,93,143,.06);
  border:1px solid rgba(76,93,143,.08);
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
  margin-bottom:28px;
}

.legal-shell h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(1.8rem, 3vw, 2.35rem);
  line-height:1;
  color:var(--text-dark);
  margin:34px 0 14px;
  padding-top:18px;
  border-top:1px solid rgba(76,93,143,.08);
}

.legal-shell h2:first-of-type{
  margin-top:8px;
}

.legal-shell p,
.legal-shell li{
  color:#667089;
  font-size:1.02rem;
  line-height:1.95;
}

.legal-shell p + p{
  margin-top:12px;
}

.legal-shell ul{
  margin:10px 0 6px;
  padding-left:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.legal-shell li{
  position:relative;
  padding-left:22px;
}

.legal-shell li::before{
  content:"";
  position:absolute;
  left:0;
  top:.82em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 5px rgba(243,156,18,.12);
}

.legal-shell strong{
  color:var(--text-dark);
  font-weight:700;
}

.legal-shell a{
  color:var(--text);
  text-decoration:underline;
  text-underline-offset:3px;
  transition:var(--transition);
}

.legal-shell a:hover{
  color:var(--accent);
}

.legal-back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  margin-top:34px;
  border-radius:999px;
  border:1px solid rgba(76,93,143,.12);
  background:rgba(255,255,255,.7);
  color:var(--text-dark);
  font-weight:700;
  transition:var(--transition);
  box-shadow:var(--shadow-soft);
}

.legal-back:hover{
  transform:translateY(-2px);
  background:#fff;
  color:var(--accent);
}

@media (max-width: 760px){
  .legal-page{
    padding:112px 0 72px;
  }

  .legal-shell{
    padding:28px 22px;
    border-radius:24px;
  }

  .legal-shell::after{
    border-radius:24px 24px 0 0;
  }

  .legal-shell h1{
    font-size:clamp(2.2rem, 10vw, 3.3rem);
    padding-right:0;
  }

  .legal-updated{
    min-height:38px;
    font-size:.84rem;
    margin-bottom:22px;
  }

  .legal-shell h2{
    font-size:1.65rem;
    margin:28px 0 12px;
    padding-top:16px;
  }

  .legal-shell p,
  .legal-shell li{
    font-size:.98rem;
    line-height:1.85;
  }

  .legal-back{
    width:100%;
  }
}

.cookie-modal{
  position:fixed;
  inset:0;
  z-index:1200;
  display:none;
}

.cookie-modal.is-open{
  display:block;
  overflow-y: scroll;
}

.cookie-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(16, 22, 35, .62);
  backdrop-filter:blur(6px);
}

.cookie-modal__panel{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  align-items: center;
  justify-content:center;
  padding:24px;
  background:#ffffff;
  color:#24304f;
}

.cookie-modal__content{
  width:min(760px, 100%);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(76,93,143,.10);
  border-radius:28px;
  box-shadow:0 26px 80px rgba(25,30,45,.18);
  padding:28px;
}

.cookie-modal__eyebrow{
  display:inline-block;
  margin-bottom:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(243,156,18,.12);
  color:#24304f;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.cookie-modal__content h3{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:.95;
  color:var(--text-dark);
  margin-bottom:12px;
}

.cookie-modal__content p{
  color:#5f687d;
  line-height:1.8;
}

.cookie-modal__content p + p{
  margin-top:10px;
}

.cookie-modal__content a{
  color:#24304f;
  text-decoration:underline;
  text-underline-offset:3px;
}

.cookie-modal__prefs{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.cookie-check{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:18px;
  background:#f8f5f0;
  border:1px solid rgba(76,93,143,.10);
}

.cookie-check input{
  margin-top:4px;
}

.cookie-check--locked{
  opacity:.92;
}

.cookie-modal__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.cookie-modal__actions .btn{
  min-width:170px;
}

.cookie-fab{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:1100;
  min-height:48px;
  padding:0 16px;
  border:none;
  border-radius:999px;
  background:rgba(47,57,89,.92);
  color:#fff;
  font-weight:700;
  box-shadow:var(--shadow-lg);
  cursor:pointer;
}

.cookie-fab:hover{
  transform:translateY(-2px);
}

body.cookie-lock{
  overflow:hidden;
}

.cookie-modal .btn-primary{
  background:#b86f00;
  color:#fff;
}

.cookie-modal .btn-primary:hover{
  background:#975900;
}

.cookie-modal .btn-secondary{
  background:#ffffff;
  color:#24304f;
  border:1px solid rgba(36,48,79,.22);
  font-weight:700;
}

@media (max-width:760px){
  .cookie-modal__panel{
    padding:14px;
  }

  .cookie-modal__content{
    padding:22px 18px;
    border-radius:22px;
  }

  .cookie-modal__actions{
    flex-direction:column;
  }

  .cookie-modal__actions .btn{
    width:100%;
  }

  .cookie-fab{
    left:14px;
    bottom:14px;
  }
}

.wa-modal{
  position:fixed;
  inset:0;
  z-index:1300;
  display:none;
}

.wa-modal.is-open{
  display:block;
}

.wa-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,22,35,.42);
  backdrop-filter:blur(6px);
}

.wa-modal__panel{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.wa-modal__content{
  position:relative;
  width:min(560px, 100%);
  background:rgba(255,255,255,.95);
  border:1px solid rgba(76,93,143,.10);
  border-radius:28px;
  box-shadow:0 26px 80px rgba(25,30,45,.18);
  padding:30px 28px 26px;
  text-align:left;
}

.wa-modal__eyebrow{
  display:inline-block;
  margin-bottom:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(243,156,18,.12);
  color:var(--accent);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.wa-modal__content h3{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:.95;
  color:var(--text-dark);
  margin-bottom:12px;
}

.wa-modal__content p{
  color:#6f788d;
  line-height:1.8;
}

.wa-modal__note{
  margin-top:8px;
  font-size:.95rem;
}

.wa-modal__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.wa-modal__actions .btn{
  min-width:190px;
}

.wa-modal__close{
  position:absolute;
  top:14px;
  right:16px;
  z-index:3;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:rgba(76,93,143,.08);
  color:var(--text-dark);
  font-size:1.6rem;
  line-height:1;
  cursor:pointer;
}

.wa-modal__close:hover{
  background:rgba(76,93,143,.14);
}

body.wa-modal-open{
  overflow:hidden;
}

@media (max-width:760px){
  .wa-modal__panel{
    padding:14px;
  }

  .wa-modal__content{
    padding:24px 18px 20px;
    border-radius:22px;
  }

  .wa-modal__actions{
    flex-direction:column;
  }

  .wa-modal__actions .btn{
    width:100%;
  }
}

.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border:1px solid rgba(76,93,143,.10);
  border-radius:999px;
  background:rgba(255,255,255,.65);
  box-shadow:var(--shadow-soft);
}

.lang-btn{
  min-width:46px;
  height:38px;
  border:none;
  border-radius:999px;
  background:transparent;
  color:var(--text-dark);
  font-weight:700;
  cursor:pointer;
  transition:var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lang-btn.active{
  background:var(--text-dark);
  color:#fff;
}

.lang-btn:hover{
  background:rgba(76,93,143,.08);
}

.lang-btn.active:hover{
  background:var(--text-dark);
}

@media (max-width: 920px){
  .lang-switch{
    margin-left:auto;
    margin-right:8px;
  }
}

@media (max-width: 760px){
  .lang-btn{
    min-width:42px;
    height:34px;
    font-size:.92rem;
  }
}

.solar-section{
  background:linear-gradient(180deg, var(--bg) 0%, #eee7de 100%);
  border: .5px dashed black;
}

.solar-intro{
  max-width:980px;
  margin:0 auto 42px;
  text-align:center;
}

.solar-lead{
  font-size:1.2rem;
  line-height:1.8;
  color:var(--text-dark);
  margin-bottom:14px;
}

.solar-intro p:last-child{
  color:#6f788d;
  line-height:1.9;
}

.solar-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.solar-card{
  background:rgba(255,255,255,.62);
  border:1px solid rgba(76,93,143,.10);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow-soft);
}

.solar-card h3{
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  line-height:1;
  color:var(--text-dark);
  margin-bottom:14px;
}

.solar-card p{
  color:#6f788d;
  line-height:1.85;
}

.solar-card--accent{
  background:linear-gradient(180deg, rgba(243,156,18,.12) 0%, rgba(255,255,255,.74) 100%);
  border-color:rgba(243,156,18,.24);
}

.solar-badge{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(243,156,18,.18);
  color:#9b6200;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.solar-quote{
  max-width:980px;
  margin:34px auto 0;
  text-align:center;
}

.solar-quote p{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.05;
  color:var(--text-dark);
}

@media (max-width: 920px){
  .solar-grid{
    grid-template-columns:1fr;
  }
}

.solar-hero{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:28px;
  align-items:center;
  margin:0 auto 42px;
}

.solar-hero-copy{
  max-width:620px;
}

.solar-hero-copy p:last-child{
  color:#6f788d;
  line-height:1.9;
}

.solar-hero-media{
  overflow:hidden;
  border-radius:30px;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(76,93,143,.10);
  box-shadow:var(--shadow-lg);
  min-height:420px;
}

.solar-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.solar-extra{
  margin: 0 auto 42px;
}

.solar-extra-media{
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(76,93,143,.10);
  box-shadow: var(--shadow-lg);
}

.solar-extra-media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 920px){
  .solar-extra{
    margin-bottom: 30px;
  }
}

@media (max-width: 760px){
  .solar-extra-media{
    border-radius: 22px;
  }
}

@media (max-width: 920px){
  .solar-hero{
    grid-template-columns:1fr;
  }

  .solar-hero-copy{
    max-width:100%;
  }

  .solar-hero-media{
    min-height:200px;
  }
}

.hidden-hp-wrap{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

.hidden-hp{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.metode-slider{
  position: relative;
  overflow: hidden;
}

.metode-arrows{
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
  opacity: .9;
}

.metode-arrow{
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.metode-arrow:hover{
  transform: scale(1.05);
  background: #fff;
}

.metode-arrow:active{
  transform: scale(.98);
}

@media (max-width: 760px){
  .metode-arrows{
    padding: 0 10px;
    opacity: 1;
  }

  .metode-arrow{
    width: 46px;
    height: 46px;
    font-size: 1.65rem;
  }
}