:root{
    --bg:#0A0910;
    --bg-1:#100D18;
    --bg-elevated:#161222;
    --bg-card:#18142299;
    --border:#2C2536;
    --border-soft:#221C2C;
    --text-0:#F5F2F8;
    --text-1:#B3AABE;
    --text-2:#786E88;
    --violet:#8B5CF6;
    --violet-2:#7C3AED;
    --magenta:#EC4C93;
    --grad: linear-gradient(120deg,#7C3AED 0%, #A855F7 45%, #EC4C93 100%);
    --grad-soft: linear-gradient(120deg, rgba(124,58,237,.18), rgba(236,76,147,.10));
    --radius:14px;
    --maxw:1180px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text-0);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  ::selection{ background:var(--violet-2); color:#fff; }
  a{color:inherit; text-decoration:none;}
  img,svg{display:block; max-width:100%;}
  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }
  h1,h2,h3,h4{ font-family:'Bricolage Grotesque',sans-serif; letter-spacing:-0.02em; line-height:1.05; font-weight:700; }
  .mono{ font-family:'IBM Plex Mono',monospace; }
  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--magenta);
    display:flex; align-items:center; gap:10px;
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:''; width:22px; height:1px; background:var(--magenta); display:inline-block;
  }
  section{ position:relative; }
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ===== NAV ===== */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:20px 0;
    transition:background .35s ease, border-color .35s ease, padding .35s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    background:rgba(10,9,16,.82);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border-soft);
    padding:14px 0;
  }
  nav{ display:flex; align-items:center; justify-content:space-between; }
  .logo{ display:flex; align-items:center; gap:12px; }
  .logo-mark{
    width:30px; height:30px; border-radius:8px;
    background:var(--grad);
    display:flex; align-items:center; justify-content:center;
    font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:14px; color:#0A0910;
    flex-shrink:0;
  }
  .logo-text{ font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:17px; letter-spacing:.01em;}
  .logo-sub{ font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:.14em; color:var(--text-2); text-transform:uppercase; display:block; margin-top:1px;}
  .nav-links{ display:flex; gap:36px; font-size:14px; color:var(--text-1); list-style:none; margin:0; padding:0; }
  .nav-links > li{ position:relative; list-style:none; }
  .nav-links a{ transition:color .2s ease; position:relative; }
  .nav-links a:hover{ color:var(--text-0); }

  /* desktop dropdown — child menus (any depth) */
  .nav-links .sub-menu{
    list-style:none; margin:0; padding:8px;
    position:absolute; top:calc(100% + 14px); left:0;
    min-width:210px;
    background:rgba(12,10,18,.97);
    border:1px solid var(--border-soft);
    border-radius:12px;
    backdrop-filter:blur(14px);
    box-shadow:0 20px 50px -20px rgba(0,0,0,.6);
    opacity:0; visibility:hidden; transform:translateY(6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
    z-index:50;
  }
  .nav-links li:hover > .sub-menu,
  .nav-links li:focus-within > .sub-menu{
    opacity:1; visibility:visible; transform:translateY(0);
  }
  .nav-links .sub-menu li{ position:relative; }
  .nav-links .sub-menu a{
    display:block; padding:10px 12px; border-radius:8px; font-size:13.5px; color:var(--text-1); white-space:nowrap;
  }
  .nav-links .sub-menu a:hover{ background:rgba(255,255,255,.06); color:var(--text-0); }
  .nav-links .sub-menu .sub-menu{ top:-9px; left:100%; }
  .nav-links > .menu-item-has-children > a::after{
    content:''; display:inline-block; width:6px; height:6px; margin-left:6px; margin-bottom:1px;
    border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
    transform:rotate(45deg); opacity:.6;
  }

  /* hamburger toggle — hidden on desktop, shown at the same breakpoint nav-links collapses */
  .nav-burger{
    display:none;
    width:38px; height:38px;
    border:1px solid var(--border);
    border-radius:10px;
    background:transparent;
    cursor:pointer;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    flex-shrink:0;
  }
  .nav-burger span{
    display:block; width:16px; height:1.5px; background:var(--text-0);
    transition:transform .3s ease, opacity .3s ease;
  }
  .nav-burger.is-open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2){ opacity:0; }
  .nav-burger.is-open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

  .mobile-menu{
    max-height:0;
    overflow:hidden;
    background:rgba(10,9,16,.97);
    backdrop-filter:blur(14px);
    transition:max-height .35s ease;
  }
  .mobile-menu.is-open{
    max-height:80vh;
    overflow-y:auto;
  }
  .mobile-menu .wrap{ padding-top:18px; padding-bottom:26px; display:flex; flex-direction:column; gap:6px; }
  .mobile-nav-links{ display:flex; flex-direction:column; list-style:none; margin:0; padding:0; }
  .mobile-nav-links li{ list-style:none; position:relative; }
  .mobile-nav-links a{
    display:block;
    padding:14px 34px 14px 4px;
    font-size:16px;
    color:var(--text-0);
    border-bottom:1px solid var(--border-soft);
  }
  .mobile-nav-links > li:last-child > a{ border-bottom:none; }

  /* mobile accordion — child menus (any depth) */
  .mobile-nav-links .sub-menu{
    list-style:none; margin:0; padding:0 0 0 16px;
    max-height:0; overflow:hidden;
    transition:max-height .35s ease;
  }
  .mobile-nav-links .sub-menu a{ font-size:14.5px; padding:12px 34px 12px 4px; }
  .mobile-nav-links li.submenu-open > .sub-menu{ max-height:1000px; }
  .mobile-nav-links .submenu-toggle{
    position:absolute; right:0; top:2px;
    width:36px; height:48px;
    display:flex; align-items:center; justify-content:center;
    background:none; border:none; color:var(--text-1); cursor:pointer;
  }
  .mobile-nav-links .submenu-toggle svg{ transition:transform .3s ease; }
  .mobile-nav-links li.submenu-open > .submenu-toggle svg{ transform:rotate(180deg); }

  body.menu-open{ overflow:hidden; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Inter',sans-serif; font-weight:600; font-size:14px;
    padding:13px 24px; border-radius:100px;
    border:1px solid transparent;
    cursor:pointer; transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--grad); color:#0A0910;
    box-shadow:0 0 0 0 rgba(139,92,246,0);
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 10px 30px -8px rgba(139,92,246,.55); }
  .btn-ghost{
    background:transparent; color:var(--text-0); border-color:var(--border);
  }
  .btn-ghost:hover{ border-color:var(--violet); color:#fff; }
  .btn-sm{ padding:10px 18px; font-size:13px; }

  /* ===== HERO ===== */
  .hero{
    padding:168px 0 100px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:'';
    position:absolute; inset:-10% -10% auto -10%;
    height:900px;
    background:
      radial-gradient(ellipse 60% 45% at 30% 8%, rgba(124,58,237,.35), transparent 60%),
      radial-gradient(ellipse 45% 40% at 78% 20%, rgba(236,76,147,.22), transparent 60%);
    filter:blur(10px);
    pointer-events:none;
    z-index:0;
  }
  .hero-grid{
    position:absolute; inset:0;
    background-image:linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
    background-size:64px 64px;
    -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
            mask-image:linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
    opacity:.5;
    z-index:0;
  }
  .hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.15fr .85fr; gap:60px; align-items:center; }
  .hero h1{ font-size:clamp(36px,4.6vw,58px); margin-bottom:22px; }
  .hero h1 em{ font-style:normal; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .hero p.lede{ font-size:18px; color:var(--text-1); max-width:520px; margin-bottom:36px; line-height:1.6; }
  .hero-ctas{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin-bottom:44px;}
  .hero-note{ font-size:13px; color:var(--text-2); font-family:'IBM Plex Mono',monospace; }
  .hero-stats{ display:flex; gap:36px; padding-top:28px; border-top:1px solid var(--border-soft); }
  .hero-stats div b{ display:block; font-family:'Bricolage Grotesque',sans-serif; font-size:26px; font-weight:700; }
  .hero-stats div span{ font-size:12px; color:var(--text-2); font-family:'IBM Plex Mono',monospace; letter-spacing:.04em; }

  /* signal panel */
  .signal-panel{
    background:linear-gradient(160deg, var(--bg-elevated), #120F1B);
    border:1px solid var(--border);
    border-radius:20px;
    padding:26px 26px 22px;
    position:relative;
    box-shadow:0 30px 80px -30px rgba(0,0,0,.7);
  }
  .signal-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
  .signal-head .dot-row{ display:flex; gap:6px; }
  .signal-head .dot-row span{ width:8px; height:8px; border-radius:50%; background:var(--border); }
  .signal-head .tag{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--violet); background:rgba(139,92,246,.12); padding:4px 10px; border-radius:100px; letter-spacing:.06em;}
  .signal-svg-wrap{ position:relative; height:190px; }
  .signal-caption{ display:flex; justify-content:space-between; margin-top:14px; font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--text-2); }
  .pulse-dot{ animation:pulseDot 2.2s ease-in-out infinite; transform-origin:center; }
  @keyframes pulseDot{ 0%,100%{ opacity:1; r:4;} 50%{ opacity:.35; r:8;} }
  .signal-line{ stroke-dasharray:600; stroke-dashoffset:600; animation:drawLine 2.4s cubic-bezier(.4,0,.2,1) forwards .3s; }
  @keyframes drawLine{ to{ stroke-dashoffset:0; } }

  /* ===== SECTION LABEL SYSTEM ===== */
  .section-head{ max-width:640px; margin-bottom:52px; }
  .section-head h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:16px; }
  .section-head p{ font-size:16px; color:var(--text-1); line-height:1.65; }
  .section-pad{ padding:110px 0; }
  .divider{ height:1px; background:linear-gradient(90deg, transparent, var(--border), transparent); }

  /* ===== QUALIFY SECTION ===== */
  .qualify{ background:var(--bg-1); }
  .qualify-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
  .qual-list{ display:flex; flex-direction:column; gap:0; margin:28px 0 34px; }
  .qual-item{ display:flex; align-items:flex-start; gap:14px; padding:15px 0; border-bottom:1px solid var(--border-soft); font-size:15.5px; color:var(--text-0); }
  .qual-item:first-child{ border-top:1px solid var(--border-soft); }
  .qual-check{
    width:20px; height:20px; border-radius:6px; flex-shrink:0; margin-top:1px;
    background:var(--grad-soft); border:1px solid rgba(139,92,246,.4);
    display:flex; align-items:center; justify-content:center;
  }
  .qual-check svg{ width:11px; height:11px; }
  .fit-line{ font-size:14px; color:var(--magenta); font-family:'IBM Plex Mono',monospace; margin-bottom:8px; }

  .flock{ position:relative; height:440px; }
  .flock svg{ position:absolute; }
  .flock-piece{ animation:drift 7s ease-in-out infinite; }
  @keyframes drift{ 0%,100%{ transform:translateY(0px) rotate(0deg);} 50%{ transform:translateY(-14px) rotate(3deg);} }

  /* ===== PILLARS (what we cover) ===== */
  .pillars-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border-soft); border:1px solid var(--border-soft); border-radius:16px; overflow:hidden; }
  .pillar{ background:var(--bg); padding:32px 26px; transition:background .25s ease; }
  .pillar:hover{ background:var(--bg-elevated); }
  .pillar-num{ font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--text-2); margin-bottom:22px; }
  .pillar-icon{ width:38px; height:38px; margin-bottom:20px; color:var(--violet); }
  .pillar h4{ font-size:18px; margin-bottom:14px; }
  .pillar ul{ list-style:none; display:flex; flex-direction:column; gap:9px; }
  .pillar li{ font-size:13.5px; color:var(--text-1); padding-left:14px; position:relative; }
  .pillar li::before{ content:''; position:absolute; left:0; top:7px; width:5px; height:5px; border-radius:50%; background:var(--magenta); }

  /* ===== DELIVERABLES ===== */
  .deliver{ background:var(--bg-1); }
  .deliver-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
  .deliver-list{ display:flex; flex-direction:column; gap:26px; }
  .deliver-item{ display:flex; gap:18px; }
  .deliver-icon{ width:42px; height:42px; border-radius:11px; background:var(--bg-elevated); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--violet); }
  .deliver-item h4{ font-size:16px; margin-bottom:5px; font-family:'Inter',sans-serif; font-weight:600; }
  .deliver-item p{ font-size:14px; color:var(--text-1); line-height:1.55; max-width:400px; }
  .deliver-quote{ margin-top:36px; padding:20px 22px; border-radius:12px; background:var(--grad-soft); border:1px solid rgba(139,92,246,.25); font-size:14.5px; color:var(--text-0); display:flex; gap:12px; align-items:flex-start; }

  .doc-stack{ position:relative; height:440px; display:flex; align-items:center; justify-content:center; }
  .doc{ position:absolute; border-radius:12px; box-shadow:0 30px 60px -20px rgba(0,0,0,.6); border:1px solid var(--border); }
  .doc-main{ width:230px; height:320px; background:linear-gradient(160deg,#1c1628,#0d0a14); z-index:3; padding:26px 22px; display:flex; flex-direction:column; }
  .doc-main .mono{ font-size:10px; color:var(--text-2); letter-spacing:.1em; }
  .doc-main h3{ font-size:26px; margin-top:auto; margin-bottom:auto; line-height:1.15; }
  .doc-main .bar{ height:3px; width:34px; background:var(--grad); border-radius:2px; margin-bottom:14px; }
  .doc-back1{ width:210px; height:290px; background:#151020; right:-30px; top:26px; z-index:1; transform:rotate(9deg); }
  .doc-back2{ width:200px; height:280px; background:#181120; left:-28px; bottom:10px; z-index:2; transform:rotate(-8deg); padding:20px; }
  .doc-back2 .chip{ width:60%; height:8px; background:var(--border); border-radius:4px; margin-bottom:10px;}
  .doc-back2 .chip.short{ width:40%; }

  /* ===== STRATEGIST ===== */
  .strategist-grid{ display:grid; grid-template-columns:.62fr 1fr; gap:64px; align-items:center; }
  .strategist-photo{
    aspect-ratio:3/3.6; border-radius:20px;
    background:
      radial-gradient(circle at 30% 20%, rgba(236,76,147,.5), transparent 55%),
      radial-gradient(circle at 75% 75%, rgba(124,58,237,.55), transparent 55%),
      linear-gradient(160deg,#1a1424,#0c0a12);
    border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden;
  }
  .strategist-photo .initial{ font-family:'Bricolage Grotesque',sans-serif; font-size:120px; font-weight:800; color:rgba(255,255,255,.9); mix-blend-mode:overlay; }
  .strategist-photo img.photo-fg{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:center;
    z-index:1;
  }
  .strategist-photo::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(10,9,16,.7)); z-index:2; }
  .strategist-tagrow{ position:absolute; bottom:20px; left:20px; right:20px; z-index:3; display:flex; gap:8px; flex-wrap:wrap; }
  .tag-pill{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; padding:6px 11px; border-radius:100px; background:rgba(10,9,16,.55); border:1px solid rgba(255,255,255,.15); backdrop-filter:blur(6px); }
  .strategist-copy .eyebrow{ margin-bottom:14px; }
  .strategist-copy h2{ font-size:clamp(26px,3vw,36px); margin-bottom:8px; }
  .strategist-copy h2 span{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .strategist-copy > p{ font-size:15.5px; color:var(--text-1); line-height:1.7; max-width:520px; margin:16px 0 30px; }
  .cred-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border-soft); border:1px solid var(--border-soft); border-radius:14px; overflow:hidden; }
  .cred{ background:var(--bg-elevated); padding:20px 16px; }
  .cred-icon{ width:22px; height:22px; color:var(--magenta); margin-bottom:12px; }
  .cred h5{ font-size:13px; font-family:'Inter',sans-serif; font-weight:600; margin-bottom:6px; line-height:1.3;}
  .cred p{ font-size:11.5px; color:var(--text-2); line-height:1.4; }

  /* ===== NOT FOR ===== */
  .notfor{ background:var(--bg-1); }
  .notfor-grid{ display:grid; grid-template-columns:.85fr 1fr; gap:56px; align-items:center; }
  .notfor-copy h2{ font-size:clamp(26px,3vw,38px); margin-bottom:16px; }
  .notfor-copy p{ font-size:15px; color:var(--text-1); line-height:1.7; margin-bottom:14px; max-width:420px; }
  .notfor-card{ background:var(--bg-elevated); border:1px solid var(--border); border-radius:16px; padding:8px; }
  .no-item{ display:flex; align-items:center; gap:14px; padding:16px 18px; border-bottom:1px solid var(--border-soft); font-size:14.5px; }
  .no-item:last-child{ border-bottom:none; }
  .no-x{ width:22px; height:22px; border-radius:6px; background:rgba(236,76,147,.12); border:1px solid rgba(236,76,147,.35); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--magenta); }
  .no-x svg{ width:10px; height:10px; }

  /* ===== FAQ ===== */
  .faq-grid{ display:grid; grid-template-columns:.7fr 1fr; gap:60px; }
  .faq-item{ border-bottom:1px solid var(--border-soft); }
  .faq-q{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; cursor:pointer; font-size:16px; font-weight:600; font-family:'Bricolage Grotesque',sans-serif; gap:20px; }
  .faq-q .plus{ width:26px; height:26px; border-radius:50%; border:1px solid var(--border); flex-shrink:0; display:flex; align-items:center; justify-content:center; position:relative; transition:transform .3s ease, border-color .3s ease; }
  .faq-q .plus::before,.faq-q .plus::after{ content:''; position:absolute; background:var(--text-1); transition:background .3s ease; }
  .faq-q .plus::before{ width:10px; height:1.4px; }
  .faq-q .plus::after{ width:1.4px; height:10px; }
  .faq-item.open .plus{ transform:rotate(135deg); border-color:var(--violet); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
  .faq-a p{ font-size:14.5px; color:var(--text-1); line-height:1.7; padding-bottom:22px; max-width:600px; }

  /* ===== PRICING ===== */
  .pricing-grid{ display:grid; grid-template-columns:.9fr 1fr; gap:60px; align-items:center; }
  .price-card{ background:linear-gradient(160deg,var(--bg-elevated),#120E1B); border:1px solid var(--border); border-radius:20px; padding:40px; position:relative; overflow:hidden; }
  .price-card::before{ content:''; position:absolute; top:-40%; right:-20%; width:60%; height:80%; background:var(--grad); filter:blur(90px); opacity:.28; }
  .price-top{ position:relative; z-index:2; display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:26px; }
  .price-top .tag{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--magenta); background:rgba(236,76,147,.12); padding:5px 11px; border-radius:100px; }
  .price-card h3{ font-size:24px; margin-bottom:20px; position:relative; z-index:2; }
  .price-amount{ display:flex; align-items:baseline; gap:10px; margin-bottom:6px; position:relative; z-index:2; }
  .price-amount b{ font-family:'Bricolage Grotesque',sans-serif; font-size:52px; font-weight:800; }
  .price-amount span{ font-size:13px; color:var(--text-2); font-family:'IBM Plex Mono',monospace; }
  .price-included{ list-style:none; margin:26px 0 30px; display:flex; flex-direction:column; gap:12px; position:relative; z-index:2; }
  .price-included li{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-0); }
  .price-included svg{ width:16px; height:16px; color:var(--violet); flex-shrink:0; }
  .pricing-copy h2{ font-size:clamp(26px,3vw,38px); margin-bottom:16px; }
  .pricing-copy p{ font-size:15px; color:var(--text-1); line-height:1.7; margin-bottom:24px; max-width:440px; }
  .assure{ display:flex; gap:14px; align-items:flex-start; padding:18px 0; border-top:1px solid var(--border-soft); }
  .assure svg{ width:20px; height:20px; color:var(--violet); flex-shrink:0; margin-top:2px; }
  .assure b{ display:block; font-size:14.5px; margin-bottom:3px; }
  .assure span{ font-size:13px; color:var(--text-2); }

  /* ===== BOOKING ===== */
  .booking{ background:var(--bg-1); }
  .booking-grid{ display:grid; grid-template-columns:.9fr 1fr; gap:60px; align-items:center; }
  .book-list{ display:flex; flex-direction:column; gap:24px; margin-top:30px; }
  .book-row{ display:flex; gap:16px; }
  .book-icon{ width:38px; height:38px; border-radius:10px; background:var(--bg-elevated); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--magenta); flex-shrink:0; }
  .book-row h4{ font-size:15px; margin-bottom:4px; font-family:'Inter',sans-serif; font-weight:600; }
  .book-row p{ font-size:13.5px; color:var(--text-1); line-height:1.5; }

  .cal-card{ background:var(--bg-elevated); border:1px solid var(--border); border-radius:20px; padding:26px; }
  .cal-badge{ display:flex; align-items:center; gap:10px; padding-bottom:18px; border-bottom:1px solid var(--border-soft); margin-bottom:18px; }
  .cal-badge .sq{ width:34px; height:34px; border-radius:9px; background:var(--grad); }
  .cal-badge b{ display:block; font-size:14px; }
  .cal-badge span{ font-size:12px; color:var(--text-2); }
  .cal-title{ font-size:17px; margin-bottom:14px; font-weight:700; }
  .cal-meta{ display:flex; gap:16px; margin-bottom:20px; flex-wrap:wrap; }
  .cal-meta div{ display:flex; align-items:center; gap:6px; font-size:12.5px; color:var(--text-1); }
  .cal-meta svg{ width:14px; height:14px; color:var(--text-2); }
  .cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:6px; margin-bottom:18px; }
  .cal-grid .d{ aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:12px; border-radius:8px; color:var(--text-2); }
  .cal-grid .d.avail{ background:var(--bg-card); color:var(--text-0); border:1px solid var(--border); cursor:pointer; }
  .cal-grid .d.sel{ background:var(--grad); color:#0A0910; font-weight:700; }
  .cal-slots{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
  .slot{ font-family:'IBM Plex Mono',monospace; font-size:12px; padding:8px 12px; border-radius:8px; border:1px solid var(--border); color:var(--text-1); }
  .slot.sel{ border-color:var(--violet); color:#fff; background:rgba(139,92,246,.12); }

  /* ===== FOOTER ===== */
  footer{ padding:60px 0 36px; border-top:1px solid var(--border-soft); }
  .foot-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; flex-wrap:wrap; gap:20px; }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid var(--border-soft); font-size:12.5px; color:var(--text-2); flex-wrap:wrap; gap:14px; }
  .foot-links{ display:flex; gap:26px; }
  .foot-links a:hover{ color:var(--text-0); }

  /* ===== RESPONSIVE ===== */
  @media (max-width:980px){
    .wrap{ padding:0 22px; }
    .nav-links{ display:none; }
    .nav-burger{ display:flex; }
    .hero{ padding:140px 0 70px; }
    .hero-inner, .qualify-grid, .deliver-grid, .strategist-grid, .notfor-grid, .faq-grid, .pricing-grid, .booking-grid{ grid-template-columns:1fr; }
    .pillars-grid{ grid-template-columns:1fr 1fr; }
    .cred-row{ grid-template-columns:1fr 1fr; }
    .flock{ height:260px; margin-top:20px; }
    .doc-stack{ height:340px; margin-top:20px; }
    .strategist-photo{ max-width:280px; margin:0 auto; }
    .section-pad{ padding:76px 0; }
  }
  @media (max-width:560px){
    .pillars-grid{ grid-template-columns:1fr; }
    .cred-row{ grid-template-columns:1fr; }
    .hero-stats{ gap:22px; flex-wrap:wrap; }
    .price-amount b{ font-size:42px; }
  }
  @media (prefers-reduced-motion: reduce){
    *{ animation:none !important; transition:none !important; }
  }
