:root{
    --bg:        #F2F1ED;
    --bg-2:      #E8E6E0;
    --bg-3:      #D6D3CC;
    --surface:   #FAFAF7;
    --surface-2: #FFFFFF;
    --ink:       #0F0F0F;
    --ink-soft:  #2A2A28;
    --muted:     #6B6862;
    --muted-2:   #94918B;
    --line:      rgba(15,15,15,.10);
    --line-2:    rgba(15,15,15,.07);
    --accent:    #25d366;
    --accent-2:  #C8F232;
    --accent-deep:#A8D416;
    --serif:     "Cormorant Garamond", "Times New Roman", serif;
    --display:   "Poppins", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --sans:      "Poppins", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    /* ── Fluid spacing tokens ──────────────────── */
    --sp-section: clamp(64px, 10vw, 130px);
    --sp-wrap:    clamp(16px, 3vw, 32px);
    --sp-gap:     clamp(12px, 2vw, 16px);
    --sp-head:    clamp(32px, 5vw, 70px);
    --radius:     clamp(18px, 2vw, 24px);
    --nav-h:      68px;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  body{
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-feature-settings: "ss01","cv11";
  }
  a{color:inherit; text-decoration:none;}
  img{display:block; max-width:100%;}
  button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit;}

  ::selection{ background: var(--accent); color: var(--ink); }

  /* ── Layout ──────────────────────────────────── */
  .wrap{
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 var(--sp-wrap);
    position: relative;
  }
  section{
    padding: var(--sp-section) 0;
    position: relative;
  }

  /* ── Editorial section label ──────────────────── */
  .section-label{
    display:inline-flex; align-items: center; gap: 12px;
    font-size: 11.5px; letter-spacing: .04em;
    text-transform: lowercase;
    margin-bottom: clamp(18px, 3vw, 28px);
    font-weight: 500;
    padding: 8px 14px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
  }
  .section-label .dot{
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(37,211,102,.7);
  }

  /* ── Display type ─────────────────────────────── */
  .serif-it{
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -.005em;
    line-height: .98;
    color: var(--ink);
  }
  .serif-it .alt{ color: var(--muted); }
  .h-mega{ font-size: clamp(48px, 12vw, 184px); }
  .h-1{ font-size: clamp(36px, 8vw, 124px); }
  .h-2{ font-size: clamp(32px, 6vw, 92px); }
  .h-3{ font-size: clamp(24px, 3.4vw, 52px); }
  .lede{
    font-family: var(--sans);
    font-size: clamp(14px, 1.1vw, 18px);
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.55;
    font-weight: 400;
  }

  /* ══════════════════════════════════════════════
     EDITORIAL NAVIGATION BAR
  ══════════════════════════════════════════════ */
  .site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(242, 241, 237, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15,15,15,.08);
    box-shadow: 0 1px 24px -4px rgba(15,15,15,.06);
    transition: background .3s ease, box-shadow .3s ease;
  }
  .site-header.scrolled{
    background: rgba(242, 241, 237, 0.97);
    box-shadow: 0 1px 24px -4px rgba(15,15,15,.10);
  }
  .header-inner{
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 var(--sp-wrap);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  /* Brand mark */
  .brand-mark{
    display:inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(13px, 1.2vw, 15px);
    letter-spacing: -.005em;
    color: var(--ink);
    min-width: 0;
    flex: none;
  }
  .brand-mark .glyph{
    width: 30px; height: 30px; border-radius: 8px;
    background: var(--accent);
    color: var(--ink);
    display:inline-flex; align-items:center; justify-content:center;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    flex: none;
    letter-spacing: 0;
  }

  /* Desktop nav links */
  .nav-links{
    display: none;
    gap: clamp(20px, 3vw, 36px);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .nav-links a{
    position: relative;
    padding-bottom: 2px;
    transition: color .2s ease;
    letter-spacing: -.005em;
  }
  .nav-links a::after{
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width .25s ease;
    border-radius: 1px;
  }
  .nav-links a:hover{ color: var(--ink); }
  .nav-links a:hover::after{ width: 100%; }

  /* Header CTA */
  .header-actions{
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
  }
  .header-cta{
    padding: 10px 20px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
    display: none;
  }
  .header-cta:hover{
    background: var(--ink-soft);
    transform: translateY(-1px);
  }

  /* Hamburger toggle — 3-bar style */
  .nav-toggle{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.5px;
    width: 42px; height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
    padding: 0;
    flex: none;
  }
  .nav-toggle:hover{
    background: var(--bg-2);
    border-color: var(--bg-3);
  }
  .nav-toggle .bar{
    display: block;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.77,0,.175,1), opacity .25s ease, width .25s ease;
    transform-origin: center;
  }
  .nav-toggle .bar:nth-child(1){ width: 18px; height: 1.5px; }
  .nav-toggle .bar:nth-child(2){ width: 14px; height: 1.5px; }
  .nav-toggle .bar:nth-child(3){ width: 18px; height: 1.5px; }
  /* Open state — bars animate to X */
  .nav-toggle.is-open .bar:nth-child(1){
    transform: translateY(6px) rotate(45deg);
    width: 18px;
  }
  .nav-toggle.is-open .bar:nth-child(2){
    opacity: 0; transform: scaleX(0);
  }
  .nav-toggle.is-open .bar:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
    width: 18px;
  }

  /* Desktop breakpoint */
  @media (min-width: 900px){
    .nav-toggle{ display: none; }
    .nav-links{ display: flex; }
    .header-cta{ display: inline-flex; }
  }

  /* ══════════════════════════════════════════════
     FULLSCREEN MOBILE MENU
  ══════════════════════════════════════════════ */
  .mobile-menu{
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(80px, 12vw, 120px) clamp(28px, 6vw, 64px) clamp(48px, 8vw, 80px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .4s cubic-bezier(.4,0,.2,1), transform .4s cubic-bezier(.4,0,.2,1);
  }
  .mobile-menu.is-open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  @media (min-width: 900px){ .mobile-menu{ display: none; } }

  .mm-nav{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: clamp(36px, 6vw, 56px);
  }
  .mm-link{
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: clamp(12px, 2vw, 16px) 0;
    font-family: var(--sans);
    font-size: clamp(32px, 7vw, 56px);
    font-weight: 700;
    color: rgba(239,233,221,.45);
    letter-spacing: -.04em;
    line-height: 1.05;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .25s ease;
  }
  .mm-link:hover{ color: var(--bg); }
  .mm-ix{
    font-family: var(--sans);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 400;
    color: rgba(239,233,221,.3);
    letter-spacing: .1em;
    margin-top: 6px;
    min-width: 24px;
  }
  .mm-foot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .mm-cta{
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--ink);
    border-radius: 12px;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: -.02em;
    transition: background .2s ease, transform .2s ease;
  }
  .mm-cta:hover{ background: var(--accent-2); transform: translateY(-1px); }
  .mm-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(239,233,221,.3);
    letter-spacing: -.01em;
  }
  .mm-brand-glyph{
    width: 28px; height: 28px; border-radius: 7px;
    background: rgba(37,211,102,.15);
    color: var(--accent);
    display:inline-flex; align-items:center; justify-content:center;
    font-weight: 700; font-size: 13px;
  }

  /* ── Buttons ─────────────────────────────────── */
  .btn{
    display:inline-flex; align-items:center; gap: 12px;
    padding: 14px 22px;
    font-size: 14px; font-weight: 500; letter-spacing: .005em;
    border-radius: 999px;
    transition: all .25s ease;
    white-space: nowrap;
  }
  .btn-primary{
    background: var(--ink);
    color: var(--bg);
  }
  .btn-primary:hover{ background: #2A2724; transform: translateY(-1px); }
  .btn-primary .arrow-bubble{
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent);
    display:inline-flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: transform .3s ease;
  }
  .btn-primary:hover .arrow-bubble{ transform: rotate(-45deg); }
  .btn-ghost{
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
  }
  .btn-ghost:hover{ border-color: var(--ink); background: var(--ink); color: var(--bg); }
  @media (min-width: 768px){
    .btn{ padding: 16px 26px; }
  }

  /* ══════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════ */
  .hero{
    padding: calc(var(--nav-h) + clamp(8px, 1.5vw, 16px)) clamp(14px, 2vw, 24px) 14px;
    min-height: 100svh;
    display: flex; flex-direction: column;
  }
  .hero-stage{
    position: relative;
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(15,15,15,.05) 0%, transparent 30%, rgba(15,15,15,.55) 100%),
      linear-gradient(160deg, #4A4A48 0%, #2A2A28 40%, #0F0F0F 100%);
    display:flex; flex-direction: column; justify-content: space-between;
    padding: clamp(24px, 4vw, 56px);
    padding-top: clamp(28px, 4vw, 56px);
    padding-bottom: clamp(24px, 3.5vw, 44px);
  }
  .hero-bg-img{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .hero-stage::after{
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(15,15,15,.55) 0%, rgba(15,15,15,.35) 40%, rgba(15,15,15,.72) 100%);
    z-index: 1; pointer-events: none;
  }
  .hero-stage::before{
    content:""; position:absolute; inset:0;
    background:
      radial-gradient(60% 50% at 50% 30%, rgba(37,211,102,.06), transparent 60%),
      repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 2px, transparent 2px 14px);
    pointer-events:none; z-index: 2;
  }
  .ph-tag{
    position:absolute; top: clamp(14px, 2vw, 24px); right: clamp(16px, 2.5vw, 28px);
    z-index: 4;
    font-family: ui-monospace, "SF Mono", monospace;
    font-size: 10px; color: rgba(255,255,255,.55);
    letter-spacing: .22em; text-transform: uppercase;
    display:none; align-items: center; gap: 8px;
  }
  .ph-tag::before{
    content:""; width: 6px; height:6px; border-radius:50%; background: #e84a4a;
    box-shadow: 0 0 12px #e84a4a;
    animation: blink 1.8s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.35;} }
  @media (min-width: 768px){
    .ph-tag{ display: inline-flex; }
  }

  .hero-top{
    position: relative; z-index: 3;
    display:flex; justify-content: space-between; align-items: flex-start;
    color: rgba(255,255,255,.85); gap: 12px;
  }
  .hero-top .micro{
    font-size: clamp(9.5px, 1vw, 11.5px);
    letter-spacing: .1em; text-transform: uppercase;
    display:inline-flex; align-items: center; gap: 8px;
  }
  .hero-top .micro::before{
    content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 12px rgba(37,211,102,.7); flex: none;
  }
  .hero-top .meta{
    font-family: var(--serif); font-style: italic; font-size: 14px;
    color: rgba(255,255,255,.7); display: none;
  }

  .hero-center{
    position: relative; z-index: 3;
    text-align: center;
    margin: auto 0;
    padding: clamp(24px, 4vw, 40px) 0;
  }
  /* Hero title — now uses Poppins (same as rest of site) */
  .hero-title{
    font-family: var(--display);
    font-style: normal;
    font-weight: 800;
    font-size: clamp(36px, 9vw, 148px);
    line-height: .92;
    letter-spacing: -.04em;
    color: #F4F4F2;
    text-shadow: 0 4px 30px rgba(0,0,0,.25);
  }
  .hero-title .alt{ font-style: italic; font-weight: 700; }
  .hero-sub{
    margin-top: clamp(16px, 2vw, 26px);
    font-family: var(--sans);
    font-size: clamp(14px, 1.15vw, 18px);
    color: rgba(244,244,242,.78);
    max-width: 56ch;
    margin-left: auto; margin-right: auto;
    line-height: 1.55;
  }
  .hero-ctas{
    margin-top: clamp(24px, 3vw, 38px);
    display:inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  }
  .hero-ctas .btn-primary{ background: var(--bg); color: var(--ink);}
  .hero-ctas .btn-primary:hover{ background: #FFFFFF; }
  .hero-ctas .btn-primary .arrow-bubble{ background: var(--accent); }
  .hero-ctas .btn-ghost{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.18);
    color: var(--bg);
    backdrop-filter: blur(8px);
  }
  .hero-ctas .btn-ghost:hover{ background: var(--bg); color: var(--ink); border-color: var(--bg);}

  /* Scroll cue — clean, no stats */
  .hero-scroll-cue{
    position: relative; z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: rgba(255,255,255,.5);
  }
  .hero-scroll-cue span{
    font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
    display:inline-flex; align-items: center; gap: 14px;
  }
  .hero-scroll-cue span::before{
    content:""; width: 56px; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.4), transparent);
  }
  @media (min-width: 768px){
    .hero-top .meta{ display: block; font-size: 16px; }
    .hero-top .micro{ font-size: 11.5px; letter-spacing: .14em; }
  }

  /* ── Ticker ──────────────────────────────────── */
  .ticker{
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    margin-top: clamp(14px, 2vw, 24px);
    padding: clamp(14px, 2vw, 20px) 0;
    overflow: hidden; position: relative; width: 100%; max-width: 100%;
  }
  .ticker-track{
    display:flex; gap: clamp(32px, 5vw, 60px);
    white-space: nowrap;
    animation: ticker 60s linear infinite;
    align-items: center; width: max-content;
  }
  .t-item{
    font-family: var(--display);
    font-size: clamp(14px, 1.6vw, 22px); color: var(--ink);
    display:inline-flex; align-items: center; gap: clamp(10px, 1.5vw, 18px); font-weight: 400;
  }
  .t-item .star{ color: var(--accent-deep); font-size: clamp(10px, 1vw, 14px); }
  @keyframes ticker { from{transform: translateX(0);} to{transform: translateX(-50%);} }

  /* ──────────────────────────────────────────── */
  /* BY THE NUMBERS                                */
  /* ──────────────────────────────────────────── */
  .nums-head{
    display:grid; grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px); margin-bottom: var(--sp-head);
  }
  .nums-side-image{
    margin-top: clamp(20px, 3vw, 28px); border-radius: var(--radius); overflow: hidden;
  }
  .nums-side-image img{ width: 100%; height: auto; display: block; object-fit: cover; }
  @media (min-width: 900px){
    .nums-head{ grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: end; }
  }
  .editorial-h{
    font-family: var(--display); font-weight: 700;
    font-size: clamp(28px, 5.5vw, 100px);
    line-height: .95; letter-spacing: -.04em; color: var(--ink);
  }
  .editorial-h .alt{ font-style: italic; font-weight: 500; color: var(--muted); }
  .editorial-h .lime{
    background: var(--accent); color: var(--ink); padding: 0 .15em; border-radius: .08em;
    font-style: normal; font-weight: 700;
  }
  .feature-stat{
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: clamp(28px, 4vw, 56px) 0;
    display:grid; grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 56px); align-items: end; margin-bottom: clamp(24px, 3vw, 36px);
  }
  .feature-stat .label{ font-size: 11px; color: var(--muted-2); letter-spacing: .14em; text-transform: uppercase; margin-bottom: clamp(8px, 1.5vw, 16px); }
  .fs-num{
    font-family: var(--display); font-weight: 600;
    font-size: clamp(36px, 7vw, 124px); color: var(--ink);
    line-height: .9; letter-spacing: -.045em;
  }
  .fs-num .accent{ color: var(--accent-deep); }
  .fs-rev .highlight{ display: inline-block; background: var(--accent); padding: 0 .14em; border-radius: .06em; }
  .fs-arrow{
    display:flex; align-items: center; justify-content: center; color: var(--ink);
    transform: rotate(90deg); padding: 0;
  }
  .feature-stat .descr{
    grid-column: 1 / -1; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 76ch; padding-bottom: 0;
  }
  .feature-stat .descr a{
    display:inline-flex; align-items: center; gap: 6px; color: var(--ink); margin-top: 10px;
    border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-weight: 500;
  }
  @media (min-width: 900px){
    .feature-stat{ grid-template-columns: auto auto 1fr; padding: 56px 0; }
    .fs-arrow{ transform: none; padding-bottom: 28px; }
  }
  .counters{ display:grid; grid-template-columns: 1fr; gap: var(--sp-gap); }
  .ct-cell{
    background: var(--surface-2); border: 1px solid var(--line-2);
    border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
    transition: transform .3s ease, border-color .3s ease;
  }
  .ct-cell:hover{ transform: translateY(-3px); border-color: var(--line);}
  .ct-cell .ix{ font-family: var(--display); font-size: 18px; color: var(--muted-2); margin-bottom: clamp(20px, 3vw, 38px); }
  .ct-num{ font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5vw, 80px); color: var(--ink); letter-spacing: -.045em; line-height: 1; }
  .ct-num .plus{ color: var(--accent-deep); }
  .ct-label{ font-family: var(--sans); font-size: 16px; color: var(--ink); margin-top: clamp(12px, 1.5vw, 20px); font-weight: 500; }
  .ct-desc{ font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.55; }
  @media (min-width: 600px){ .counters{ grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px){ .counters{ grid-template-columns: repeat(3, 1fr); } }

  /* ══════════════════════════════════════════════
     ABOUT — RESTRUCTURED (no portrait column)
  ══════════════════════════════════════════════ */
  .about-intro{
    max-width: 900px;
    margin-bottom: clamp(28px, 4vw, 48px);
  }
  .about-visual{
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: clamp(36px, 5vw, 64px);
    aspect-ratio: 16/7;
  }
  .about-visual img{
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  @media (min-width: 768px){
    .about-visual{ aspect-ratio: 16/6; }
  }

  .about-body-new{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 36px);
    margin-bottom: clamp(28px, 4vw, 48px);
  }
  @media (min-width: 768px){
    .about-body-new{ grid-template-columns: repeat(3, 1fr); }
  }

  .about-block{
    padding: clamp(20px, 2.5vw, 28px);
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .3s ease, transform .3s ease;
  }
  .about-block:hover{ border-color: var(--line); transform: translateY(-2px); }
  .about-block .stat-side{ }
  .about-block .stat-num{
    font-family: var(--display); font-weight: 700;
    font-size: clamp(28px, 3.5vw, 52px);
    color: var(--ink); letter-spacing: -.04em; line-height: .95;
  }
  .about-block .stat-num .accent{
    background: var(--accent); padding: 0 .12em; border-radius: .06em;
  }
  .about-block .stat-label{
    font-size: 11px; color: var(--muted-2);
    letter-spacing: .12em; text-transform: uppercase;
    margin-top: clamp(6px, 1vw, 10px); max-width: 20ch; line-height: 1.4;
  }
  .about-block .text{
    color: var(--muted); font-size: clamp(13.5px, 1.1vw, 15px); line-height: 1.7;
    border-top: 1px solid var(--line-2);
    padding-top: 14px;
    margin-top: auto;
  }
  .about-block .text strong{ color: var(--ink); font-weight: 500; }

  .about-pillar-strip{
    padding: clamp(16px, 2vw, 24px) 0;
    border-top: 1px solid var(--line-2);
    display:flex; flex-wrap: wrap; gap: 8px clamp(16px, 2vw, 28px);
    font-size: 13px; color: var(--muted);
  }
  .about-pillar-strip span{display:inline-flex; align-items: center; gap: 10px;}
  .about-pillar-strip span::before{
    content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-deep);
  }

  /* ──────────────────────────────────────────── */
  /* TRUST STRIP                                   */
  /* ──────────────────────────────────────────── */
  .trust-strip{
    padding: clamp(32px, 4vw, 40px) 0 clamp(40px, 5vw, 60px);
    border-top: 1px solid var(--line);
  }
  .trust-head{ max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
  .trust-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-gap); }
  .trust-card{
    background: var(--surface-2); border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.5vw, 26px) clamp(20px, 2.5vw, 24px);
    transition: transform .3s ease, border-color .3s ease;
  }
  .trust-card:hover{ transform: translateY(-3px); border-color: var(--line); }
  .trust-ix{ font-family: var(--display); font-size: 13px; color: var(--muted-2); margin-bottom: clamp(18px, 2.5vw, 32px); }
  .trust-num{ font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.5vw, 56px); color: var(--ink); letter-spacing: -.04em; line-height: 1; }
  .trust-label{ font-family: var(--sans); font-size: clamp(12.5px, 1.1vw, 14px); color: var(--muted); margin-top: clamp(8px, 1.2vw, 14px); font-weight: 500; }
  .trust-num .plus{ color: var(--accent-deep); }
  @media (min-width: 768px){ .trust-grid{ grid-template-columns: repeat(4, 1fr); } }

  /* ──────────────────────────────────────────── */
  /* SERVICES                                      */
  /* ──────────────────────────────────────────── */
  .services-head{ margin-bottom: clamp(32px, 4vw, 50px); max-width: 1000px; }
  .svc-list{ border-top: 1px solid var(--line);}
  .svc-item{
    border-bottom: 1px solid var(--line);
    display:grid; grid-template-columns: 36px 1fr;
    gap: 14px; padding: clamp(20px, 2.5vw, 32px) 0;
    align-items: center; transition: background .3s ease, padding .3s ease;
    cursor: pointer; position: relative;
  }
  .svc-item:hover{ background: var(--accent); padding-left: clamp(12px, 2vw, 22px); padding-right: clamp(12px, 2vw, 22px); }
  .svc-num{ font-family: var(--display); font-size: 18px; color: var(--muted); }
  .svc-item:hover .svc-num{ color: var(--ink); }
  .svc-title{ font-family: var(--display); font-weight: 600; font-size: clamp(22px, 3vw, 52px); line-height: 1; letter-spacing: -.035em; color: var(--ink); }
  .svc-desc{ color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 60ch; grid-column: 2; }
  .svc-item:hover .svc-desc{ color: var(--ink-soft);}
  .svc-arrow{
    width: 56px; height: 56px; border: 1px solid var(--ink); border-radius: 50%;
    display:none; align-items: center; justify-content: center; color: var(--ink);
    transition: all .3s ease; flex: none;
  }
  .svc-item:hover .svc-arrow{ background: var(--ink); color: var(--accent); border-color: var(--ink); transform: rotate(-45deg); }
  @media (min-width: 900px){
    .svc-item{ grid-template-columns: 70px 1.2fr 2fr auto; gap: 32px; padding: 32px 12px; }
    .svc-desc{ grid-column: auto; }
    .svc-arrow{ display: flex; }
  }

  /* ──────────────────────────────────────────── */
  /* PROGRAMS                                      */
  /* ──────────────────────────────────────────── */
  .programs-head{
    margin-bottom: clamp(36px, 5vw, 60px); display:grid;
    grid-template-columns: 1fr; gap: clamp(20px, 3vw, 28px);
  }
  .programs-grid{ display:grid; grid-template-columns: 1fr; gap: var(--sp-gap); }
  .program{
    grid-column: span 1; min-height: 0;
    padding: clamp(24px, 2.5vw, 30px) clamp(22px, 2.5vw, 28px) clamp(22px, 2.5vw, 26px);
    border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line-2);
    display:flex; flex-direction: column;
    transition: transform .35s ease, border-color .35s ease; position: relative; overflow: hidden;
  }
  .program:hover{ transform: translateY(-4px); border-color: var(--ink);}
  .program.featured{ background: var(--ink); color: var(--bg); }
  .program.featured .p-title{ color: var(--bg);}
  .program.featured .p-num{ color: var(--accent);}
  .program.featured .p-tag{ color: var(--bg); border-color: rgba(239,233,221,.25); background: rgba(239,233,221,.08);}
  .program.featured .p-promise{ color: rgba(239,233,221,.7);}
  .program.featured .p-foot{ border-top-color: rgba(239,233,221,.12);}
  .program.featured .p-meta{ color: rgba(239,233,221,.7);}
  .program.featured .p-meta b{ color: var(--bg);}
  .program.featured .p-arrow{ background: var(--accent); border-color: var(--accent); color: var(--ink); }
  .program .p-head{ display:flex; align-items: center; justify-content: space-between;}
  .program .p-num{ font-family: var(--sans); font-weight: 500; font-size: 12px; color: var(--muted-2); letter-spacing: .02em; }
  .program .p-tag{ font-size: 10.5px; text-transform: uppercase; color: var(--muted); letter-spacing: .2em; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; }
  .program .p-title{ margin-top: clamp(28px, 4vw, 60px); font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.8vw, 46px); line-height: .98; letter-spacing: -.035em; color: var(--ink); }
  .program.featured .p-title{ font-size: clamp(26px, 3.5vw, 60px);}
  .program .p-promise{ margin-top: clamp(12px, 1.5vw, 18px); font-size: 14.5px; color: var(--muted); line-height: 1.55; max-width: 38ch; }
  .program .p-foot{ margin-top: auto; padding-top: clamp(18px, 2vw, 24px); display:flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-2); }
  .program .p-meta{ display:flex; gap: 16px; font-size: 12px; color: var(--muted); flex-wrap: wrap;}
  .program .p-meta b{ color: var(--ink); font-weight: 600;}
  .p-arrow{
    width: 40px; height: 40px; border: 1px solid var(--ink); background: var(--bg);
    border-radius: 50%; display:inline-flex; align-items: center; justify-content: center;
    color: var(--ink); transition: all .3s ease; flex: none;
  }
  .program:hover .p-arrow{ background: var(--ink); color: var(--accent); border-color: var(--ink); }
  .program.featured:hover .p-arrow{ background: var(--accent-2); border-color: var(--accent-2);}
  @media (min-width: 600px){ .programs-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 900px){ .programs-head{ grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: end; } }
  @media (min-width: 1024px){
    .programs-grid{ grid-template-columns: repeat(6, 1fr); }
    .program{ grid-column: span 2; min-height: 380px; }
    .program.featured{ grid-column: span 3; }
  }

  /* ──────────────────────────────────────────── */
  /* SELECTED WORK                                 */
  /* ──────────────────────────────────────────── */
  .work-head{ margin-bottom: clamp(28px, 3vw, 40px); max-width: 900px; }
  .work-list{ border-top: 1px solid var(--line);}
  .work-item{
    border-bottom: 1px solid var(--line); display:grid;
    grid-template-columns: 1fr auto; row-gap: 6px;
    padding: clamp(18px, 2vw, 26px) 0; align-items: center;
    transition: all .3s ease; position: relative;
  }
  .work-item:hover{ background: var(--ink); color: var(--bg); padding-left: 20px; padding-right: 20px;}
  .work-item:hover .work-num{ color: var(--accent);}
  .work-item:hover .work-cat{ color: rgba(239,233,221,.6);}
  .work-item:hover .work-title{ color: var(--bg);}
  .work-item:hover .work-metric{ color: var(--accent);}
  .work-item:hover .work-metric small{ color: rgba(239,233,221,.6);}
  .work-item:hover .work-arrow{ background: var(--accent); border-color: var(--accent); color: var(--ink); transform: rotate(-45deg);}
  .work-num{ font-family: var(--display); color: var(--muted); font-size: 18px; grid-column: 1; }
  .work-cat{ font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); grid-column: 1; }
  .work-title{ font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 32px); letter-spacing: -.025em; color: var(--ink); line-height: 1.1; grid-column: 1 / -1; }
  .work-metric{ font-family: var(--display); font-weight: 700; color: var(--accent-deep); font-size: clamp(18px, 2vw, 32px); letter-spacing: -.03em; text-align: left; grid-column: 1; }
  .work-metric small{ display:block; font-family: var(--sans); font-style: normal; font-size: 11px; color: var(--muted-2); letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; font-weight: 400; }
  .work-arrow{ width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink); display:inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: all .3s ease; grid-row: 1 / -1; grid-column: 2; }
  .work-video{ position: relative; aspect-ratio: 16/9; margin-bottom: clamp(24px, 3vw, 36px); border-radius: var(--radius); overflow: hidden; background: var(--ink); border: 1px solid rgba(255,255,255,.08); }
  .work-video iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
  @media (min-width: 900px){
    .work-item{ grid-template-columns: 70px 1.3fr 2fr 1fr auto; gap: 28px; row-gap: 0; padding: 26px 8px; }
    .work-num, .work-cat, .work-title{ grid-column: auto; }
    .work-metric{ grid-column: auto; text-align: right; }
    .work-arrow{ grid-row: auto; grid-column: auto; }
  }

  /* ──────────────────────────────────────────── */
  /* WHO IT'S FOR                                  */
  /* ──────────────────────────────────────────── */
  .who-grid{ display:grid; grid-template-columns: 1fr; gap: var(--sp-gap); margin-top: clamp(28px, 4vw, 48px); }
  .who-card{
    position: relative; border: 1px solid var(--line); background: var(--surface-2);
    border-radius: var(--radius); padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.5vw, 26px);
    overflow: hidden; min-height: 0; display:flex; flex-direction: column;
    justify-content: space-between; gap: clamp(24px, 3vw, 40px); transition: all .35s ease;
  }
  .who-card:hover{ background: var(--accent); border-color: var(--ink); transform: translateY(-3px);}
  .who-card .top{ display:flex; justify-content: space-between; align-items: center;}
  .who-card .ix{ font-family: var(--display); font-size: 18px; color: var(--muted);}
  .who-card .tag{ font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; }
  .who-card:hover .tag{ border-color: var(--ink); color: var(--ink);}
  .who-name{ font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.8vw, 44px); line-height: 1.05; letter-spacing: -.035em; color: var(--ink); }
  .who-desc{ font-size: 13.5px; color: var(--muted); margin-top: 8px; max-width: 32ch;}
  .who-card:hover .who-desc{ color: var(--ink-soft);}
  @media (min-width: 600px){ .who-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px){ .who-grid{ grid-template-columns: repeat(3, 1fr); } }

  /* ══════════════════════════════════════════════
     CLIENT SPEAK — TESTIMONIALS (NEW)
  ══════════════════════════════════════════════ */
  /* Google trust badge */
  .cs-trust-badge{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    margin-bottom: clamp(32px, 4vw, 48px);
    box-shadow: 0 2px 12px rgba(15,15,15,.05);
  }
  .cs-g-logo{
    display: inline-flex; align-items: center; justify-content: center;
    flex: none;
  }
  .cs-badge-content{ display: flex; flex-direction: column; gap: 2px; }
  .cs-badge-label{
    font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted-2);
  }
  .cs-badge-stars{
    font-size: 14px; color: #FBBC05; letter-spacing: .06em;
    line-height: 1;
  }
  .cs-badge-rating{
    font-size: 12px; font-weight: 500; color: var(--ink-soft);
    letter-spacing: -.01em;
  }

  .proof-head{
    margin-bottom: clamp(32px, 4vw, 50px); max-width: 760px;
  }

  /* Carousel wrapper */
  .cs-carousel-wrap{
    position: relative;
    overflow: hidden;
    margin: 0 calc(var(--sp-wrap) * -1);
    padding: 0 var(--sp-wrap);
  }
  .cs-carousel-wrap::before,
  .cs-carousel-wrap::after{
    content: ""; position: absolute; top: 0; bottom: 0;
    width: clamp(40px, 6vw, 80px); z-index: 3; pointer-events: none;
  }
  .cs-carousel-wrap::before{
    left: 0; background: linear-gradient(90deg, var(--bg), transparent);
  }
  .cs-carousel-wrap::after{
    right: 0; background: linear-gradient(-90deg, var(--bg), transparent);
  }

  /* Single-direction carousel track */
  .cs-carousel{
    display: flex;
    gap: clamp(12px, 2vw, 18px);
    width: max-content;
    animation: cs-scroll 80s linear infinite;
    padding-bottom: 8px;
  }
  .cs-carousel:hover{ animation-play-state: paused; }
  @keyframes cs-scroll {
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }

  /* Individual card */
  .cs-card{
    flex: 0 0 clamp(280px, 28vw, 360px);
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    border-radius: 18px;
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2.5vw, 24px);
    display: flex; flex-direction: column; gap: 14px;
  }
  .cs-card--featured{
    background: var(--ink); border-color: var(--ink);
  }
  .cs-card--featured .cs-quote{ color: var(--bg); }
  .cs-card--featured .cs-author{ border-top-color: rgba(239,233,221,.12); }
  .cs-card--featured .cs-avatar-init{ background: rgba(255,255,255,.08); color: var(--accent); border-color: rgba(255,255,255,.12); }
  .cs-card--featured .cs-author-info strong{ color: var(--bg); }
  .cs-card--featured .cs-author-info span{ color: rgba(239,233,221,.55); }
  .cs-card--featured .cs-star-on{ color: var(--accent); }

  .cs-stars{
    display: flex; gap: 2px; font-size: 14px;
    color: var(--muted-2);
  }
  .cs-star-on{ color: #FBBC05; }
  .cs-star-off{ color: var(--bg-3); }

  .cs-quote{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 17px);
    color: var(--ink);
    line-height: 1.45;
    letter-spacing: -.01em;
    flex: 1;
  }
  .cs-author{
    display: flex; gap: 10px; align-items: center;
    padding-top: 14px; border-top: 1px solid var(--line-2);
  }
  .cs-avatar-img{
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; flex: none;
    border: 1px solid var(--line-2);
  }
  .cs-avatar-init{
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-2); border: 1px solid var(--line-2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); color: var(--ink); font-size: 13px; font-weight: 600;
    flex: none;
  }
  .cs-author-info{ min-width: 0; }
  .cs-author-info strong{
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink); letter-spacing: -.01em;
  }
  .cs-author-info span{
    font-size: 11.5px; color: var(--muted);
    display: block; margin-top: 2px;
  }

  /* ══════════════════════════════════════════════
     PARTNER WALL — IMAGE TILE GRID (NEW)
  ══════════════════════════════════════════════ */
  .wall-head{
    margin-bottom: clamp(28px, 4vw, 48px); display:grid;
    grid-template-columns: 1fr; gap: clamp(20px, 3vw, 28px);
  }
  @media (min-width: 900px){
    .wall-head{ grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: end; }
  }

  /* Zero-gap editorial image grid */
  .partner-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  @media (min-width: 600px){
    .partner-grid{ grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 1024px){
    .partner-grid{ grid-template-columns: repeat(4, 1fr); }
  }

  /* Each image tile */
  .pit{
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(160deg, #2a2a28, #181816);
  }
  .pit--ph{
    background: var(--pit-grad, linear-gradient(160deg,#2e2e2b,#1a1a18));
  }
  .pit-img{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
    z-index: 1;
  }
  .pit:hover .pit-img{ transform: scale(1.06); }
  .pit-overlay{
    position: absolute; inset: 0;
    background: linear-gradient(
      160deg,
      rgba(15,15,15,.12) 0%,
      transparent 40%,
      rgba(15,15,15,.62) 100%
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(14px, 2vw, 22px);
    transition: background .35s ease;
  }
  .pit:hover .pit-overlay{
    background: linear-gradient(
      160deg,
      rgba(15,15,15,.2) 0%,
      transparent 30%,
      rgba(15,15,15,.80) 100%
    );
  }
  .pit-title{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(13px, 1.4vw, 18px);
    color: #F4F4F2;
    letter-spacing: -.02em;
    line-height: 1.1;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
  }
  .pit-tag{
    font-size: clamp(9px, 0.85vw, 11px);
    font-weight: 500;
    color: rgba(244,244,242,.65);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .wall-foot{
    margin-top: clamp(28px, 4vw, 48px);
    display:flex; flex-direction: column; align-items: start; gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: clamp(24px, 3vw, 36px);
  }
  .wall-foot .total{
    font-family: var(--display); font-weight: 700;
    font-size: clamp(40px, 5vw, 84px);
    color: var(--ink); line-height: 1; letter-spacing: -.04em;
  }
  .wall-foot .total .plus{ color: var(--accent-deep);}
  .wall-foot .total small{
    font-family: var(--sans); font-style: normal; font-size: 13px;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); display:block; margin-top: 12px; font-weight: 400;
  }
  .wall-foot .copy{ max-width: 38ch; color: var(--muted); font-size: 14.5px;}
  @media (min-width: 600px){
    .wall-foot{ flex-direction: row; justify-content: space-between; align-items: end; }
  }

  /* ──────────────────────────────────────────── */
  /* RESOURCES                                     */
  /* ──────────────────────────────────────────── */
  .res-grid{ display:grid; grid-template-columns: 1fr; gap: var(--sp-gap); margin-top: clamp(28px, 4vw, 48px); }
  .res{
    border-radius: var(--radius); border: 1px solid var(--line);
    padding: clamp(24px, 3vw, 32px); display:flex; flex-direction: column; gap: 12px;
    min-height: 0; position: relative; overflow: hidden;
    transition: all .35s ease; background: var(--surface-2);
  }
  .res:hover{ transform: translateY(-3px); border-color: var(--ink);}
  .res.wa{ background: #25D366; border-color: #25D366;}
  .res.wa .res-tag, .res.wa .res-title, .res.wa .res-desc, .res.wa .res-stat, .res.wa .res-stat b{ color: var(--ink);}
  .res.wa .res-foot{ border-top-color: rgba(15,15,15,.18);}
  .res.wa .res-arrow{ background: var(--ink); border-color: var(--ink); color: #25D366;}
  .res.webinar{ background: var(--ink); border-color: var(--ink);}
  .res.webinar .res-tag{ color: var(--accent);}
  .res.webinar .res-title{ color: var(--bg);}
  .res.webinar .res-desc{ color: rgba(239,233,221,.7);}
  .res.webinar .res-foot{ border-top-color: rgba(239,233,221,.15);}
  .res.webinar .res-stat{ color: rgba(239,233,221,.7);}
  .res.webinar .res-stat b{ color: var(--bg);}
  .res.webinar .res-arrow{ background: var(--accent); border-color: var(--accent); color: var(--ink);}
  .res-tag{ font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);}
  .res-title{ font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.4vw, 40px); line-height: 1.0; color: var(--ink); letter-spacing: -.03em; }
  .res-desc{ font-size: 14px; color: var(--muted); line-height: 1.55;}
  .res-foot{ margin-top: auto; display:flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line);}
  .res-stat{ font-size: 12.5px; color: var(--muted);}
  .res-stat b{ color: var(--ink); font-weight: 500;}
  .res-arrow{
    width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 50%;
    display:flex; align-items: center; justify-content: center; color: var(--ink);
    transition: all .3s ease; flex: none;
  }
  .res:hover .res-arrow{ background: var(--ink); color: var(--accent); border-color: var(--ink); transform: rotate(-45deg);}
  @media (min-width: 900px){ .res-grid{ grid-template-columns: 1.4fr 1fr 1fr; } }

  /* ──────────────────────────────────────────── */
  /* FAQ                                           */
  /* ──────────────────────────────────────────── */
  .faq-grid{ display:grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 40px); align-items: start; }
  .faq-item{ border-bottom: 1px solid var(--line); padding: clamp(18px, 2vw, 24px) 0; }
  .faq-q{
    width: 100%; display:flex; justify-content: space-between; align-items: center;
    gap: clamp(16px, 2.5vw, 32px); font-family: var(--display); font-weight: 600;
    font-size: clamp(17px, 1.9vw, 28px); color: var(--ink); text-align: left;
    line-height: 1.25; letter-spacing: -.02em;
  }
  .faq-plus{
    width: 36px; height: 36px; flex: none; border-radius: 50%; position: relative;
    border: 1px solid var(--ink); transition: all .3s ease;
  }
  .faq-plus::before, .faq-plus::after{
    content:""; position: absolute; top: 50%; left: 50%;
    background: var(--ink); transform: translate(-50%,-50%);
  }
  .faq-plus::before{ width: 12px; height: 1.5px;}
  .faq-plus::after { width: 1.5px; height: 12px; transition: transform .3s ease;}
  .faq-item.open .faq-plus{ background: var(--accent); border-color: var(--ink);}
  .faq-item.open .faq-plus::after{ transform: translate(-50%,-50%) rotate(90deg);}
  .faq-a{
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, margin-top .3s ease, opacity .3s ease;
    color: var(--muted); font-size: 15px; line-height: 1.7; opacity: 0; max-width: 60ch;
  }
  .faq-item.open .faq-a{ max-height: 300px; margin-top: 16px; opacity: 1;}
  @media (min-width: 900px){ .faq-grid{ grid-template-columns: 1fr 1.6fr; gap: clamp(40px, 6vw, 80px); } }

  /* ──────────────────────────────────────────── */
  /* FINAL CTA                                     */
  /* ──────────────────────────────────────────── */
  .final{ padding: clamp(16px, 2.5vw, 32px) clamp(14px, 2vw, 24px); }
  .final-card{
    background: var(--ink); color: var(--bg); border-radius: var(--radius);
    padding: clamp(40px, 7vw, 96px) clamp(22px, 5vw, 64px) clamp(32px, 5vw, 64px);
    text-align: left; position: relative; overflow: hidden;
  }
  .final-card::before{
    content:""; position: absolute; top: -100px; right: -80px;
    width: 360px; height: 360px; background: var(--accent);
    border-radius: 50%; opacity: .12; filter: blur(40px);
  }
  .final .section-label{ background: var(--accent); color: var(--ink); }
  .final-headline{
    font-family: var(--display); font-weight: 800;
    font-size: clamp(32px, 8vw, 160px);
    line-height: .9; letter-spacing: -.045em;
    margin: clamp(16px, 2vw, 24px) 0 0; max-width: 14ch; color: var(--bg);
  }
  .final-headline .lime{ color: var(--accent); font-style: normal; font-weight: 800; }
  .final-meta{
    margin-top: clamp(32px, 4vw, 56px); display:grid; grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 40px); align-items: start;
    border-top: 1px solid rgba(239,233,221,.12); padding-top: clamp(20px, 3vw, 32px); position: relative; z-index: 2;
  }
  .final-meta .copy{ color: rgba(239,233,221,.7); font-size: clamp(14px, 1.2vw, 16px); max-width: 56ch;}
  .final-ctas{ display:flex; flex-wrap: wrap; gap: 12px;}
  .final-ctas .btn-primary{ background: var(--accent); color: var(--ink);}
  .final-ctas .btn-primary:hover{ background: var(--accent-2);}
  .final-ctas .btn-primary .arrow-bubble{ background: var(--ink); color: var(--accent);}
  .final-ctas .btn-ghost{ background: transparent; border-color: rgba(239,233,221,.2); color: var(--bg); }
  .final-ctas .btn-ghost:hover{ background: var(--bg); color: var(--ink); border-color: var(--bg);}
  @media (min-width: 900px){ .final-meta{ grid-template-columns: 1fr auto; align-items: end; } }

  /* ──────────────────────────────────────────── */
  /* FOOTER                                        */
  /* ──────────────────────────────────────────── */
  footer{ padding: clamp(48px, 6vw, 70px) 0 clamp(24px, 3vw, 36px); position: relative; }
  .foot-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); margin-bottom: clamp(32px, 4vw, 50px); }
  .foot-brand{ display:flex; flex-direction: column; gap: 18px; grid-column: 1 / -1;}
  .foot-brand .brand-mark{ display:inline-flex; color: var(--ink); align-items: center; gap: 12px; }
  .foot-brand .brand-mark .glyph{ background: var(--ink); color: var(--accent);}
  .foot-brand p{ color: var(--muted); font-size: 14px; line-height: 1.65; max-width: 34ch;}
  .foot-col h4{ font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: clamp(14px, 2vw, 22px); font-weight: 500; }
  .foot-col a{ display:block; color: var(--ink); font-size: 14.5px; margin-bottom: 12px; font-family: var(--display); transition: color .2s ease; }
  .foot-col a:hover{ color: var(--accent-deep);}
  .foot-bottom{
    padding-top: clamp(18px, 2.5vw, 28px); border-top: 1px solid var(--line);
    display:flex; flex-direction: column; align-items: start; gap: 8px;
    font-size: 13px; color: var(--muted);
  }
  @media (min-width: 768px){ .foot-bottom{ flex-direction: row; justify-content: space-between; align-items: center; gap: 18px; } }
  @media (min-width: 900px){ .foot-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; } .foot-brand{ grid-column: auto; } }

  /* Sticky WhatsApp */
  .wa-stick{
    position: fixed; bottom: clamp(16px, 2vw, 24px); right: clamp(16px, 2vw, 24px);
    z-index: 60; display:inline-flex; align-items: center; gap: 12px;
    padding: 12px; border-radius: 999px; background: #25D366; color: var(--ink);
    font-weight: 500; font-size: 14px;
    box-shadow: 0 14px 40px -10px rgba(37,211,102,.45);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .wa-stick:hover{ transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(37,211,102,.6);}
  .wa-stick .wa-ico{ width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #25D366; display:inline-flex; align-items: center; justify-content: center; }
  .wa-stick .wa-text{ display:none; flex-direction: column; line-height: 1.1;}
  .wa-stick .wa-text small{ font-size: 10px; opacity:.7; letter-spacing: .12em; text-transform: uppercase;}
  @media (min-width: 600px){ .wa-stick{ padding: 13px 22px 13px 13px; } .wa-stick .wa-text{ display: flex; } }

  /* Reveal */
  .reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease;}
  .reveal.in{ opacity: 1; transform: none;}
  .reveal-d1{ transition-delay: .08s;}
  .reveal-d2{ transition-delay: .16s;}
  .reveal-d3{ transition-delay: .24s;}

  /* ── Image placeholder utility ────────────────── */
  .img-ph{
    position: relative; overflow: hidden;
    background: repeating-linear-gradient(135deg, rgba(15,15,15,.045) 0 2px, transparent 2px 14px), var(--bg-2);
    border: 1px solid var(--line); border-radius: var(--radius);
    transition: border-color .35s ease, transform .35s ease;
  }
  .img-ph:hover{ border-color: rgba(15,15,15,.2); }
  .img-ph::after{
    content: attr(data-label); position: absolute; left: 18px; bottom: 14px; right: 18px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 10.5px; color: var(--muted); letter-spacing: .16em; text-transform: uppercase; pointer-events: none;
  }
  .img-ph .corner-tag{
    position: absolute; top: 14px; left: 18px; z-index: 2;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 10px; color: var(--muted); letter-spacing: .22em; text-transform: uppercase;
    display:inline-flex; align-items:center; gap: 8px;
  }
  .img-ph .corner-tag::before{ content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .img-ph.dark{
    background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px),
      linear-gradient(160deg, #3A3A38 0%, #1F1F1D 60%, #0F0F0F 100%);
    border-color: rgba(255,255,255,.08);
  }
  .img-ph.dark::after{ color: rgba(255,255,255,.55); }
  .img-ph.dark .corner-tag{ color: rgba(255,255,255,.6); }

  /* ── In-studio gallery ────────────────────────── */
  .gallery{ padding: clamp(40px, 5vw, 60px) 0;}
  .gallery-row{ display:grid; grid-template-columns: 1fr; gap: var(--sp-gap); }
  .gallery-row .img-ph{ aspect-ratio: 16/10;}
  .gallery-row .img-ph:nth-child(2){ aspect-ratio: 16/10;}
  @media (min-width: 768px){
    .gallery-row{ grid-template-columns: 1.2fr 1fr; }
    .gallery-row .img-ph:nth-child(2){ aspect-ratio: 4/5; }
  }

  /* Dynamic gallery image support */
  .gallery-row .img-ph.has-image .gallery-img{
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1; display: block;
  }
  .gallery-row .img-ph.has-image::before{
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,.38) 0%, transparent 35%, transparent 58%, rgba(15,15,15,.52) 100%);
    z-index: 2; pointer-events: none;
  }
  .gallery-row .img-ph.has-image .corner-tag{ z-index: 3; color: rgba(255,255,255,.9); }
  .gallery-row .img-ph.has-image .corner-tag::before{ background: var(--accent); }
  .gallery-row .img-ph.has-image::after{ z-index: 3; color: rgba(255,255,255,.72); }

  /* ══════════════════════════════════════════════
     CONTACT MODAL
  ══════════════════════════════════════════════ */
  .modal-overlay{
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(16px, 4vw, 40px);
    background: rgba(15,15,15,.75);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .modal-overlay.is-open{ opacity: 1; pointer-events: auto; }
  .modal-card{
    position: relative; display: grid; grid-template-columns: 1fr;
    width: 100%; max-width: 920px; max-height: 90svh; overflow-y: auto;
    border-radius: var(--radius); background: var(--surface-2);
    box-shadow: 0 40px 80px -20px rgba(15,15,15,.5);
    transform: scale(.96) translateY(16px);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    scrollbar-width: thin; scrollbar-color: var(--line) transparent;
  }
  .modal-overlay.is-open .modal-card{ transform: scale(1) translateY(0); }
  .modal-close{
    position: absolute; top: 16px; right: 16px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(15,15,15,.08); border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); transition: background .2s ease, color .2s ease; cursor: pointer;
  }
  .modal-close:hover{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .modal-left{
    background: var(--ink); color: var(--bg);
    padding: clamp(32px, 5vw, 52px) clamp(28px, 4vw, 44px);
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex; flex-direction: column; gap: 0;
  }
  .ml-label{ display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(239,233,221,.55); margin-bottom: 20px; }
  .ml-label .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(37,211,102,.7); flex: none; }
  .ml-headline{ font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.5vw, 42px); line-height: 1; letter-spacing: -.04em; color: var(--bg); margin-bottom: 16px; }
  .ml-body{ font-size: clamp(14px, 1.2vw, 15.5px); color: rgba(239,233,221,.65); line-height: 1.6; max-width: 34ch; margin-bottom: clamp(28px, 4vw, 40px); }
  .ml-trust{ display: flex; flex-direction: column; gap: 18px; padding-top: clamp(24px, 3vw, 32px); border-top: 1px solid rgba(255,255,255,.1); margin-bottom: clamp(24px, 3vw, 32px); }
  .ml-trust-item{ display: flex; align-items: baseline; gap: 10px; }
  .ml-stat{ font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.5vw, 30px); color: var(--bg); letter-spacing: -.04em; line-height: 1; white-space: nowrap; }
  .ml-stat-label{ font-size: 12px; color: rgba(239,233,221,.5); letter-spacing: .04em; }
  .ml-response{ display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(239,233,221,.5); letter-spacing: .02em; margin-top: auto; }
  .ml-resp-dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(37,211,102,.8); flex: none; animation: blink 2s ease-in-out infinite; }
  .modal-right{ padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 44px) clamp(32px, 4vw, 44px); }
  .contact-form{ display: flex; flex-direction: column; gap: 18px; }
  .cf-row{ display: flex; flex-direction: column; gap: 18px; }
  @media (min-width: 480px){ .cf-row--2{ flex-direction: row; } .cf-row--2 .cf-group{ flex: 1; min-width: 0; } }
  .cf-group{ display: flex; flex-direction: column; gap: 6px; }
  .cf-group label{ font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
  .cf-optional{ font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted-2); font-size: 11px; }
  .contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form select, .contact-form textarea{
    width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 14px; font-weight: 400;
    color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
    outline: none; transition: border-color .2s ease, box-shadow .2s ease; appearance: none; -webkit-appearance: none;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder{ color: var(--muted-2); }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{ border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,211,102,.12); }
  .contact-form select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6862' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
  }
  .contact-form select option{ color: var(--ink); background: white; }
  .contact-form textarea{ resize: vertical; min-height: 90px; }
  .cf-error{ font-size: 12px; color: #e84a4a; display: none; }
  .cf-error.visible{ display: block; }
  .cf-group.has-error input, .cf-group.has-error select, .cf-group.has-error textarea{ border-color: #e84a4a; box-shadow: 0 0 0 3px rgba(232,74,74,.1); }
  .cf-submit{ width: 100%; justify-content: center; margin-top: 4px; background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
  .cf-submit:hover{ background: var(--ink-soft); transform: translateY(-1px); }
  .cf-submit .arrow-bubble{ background: var(--accent); }
  .cf-submit:hover .arrow-bubble{ transform: rotate(-45deg); }
  .cf-submit-loading{ display: none; }
  .cf-submit.is-loading .cf-submit-text{ display: none; }
  .cf-submit.is-loading .cf-submit-loading{ display: inline; }
  .cf-submit.is-loading{ opacity: .7; pointer-events: none; }
  .success-toast{ position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease; }
  .success-toast.is-visible{ opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .toast-inner{ display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: var(--bg); padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 500; box-shadow: 0 16px 40px -8px rgba(15,15,15,.4); white-space: nowrap; }
  .toast-icon{ width: 28px; height: 28px; border-radius: 50%; background: rgba(37,211,102,.12); display: inline-flex; align-items: center; justify-content: center; flex: none; }
  @media (min-width: 768px){ .modal-card{ grid-template-columns: 1fr 1.1fr; } .modal-left{ border-radius: var(--radius) 0 0 var(--radius); } }
