  :root{
    --green-950:#0F2E20;
    --green-900:#123527;
    --green-700:#1F5C3E;
    --green-600:#276B49;
    --green-500:#3A7D57;
    --green-100:#E4EFE7;
    --gold-600:#C98A22;
    --gold-500:#E3A73B;
    --gold-300:#F3CE87;
    --gold-100:#FBEED0;
    --teal-700:#175C4E;
    --teal-500:#2E8E77;
    --teal-100:#DCEFE9;
    --blue-700:#2B4F6B;
    --blue-500:#3E6B8A;
    --blue-100:#E2ECF3;
    --plum-700:#5E3655;
    --plum-500:#7A4B6E;
    --plum-100:#EFE1EB;
    --cream-50:#F8F8EF;
    --sand-100:#F5EFE1;
    --sand-200:#EEE3C8;
    --ink:#182620;
    --ink-soft:#465349;
    --white:#FFFFFF;
    --line:rgba(18,53,39,0.14);
    --shadow:0 20px 50px -25px rgba(15,46,32,0.35);
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:12px;
    --ff-display:'Fraunces', serif;
    --ff-body:'Work Sans', sans-serif;
    --ff-mono:'IBM Plex Mono', monospace;
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }
  body{
    margin:0;
    font-family:var(--ff-body);
    color:var(--ink);
    background-color:var(--cream-50);
    background-image:radial-gradient(rgba(18,53,39,0.07) 1.1px, transparent 1.1px);
    background-size:22px 22px;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  /* ---------- Decorative blobs & motion ---------- */
  @keyframes floatY{
    0%,100%{ transform:translateY(0) translateX(0); }
    50%{ transform:translateY(-18px) translateX(10px); }
  }
  @keyframes floatY2{
    0%,100%{ transform:translateY(0) translateX(0); }
    50%{ transform:translateY(16px) translateX(-14px); }
  }
  @keyframes spinSlow{
    from{ transform:rotate(-3deg); }
    to{ transform:rotate(357deg); }
  }
  @keyframes pulseSoft{
    0%,100%{ transform:scale(1) rotate(-2deg); }
    50%{ transform:scale(1.05) rotate(-2deg); }
  }
  @keyframes marquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  @keyframes fadeUp{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:translateY(0); }
  }
  .decor-blob{
    position:absolute; border-radius:50%; filter:blur(48px);
    pointer-events:none; z-index:0; opacity:.55;
    animation:floatY 11s ease-in-out infinite;
  }
  .decor-blob.gold{ background:radial-gradient(circle, var(--gold-300), transparent 70%); }
  .decor-blob.green{ background:radial-gradient(circle, var(--green-500), transparent 70%); animation-name:floatY2; }
  @media (prefers-reduced-motion: reduce){
    .decor-blob{ animation:none; }
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  h1,h2,h3,h4{font-family:var(--ff-display); color:var(--green-950); margin:0 0 .5em; line-height:1.12; font-weight:600;}
  p{margin:0 0 1em;}
  .container{width:100%; max-width:1160px; margin:0 auto; padding:0 24px; position:relative; z-index:1;}
  section{position:relative;}
  ::selection{background:var(--gold-300); color:var(--green-950);}
  :focus-visible{outline:3px solid var(--gold-500); outline-offset:3px; border-radius:4px;}

  /* ---------- Utility: eyebrow stamp ---------- */
  .stamp{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--ff-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--green-700);
    padding:7px 16px 7px 14px;
    border:1.5px dashed var(--green-700);
    border-radius:999px;
    transform:rotate(-2deg);
    background:var(--cream-50);
  }
  .stamp.on-dark{ color:var(--gold-300); border-color:var(--gold-300); background:transparent; }
  .stamp .dot{width:6px; height:6px; border-radius:50%; background:var(--gold-500); flex:none; animation:pulseSoft 2.4s ease-in-out infinite;}

  /* ---------- Header ---------- */
  .site-header{
    position:sticky; top:0; z-index:50;
    background:rgba(253,251,246,0.9);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .header-row{display:flex; align-items:center; justify-content:space-between; padding:12px 24px; gap:16px;}
  .brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
  .brand img{height:56px; width:auto;}
  .brand-word{font-family:var(--ff-display); font-weight:700; font-size:19px; color:var(--green-950); display:none;}
  nav.main-nav{display:flex; align-items:center; gap:28px;}
  nav.main-nav a{
    text-decoration:none; color:var(--ink); font-weight:500; font-size:15px;
    position:relative; padding:4px 0;
  }
  nav.main-nav a::after{
    content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0%;
    background:var(--gold-500); transition:width .25s ease;
  }
  nav.main-nav a:hover::after{width:100%;}
  .header-actions{display:flex; align-items:center; gap:10px;}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family:var(--ff-body); font-weight:600; font-size:15px;
    padding:12px 22px; border-radius:999px; text-decoration:none; cursor:pointer;
    border:1.5px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-primary{background:var(--green-700); color:var(--white); box-shadow:var(--shadow);}
  .btn-primary:hover{background:var(--green-600);}
  .btn-gold{background:var(--gold-500); color:var(--green-950); box-shadow:0 14px 30px -14px rgba(227,167,59,0.7);}
  .btn-gold:hover{background:var(--gold-600);}
  .btn-outline{background:transparent; color:var(--green-900); border-color:var(--green-900);}
  .btn-outline:hover{background:var(--green-900); color:var(--white);}
  .btn-outline.on-dark{color:var(--gold-300); border-color:var(--gold-300);}
  .btn-outline.on-dark:hover{background:var(--gold-300); color:var(--green-950);}
  .btn-sm{padding:9px 16px; font-size:13.5px;}
  .icon{width:18px; height:18px; flex:none;}

  .nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px;}
  .nav-toggle .icon{width:26px; height:26px; color:var(--green-950);}

  /* ---------- Hero ---------- */
  .hero{padding:56px 0 80px; overflow:hidden; background:linear-gradient(160deg, var(--gold-100) 0%, var(--cream-50) 34%, var(--green-100) 100%);}
  .hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;}
  .hero-eyebrow{margin-bottom:22px;}
  .hero-eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero .trust-row, .hero-art{
    animation:fadeUp .7s ease both;
  }
  .hero-eyebrow{animation-delay:.05s;}
  .hero h1{animation-delay:.15s;}
  .hero-sub{animation-delay:.25s;}
  .hero-ctas{animation-delay:.35s;}
  .hero .trust-row{animation-delay:.45s;}
  .hero-art{animation-delay:.3s;}
  @media (prefers-reduced-motion: reduce){
    .hero-eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero .trust-row, .hero-art{ animation:none; }
  }
  .hero h1{font-size:clamp(34px, 4.4vw, 54px); max-width:15ch;}
  .hero h1 em{font-style:italic; color:var(--green-700);}
  .hero-sub{font-size:17.5px; color:var(--ink-soft); max-width:46ch; margin-bottom:30px;}
  .hero-ctas{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px;}
  .trust-row{display:flex; flex-wrap:wrap; gap:10px 22px; padding-top:22px; border-top:1px dashed var(--line);}
  .trust-item{display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--ink-soft); font-weight:500;}
  .trust-item .icon{color:var(--green-700); width:16px; height:16px;}

  .hero-art{position:relative;}
  .blob-frame{
    position:relative; margin:0 auto; max-width:420px;
    border-radius:58% 42% 53% 47% / 55% 48% 52% 45%;
    background:linear-gradient(160deg, var(--green-100), var(--cream-50));
    border:2px solid var(--green-100);
    padding:26px;
  }
  .blob-frame::before{
    content:""; position:absolute; inset:-16px;
    border-radius:56% 44% 50% 50% / 52% 50% 50% 48%;
    border:1.5px dashed var(--gold-500);
    opacity:.65;
    z-index:-1;
    transform:rotate(-4deg);
  }
  .blob-frame img{position:relative; z-index:1;}

  /* ---------- Marquee ticker ---------- */
  .ticker{
    background:var(--green-950); overflow:hidden; padding:13px 0;
    border-top:1px solid rgba(227,167,59,0.25); border-bottom:1px solid rgba(227,167,59,0.25);
  }
  .ticker-track{display:flex; width:max-content; animation:marquee 28s linear infinite;}
  .ticker-track span{
    display:flex; align-items:center; gap:10px; white-space:nowrap;
    font-family:var(--ff-mono); font-size:13px; letter-spacing:.06em; text-transform:uppercase;
    color:var(--gold-300); padding:0 26px;
  }
  .ticker-track span::before{content:"✦"; color:var(--green-500); font-size:11px;}
  @media (prefers-reduced-motion: reduce){ .ticker-track{ animation:none; } }

  /* ---------- Process ---------- */
  .process{padding:60px 0; background:linear-gradient(135deg, var(--sand-100), var(--gold-100)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); position:relative; overflow:hidden;}
  .section-head{max-width:640px; margin:0 auto 44px; text-align:center;}
  .section-head .stamp{margin-bottom:16px;}
  .section-head h2{font-size:clamp(26px,3vw,36px);}
  .section-head p{color:var(--ink-soft); font-size:16px;}
  .process-steps{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
  .step-card{background:var(--white); border-radius:var(--radius-md); padding:30px 26px; border:1px solid var(--line); transition:transform .25s ease, box-shadow .25s ease;}
  .step-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
  .step-stamp{
    width:52px; height:52px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--ff-mono); font-weight:600; color:var(--white); font-size:15px;
    margin-bottom:18px; transform:rotate(-3deg);
  }
  .step-card:nth-child(1) .step-stamp{background:var(--green-700);}
  .step-card:nth-child(2) .step-stamp{background:var(--gold-600);}
  .step-card:nth-child(3) .step-stamp{background:var(--teal-700);}
  .step-card h3{font-size:19px; margin-bottom:8px;}
  .step-card p{color:var(--ink-soft); font-size:14.5px; margin:0;}

  /* ---------- Chips ---------- */
  .chip-row{display:flex; flex-wrap:wrap; gap:10px; margin:26px 0 6px;}
  .chip{
    font-family:var(--ff-mono); font-size:12.5px; letter-spacing:.02em;
    background:var(--white); border:1px solid var(--line); color:var(--green-900);
    padding:8px 14px; border-radius:999px;
    transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  }
  .chip:hover{background:var(--green-700); color:var(--white); border-color:var(--green-700); transform:translateY(-2px);}

  /* ---------- Offer sections (Particuliers / Pro) ---------- */
  .offer-section{padding:72px 0; overflow:hidden;}
  #particuliers{background:linear-gradient(170deg, var(--cream-50), var(--green-100) 55%, var(--cream-50));}
  #pro{background:linear-gradient(170deg, var(--sand-100), var(--gold-100) 55%, var(--sand-100));}
  .offer-intro{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; margin-bottom:46px;}
  .offer-intro h2{font-size:clamp(28px,3.4vw,40px);}
  .offer-intro p{color:var(--ink-soft); font-size:16px;}

  /* ---------- Price explorer (tabs + cards) ---------- */
  .price-tabs{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px;}
  .price-tab{
    font-family:var(--ff-mono); font-size:12.5px; font-weight:600; letter-spacing:.02em;
    padding:11px 18px; border-radius:999px; cursor:pointer;
    background:var(--white); border:1.5px solid var(--accent); color:var(--accent);
    transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .price-tab:hover{transform:translateY(-2px);}
  .price-tab.active{background:var(--accent); color:var(--white); box-shadow:0 12px 24px -14px var(--accent);}
  .price-panel{display:none;}
  .price-panel.active{display:block; animation:fadeUp .45s ease both;}
  .price-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(228px,1fr)); gap:14px;}
  .price-card{
    display:flex; align-items:center; justify-content:space-between; gap:14px;
    background:var(--white); border-left:4px solid var(--accent); border-radius:var(--radius-sm);
    padding:15px 18px; box-shadow:0 10px 22px -18px rgba(15,46,32,0.45);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .price-card:hover{transform:translateY(-4px); box-shadow:0 16px 28px -16px rgba(15,46,32,0.5);}
  .price-card .pc-name{font-size:14px; color:var(--ink); line-height:1.35;}
  .price-card .pc-price{
    font-family:var(--ff-mono); font-weight:700; font-size:13.5px; color:var(--accent);
    background:var(--tint); padding:6px 12px; border-radius:999px; white-space:nowrap; flex:none;
  }
  .pack-lead{font-family:var(--ff-mono); font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--teal-700); margin:26px 0 10px;}

  .price-table{width:100%; border-collapse:collapse;}
  .price-table tr{border-top:1px dashed var(--line);}
  .price-table tr:first-child{border-top:none;}
  .price-table td{padding:12px 6px; font-size:15px;}
  .price-table td.pname{color:var(--ink); }
  .price-table td.pval{
    font-family:var(--ff-mono); font-weight:600; color:var(--green-700);
    text-align:right; white-space:nowrap; padding-left:16px;
  }

  .pack-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:8px;}
  .pack-card{background:var(--green-950); color:var(--cream-50); border-radius:var(--radius-md); padding:24px; transition:transform .25s ease, box-shadow .25s ease;}
  .pack-card:hover{transform:translateY(-5px); box-shadow:var(--shadow);}
  .pack-card.premium{background:linear-gradient(155deg, var(--green-700), var(--green-950));}
  .pack-card h4{color:var(--gold-300); font-size:17px; margin-bottom:4px;}
  .pack-price{font-family:var(--ff-mono); font-size:22px; font-weight:600; color:var(--white); margin-bottom:14px;}
  .pack-card ul{margin:0; padding-left:0; list-style:none;}
  .pack-card li{display:flex; gap:8px; font-size:13.5px; padding:5px 0; color:rgba(253,251,246,0.88);}
  .pack-card li .icon{width:14px; height:14px; color:var(--gold-300); flex:none; margin-top:3px;}

  /* ---------- Pro domain cards ---------- */
  .domain-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:56px;}
  .domain-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:26px 22px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;}
  .domain-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--green-500);}
  .domain-icon{
    width:44px; height:44px; border-radius:12px; background:var(--green-700);
    display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  }
  .domain-icon .icon{width:22px; height:22px; color:var(--white);}
  .domain-card:nth-child(4n+1) .domain-icon{background:var(--green-700);}
  .domain-card:nth-child(4n+2) .domain-icon{background:var(--gold-600);}
  .domain-card:nth-child(4n+3) .domain-icon{background:var(--teal-700);}
  .domain-card:nth-child(4n+4) .domain-icon{background:var(--blue-700);}
  .domain-card h3{font-size:16.5px; margin-bottom:8px;}
  .domain-card ul{margin:0; padding-left:18px; color:var(--ink-soft); font-size:13.5px; line-height:1.6;}
  .domain-card li{margin-bottom:2px;}

  .pro-offers{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .offer-card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
    padding:32px 28px; position:relative; display:flex; flex-direction:column;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .offer-card:not(.featured):hover{transform:translateY(-6px); box-shadow:var(--shadow);}
  .offer-card.featured{
    background:var(--green-950); color:var(--cream-50); border-color:var(--green-950);
    transform:translateY(-10px); box-shadow:var(--shadow);
  }
  .offer-card.featured:hover{transform:translateY(-14px);}
  .offer-card.featured h3, .offer-card.featured .offer-tag{color:var(--gold-300);}
  .offer-card.featured .offer-price{color:var(--white);}
  .offer-card.featured .offer-desc{color:rgba(253,251,246,0.75);}
  .offer-card.featured li{color:rgba(253,251,246,0.9);}
  .offer-card.featured .btn-outline{color:var(--gold-300); border-color:var(--gold-300);}
  .featured-ribbon{
    position:absolute; top:-14px; left:50%; transform:translateX(-50%) rotate(-2deg);
    background:var(--gold-500); color:var(--green-950); font-family:var(--ff-mono);
    font-size:11.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
    padding:6px 16px; border-radius:999px; box-shadow:0 8px 18px -8px rgba(0,0,0,0.35);
  }
  .offer-tag{font-family:var(--ff-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--green-700); margin-bottom:10px; display:block;}
  .offer-card h3{font-size:22px; margin-bottom:6px;}
  .offer-price{font-family:var(--ff-mono); font-size:28px; font-weight:600; color:var(--green-900); margin-bottom:4px;}
  .offer-price span{font-size:14px; font-weight:500; color:var(--ink-soft);}
  .offer-desc{font-size:13.5px; color:var(--ink-soft); margin-bottom:18px;}
  .offer-card ul{list-style:none; margin:0 0 26px; padding:0; flex:1;}
  .offer-card li{display:flex; gap:9px; font-size:14px; padding:6px 0; color:var(--ink-soft);}
  .offer-card li .icon{width:15px; height:15px; color:var(--green-700); flex:none; margin-top:3px;}

  .time-table{margin-top:6px;}

  /* ---------- Quote / signature band ---------- */
  .quote-band{
    background:var(--green-950); color:var(--cream-50);
    padding:96px 0; text-align:center; overflow:hidden; position:relative;
  }
  .quote-seal{
    width:220px; height:220px; margin:0 auto 30px; border-radius:50%;
    border:1.5px dashed var(--gold-400, var(--gold-500));
    display:flex; align-items:center; justify-content:center; position:relative;
    animation:spinSlow 40s linear infinite;
  }
  @media (prefers-reduced-motion: reduce){ .quote-seal{ animation:none; transform:rotate(-3deg); } }
  .quote-seal::before{
    content:""; position:absolute; inset:14px; border-radius:50%; border:1px solid rgba(227,167,59,0.4);
  }
  .quote-seal .mark{font-family:var(--ff-display); font-size:54px; color:var(--gold-500); line-height:1; animation:spinSlow 40s linear infinite reverse;}
  @media (prefers-reduced-motion: reduce){ .quote-seal .mark{ animation:none; } }
  .quote-band blockquote{
    font-family:var(--ff-display); font-style:italic; font-weight:500;
    font-size:clamp(24px,3.4vw,38px); max-width:16ch; margin:0 auto; color:var(--white);
  }
  .quote-band .stamp{margin-top:26px;}

  /* ---------- Engagements ---------- */
  .engagements{padding:72px 0; background:linear-gradient(170deg, var(--cream-50), var(--teal-100) 60%, var(--cream-50));}
  .eng-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .eng-item{padding:24px 18px; border-radius:var(--radius-md); background:var(--white); border-top:3px solid var(--green-700); box-shadow:0 14px 30px -22px rgba(15,46,32,0.35); transition:transform .25s ease;}
  .eng-item:hover{transform:translateY(-5px);}
  .eng-item .icon-badge{width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:14px;}
  .eng-item .icon{width:20px; height:20px; color:var(--white); margin-bottom:0;}
  .eng-item h4{font-size:15.5px; margin-bottom:4px;}
  .eng-item p{font-size:13px; color:var(--ink-soft); margin:0;}
  .eng-item:nth-child(5n+1){border-top-color:var(--green-700);}
  .eng-item:nth-child(5n+1) .icon-badge{background:var(--green-700);}
  .eng-item:nth-child(5n+2){border-top-color:var(--gold-600);}
  .eng-item:nth-child(5n+2) .icon-badge{background:var(--gold-600);}
  .eng-item:nth-child(5n+3){border-top-color:var(--teal-700);}
  .eng-item:nth-child(5n+3) .icon-badge{background:var(--teal-700);}
  .eng-item:nth-child(5n+4){border-top-color:var(--blue-700);}
  .eng-item:nth-child(5n+4) .icon-badge{background:var(--blue-700);}
  .eng-item:nth-child(5n+5){border-top-color:var(--plum-700);}
  .eng-item:nth-child(5n+5) .icon-badge{background:var(--plum-700);}

  /* ---------- Photo strip ---------- */
  .photo-strip{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:16px;}
  .photo-card{
    position:relative; border-radius:var(--radius-lg); overflow:hidden;
    aspect-ratio:4/3; border:1px solid var(--line); box-shadow:var(--shadow);
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .photo-card:hover{transform:translateY(-6px) scale(1.015); box-shadow:0 26px 55px -22px rgba(15,46,32,0.45);}
  .photo-card img{width:100%; height:100%; object-fit:cover; display:block;}
  .photo-card .photo-tag{
    position:absolute; left:14px; bottom:14px;
    background:rgba(15,46,32,0.82); backdrop-filter:blur(4px); color:var(--gold-300);
    font-family:var(--ff-mono); font-size:11.5px; letter-spacing:.04em;
    padding:7px 13px; border-radius:999px;
  }

  /* ---------- Contact ---------- */
  .contact{padding:76px 0 96px; background:linear-gradient(170deg, var(--sand-100), var(--blue-100) 60%, var(--sand-100)); border-top:1px solid var(--line);}
  .contact-grid{display:grid; grid-template-columns:1fr .85fr; gap:48px;}
  .contact-card{background:var(--white); border-radius:var(--radius-lg); padding:38px; border:1px solid var(--line); box-shadow:var(--shadow);}
  .field{margin-bottom:18px;}
  .field label{display:block; font-size:13px; font-weight:600; color:var(--green-900); margin-bottom:6px; letter-spacing:.02em;}
  .field input, .field select, .field textarea{
    width:100%; font-family:var(--ff-body); font-size:15px; color:var(--ink);
    padding:13px 14px; border-radius:var(--radius-sm); border:1.5px solid var(--line);
    background:var(--cream-50); transition:border-color .18s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus{border-color:var(--green-700); outline:none;}
  .field textarea{resize:vertical; min-height:120px;}
  .field-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  .form-note{font-size:12.5px; color:var(--ink-soft); margin-top:14px;}

  .contact-info{display:flex; flex-direction:column; gap:18px;}
  .info-card{background:var(--green-950); color:var(--cream-50); border-radius:var(--radius-lg); padding:32px;}
  .info-card h3{color:var(--gold-300); font-size:19px; margin-bottom:18px;}
  .info-line{display:flex; align-items:flex-start; gap:12px; padding:11px 0; border-top:1px solid rgba(253,251,246,0.14);}
  .info-line:first-of-type{border-top:none;}
  .info-line .icon{width:18px; height:18px; color:var(--gold-300); margin-top:2px; flex:none;}
  .info-line a{text-decoration:none; color:var(--cream-50); font-weight:500;}
  .info-line a:hover{color:var(--gold-300);}
  .info-line span.label{display:block; font-size:11.5px; color:rgba(253,251,246,0.55); font-family:var(--ff-mono); text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px;}
  .whatsapp-cta{
    display:flex; align-items:center; gap:14px; background:var(--gold-500); color:var(--green-950);
    border-radius:var(--radius-md); padding:20px 22px; text-decoration:none;
  }
  .whatsapp-cta .icon{width:26px; height:26px; flex:none;}
  .whatsapp-cta strong{display:block; font-size:15.5px;}
  .whatsapp-cta small{display:block; font-size:12.5px; opacity:.85;}

  /* ---------- Floating WhatsApp ---------- */
  .float-wa{
    position:fixed; right:22px; bottom:22px; z-index:60;
    width:58px; height:58px; border-radius:50%; background:#25D366;
    display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -10px rgba(0,0,0,0.4);
    text-decoration:none;
  }
  .float-wa .icon{width:28px; height:28px; color:var(--white);}

  /* ---------- Footer ---------- */
  footer{background:var(--green-950); color:rgba(253,251,246,0.7); padding:56px 0 30px;}
  .footer-top{display:flex; justify-content:space-between; align-items:flex-start; gap:32px; padding-bottom:36px; border-bottom:1px solid rgba(253,251,246,0.14); flex-wrap:wrap;}
  .footer-brand{display:flex; align-items:center; gap:12px;}
  .footer-brand img{height:44px; width:auto;}
  .footer-quote{font-family:var(--ff-display); font-style:italic; color:var(--gold-300); font-size:16px; max-width:26ch;}
  .footer-links{display:flex; gap:36px; flex-wrap:wrap;}
  .footer-col h5{font-family:var(--ff-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-300); margin-bottom:12px;}
  .footer-col a{display:block; text-decoration:none; color:rgba(253,251,246,0.75); font-size:14px; margin-bottom:8px;}
  .footer-col a:hover{color:var(--white);}
  .footer-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:22px; font-size:12.5px;}

  /* ---------- Reveal on scroll ---------- */
  .reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.is-visible{opacity:1; transform:translateY(0);}

  /* ---------- Responsive ---------- */
  @media (max-width:980px){
    nav.main-nav{position:fixed; inset:70px 0 0 0; background:var(--cream-50); flex-direction:column; align-items:flex-start; padding:28px 24px; gap:6px; display:none; overflow-y:auto;}
    nav.main-nav.open{display:flex;}
    nav.main-nav a{width:100%; padding:14px 0; font-size:17px; border-bottom:1px solid var(--line);}
    .nav-toggle{display:block;}
    .header-actions .btn-outline{display:none;}
    .hero-grid{grid-template-columns:1fr; gap:44px;}
    .hero-art{order:-1; max-width:320px; margin:0 auto;}
    .process-steps{grid-template-columns:1fr;}
    .offer-intro{grid-template-columns:1fr;}
    .domain-grid{grid-template-columns:repeat(2,1fr);}
    .pro-offers{grid-template-columns:1fr; max-width:420px; margin:0 auto;}
    .offer-card.featured{transform:none;}
    .eng-grid{grid-template-columns:repeat(2,1fr);}
    .contact-grid{grid-template-columns:1fr;}
    .photo-strip{grid-template-columns:repeat(3,1fr); gap:12px;}
    .pack-grid{grid-template-columns:1fr;}
    .field-row{grid-template-columns:1fr;}
  }
  @media (max-width:560px){
    .domain-grid{grid-template-columns:1fr;}
    .eng-grid{grid-template-columns:1fr 1fr;}
    .header-row{padding:10px 18px;}
    .brand img{height:46px;}
    .photo-strip{grid-template-columns:1fr;}
  }
