/* Shared Kautilyan site styles (from Page 1) */

    /* ===================================================================
      CONFIG-DRIVEN VISIBILITY - controlled by JS CONFIG below
    =================================================================== */
    .pricing-section {
      display: block;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.08), transparent 50%),
        radial-gradient(ellipse 55% 45% at 0% 80%, rgba(240, 160, 48, 0.06), transparent 45%),
        var(--bg);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: #080810;
      color: #E8E8F0;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
    }
    .skip-link {
      position: absolute;
      left: 16px;
      top: -100px;
      z-index: 1000;
      padding: 12px 20px;
      background: var(--amber);
      color: #080810;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 8px;
      transition: top 0.15s ease;
    }
    .skip-link:focus { top: 16px; }
    button { cursor: pointer; font-family: var(--font-body); }
    img { max-width: 100%; display: block; }

    /* ===================================================================
      CSS VARIABLES
    =================================================================== */
    :root {
      --nav-height: 92px;
      --bg: #080810;
      --bg-card: #0F0F1C;
      --bg-card-2: #141428;
      --border: rgba(255,255,255,0.07);
      --border-hover: rgba(255,255,255,0.14);
      --text: #E8E8F0;
      --text-muted: #A8A8C8;
      --text-body: rgba(255, 255, 255, 0.85);
      --text-section: rgba(255, 255, 255, 0.78);
      --text-card: rgba(255, 255, 255, 0.72);
      --text-dim: #555570;
      --amber: #F0A030;
      --coral: #E05545;
      --violet: #8B5CF6;
      --green: #34D399;
      --gradient: linear-gradient(120deg, #F0A030, #E05545, #8B5CF6);
      --gradient-subtle: linear-gradient(120deg, rgba(240,160,48,0.15), rgba(224,85,69,0.15), rgba(139,92,246,0.15));
      --gradient-edge: linear-gradient(120deg, rgba(240,160,48,0.45), rgba(224,85,69,0.4), rgba(139,92,246,0.45));
      --gradient-glow: 0 0 48px rgba(240, 160, 48, 0.08), 0 0 80px rgba(139, 92, 246, 0.06);
      --glow-amber: 0 0 60px rgba(240,160,48,0.12);
      --glow-violet: 0 0 60px rgba(139,92,246,0.12);
      --radius: 14px;
      --radius-sm: 8px;
      --section-gap: 120px;
      --font-display: 'Bricolage Grotesque', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    /* ===================================================================
      TYPOGRAPHY
    =================================================================== */
    .display-xl {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.03em;
    }
    .display-lg {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 3.2vw + 0.75rem, 3.05rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.025em;
    }
    .display-md {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.35);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: inline-block;
    }
    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .amber-text { color: var(--amber); }
    .coral-text { color: var(--coral); }
    .violet-text { color: var(--violet); }

    /* ===================================================================
      LAYOUT
    =================================================================== */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }
    section {
      padding: 96px 64px;
    }
    section.hero {
      padding: calc(var(--nav-height) + 28px) 64px 48px;
      min-height: 100vh;
      min-height: 100dvh;
      box-sizing: border-box;
      display: flex;
      align-items: flex-start;
    }
    section.hero .hero-container {
      padding-top: 0;
    }
    section .container {
      padding-left: 0;
      padding-right: 0;
    }

    /* ===================================================================
      BACKGROUND ORBS (atmospheric depth)
    =================================================================== */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    .orb-1 {
      width: 600px; height: 600px;
      background: var(--amber);
      top: -200px; left: -200px;
    }
    .orb-2 {
      width: 500px; height: 500px;
      background: var(--violet);
      bottom: 20vh; right: -150px;
    }
    .orb-3 {
      width: 400px; height: 400px;
      background: var(--coral);
      top: 50vh; left: 30vw;
      opacity: 0.08;
    }
    .content-wrap { position: relative; z-index: 1; }

    /* ===================================================================
      NOISE TEXTURE OVERLAY
    =================================================================== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0;
      pointer-events: none;
      z-index: 0;
    }

    /* ===================================================================
      NAVBAR
    =================================================================== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      min-height: var(--nav-height);
      padding: 16px 0;
      box-sizing: border-box;
      background: rgba(8, 8, 16, 0.88);
      backdrop-filter: blur(16px);
      transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    #navbar.scrolled {
      background: rgba(8,8,16,0.85);
      backdrop-filter: blur(20px);
      border-color: var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -0.01em;
    }
    .nav-logo-icon {
      width: 34px; height: 34px;
      background: var(--gradient);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.02em;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-report-link {
      font-size: 0.85rem;
      padding: 10px 14px;
      white-space: nowrap;
    }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-cta .btn-primary.nav-book-solid,
    .nav-mobile-only .btn-primary.nav-book-solid {
      background: var(--gradient);
      color: #fff;
      border: none;
      padding: 13px 24px;
      min-height: 44px;
      font-weight: 700;
      box-shadow: 0 2px 20px rgba(240, 160, 48, 0.2), 0 4px 32px rgba(139, 92, 246, 0.12);
    }
    .nav-cta .btn-primary.nav-book-solid:hover,
    .nav-mobile-only .btn-primary.nav-book-solid:hover {
      opacity: 0.95;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(224, 85, 69, 0.2), 0 8px 40px rgba(139, 92, 246, 0.15);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 600;
      border: none;
      transition: all 0.2s;
    }
    .btn-primary {
      background: var(--gradient);
      color: white;
    }
    .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(240,160,48,0.25); }
    .btn-ghost {
      background: transparent;
      color: var(--text-muted);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
    .btn-lg {
      padding: 14px 28px;
      font-size: 0.95rem;
      border-radius: 10px;
    }
    .btn-xl {
      padding: 16px 36px;
      font-size: 1rem;
      border-radius: 12px;
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===================================================================
      HERO (single column)
    =================================================================== */
    .hero {
      text-align: left;
      box-sizing: border-box;
    }
    .hero-container {
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }
    .hero-intro-wrap {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 32px;
      width: 100%;
    }
    .hero-copy-block {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .hero-action-block {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 640px;
    }
    .hero-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(32px, 4.2vw, 52px);
      line-height: 1.14;
      letter-spacing: -0.02em;
      color: #fff;
    }
    .hero-title-accent {
      display: block;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-lead {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: clamp(15px, 1.55vw, 18px);
      line-height: 1.65;
      margin: 0;
      max-width: 580px;
      color: rgba(255, 255, 255, 0.72);
    }
    .hero-principle {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.04em;
      color: var(--amber);
      text-transform: none;
      margin: 0;
      padding: 14px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hero-cta-row {
      display: flex;
      flex-direction: row;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      margin: 0;
    }
    .btn-hero-primary,
    .btn-primary,
    .nav-book-solid,
    .cr-submit,
    .pricing-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 15px;
      padding: 14px 24px;
      border-radius: 8px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(240, 160, 48, 0.18), 0 12px 42px rgba(139, 92, 246, 0.14);
      transition: all 0.22s ease;
    }
    .btn-hero-primary:hover,
    .btn-primary:hover,
    .nav-book-solid:hover,
    .cr-submit:hover,
    .pricing-btn-primary:hover {
      transform: translateY(-2px);
      opacity: 0.94;
      box-shadow: 0 12px 36px rgba(224, 85, 69, 0.22), 0 16px 52px rgba(139, 92, 246, 0.18);
    }
    .btn-hero-secondary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(#080810, #080810) padding-box, var(--gradient) border-box;
      color: rgba(255, 255, 255, 0.88);
      border: 1px solid transparent;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      padding: 14px 20px;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 0 28px rgba(139, 92, 246, 0.08);
      transition: all 0.22s ease;
    }
    .btn-hero-secondary:hover,
    .btn-ghost:hover {
      color: #fff;
      background: linear-gradient(rgba(15, 15, 28, 0.94), rgba(15, 15, 28, 0.94)) padding-box, var(--gradient) border-box;
      transform: translateY(-1px);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 16px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: linear-gradient(rgba(15, 15, 28, 0.9), rgba(15, 15, 28, 0.9)) padding-box, var(--gradient) border-box;
      background-origin: border-box;
      background-clip: padding-box, border-box;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      margin: 0;
      box-shadow: 0 0 32px rgba(139, 92, 246, 0.12);
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gradient);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }
    .hero-headline {
      margin: 0;
      padding: 0;
    }
    .hero-trust-line {
      margin: 0;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.4);
    }
    .hero-headline { margin: 0; }
    #book-call,
    #request-call,
    #what-changes,
    #faq,
    #trust,
    #diagnosis,
    #why-kautilyan {
      scroll-margin-top: 100px;
    }
    .ui-mock {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    }
    .platform-mock .ui-mock {
      border: 1px solid transparent;
      background:
        linear-gradient(165deg, #12121f 0%, #080810 100%) padding-box,
        linear-gradient(120deg, rgba(240, 160, 48, 0.35), rgba(224, 85, 69, 0.25), rgba(139, 92, 246, 0.35)) border-box;
      background-origin: border-box;
      background-clip: padding-box, border-box;
      box-shadow: 0 24px 48px rgba(0,0,0,0.35), var(--gradient-glow);
    }
    .ui-mock-header {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--text-muted);
      background: rgba(0,0,0,0.35);
    }
    .ui-mock-body { padding: 8px 0; }
    .ui-mock-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
    }
    .ui-mock-row:last-child { border-bottom: none; }
    .ui-mock-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .ui-mock-dot.amber { background: var(--amber); box-shadow: 0 0 0 2px rgba(240,160,48,0.25); }
    .ui-mock-dot.coral { background: var(--coral); box-shadow: 0 0 0 2px rgba(224,85,69,0.25); }
    .ui-mock-dot.green { background: var(--green); box-shadow: 0 0 0 2px rgba(52,211,153,0.25); }
    .ui-mock-text {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.45;
    }
    .ui-mock-btn {
      font-size: 0.68rem;
      font-weight: 600;
      padding: 6px 10px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: var(--bg-card-2);
      color: var(--text);
      cursor: default;
      white-space: nowrap;
    }
    .ui-mock-footer {
      font-size: 0.72rem;
      color: var(--text-dim);
      padding: 10px 14px;
      border-top: 1px solid var(--border);
      background: rgba(0,0,0,0.2);
    }
    #pain {
      background:
        radial-gradient(ellipse 90% 55% at 50% -10%, rgba(240, 160, 48, 0.07), transparent 52%),
        radial-gradient(ellipse 50% 40% at 100% 40%, rgba(139, 92, 246, 0.06), transparent 50%),
        var(--bg);
    }
    #what-changes {
      background:
        radial-gradient(ellipse 70% 50% at 0% 20%, rgba(224, 85, 69, 0.06), transparent 45%),
        var(--bg);
    }
    .section-header .label { display: block; }
    .section-headline {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3.5vw, 48px);
      color: #fff;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 0;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }
    .pain-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: all 0.25s ease;
    }
    .pain-card:hover {
      border-color: rgba(249, 115, 22, 0.3);
      background: rgba(249, 115, 22, 0.04);
    }
    .pain-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(249, 115, 22, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
      flex-shrink: 0;
      color: #f97316;
    }
    .pain-card-icon svg {
      width: 20px;
      height: 20px;
      display: block;
    }
    .pain-card h3 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 18px;
      color: #fff;
      margin: 0;
    }
    .pain-card p {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
    }
    /* ===================================================================
      TODAY VS KAUTILYAN (visual comparison)
    =================================================================== */
    .compare-visual {
      margin-top: 8px;
    }
    .compare-visual-panels {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 20px;
      align-items: stretch;
    }
    .compare-panel {
      border-radius: 16px;
      padding: 24px 20px 20px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .compare-panel--today {
      background: rgba(224, 85, 69, 0.06);
      border-color: rgba(224, 85, 69, 0.22);
    }
    .compare-panel--kautilyan {
      background: rgba(240, 160, 48, 0.06);
      border-color: rgba(240, 160, 48, 0.28);
      box-shadow: 0 0 40px rgba(240, 160, 48, 0.08);
    }
    .compare-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .compare-panel-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .compare-panel--today .compare-panel-tag { color: var(--coral); }
    .compare-panel--kautilyan .compare-panel-tag { color: var(--amber); }
    .compare-panel-outcome {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
    }
    .compare-panel-outcome--slow {
      color: var(--coral);
      background: rgba(224, 85, 69, 0.12);
      border: 1px solid rgba(224, 85, 69, 0.25);
    }
    .compare-panel-outcome--fast {
      color: var(--amber);
      background: rgba(240, 160, 48, 0.12);
      border: 1px solid rgba(240, 160, 48, 0.3);
    }
    .compare-flow-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0;
      min-height: 56px;
    }
    .flow-node {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .flow-node svg {
      width: 20px;
      height: 20px;
    }
    .flow-node--chaos {
      background: rgba(224, 85, 69, 0.1);
      border: 1px dashed rgba(224, 85, 69, 0.4);
      color: rgba(255, 255, 255, 0.45);
      transform: rotate(var(--tilt, 0deg));
    }
    .flow-node--chaos:nth-child(1) { --tilt: -4deg; }
    .flow-node--chaos:nth-child(5) { --tilt: 3deg; }
    .flow-node--chaos:nth-child(9) { --tilt: -2deg; }
    .flow-node--clear {
      background: rgba(240, 160, 48, 0.12);
      border: 1px solid rgba(240, 160, 48, 0.35);
      color: var(--amber);
    }
    .flow-node--highlight {
      box-shadow: 0 0 20px rgba(240, 160, 48, 0.35);
      border-color: var(--amber);
    }
    .flow-connector {
      flex: 1;
      min-width: 6px;
      height: 2px;
      margin: 0 2px;
    }
    .flow-connector--broken {
      background: repeating-linear-gradient(90deg, rgba(224,85,69,0.5) 0, rgba(224,85,69,0.5) 4px, transparent 4px, transparent 8px);
      opacity: 0.7;
    }
    .flow-connector--solid {
      background: linear-gradient(90deg, rgba(240,160,48,0.4), rgba(139,92,246,0.5));
    }
    .compare-flow-labels {
      display: flex;
      justify-content: space-between;
      gap: 4px;
    }
    .compare-flow-labels span {
      flex: 1;
      text-align: center;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-dim);
      min-width: 0;
    }
    .compare-panel-caption {
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.55);
      margin: 0;
      text-align: center;
    }
    .compare-panel-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 48px;
    }
    .compare-panel-divider span {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 14px;
    }
    .compare-at-glance { margin-top: 8px; }
    .compare-callout {
      background: rgba(249, 115, 22, 0.08);
      border: 1px solid rgba(249, 115, 22, 0.2);
      border-radius: 10px;
      padding: 20px 28px;
      margin-top: 32px;
      text-align: center;
      max-width: 52rem;
      margin-left: auto;
      margin-right: auto;
    }
    .compare-callout p {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin: 0;
    }
    .compare-callout-accent {
      color: #f97316;
      font-weight: 600;
    }

    /* Compare checklist (icon rows) */
    .compare-checklist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 8px;
    }
    .compare-checklist-col {
      border-radius: 14px;
      padding: 22px 20px;
      border: 1px solid var(--border);
    }
    .compare-checklist-col--today {
      background: rgba(224, 85, 69, 0.06);
      border-color: rgba(224, 85, 69, 0.22);
    }
    .compare-checklist-col--kautilyan {
      background: rgba(240, 160, 48, 0.07);
      border-color: rgba(240, 160, 48, 0.28);
      box-shadow: 0 0 36px rgba(240, 160, 48, 0.07);
    }
    .compare-checklist-head {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .compare-checklist-col--today .compare-checklist-head { color: var(--coral); }
    .compare-checklist-col--kautilyan .compare-checklist-head { color: var(--amber); }
    .compare-checklist-rows {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .compare-checklist-rows li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.72);
    }
    .compare-mark {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
    }
    .compare-mark--no {
      background: rgba(224, 85, 69, 0.15);
      color: var(--coral);
      border: 1px solid rgba(224, 85, 69, 0.35);
    }
    .compare-mark--yes {
      background: rgba(52, 211, 153, 0.12);
      color: var(--green);
      border: 1px solid rgba(52, 211, 153, 0.35);
    }

    .section-intro {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--text-section);
      margin-top: 12px;
      max-width: 42rem;
    }
    .section-header .section-intro { margin-bottom: 0; }
    .hero-lead-block .hero-lead {
      margin-top: 14px;
    }
    .hero-lead-block .hero-lead:first-child {
      margin-top: 20px;
    }

    /* Proof-of-value path timeline */
    .path-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 40px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .path-stage {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 0;
      background: var(--bg-card);
      border-bottom: 1px solid var(--border);
    }
    .path-stage:last-child { border-bottom: none; }
    .path-stage-marker {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 36px;
      background: rgba(0, 0, 0, 0.2);
      border-right: 1px solid var(--border);
    }
    .path-stage-marker span {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      opacity: 0.35;
    }
    .path-stage-0 .path-stage-marker span { color: var(--green); opacity: 0.7; }
    .path-stage-1 .path-stage-marker span { color: var(--amber); opacity: 0.7; }
    .path-stage-2 .path-stage-marker span { color: var(--violet); opacity: 0.7; }
    .path-stage-3 .path-stage-marker span { color: var(--coral); opacity: 0.5; }
    .path-stage-body {
      padding: 32px 36px 36px 28px;
    }
    .path-stage-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 8px;
    }
    .path-stage-body h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .path-stage-lead {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .path-stage-list {
      list-style: none;
      margin: 0 0 16px;
      padding: 0;
    }
    .path-stage-list li {
      position: relative;
      padding: 6px 0 6px 20px;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .path-stage-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--amber);
      font-size: 0.75rem;
      font-weight: 700;
    }
    .path-stage-note {
      font-size: 0.82rem;
      color: var(--text-dim);
      font-style: italic;
      margin-bottom: 12px;
    }

    /* Content sections */
    .content-section {
      border-top: 1px solid var(--border);
    }
    .content-section--alt {
      background: rgba(255, 255, 255, 0.02);
    }
    .diagnosis-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
    }
    .diagnosis-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .diagnosis-list li {
      position: relative;
      padding: 10px 0 10px 22px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
      border-bottom: 1px solid var(--border);
    }
    .diagnosis-list li:last-child { border-bottom: none; }
    .diagnosis-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gradient);
    }
    .diagnosis-aside {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid rgba(240, 160, 48, 0.25);
      background: rgba(240, 160, 48, 0.06);
    }
    .diagnosis-aside p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .pattern-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .pattern-card {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--bg-card);
      transition: border-color 0.25s;
    }
    .pattern-card:hover { border-color: rgba(240, 160, 48, 0.25); }
    .pattern-card h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }
    .pattern-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }
    .compounds-body {
      max-width: 40rem;
    }
    .compounds-body p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .compounds-body p:last-child { margin-bottom: 0; }
    .compounds-body strong { color: var(--text); }
    .vendor-table-wrap {
      overflow-x: auto;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .vendor-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.78rem;
      min-width: 720px;
    }
    .vendor-table th,
    .vendor-table td {
      padding: 12px 14px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
      color: var(--text-muted);
      line-height: 1.45;
    }
    .vendor-table thead th {
      background: rgba(0, 0, 0, 0.35);
      color: rgba(255, 255, 255, 0.5);
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .vendor-table tbody tr:last-child td { border-bottom: none; }
    .vendor-table tbody td:first-child {
      font-weight: 600;
      color: rgba(255, 255, 255, 0.45);
      white-space: nowrap;
    }
    .vendor-table-highlight {
      background: rgba(240, 160, 48, 0.08);
      color: rgba(255, 255, 255, 0.88) !important;
      font-weight: 500;
    }
    .footer-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 22rem;
      margin: 0;
    }

    /* Loop visual (how it works) - legacy, unused */
    .loop-visual {
      margin-bottom: 48px;
      padding: 36px 28px 28px;
      border-radius: var(--radius);
      background:
        linear-gradient(165deg, rgba(20, 20, 40, 0.6) 0%, rgba(8, 8, 16, 0.9) 100%);
      border: 1px solid transparent;
      background-clip: padding-box;
      box-shadow: var(--gradient-glow);
      position: relative;
    }
    .loop-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: var(--gradient-edge);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    .loop-visual-eyebrow {
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 28px;
    }
    .loop-visual-track {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 8px;
      -webkit-overflow-scrolling: touch;
    }
    .loop-visual-track .loop-node {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      min-width: 72px;
      z-index: 1;
    }
    .loop-node-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-muted);
      transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
    }
    .loop-node-circle svg {
      width: 22px;
      height: 22px;
    }
    .loop-visual-track .loop-node--human .loop-node-circle {
      border-color: var(--amber);
      color: var(--amber);
      background: rgba(240, 160, 48, 0.12);
      box-shadow: 0 0 24px rgba(240, 160, 48, 0.3);
    }
    .loop-connector {
      flex: 0 0 auto;
      width: clamp(12px, 3vw, 40px);
      height: 2px;
      margin-top: 26px;
      background: linear-gradient(90deg, rgba(240,160,48,0.45), rgba(139,92,246,0.45));
      border-radius: 2px;
    }
    .loop-node-label {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.65);
      text-align: center;
      white-space: nowrap;
    }
    .loop-visual-track .loop-node--human .loop-node-label {
      color: var(--amber);
    }
    .loop-visual-caption {
      text-align: center;
      font-size: 14px;
      color: var(--text-muted);
      margin: 24px 0 0;
      line-height: 1.5;
    }

    /* ===================================================================
      HOW IT WORKS
    =================================================================== */
    .how-it-works {
      background:
        linear-gradient(180deg, rgba(8, 8, 16, 0.92) 0%, rgba(10, 10, 22, 0.96) 50%, rgba(8, 8, 16, 0.92) 100%),
        var(--gradient-subtle);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 1px 0 rgba(240, 160, 48, 0.06);
    }
    .stages {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: linear-gradient(120deg, rgba(240, 160, 48, 0.35), rgba(224, 85, 69, 0.35), rgba(139, 92, 246, 0.35));
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--gradient-glow);
    }
    .stage {
      background: var(--bg);
      padding: 40px 36px;
      position: relative;
    }
    .stage-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      opacity: 0.12;
      position: absolute;
      top: 24px; right: 24px;
    }
    .stage-label {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .stage-0 .stage-label { background: rgba(52,211,153,0.12); color: var(--green); }
    .stage-1 .stage-label { background: rgba(240,160,48,0.12); color: var(--amber); }
    .stage-2 .stage-label { background: rgba(139,92,246,0.12); color: var(--violet); }
    .stage h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.015em;
    }
    .stage-sub {
      font-size: 0.78rem;
      color: var(--text-dim);
      margin: -6px 0 12px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .stage-1 h3 { margin-bottom: 4px; }
    .stage p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .stage-items {
      list-style: none;
      margin-top: 20px;
    }
    .stage-items li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-muted);
      padding: 6px 0;
      border-top: 1px solid var(--border);
    }
    .stage-items li::before {
      content: '→';
      color: var(--amber);
      font-size: 0.8rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .stage-exec {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
    }
    .stage-exec strong {
      color: var(--amber);
      font-weight: 600;
    }
    .stage-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--amber);
      margin-top: 4px;
      transition: color 0.2s ease, gap 0.2s ease;
    }
    .stage-link:hover {
      color: #fff;
      gap: 8px;
    }

    /* ===================================================================
      PRICING (config-gated via JS)
    =================================================================== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .pricing-card {
      background: linear-gradient(165deg, rgba(18, 18, 32, 0.92) 0%, var(--bg-card) 55%, rgba(8, 8, 16, 0.98) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      padding: 24px 22px;
      position: relative;
      transition: all 0.3s;
      overflow: hidden;
      box-shadow: var(--gradient-glow);
    }
    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gradient);
      opacity: 0.35;
      transition: opacity 0.3s;
    }
    .pricing-card:hover { transform: translateY(-4px); border-color: rgba(240, 160, 48, 0.22); }
    .pricing-card:hover::before { opacity: 1; }
    .pricing-card.featured {
      border-color: rgba(240,160,48,0.3);
      background: linear-gradient(160deg, rgba(240,160,48,0.06), var(--bg-card));
    }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gradient);
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 100px;
    }
    .pricing-stage {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .pricing-amount {
      font-family: var(--font-display);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 8px;
    }
    .pricing-amount .rupee { font-size: 1.6rem; }
    .pricing-amount .num { font-size: 3rem; }
    .pricing-amount .suffix { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
    .pricing-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 14px;
      line-height: 1.55;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .pricing-features { list-style: none; margin-bottom: 18px; }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.8rem;
      color: var(--text-muted);
      padding: 4px 0;
    }
    .pricing-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pricing-exec-line {
      font-size: 0.74rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 10px 0 14px;
      padding: 10px 12px;
      background: rgba(240, 160, 48, 0.06);
      border-left: 3px solid rgba(240, 160, 48, 0.45);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .pricing-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 13px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text);
      transition: all 0.2s;
      box-sizing: border-box;
    }
    .pricing-btn:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); }
    .pricing-btn-primary {
      background: var(--gradient);
      border: none;
      color: white;
    }
    .pricing-btn-primary:hover { opacity: 0.9; box-shadow: 0 8px 24px rgba(240,160,48,0.2); }
    .pricing-note {
      text-align: center;
      margin-top: 32px;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    .pricing-note a { color: var(--amber); }

    /* ===================================================================
      CTA STRIP
    =================================================================== */
    .cta-strip {
      background: var(--bg);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .cta-strip-inner {
      text-align: center;
      padding: 0 0 24px;
    }
    .cta-strip-inner h2 { margin-bottom: 16px; }
    .cta-strip-inner p {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 40px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
    }
    .cta-strip-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cta-scarcity {
      margin-top: 20px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--amber);
      letter-spacing: 0.02em;
    }
    .book-call-form-wrap {
      max-width: 560px;
      margin: 0 auto;
      padding: 0 0 72px;
      text-align: left;
    }
    .book-call-form-wrap h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 8px;
      text-align: center;
    }
    .book-call-form-wrap > .sub {
      font-size: 0.88rem;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 24px;
      line-height: 1.55;
    }
    .call-request-form {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
    }
    .cr-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .cr-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 12px;
    }
    .cr-group.full { grid-column: 1 / -1; }
    .cr-label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
    }
    .cr-input, .cr-select, .cr-textarea {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--text);
      outline: none;
      width: 100%;
      transition: border-color 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }
    .cr-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'%3E%3Cpath fill='%237A7A9A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }
    .cr-input[type="date"] {
      color-scheme: dark;
    }
    .cr-textarea { min-height: 80px; resize: vertical; }
    .cr-input:focus, .cr-select:focus, .cr-textarea:focus { border-color: rgba(240,160,48,0.4); }
    .cr-submit {
      width: 100%;
      margin-top: 8px;
      padding: 14px;
      border-radius: 10px;
      border: none;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      background: var(--gradient);
      color: white;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .cr-submit:hover { opacity: 0.92; }
    .cr-submit:disabled { opacity: 0.5; cursor: not-allowed; }
    .cr-foot {
      font-size: 0.75rem;
      color: var(--text-dim);
      margin-top: 14px;
      text-align: center;
      line-height: 1.5;
    }
    .cr-slot-field {
      padding: 20px 22px;
      border-radius: 12px;
      background: linear-gradient(145deg, rgba(240, 160, 48, 0.07) 0%, rgba(139, 92, 246, 0.06) 55%, rgba(15, 15, 18, 0.4) 100%);
      border: 1px solid rgba(240, 160, 48, 0.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .cr-slot-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px 14px;
      margin-bottom: 8px;
    }
    label.cr-slot-title {
      font-family: var(--font-display);
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.2;
      cursor: pointer;
    }
    .cr-slot-badge {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--amber);
      background: rgba(240, 160, 48, 0.12);
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(240, 160, 48, 0.28);
      white-space: nowrap;
    }
    .cr-slot-lede {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0 0 14px;
      line-height: 1.55;
      max-width: 42ch;
    }
    .cr-slot-select {
      font-family: var(--font-display);
      font-size: 1.02rem;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.02em;
      padding: 14px 16px;
      border-radius: 10px;
      border-color: rgba(240, 160, 48, 0.22);
      background: rgba(0, 0, 0, 0.35);
    }
    .cr-slot-select:focus {
      border-color: rgba(240, 160, 48, 0.45);
      box-shadow: 0 0 0 3px rgba(240, 160, 48, 0.12);
    }

    /* ===================================================================
      TOAST (call request feedback)
    =================================================================== */
    .toast {
      position: fixed;
      bottom: 28px;
      right: 24px;
      padding: 14px 20px;
      border-radius: 10px;
      font-size: 0.88rem;
      font-weight: 500;
      z-index: 10050;
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.3s;
      max-width: 340px;
    }
    .toast.show { transform: translateY(0); opacity: 1; }
    .booking-form-error {
      margin: 0 0 12px;
      padding: 10px 12px;
      border-radius: 8px;
      font-size: 0.88rem;
      line-height: 1.45;
      color: var(--coral, #e05545);
      background: rgba(224, 85, 69, 0.12);
      border: 1px solid rgba(224, 85, 69, 0.35);
    }
    .booking-form-error[hidden] { display: none !important; }
    .booking-form-error a { color: var(--amber); text-decoration: underline; }
    .cr-input.is-invalid {
      border-color: rgba(224, 85, 69, 0.75);
      box-shadow: 0 0 0 1px rgba(224, 85, 69, 0.25);
    }
    .booking-cal-actions { margin-top: 8px; }
    .booking-cal-actions .cr-submit { width: 100%; }
    .toast-success { background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3); color: var(--green); }
    .toast-error { background: rgba(224,85,69,0.15); border: 1px solid rgba(224,85,69,0.3); color: var(--coral); }

    /* ===================================================================
      FAQ
    =================================================================== */
    .faq-section {
      border-top: 1px solid var(--border);
      background: var(--bg);
    }
    .faq-headline {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 40px);
      color: #fff;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 0;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }
    .faq-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 28px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .faq-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(249, 115, 22, 0.25);
    }
    .faq-card--full {
      grid-column: 1 / -1;
    }
    .faq-card-q {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 17px;
      color: #f97316;
      line-height: 1.3;
      margin: 0 0 12px;
    }
    .faq-card-a {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
    }
    .pricing-trust-banner {
      text-align: center;
      margin-top: 40px;
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.55;
    }
    .pricing-pilot-scarcity {
      margin: 4px 0 10px;
      font-size: 0.8rem;
      color: var(--text-dim);
      text-align: center;
    }
    .pricing-credit-banner {
      font-size: 0.82rem;
      color: var(--amber);
      font-weight: 600;
      margin: 12px 0 0;
      text-align: center;
    }

    /* ===================================================================
      FOOTER
    =================================================================== */
    .site-footer {
      margin-top: auto;
      padding: 56px 0 88px;
      background:
        linear-gradient(180deg, transparent 0%, rgba(15, 15, 28, 0.5) 100%),
        var(--bg);
      border-top: 1px solid var(--border);
    }
    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr) minmax(0, 1fr);
      gap: 48px 40px;
      align-items: start;
      padding-bottom: 40px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.01em;
      color: var(--text);
      width: fit-content;
      transition: opacity 0.2s;
    }
    .footer-logo:hover { opacity: 0.88; }
    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--gradient);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.02em;
      flex-shrink: 0;
    }
    .footer-tagline {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin: 0;
    }
    .site-footer .footer-nav {
      position: static;
      top: auto;
      left: auto;
      right: auto;
      z-index: auto;
      min-height: 0;
      padding: 0;
      background: none;
      backdrop-filter: none;
      border: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px 40px;
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin: 0 0 14px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col a {
      font-size: 0.88rem;
      color: rgba(232, 232, 240, 0.72);
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--text); }
    .footer-text-btn {
      background: none;
      border: none;
      padding: 0;
      font: inherit;
      color: var(--text-muted);
      cursor: pointer;
      text-align: left;
    }
    .footer-text-btn:hover { color: var(--text); }
    .nav-cta button.btn,
    .nav-links button.btn {
      font-family: inherit;
      cursor: pointer;
    }
    .footer-aside {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .footer-aside-label {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin: 0;
    }
    .footer-email {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--amber);
      transition: opacity 0.2s;
    }
    .footer-email:hover { opacity: 0.85; }
    .footer-legal {
      width: 100%;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .footer-legal a {
      color: var(--text-muted);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .footer-legal a:hover { color: var(--text); }
    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 4px;
      padding: 12px 20px;
      min-height: 44px;
      border: none;
      border-radius: 10px;
      background: var(--gradient);
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      font-size: 0.88rem;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(139, 92, 246, 0.2);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .footer-cta-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(139, 92, 246, 0.28);
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }
    .footer-copy {
      font-size: 0.8rem;
      color: rgba(232, 232, 240, 0.55);
      margin: 0;
    }
    .footer-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* ===================================================================
      ANIMATIONS
    =================================================================== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s, transform 0.6s;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .hero-badge::before { animation: none; }
      .orb { opacity: 0.06; filter: blur(80px); }
    }

    /* ===================================================================
      TRUST
    =================================================================== */
    .trust-section {
      border-bottom: 1px solid var(--border);
      background:
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(139, 92, 246, 0.07), transparent 50%),
        var(--bg);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .trust-grid-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (min-width: 1100px) {
      .trust-grid-4 { grid-template-columns: repeat(4, 1fr); }
    }
    .trust-card {
      background: linear-gradient(165deg, rgba(18, 18, 32, 0.9) 0%, var(--bg-card) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      padding: 20px 18px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--gradient-glow);
    }
    .trust-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gradient);
      opacity: 0.5;
    }
    .trust-card h4 {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
    .trust-card p {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.55;
    }
    .role-disclaimer {
      font-size: 0.72rem;
      color: var(--text-dim);
      margin-top: 14px;
      font-style: normal;
    }
    .nav-mobile-only { display: none; }

    /* Homepage v2 components */
    .hero-loop-wrap {
      margin: 0;
      padding: 22px 24px 20px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(165deg, rgba(18, 18, 32, 0.85), rgba(8, 8, 16, 0.9));
      box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
      max-width: 100%;
    }
    .hero-loop-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin: 0 0 16px;
      text-align: center;
    }
    .hero-loop-mini {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 6px 10px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-loop-step {
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.45);
      transition: all 0.3s ease;
    }
    .hero-loop-step.is-active {
      background: linear-gradient(rgba(15, 15, 28, 0.95), rgba(15, 15, 28, 0.95)) padding-box, var(--gradient) border-box;
      border: 1px solid transparent;
      color: #fff;
      box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
    }
    .hero-loop-arrow { color: rgba(255, 255, 255, 0.25); font-size: 0.65rem; }

    .drain-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .drain-card {
      background: linear-gradient(165deg, rgba(18, 18, 32, 0.92), var(--bg-card));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      padding: 22px 18px;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
    }
    .drain-card:hover,
    .drain-card.is-open {
      border-color: transparent;
      background: linear-gradient(rgba(12, 12, 22, 0.95), rgba(12, 12, 22, 0.95)) padding-box, var(--gradient) border-box;
      box-shadow: 0 0 36px rgba(139, 92, 246, 0.12);
    }
    .drain-card-icon {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
      color: var(--amber);
    }
    .drain-card-icon svg { width: 22px; height: 22px; }
    .drain-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .drain-short { font-size: 0.85rem; color: var(--text-card); line-height: 1.45; }
    .drain-detail {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
    }
    .drain-card.is-open .drain-detail,
    .drain-card:hover .drain-detail {
      max-height: 200px;
      opacity: 1;
    }

    #what-changes { padding-top: 72px; padding-bottom: 80px; }
    .transform-rows { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin: 0 auto; }
    .transform-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: center;
      padding: 16px 20px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(12, 12, 22, 0.6);
      opacity: 0.35;
      transform: translateY(12px);
      transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .transform-row.is-revealed {
      opacity: 1;
      transform: translateY(0);
      border-color: rgba(139, 92, 246, 0.25);
      box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
    }
    .transform-label {
      display: block;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 4px;
      color: var(--text-dim);
    }
    .transform-before { font-size: 0.9rem; color: rgba(255, 120, 100, 0.85); }
    .transform-after { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); }
    .transform-after .transform-label { color: var(--amber); }
    .transform-arrow {
      font-size: 1.25rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .tabs-wrap { margin-top: 8px; }
    .tabs-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .tabs-nav--scroll { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
    .tabs-btn {
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(12, 12, 22, 0.8);
      color: var(--text-muted);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .tabs-btn.is-active {
      background: var(--gradient);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    }
    .tabs-btn:hover:not(.is-active) { border-color: rgba(255, 255, 255, 0.25); color: #fff; }
    .tabs-panel { display: none; }
    .tabs-panel.is-active { display: block; }
    .tabs-lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 16px; max-width: 640px; }
    .tabs-outputs {
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .tabs-outputs li {
      padding-left: 20px;
      position: relative;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
    }
    .tabs-outputs li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.55em;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gradient);
    }
    .uc-messy, .uc-proof { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.55; }
    .uc-changes { list-style: none; margin: 0 0 16px; padding: 0; }
    .uc-changes li {
      padding: 8px 0 8px 18px;
      position: relative;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .uc-changes li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--amber);
      font-size: 0.75rem;
    }

    .diag-map {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 28px;
    }
    .diag-step {
      padding: 18px 16px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(12, 12, 22, 0.7);
      opacity: 0.45;
      transition: all 0.4s ease;
    }
    .diag-step.is-lit {
      opacity: 1;
      border-color: transparent;
      background: linear-gradient(rgba(12, 12, 22, 0.95), rgba(12, 12, 22, 0.95)) padding-box, var(--gradient) border-box;
      box-shadow: 0 0 28px rgba(139, 92, 246, 0.1);
    }
    .diag-num {
      display: inline-flex;
      width: 28px; height: 28px;
      align-items: center; justify-content: center;
      border-radius: 50%;
      background: var(--gradient);
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .diag-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin: 0; }
    .trace-card {
      position: relative;
      padding: 24px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 8, 16, 0.8);
      overflow: hidden;
      margin-bottom: 24px;
    }
    .trace-fill {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 0%;
      background: linear-gradient(90deg, rgba(240, 160, 48, 0.08), rgba(139, 92, 246, 0.12));
      animation: traceFill 8s ease-in-out infinite;
    }
    @keyframes traceFill {
      0%, 100% { width: 15%; }
      50% { width: 100%; }
    }
    .trace-steps {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      list-style: none;
      margin: 0; padding: 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
    }
    .diag-cta-wrap { text-align: center; }

    /* Ops compare - before / after */
    .ops-compare {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 20px;
      align-items: stretch;
      max-width: 1000px;
      margin: 0 auto;
    }
    .ops-compare-col {
      padding: 24px 22px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .ops-compare-col--before {
      background: linear-gradient(165deg, rgba(40, 20, 20, 0.35), rgba(12, 12, 22, 0.9));
      border-color: rgba(224, 85, 69, 0.2);
    }
    .ops-compare-col--after {
      background: linear-gradient(165deg, rgba(20, 24, 40, 0.5), rgba(12, 12, 22, 0.9));
      border-color: rgba(139, 92, 246, 0.25);
      box-shadow: 0 0 48px rgba(139, 92, 246, 0.08);
    }
    .ops-compare-head {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .ops-compare-badge {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      width: fit-content;
    }
    .ops-compare-badge--muted { background: rgba(224, 85, 69, 0.15); color: #f0a090; }
    .ops-compare-badge--good {
      background: linear-gradient(rgba(15, 15, 28, 0.9), rgba(15, 15, 28, 0.9)) padding-box, var(--gradient) border-box;
      border: 1px solid transparent;
      color: #fff;
    }
    .ops-compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .ops-compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.4;
    }
    .ops-icon {
      flex-shrink: 0;
      width: 22px; height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 0.7rem;
      font-weight: 700;
    }
    .ops-icon--bad { background: rgba(224, 85, 69, 0.2); color: #f0a090; }
    .ops-icon--good { background: rgba(139, 92, 246, 0.25); color: #c4b5fd; }
    .ops-compare-bridge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 48px;
    }
    .ops-bridge-line {
      width: 2px;
      flex: 1;
      min-height: 60px;
      background: linear-gradient(180deg, rgba(224, 85, 69, 0.4), var(--gradient));
      border-radius: 2px;
    }
    .ops-bridge-pill {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      white-space: nowrap;
    }

    /* Decision flow - clear left-to-right */
    .decision-flow {
      position: relative;
      padding: 28px 20px 24px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 8, 16, 0.75);
      margin-bottom: 24px;
    }
    .decision-flow-progress {
      position: absolute;
      left: 8%;
      right: 8%;
      top: 42px;
      height: 3px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 3px;
      overflow: hidden;
    }
    .decision-flow-progress-fill {
      display: block;
      height: 100%;
      width: 0%;
      background: var(--gradient);
      border-radius: 3px;
      transition: width 0.6s ease;
    }
    .decision-flow.is-animated .decision-flow-progress-fill { width: var(--flow-progress, 0%); }
    .decision-flow-steps {
      position: relative;
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
    }
    .decision-flow-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      opacity: 0.35;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .decision-flow-step.is-active,
    .decision-flow-step.is-done {
      opacity: 1;
      transform: translateY(0);
    }
    .dfs-num {
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 0.8rem;
      font-weight: 700;
      border: 2px solid rgba(255, 255, 255, 0.15);
      background: rgba(12, 12, 22, 0.9);
      color: rgba(255, 255, 255, 0.5);
      transition: all 0.35s ease;
    }
    .decision-flow-step.is-active .dfs-num,
    .decision-flow-step.is-done .dfs-num {
      border-color: transparent;
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
    }
    .dfs-label {
      font-size: 0.72rem;
      font-weight: 600;
      line-height: 1.3;
      color: rgba(255, 255, 255, 0.55);
      max-width: 100px;
    }
    .decision-flow-step.is-active .dfs-label,
    .decision-flow-step.is-done .dfs-label { color: rgba(255, 255, 255, 0.9); }

    /* Why Kautilyan visual */
    .why-visual {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .why-visual-row {
      display: grid;
      grid-template-columns: 120px 1fr 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 12px;
      background: rgba(12, 12, 22, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .why-visual-aspect {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-dim);
    }
    .why-pill {
      display: block;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 0.8rem;
      line-height: 1.35;
    }
    .why-pill--dim {
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .why-pill--highlight {
      background: linear-gradient(rgba(12, 12, 22, 0.95), rgba(12, 12, 22, 0.95)) padding-box, var(--gradient) border-box;
      border: 1px solid transparent;
      color: #fff;
      font-weight: 600;
    }
    .why-visual-legend {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      margin-top: 8px;
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .why-legend-k {
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Trust visual */
    .trust-visual {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .trust-visual-card {
      padding: 24px 18px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(165deg, rgba(18, 18, 32, 0.9), var(--bg-card));
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .trust-visual-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(139, 92, 246, 0.1);
    }
    .trust-visual-icon {
      font-size: 1.75rem;
      margin-bottom: 12px;
      line-height: 1;
    }
    .trust-visual-card h4 {
      font-family: var(--font-display);
      font-size: 0.95rem;
      margin-bottom: 8px;
    }
    .trust-visual-card p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 0;
    }

    .book-call-form-wrap { display: none !important; }

    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-card--accordion .faq-card-a { display: none; margin-top: 12px; }
    .faq-card--accordion.is-open .faq-card-a { display: block; }
    .faq-accordion-trigger {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      color: var(--text);
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      padding: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-accordion-trigger::after { content: '+'; color: var(--amber); font-size: 1.2rem; }
    .faq-card--accordion.is-open .faq-accordion-trigger::after { content: '−'; }
    .faq-show-more {
      margin-top: 20px;
      background: none;
      border: none;
      color: var(--amber);
      font-weight: 600;
      cursor: pointer;
      font-size: 0.9rem;
    }

    .booking-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .booking-modal.is-open { opacity: 1; visibility: visible; }
    .booking-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4, 4, 10, 0.85);
      backdrop-filter: blur(8px);
    }
    .booking-modal-panel {
      position: relative;
      width: 100%;
      max-width: 440px;
      max-height: 90vh;
      overflow-y: auto;
      background: linear-gradient(165deg, #12121f, #0a0a14);
      border: 1px solid transparent;
      background-clip: padding-box;
      border-image: linear-gradient(120deg, rgba(240, 160, 48, 0.4), rgba(139, 92, 246, 0.4)) 1;
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    }
    .booking-modal-close {
      position: absolute;
      top: 12px; right: 14px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
    }
    .booking-modal h2 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 8px; }
    .modal-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
    .modal-form .cr-group { margin-bottom: 14px; }
    .modal-form label { display: block; font-size: 0.75rem; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
    .modal-form input,
    .modal-form select,
    .modal-form textarea,
    .modal-form select,
    .modal-form input {
      width: 100%;
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(8, 8, 16, 0.8);
      color: var(--text);
      font-size: 16px;
      -webkit-appearance: none;
      appearance: none;
    }
    .modal-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'%3E%3Cpath fill='%237A7A9A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 32px;
    }
    .cr-foot a { color: var(--amber); text-decoration: underline; }
    .cr-hint {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin: 0 0 8px;
    }
    .cr-hint a { color: var(--amber); }
    .cr-file { padding: 10px 12px; }
    .booking-modal-panel--wide {
      max-width: 640px;
      max-height: 92vh;
      overflow-y: auto;
    }
    .diagnosis-intake-form .cr-textarea { min-height: 72px; }
    .modal-form .cr-submit { width: 100%; margin-top: 8px; }

    /* ===================================================================
      RESPONSIVE
    =================================================================== */
    @media (max-width: 768px) {
      section {
        padding: 48px 24px;
      }
      section.hero {
        padding: calc(var(--nav-height) + 20px) 24px 36px;
      }
      .hero-intro-wrap { gap: 28px; }
      .hero-copy-block { gap: 16px; }
      .hero-action-block { gap: 14px; }
      .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
        min-height: 0;
      }
      .compare-checklist {
        grid-template-columns: 1fr;
      }
      .diagnosis-grid {
        grid-template-columns: 1fr;
      }
      .pattern-grid {
        grid-template-columns: 1fr;
      }
      .path-stage {
        grid-template-columns: 48px 1fr;
      }
      .path-stage-body {
        padding: 24px 20px 28px 16px;
      }
      .hero-trust-strip {
        flex-direction: column;
        align-items: flex-start;
      }
      .pain-grid,
      .drain-grid {
        grid-template-columns: 1fr;
      }
      .diag-map { grid-template-columns: 1fr; }
      .ops-compare {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .ops-compare-bridge {
        flex-direction: row;
        min-width: 0;
        padding: 8px 0;
      }
      .ops-bridge-line {
        width: auto;
        flex: 1;
        min-height: 0;
        height: 2px;
      }
      .ops-bridge-pill {
        writing-mode: horizontal-tb;
        transform: none;
      }
      .decision-flow-steps {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .decision-flow-progress { display: none; }
      .why-visual-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .trust-visual { grid-template-columns: 1fr 1fr; }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
      }
      .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
      .footer-aside {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid var(--border);
      }
      .footer-cta-btn { width: 100%; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .site-footer {
        padding: 40px 0 calc(24px + env(safe-area-inset-bottom));
      }
      .hero-context { padding: 28px 24px 36px; }
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 1100px) {
      .drain-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 960px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
      }
      .footer-aside {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding-top: 24px;
        border-top: 1px solid var(--border);
      }
      .footer-cta-btn { margin-top: 0; }
      :root { --section-gap: 80px; }
      .stages { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .trust-grid-4 { grid-template-columns: 1fr; }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(8,8,16,0.97);
        padding: 8px 24px 20px;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
      }
      .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--border); }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a { display: block; }
      #navbar.mobile-open .nav-links { display: flex; }
      .nav-cta { display: none !important; }
      .nav-mobile-only { display: block; }
      .nav-mobile-only .btn { width: 100%; justify-content: center; margin-top: 10px; }
      .nav-mobile-only .btn:first-child { margin-top: 16px; }
      .nav-hamburger { display: flex; }
    }
    @media (max-width: 640px) {
      .container { padding-left: 18px; padding-right: 18px; }
      .display-lg {
        font-size: clamp(1.5rem, 5vw + 0.4rem, 2.15rem);
        line-height: 1.1;
      }
      .section-header { margin-bottom: 44px; }
      .hero-title {
        font-size: clamp(28px, 6vw, 44px);
        line-height: 1.12;
      }
      .hero-intro-wrap {
        max-width: 100%;
        text-align: left;
      }
      .hero-container {
        padding: 0;
      }
      .hero-cta-row {
        justify-content: flex-start;
      }
      .cta-strip-actions { flex-direction: column; }
      .trust-grid,
      .trust-visual { grid-template-columns: 1fr; }
      section.hero { padding: calc(var(--nav-height) + 16px) 20px 32px; }
      .hero-intro-wrap { gap: 24px; }
      .hero-copy-block { gap: 14px; }
      .hero-action-block { gap: 12px; }
      .hero-title { font-size: clamp(28px, 7vw, 40px); line-height: 1.16; }
      .hero-lead { font-size: 15px; line-height: 1.6; }
      .hero-loop-mini { gap: 4px 6px; }
      .hero-loop-step { padding: 5px 8px; font-size: 0.62rem; }
      .hero-loop-wrap { padding: 18px 16px; }
      .cr-row { grid-template-columns: 1fr; }
      .btn,
      .btn-primary,
      .btn-ghost,
      .btn-hero-primary,
      .btn-hero-secondary,
      .cr-submit,
      .nav-book-solid,
      .footer-cta-btn {
        min-height: 44px;
      }
      .hero-cta-row .btn-hero-primary,
      .hero-cta-row .btn-hero-secondary {
        width: 100%;
        justify-content: center;
      }
      .cr-input,
      .cr-select,
      .cr-textarea {
        font-size: 16px;
        min-height: 44px;
      }
    }

  