/* === RIDGELINE CYBER DEFENCE — GLOBAL STYLES (LIGHT THEME) === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg-primary:#f5f3ed;--bg-secondary:#edeae2;--bg-card:#e3dacc;--bg-card-hover:#d8d0c2;
  --border:#d4cbbe;--border-light:#c4b9a8;
  --text-primary:#111111;--text-secondary:#1a1612;--text-muted:#3d3224;
  --blue:#0F2B3C;--blue-dark:#0A1F2D;--blue-mid:#1A4A5C;
  --teal:#2A7D6B;--teal-dark:#1F6354;
  --accent:#E86A2A;--accent-dark:#C7551F;--accent-light:#FBEEE7;
  --green:#059669;--amber:#d97706;--red:#dc2626;--purple:#7c3aed;--purple-dark:#6d28d9;
  --orange:#E86A2A;--orange-dark:#C7551F;--gold:#b45309;
  --font-display:'Fraunces',Georgia,serif;--font-body:'DM Sans',system-ui,sans-serif;
  --max-w:1200px;--nav-h:64px;
  --shadow-sm:0 1px 2px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.03);
  --shadow-md:0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-hover:0 8px 24px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  --radius:12px;--radius-lg:16px;--radius-sm:8px;
  --ease-out:cubic-bezier(0.16, 1, 0.3, 1);
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--bg-primary);color:var(--text-primary);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:clip}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* === NAV === */
.nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,0.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-inner{max-width:var(--max-w);margin:0 auto;padding:0 24px;height:var(--nav-h);display:flex;align-items:center;justify-content:space-between}
.nav-brand{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:700;font-size:18px;color:var(--text-primary);letter-spacing:-0.3px}
.nav-brand .icon{width:32px;height:32px;background:linear-gradient(135deg,var(--blue),var(--blue-mid));border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:16px;color:#fff;font-weight:800}
.nav-links{display:flex;align-items:center;gap:6px}
.nav-link{font-size:14px;color:var(--text-secondary);font-weight:600;transition:color .2s;padding:8px 12px;border-radius:6px;background:none;border:none;cursor:pointer;font-family:inherit}
.nav-link:hover,.nav-link.active{color:var(--text-primary)}
.nav-links .cta-btn{background:var(--accent);color:#fff;padding:8px 18px;border-radius:6px;font-weight:600;font-size:14px;transition:all .25s var(--ease-out);margin-left:8px}
.nav-links .cta-btn:hover{background:var(--accent-dark);transform:translateY(-1px)}
.currency-toggle{display:flex;align-items:center;border:1px solid var(--border);border-radius:6px;overflow:hidden;margin-left:4px}
.currency-btn{padding:5px 10px;border:none;background:transparent;font-size:12px;font-weight:700;color:var(--text-muted);cursor:pointer;transition:all .2s;font-family:var(--font-body);line-height:1;letter-spacing:0.02em}
.currency-btn:hover{color:var(--text-primary)}
.currency-btn.active{background:var(--blue);color:#fff}
.mobile-toggle{display:none;align-items:center;justify-content:center;background:rgba(232,106,42,0.12);border:1px solid rgba(232,106,42,0.4);border-radius:6px;color:#E86A2A;font-size:24px;cursor:pointer;width:44px;height:44px;padding:0;transition:background .15s,border-color .15s}
.mobile-toggle:hover,.mobile-toggle:focus-visible{background:rgba(232,106,42,0.2);border-color:rgba(232,106,42,0.7);outline:none}
.mobile-toggle:active{background:rgba(232,106,42,0.3)}

/* === NAV DROPDOWNS === */
.nav-dropdown{position:relative}
.dropdown-trigger{display:flex;align-items:center;gap:4px}
.dropdown-trigger .arrow{font-size:10px;transition:transform .2s;color:var(--text-muted)}
.nav-dropdown.active .dropdown-trigger .arrow{transform:rotate(180deg)}
.nav-dropdown.active .dropdown-trigger{color:var(--text-primary)}
.dropdown-menu{visibility:hidden;opacity:0;pointer-events:none;position:absolute;top:100%;left:50%;transform:translateX(-50%);min-width:300px;background:var(--bg-primary);border:1px solid var(--border);border-radius:var(--radius-lg);padding:8px;padding-top:16px;box-shadow:var(--shadow-lg);transition:opacity .2s var(--ease-out),visibility .2s}
.nav-dropdown.active .dropdown-menu{visibility:visible;opacity:1;pointer-events:auto}
.dropdown-item{display:block;padding:12px 14px;border-radius:6px;transition:background .15s}
.dropdown-item:hover{background:var(--bg-secondary)}
.dropdown-label{display:block;font-size:14px;font-weight:600;color:var(--text-primary);margin-bottom:2px}
.dropdown-desc{display:block;font-size:12px;color:var(--text-muted);line-height:1.4}

/* === SHARED SECTION === */
.section{padding:80px 24px}
.section-inner{max-width:var(--max-w);margin:0 auto}
.section-label{font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;color:var(--accent)}
.section-title{font-family:var(--font-display);font-size:clamp(28px,3.5vw,40px);font-weight:700;line-height:1.2;letter-spacing:-0.5px;margin-bottom:12px}
.section-sub{color:var(--text-secondary);font-size:16px;max-width:700px;line-height:1.7;margin-bottom:48px}
.section-bg{background:var(--bg-secondary);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}

/* === BUTTONS === */
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:var(--radius-sm);font-size:15px;font-weight:600;transition:all .25s var(--ease-out);border:none;cursor:pointer}
.btn-primary,.btn-blue{background:var(--blue);color:#fff;box-shadow:var(--shadow-sm)}.btn-primary:hover,.btn-blue:hover{background:var(--blue-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.btn-teal{background:var(--teal);color:#fff;box-shadow:var(--shadow-sm)}.btn-teal:hover{background:var(--teal-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.btn-purple{background:var(--purple);color:#fff;box-shadow:var(--shadow-sm)}.btn-purple:hover{background:var(--purple-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.btn-orange{background:var(--orange);color:#fff;box-shadow:var(--shadow-sm)}.btn-orange:hover{background:var(--orange-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.btn-green{background:var(--green);color:#fff;box-shadow:var(--shadow-sm)}.btn-green:hover{background:#047857;transform:translateY(-2px);box-shadow:var(--shadow-hover)}
.btn-outline{background:transparent;color:var(--text-primary);border:1px solid var(--border)}.btn-outline:hover{border-color:var(--blue);color:var(--blue);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-gold{background:linear-gradient(135deg,var(--gold),var(--amber));color:#fff}

/* === HERO (shared base) === */
.hero{position:relative;overflow:hidden;padding:80px 24px 60px}
.hero-inner{max-width:var(--max-w);margin:0 auto;position:relative;z-index:1}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--bg-secondary);border:1px solid var(--border);border-radius:20px;padding:6px 16px;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:24px}
.hero h1{font-family:var(--font-display);font-size:clamp(32px,5vw,52px);font-weight:800;line-height:1.15;letter-spacing:-1px;margin-bottom:20px}
.hero h1 .accent{color:var(--blue)}
.hero-sub{font-size:clamp(16px,2vw,18px);color:var(--text-secondary);max-width:680px;line-height:1.7;margin-bottom:32px}
.hero-center{text-align:center}.hero-center .hero-sub{margin-left:auto;margin-right:auto}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:32px}
.hero-center .hero-ctas{justify-content:center}
.hero-trust{display:flex;flex-wrap:wrap;gap:16px}
.hero-center .hero-trust{justify-content:center}
.trust-pill{background:var(--bg-secondary);border:1px solid var(--border);border-radius:6px;padding:6px 14px;font-size:12px;font-weight:600}
.trust-badge{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-muted);font-weight:500}
.trust-badge .dot{width:6px;height:6px;border-radius:50%}

/* === TIER / PRODUCT CARDS === */
.tier-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:48px}
.tier-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-bottom:48px}
.tier-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;position:relative;transition:all .3s var(--ease-out);box-shadow:var(--shadow-sm)}
.tier-card:hover{border-color:var(--border-light);transform:translateY(-4px);box-shadow:var(--shadow-hover)}
.tier-card.featured{border-color:var(--accent)}
.tier-card.featured::before{content:'★ RECOMMENDED';position:absolute;top:-12px;left:20px;background:linear-gradient(135deg,var(--gold),var(--amber));color:#fff;font-size:10px;font-weight:700;letter-spacing:1px;padding:4px 12px;border-radius:4px}
.tier-card .tier-name{font-size:11px;color:var(--text-muted);font-weight:600;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:6px}
.tier-card h3{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:4px}
.tier-card .tagline{font-size:13px;color:var(--text-secondary);margin-bottom:16px;line-height:1.5}
.tier-card .price{font-family:var(--font-display);font-size:36px;font-weight:800;margin-bottom:2px}
.tier-card .price .cur{font-size:20px;vertical-align:super;margin-right:2px}
.tier-card .price-note{font-size:12px;color:var(--text-muted);margin-bottom:20px}
.tier-card .stat-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px}
.tier-card .stat{background:var(--bg-secondary);border-radius:6px;padding:8px;text-align:center}
.tier-card .stat .num{font-size:18px;font-weight:700;color:var(--blue)}
.tier-card.featured .stat .num{color:var(--accent)}
.tier-card .stat .lbl{font-size:10px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px}
.tier-card .doc-count{background:var(--bg-secondary);border-radius:6px;padding:10px;text-align:center;margin-bottom:16px}
.tier-card .doc-count .num{font-size:22px;font-weight:700;color:var(--purple)}
.tier-card .doc-count .lbl{font-size:10px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px}
.tier-card ul{list-style:none;margin-bottom:20px}
.tier-card ul li{font-size:13px;color:var(--text-secondary);padding:5px 0;display:flex;align-items:flex-start;gap:7px;line-height:1.5}
.tier-card ul li .ck{color:var(--green);font-weight:700;flex-shrink:0}
.tier-card ul li .dash{color:var(--text-muted);flex-shrink:0}
.buy-btn{display:block;width:100%;text-align:center;padding:12px;border-radius:8px;font-size:14px;font-weight:600;transition:all .2s;border:none;cursor:pointer}
.buy-btn.blue{background:var(--blue);color:#fff}.buy-btn.blue:hover{background:var(--blue-dark)}
.buy-btn.teal{background:var(--teal);color:#fff}.buy-btn.teal:hover{background:var(--teal-dark)}
.buy-btn.purple{background:var(--purple);color:#fff}.buy-btn.purple:hover{background:var(--purple-dark)}
.buy-btn.orange{background:var(--orange);color:#fff}.buy-btn.orange:hover{background:var(--orange-dark)}
.buy-btn.green{background:var(--green);color:#fff}.buy-btn.green:hover{background:#047857}
.buy-btn.gold{background:linear-gradient(135deg,var(--gold),var(--amber));color:#fff}
.buy-btn.outline{background:transparent;border:1px solid var(--border);color:var(--text-primary)}.buy-btn.outline:hover{border-color:var(--blue);color:var(--blue)}
.guarantee{text-align:center;font-size:11px;color:var(--text-muted);margin-top:10px}

/* === COMPARISON TABLE === */
.cmp-table{width:100%;border-collapse:collapse;margin-bottom:40px;font-size:14px}
.cmp-table th,.cmp-table td{padding:10px 14px;text-align:left;border-bottom:1px solid var(--border)}
.cmp-table th{font-size:11px;color:var(--text-muted);letter-spacing:1px;text-transform:uppercase;font-weight:600;border-bottom:2px solid var(--border)}
.cmp-table .col-center{text-align:center;width:120px}
.cmp-table .col-highlight{text-align:center;width:120px;background:rgba(8,145,178,0.06)}
.cmp-table .check{color:var(--green);font-weight:700}.cmp-table .dash{color:var(--text-muted)}
.cmp-table .feature{color:var(--text-secondary)}

/* === FEATURE GRIDS === */
.feat-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:48px}
.feat-card{display:flex;gap:12px;padding:16px;background:var(--bg-card);border:1px solid var(--border);border-radius:8px;box-shadow:var(--shadow-sm)}
.feat-card .icon{color:var(--blue);font-size:18px;flex-shrink:0;margin-top:2px}
.feat-card h4{font-size:14px;font-weight:600;margin-bottom:4px}
.feat-card p{font-size:13px;color:var(--text-muted);line-height:1.5}

/* === FOLDER CARDS === */
.folder-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:40px}
.folder-card{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:20px;border-top:3px solid var(--blue);transition:border-color .2s,transform .2s,box-shadow .2s;box-shadow:var(--shadow-sm)}
.folder-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.folder-card .top{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:8px}
.folder-card h4{font-size:14px;font-weight:700}
.folder-card .count{font-size:14px;font-weight:700;color:var(--blue)}
.folder-card p{font-size:13px;color:var(--text-muted);line-height:1.5}

/* === STATS BAR === */
.stats-bar{background:var(--bg-secondary);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:32px 24px}
.stats-inner{max-width:var(--max-w);margin:0 auto;display:flex;justify-content:center;gap:48px;flex-wrap:wrap}
.stat-item{text-align:center}
.stat-item .num{font-family:var(--font-display);font-size:32px;font-weight:800;color:var(--blue)}
.stat-item .label{font-size:12px;color:var(--text-muted);letter-spacing:1px;text-transform:uppercase;margin-top:2px}

/* === CHIPS / INSIDE STRIP === */
.inside-strip{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-bottom:40px}
.inside-chip{background:var(--bg-secondary);border:1px solid var(--border);border-radius:6px;padding:8px 14px;font-size:13px;color:var(--text-secondary);font-weight:500}
.inside-chip strong{color:var(--text-primary)}

/* === FRAMEWORK CARDS === */
.frameworks{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:16px}
.fw-card{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:20px;text-align:center;transition:border-color .2s,box-shadow .2s;box-shadow:var(--shadow-sm)}
.fw-card:hover{border-color:var(--border-light);box-shadow:var(--shadow-md)}
.fw-card .fw-icon{font-size:28px;margin-bottom:8px}
.fw-card h4{font-size:13px;font-weight:600;margin-bottom:2px}
.fw-card p{font-size:11px;color:var(--text-muted)}

/* === TRUST NUMBERS === */
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.trust-card{text-align:center;padding:28px 16px}
.trust-card .big-num{font-family:var(--font-display);font-size:36px;font-weight:800;color:var(--blue);margin-bottom:4px}
.trust-card .desc{font-size:13px;color:var(--text-secondary);line-height:1.5}

/* === STEPS === */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.step{text-align:center;padding:24px}
.step .num{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--bg-secondary);border:2px solid var(--blue);font-family:var(--font-display);font-size:20px;font-weight:700;color:var(--blue);margin-bottom:16px}
.step h4{font-size:16px;font-weight:600;margin-bottom:8px}
.step p{font-size:14px;color:var(--text-secondary);line-height:1.6}

/* === OTHER PRODUCT CARDS === */
.other-products-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:24px}
.other-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:28px;transition:border-color .3s,box-shadow .3s;box-shadow:var(--shadow-sm)}
.other-card:hover{border-color:var(--border-light);box-shadow:var(--shadow-md)}
.other-card .badge{display:inline-block;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:4px 10px;border-radius:4px;margin-bottom:12px}
.other-card h3{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:8px}
.other-card p{font-size:14px;color:var(--text-secondary);line-height:1.6;margin-bottom:16px}
.other-card .features-mini{list-style:none;margin-bottom:20px}
.other-card .features-mini li{font-size:13px;color:var(--text-muted);padding:3px 0;display:flex;align-items:center;gap:6px}
.other-card .features-mini li::before{content:'✓';color:var(--green);font-weight:700;font-size:12px}
.other-card .card-link{color:var(--blue);font-size:14px;font-weight:600;display:inline-flex;align-items:center;gap:4px}
.other-card .card-link:hover{color:var(--accent)}

/* === RESOURCE CARDS === */
.resource-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:48px}
.resource-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:32px;position:relative;transition:border-color .3s,transform .3s,box-shadow .3s;box-shadow:var(--shadow-sm)}
.resource-card:hover{border-color:var(--border-light);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.resource-card .free-badge{display:inline-block;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:4px 10px;border-radius:4px;background:rgba(5,150,105,0.1);color:var(--green);margin-bottom:14px}
.resource-card h3{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:8px}
.resource-card p{font-size:14px;color:var(--text-secondary);line-height:1.7;margin-bottom:16px}
.resource-card ul{list-style:none;margin-bottom:20px}
.resource-card ul li{font-size:13px;color:var(--text-muted);padding:4px 0;display:flex;align-items:flex-start;gap:7px;line-height:1.5}
.resource-card ul li .ck{color:var(--green);font-weight:700;flex-shrink:0}
.resource-card-featured{border-color:var(--accent);border-width:2px}
.resource-card-featured .free-badge{background:var(--accent-light);color:var(--accent)}
.resource-card-muted{opacity:0.55;pointer-events:none}
.steps-list{display:flex;flex-direction:column;gap:16px}
.step-item{display:flex;align-items:flex-start;gap:14px;font-size:14px;color:var(--text-secondary);line-height:1.7}
.step-num{display:flex;align-items:center;justify-content:center;min-width:32px;height:32px;border-radius:50%;background:var(--accent);color:#fff;font-weight:700;font-size:14px;flex-shrink:0}

/* === PLAYBOOK CARDS === */
.playbook-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-bottom:40px}
.playbook-card{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;padding:16px;text-align:center;border-top:2px solid var(--red);box-shadow:var(--shadow-sm)}
.playbook-card h4{font-size:13px;font-weight:700;margin-bottom:6px}
.playbook-card p{font-size:11px;color:var(--text-muted);line-height:1.4}

/* === DOMAIN CARDS === */
.domain-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:40px}
.domain-card{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:20px;border-top:3px solid var(--orange);box-shadow:var(--shadow-sm)}
.domain-card .top{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:8px}
.domain-card h4{font-size:14px;font-weight:700}
.domain-card .count{font-size:14px;font-weight:700;color:var(--orange)}
.domain-card p{font-size:13px;color:var(--text-muted);line-height:1.5}

/* === VALUES / MISSION === */
.mission{background:var(--bg-secondary);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:80px 24px}
.mission-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.mission-text .label{font-size:12px;color:var(--accent);font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px}
.mission-text h2{font-family:var(--font-display);font-size:clamp(28px,3.5vw,40px);font-weight:700;line-height:1.2;letter-spacing:-0.5px;margin-bottom:20px}
.mission-text p{color:var(--text-secondary);font-size:16px;line-height:1.8;margin-bottom:16px}
.values-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.value-card{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:20px;box-shadow:var(--shadow-sm)}
.value-card .icon{font-size:22px;margin-bottom:8px}
.value-card h4{font-size:14px;font-weight:600;margin-bottom:4px}
.value-card p{font-size:13px;color:var(--text-muted);line-height:1.5}

/* === COST COMPARE === */
.cost-compare{display:grid;grid-template-columns:1fr auto 1fr;gap:24px;align-items:center;margin-bottom:48px}
.cost-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:32px;text-align:center;box-shadow:var(--shadow-sm)}
.cost-card .label{font-size:12px;color:var(--text-muted);letter-spacing:1px;text-transform:uppercase;margin-bottom:8px}
.cost-card .amount{font-family:var(--font-display);font-size:40px;font-weight:800;margin-bottom:4px}
.cost-card .detail{font-size:13px;color:var(--text-muted)}
.cost-card.bad{border-color:var(--red)}.cost-card.bad .amount{color:var(--red)}
.cost-card.good{border-color:var(--accent)}.cost-card.good .amount{color:var(--accent)}
.cost-vs{font-family:var(--font-display);font-size:20px;font-weight:700;color:var(--text-muted)}

/* === FAQ === */
.faq-list{max-width:760px}
.faq-item{border-bottom:1px solid var(--border);padding:20px 0}
.faq-item summary{font-size:15px;font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center}
.faq-item summary::after{content:'+';font-size:20px;color:var(--text-muted);transition:transform .2s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{margin-top:12px;font-size:14px;color:var(--text-secondary);line-height:1.7}

/* === CTA BANNER === */
.cta-banner{background:var(--bg-secondary);border-top:1px solid var(--border);padding:80px 24px;text-align:center}
.cta-banner h2{font-family:var(--font-display);font-size:clamp(28px,3.5vw,40px);font-weight:700;margin-bottom:16px;letter-spacing:-0.5px}
.cta-banner p{color:var(--text-secondary);font-size:16px;max-width:560px;margin:0 auto 32px;line-height:1.7}
.cta-banner .btn-group,.cta-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:16px}
.cta-note{font-size:13px;color:var(--text-muted)}

/* === PRODUCT CARDS (homepage) === */
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:900px;margin:0 auto}
.product-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:28px;position:relative;transition:border-color .3s,box-shadow .3s;box-shadow:var(--shadow-sm)}
.product-card:hover{border-color:var(--border-light);box-shadow:var(--shadow-md)}
.product-card.recommended{border-color:var(--accent)}
.product-card.recommended::before{content:'★ RECOMMENDED';position:absolute;top:-12px;left:20px;background:linear-gradient(135deg,var(--gold),var(--amber));color:#fff;font-size:10px;font-weight:700;letter-spacing:1px;padding:4px 12px;border-radius:4px}
.product-card .tier{font-size:11px;color:var(--text-muted);font-weight:600;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:6px}
.product-card h3{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:4px}
.product-card .tagline{font-size:13px;color:var(--text-secondary);margin-bottom:16px;line-height:1.5}
.product-card .price{font-family:var(--font-display);font-size:36px;font-weight:800;margin-bottom:2px}
.product-card .currency{font-size:20px;vertical-align:super;margin-right:2px}
.product-card .price-note{font-size:12px;color:var(--text-muted);margin-bottom:20px}
.product-card .stat-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px}
.product-card .stat{background:var(--bg-secondary);border-radius:6px;padding:8px;text-align:center}
.product-card .stat .num{font-size:18px;font-weight:700;color:var(--blue)}
.product-card.recommended .stat .num{color:var(--accent)}
.product-card .stat .label{font-size:10px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px}
.product-card .features{list-style:none;margin-bottom:20px}
.product-card .features li{font-size:13px;color:var(--text-secondary);padding:5px 0;display:flex;align-items:flex-start;gap:7px;line-height:1.5}
.product-card .features .check{color:var(--green);font-weight:700;flex-shrink:0}

/* === PROSE PAGE (about, privacy, terms) === */
.prose{max-width:760px;margin:0 auto;padding:80px 24px}
.prose .label{font-size:12px;color:var(--accent);font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px}
.prose h1{font-family:var(--font-display);font-size:clamp(32px,5vw,48px);font-weight:800;line-height:1.15;letter-spacing:-1px;margin-bottom:24px}
.prose h1 .accent{color:var(--blue)}
.prose .updated{font-size:13px;color:var(--text-muted);margin-bottom:40px}
.prose .intro{color:var(--text-primary);font-size:17px;line-height:1.7;margin-bottom:40px}
.prose h2{font-family:var(--font-display);font-size:clamp(22px,2.5vw,28px);font-weight:700;margin:48px 0 16px;color:var(--text-primary);letter-spacing:-0.3px}
.prose h2:first-child{margin-top:0}
.prose h3{font-family:var(--font-display);font-size:18px;font-weight:700;margin:32px 0 10px;color:var(--text-primary)}
.prose p{color:var(--text-secondary);font-size:15px;line-height:1.8;margin-bottom:16px}
.prose p:first-of-type{font-size:16px;color:var(--text-primary);line-height:1.75}
.prose p strong{color:var(--text-primary);font-weight:700}
.prose ul{margin:12px 0 16px 20px}
.prose ul li{color:var(--text-secondary);font-size:15px;line-height:1.8;margin-bottom:6px}
.prose ul li strong{color:var(--text-primary)}
.prose a{color:var(--blue);font-weight:500}
.prose a:hover{color:var(--teal)}

/* === CONTACT CARDS === */
.contact-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:32px;margin-bottom:24px;box-shadow:var(--shadow-sm)}
.contact-card h3{font-size:16px;font-weight:600;margin-bottom:8px}
.contact-card p{color:var(--text-secondary);font-size:15px;line-height:1.7}
.contact-card a{color:var(--blue);font-weight:500}
.contact-card a:hover{color:var(--teal)}
.note{color:var(--text-muted);font-size:14px;line-height:1.6;margin-top:40px;padding-top:24px;border-top:1px solid var(--border)}

/* === WHY GRID === */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:48px}
.why-card{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:24px;text-align:center;box-shadow:var(--shadow-sm)}
.why-card .icon{font-size:28px;margin-bottom:10px}
.why-card h4{font-size:15px;font-weight:600;margin-bottom:6px}
.why-card p{font-size:13px;color:var(--text-muted);line-height:1.6}

/* === INCLUDED LIST === */
.included-list{columns:2;column-gap:32px;margin-bottom:48px}
.included-list li{font-size:14px;color:var(--text-secondary);padding:6px 0;display:flex;align-items:flex-start;gap:8px;break-inside:avoid;list-style:none;line-height:1.5}
.included-list li .ck{color:var(--green);font-weight:700;flex-shrink:0}

/* === FOOTER (dark — intentional contrast) === */
.footer{background:#1a2332;border-top:none;padding:60px 24px 32px;color:#e8edf5}
.footer-inner{max-width:var(--max-w);margin:0 auto}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand h3{font-family:var(--font-display);font-size:18px;font-weight:700;margin-bottom:12px;color:#e8edf5}
.footer-brand p{font-size:13px;color:#94a3b8;line-height:1.6;max-width:280px}
.footer-col h4{font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:#94a3b8;margin-bottom:14px}
.footer-col a{display:block;font-size:14px;color:#cbd5e1;padding:4px 0;transition:color .2s}
.footer-col a:hover{color:#ffffff}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:24px;border-top:1px solid #2a3a4f;font-size:12px;color:#64748b}
.footer-bottom a{color:#64748b;margin-left:16px}
.footer-bottom a:hover{color:#94a3b8}
.footer-social{display:flex;gap:12px;align-items:center}
.footer-social a{color:#64748b;transition:color .2s;margin-left:0}
.footer-social a:hover{color:#E86A2A}

/* === RESPONSIVE === */
@media(max-width:900px){
  .nav-links{display:none}
  .mobile-toggle{display:inline-flex}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:var(--nav-h);left:0;right:0;background:var(--bg-primary);border-bottom:1px solid var(--border);padding:16px 24px;gap:4px;max-height:calc(100vh - var(--nav-h));overflow-y:auto;box-shadow:var(--shadow-lg)}
  .nav-links.open .nav-link{padding:10px 12px;width:100%}
  .nav-links.open .cta-btn{margin-left:0;margin-top:8px;text-align:center;display:block}
  .nav-links.open .currency-toggle{margin:8px 0 0;align-self:center}
  .nav-dropdown{width:100%}
  .dropdown-menu{position:static;transform:none;min-width:auto;border:none;box-shadow:none;background:var(--bg-secondary);border-radius:8px;margin-top:4px;padding:4px;visibility:hidden;opacity:0;pointer-events:none;max-height:0;overflow:hidden;transition:opacity .15s,visibility .15s,max-height .2s}
  .nav-dropdown.active .dropdown-menu{visibility:visible;opacity:1;pointer-events:auto;max-height:500px;overflow:visible}
  .dropdown-item{padding:10px 12px}
  .mission-inner{grid-template-columns:1fr}
  .tier-grid,.tier-grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr 1fr}
  .other-products-grid{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr}
  .folder-grid{grid-template-columns:1fr 1fr}
  .playbook-grid{grid-template-columns:1fr 1fr}
  .feat-grid{grid-template-columns:1fr}
  .resource-grid{grid-template-columns:1fr}
  .domain-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr}
  .cost-compare{grid-template-columns:1fr;text-align:center}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .included-list{columns:1}
  .selector-grid{grid-template-columns:1fr}
  .compare-table-wrap{overflow-x:auto}
}
@media(max-width:600px){
  .trust-grid{grid-template-columns:1fr}
  .hero-ctas,.cta-btns{flex-direction:column}
  .btn{justify-content:center}
  .folder-grid,.domain-grid{grid-template-columns:1fr}
  .playbook-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .cmp-table th,.cmp-table td{padding:8px 8px;font-size:13px}
  .stats-inner{gap:24px}
}

/* === START HERE / SELECTOR === */
.selector-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-bottom:48px}
.selector-card{background:var(--bg-card);border:2px solid var(--border);border-radius:12px;padding:32px;transition:border-color .3s,transform .3s,box-shadow .3s;box-shadow:var(--shadow-sm)}
.selector-card:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.selector-card .card-icon{font-size:28px;margin-bottom:16px}
.selector-card h3{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:8px}
.selector-card .card-desc{font-size:14px;color:var(--text-secondary);line-height:1.7;margin-bottom:16px}
.selector-card .card-best{font-size:12px;color:var(--accent);font-weight:600;letter-spacing:0.5px;text-transform:uppercase;margin-bottom:16px}
.selector-card .card-link{display:inline-flex;align-items:center;gap:6px;color:var(--blue);font-size:14px;font-weight:600}
.selector-card .card-link:hover{color:var(--teal)}
.compare-table-wrap{margin-bottom:48px}
.compare-table{width:100%;border-collapse:collapse;font-size:14px}
.compare-table th{padding:14px 16px;text-align:left;font-size:11px;color:var(--text-muted);letter-spacing:1px;text-transform:uppercase;font-weight:600;border-bottom:2px solid var(--border);background:var(--bg-secondary)}
.compare-table td{padding:12px 16px;border-bottom:1px solid var(--border);color:var(--text-secondary)}
.compare-table td:first-child{color:var(--text-primary);font-weight:500}
.compare-table .check{color:var(--green);font-weight:700}
.compare-table .dash{color:var(--text-muted)}
.compare-table tbody tr:hover{background:var(--bg-secondary)}
.decision-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:48px}
.decision-card{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:24px;text-align:center;box-shadow:var(--shadow-sm)}
.decision-card .scenario{font-size:13px;color:var(--text-muted);margin-bottom:8px;font-style:italic}
.decision-card .answer{font-size:16px;font-weight:700;color:var(--text-primary);margin-bottom:4px}
.decision-card .product-link{font-size:13px;color:var(--blue);font-weight:600}
.decision-card .product-link:hover{color:var(--teal)}

/* === FAQ PAGE === */
.faq-section{max-width:760px;margin:0 auto}
.faq-category{margin-bottom:40px}
.faq-category-title{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:16px;padding-bottom:8px;border-bottom:2px solid var(--border);color:var(--blue)}

/* === REQUEST FORM === */
.request-form{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:32px;box-shadow:var(--shadow-sm)}
.form-group{margin-bottom:24px}
.form-label{display:block;font-size:14px;font-weight:600;color:var(--text-primary);margin-bottom:4px}
.form-label .req{color:var(--accent)}
.form-hint{font-size:12px;color:var(--text-muted);margin-bottom:8px;line-height:1.5}
.form-input{width:100%;padding:12px 14px;background:var(--bg-primary);border:1px solid var(--border);border-radius:8px;color:var(--text-primary);font-family:var(--font-body);font-size:14px;transition:border-color .2s,box-shadow .2s}
.form-input:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(232,106,42,0.1)}
.form-input::placeholder{color:var(--text-muted)}
select.form-input{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px;cursor:pointer}
select.form-input option{background:var(--bg-primary);color:var(--text-primary)}
textarea.form-input{resize:vertical;min-height:100px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.form-footer{font-size:12px;color:var(--text-muted);text-align:center;margin-top:16px;line-height:1.5}
@media(max-width:600px){.form-row{grid-template-columns:1fr}}

/* === BLOG === */
.blog-listing h2 a:hover{color:var(--teal)}
.blog-content h2{font-family:var(--font-display);font-size:clamp(22px,2.5vw,28px);font-weight:700;color:var(--text-primary);margin:2rem 0 0.75rem;letter-spacing:-0.3px;line-height:1.3}
.blog-content h3{font-family:var(--font-display);font-size:clamp(18px,2vw,22px);font-weight:600;color:var(--text-primary);margin:1.75rem 0 0.5rem;line-height:1.35}
.blog-content p{margin-bottom:1rem;color:var(--text-secondary)}
.blog-content strong{color:var(--text-primary);font-weight:600}
.blog-content a{color:var(--teal);text-decoration:underline;text-underline-offset:2px}
.blog-content a:hover{color:var(--blue)}
.blog-content ul,.blog-content ol{margin:0.75rem 0 1rem 1.5rem;color:var(--text-secondary)}
.blog-content li{margin-bottom:0.4rem}
.blog-content blockquote{border-left:3px solid var(--teal);padding:0.75rem 1.25rem;margin:1.5rem 0;background:var(--bg-secondary);border-radius:0 6px 6px 0}
.blog-content code{background:var(--bg-secondary);padding:2px 6px;border-radius:3px;font-size:0.9em}
.blog-content pre{background:var(--bg-secondary);padding:1rem;border-radius:6px;overflow-x:auto;margin:1rem 0}
.blog-content pre code{background:none;padding:0}

/* ADD TO END OF static/css/style.css */

/* Prose h3 styling */
.prose h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--text-primary);
}

/* Prose within sections (category pages) */
.section-inner.prose {
    max-width: 800px;
    padding: 0;
}

.section-inner.prose h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    margin: 56px 0 16px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.section-inner.prose h2:first-child {
    margin-top: 0;
}

.section-inner.prose h3 {
    font-size: 18px;
    margin: 36px 0 12px;
    color: var(--text-primary);
}

.section-inner.prose p {
    margin-bottom: 16px;
}

.section-inner.prose p strong {
    color: var(--text-primary);
    font-weight: 700;
}

.section-inner.prose > p:first-of-type {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.75;
}

/* === PRODUCT PAGE SECTION BREAKS (from markdown content) === */
.pd-break-grey {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 40px -24px;
    padding: 40px 24px;
}

.pd-break-grey .dg-card {
    background: var(--bg-card);
}

.pd-brand-band {
    background: #0F2B3C;
    margin: 40px -24px;
    padding: 48px 24px;
    text-align: center;
}

.pd-brand-band h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.pd-brand-band p {
    font-size: 15px;
    color: #9FC5E0;
    margin: 0;
}

@media (max-width: 700px) {
    .pd-break-grey, .pd-brand-band {
        margin: 32px -16px;
        padding: 32px 16px;
    }
}

/* === HOME PAGE IMPROVEMENTS === */

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.problem-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.problem-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Compare Grid */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.compare-card.featured {
    border-color: var(--teal);
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.15);
}

.compare-header {
    padding: 24px;
    text-align: center;
}

.compare-header.negative {
    background: var(--bg-secondary);
}

.compare-header.positive {
    background: linear-gradient(135deg, var(--teal), #0e7490);
    color: #fff;
}

.compare-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.compare-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
}

.compare-header.positive .compare-price {
    color: #fff;
}

.compare-list {
    padding: 24px;
    list-style: none;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.compare-list li:last-child {
    margin-bottom: 0;
}

.compare-list .ck {
    color: var(--green);
    font-weight: 700;
}

.compare-list .ex {
    color: var(--red);
    font-weight: 700;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Inside Grid (What's Inside) */
.inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inside-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.inside-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.inside-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 8px 0 10px;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-card .card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

/* Guarantee Section */
.guarantee-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.guarantee-points {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guarantee-points span {
    font-size: 14px;
    color: var(--text-secondary);
}

.guarantee-points strong {
    color: var(--green);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* === MEGA MENU === */

/* Override original nav-dropdown for mega menus */
.nav-mega {
    position: static !important;
}

.nav-mega > .dropdown-trigger {
    position: relative;
}

/* Hover bridge - invisible element to prevent gap */
.nav-mega > .dropdown-trigger::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 24px;
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 100;
}

/* Show mega menu on hover - multiple selectors for reliability */
.nav-mega:hover > .mega-menu,
.nav-mega:focus-within > .mega-menu,
.nav-mega > .dropdown-trigger:hover + .mega-menu,
.nav-mega > .mega-menu:hover {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Horizontal category tabs */
.mega-category-bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.mega-cat-tab {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.mega-cat-tab:hover {
    color: var(--text-primary);
}

.mega-cat-tab.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

/* Product panels */
.mega-panels {
    padding: 24px 0;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mega-panel-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
}

.mega-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
}

.mega-view-all:hover {
    color: var(--teal);
}

/* Product grid */
.mega-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mega-product-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s;
}

.mega-product-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.mega-product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 8px;
}

.mega-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.mega-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.mega-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
}

.mega-badge.live {
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
}

.mega-badge.soon {
    color: var(--text-muted);
    background: var(--bg-card);
}

/* Resources mega menu - smaller/simpler */
.mega-menu-small .mega-inner {
    padding: 24px;
}

.mega-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mega-resource-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s;
}

.mega-resource-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.mega-resource-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mega-resource-content {
    flex: 1;
}

.mega-resource-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mega-resource-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Hide old dropdown menu inside nav-mega */
.nav-mega .dropdown-menu {
    display: none !important;
}

/* Hide mobile dropdown on desktop */
.mobile-dropdown {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    /* Hide full mega menu on mobile */
    .mega-menu {
        display: none !important;
    }
    
    /* Mobile mega menu - simplified dropdown */
    .nav-mega {
        position: relative !important;
        width: 100%;
    }
    
    .nav-mega .mobile-dropdown {
        display: none;
        position: static;
        background: var(--bg-secondary);
        border-radius: 8px;
        margin-top: 4px;
        padding: 8px;
    }
    
    .nav-mega.active .mobile-dropdown {
        display: block;
    }
    
    .mobile-dropdown a {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 14px;
        color: var(--text-primary);
    }
    
    .mobile-dropdown a:hover {
        background: var(--bg-card);
    }
    
    .mobile-dropdown .mobile-section-title {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        padding: 12px 12px 6px;
        margin-top: 8px;
        border-top: 1px solid var(--border);
    }
    
    .mobile-dropdown .mobile-section-title:first-child {
        margin-top: 0;
        border-top: none;
        padding-top: 4px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .compare-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .inside-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-points {
        flex-direction: column;
        gap: 12px;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .mega-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mega-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-cat-tab {
        padding: 14px 14px;
        font-size: 12px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .mega-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === REQUEST TOOLKIT PAGE === */

.request-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.request-info h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.request-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.request-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.request-step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.request-step-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.request-step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.request-examples {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.request-examples h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.request-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.request-examples li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 20px;
    position: relative;
}

.request-examples li:last-child {
    border-bottom: none;
}

.request-examples li::before {
    content: '"';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 18px;
    font-weight: 700;
}

/* Form Card */
.request-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.request-form-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.request-form-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.request-form-card .btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

.request-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: left;
}

.request-note p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.request-note p:last-child {
    margin-bottom: 0;
}

.request-note strong {
    color: var(--text-primary);
}

/* Alternative CTA */
.request-alt {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.request-alt h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.request-alt p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Roadmap Grid */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.roadmap-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.roadmap-status.planned {
    background: rgba(8, 145, 178, 0.1);
    color: var(--teal);
}

.roadmap-status.considering {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.roadmap-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.roadmap-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .request-container {
        grid-template-columns: 1fr;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

/* === FRAMEWORK TRUST STRIP === */

.trust-strip {
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.trust-strip-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-strip-frameworks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.framework-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    transition: border-color 0.15s, transform 0.15s;
}

.framework-badge:hover {
    border-color: var(--teal);
    transform: translateY(-1px);
}

.framework-badge .badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .trust-strip-frameworks {
        gap: 8px;
    }
    
    .framework-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .framework-badge .badge-icon {
        display: none;
    }
}


/* === CASE STUDY SECTION === */

.case-study-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.case-study-scenario,
.case-study-solution {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.case-study-header {
    margin-bottom: 20px;
}

.case-study-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(8, 145, 178, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.case-study-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Company Profile */
.case-study-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.profile-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Situation */
.case-study-situation h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.case-study-situation p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.case-study-situation p:last-child {
    margin-bottom: 0;
}

/* Timeline */
.case-study-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-item:first-child {
    padding-top: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 70px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue);
}

.timeline-content h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Outcome */
.case-study-outcome {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}

.outcome-header {
    margin-bottom: 20px;
}

.outcome-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.outcome-card {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.outcome-card.highlight {
    background: linear-gradient(135deg, var(--teal), #0e7490);
    color: #fff;
}

.outcome-metric {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.outcome-card.highlight .outcome-metric {
    color: #fff;
}

.outcome-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.outcome-card.highlight .outcome-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Disclaimer Note */
.case-study-note {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--text-muted);
}

.case-study-note p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.case-study-note strong {
    font-style: normal;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .case-study-container {
        grid-template-columns: 1fr;
    }
    
    .outcome-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .case-study-profile {
        grid-template-columns: 1fr;
    }
    
    .outcome-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .timeline-marker {
        width: auto;
    }
}

/* ============================================
   RIDGELINE UPDATES
   Paste this at the END of static/css/style.css
   ============================================ */

/* === MEGA MENU === */

.nav-mega {
    position: static !important;
}

.nav-mega > .dropdown-trigger {
    position: relative;
}

.nav-mega > .dropdown-trigger::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 24px;
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 100;
}

.nav-mega:hover > .mega-menu,
.nav-mega:focus-within > .mega-menu,
.nav-mega > .dropdown-trigger:hover + .mega-menu,
.nav-mega > .mega-menu:hover {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mega-category-bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.mega-cat-tab {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.mega-cat-tab:hover {
    color: var(--text-primary);
}

.mega-cat-tab.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.mega-panels {
    padding: 24px 0;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mega-panel-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
}

.mega-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
}

.mega-view-all:hover {
    color: var(--teal);
}

.mega-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mega-product-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s;
}

.mega-product-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.mega-product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 8px;
}

.mega-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.mega-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.mega-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
}

.mega-badge.live {
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
}

.mega-badge.soon {
    color: var(--text-muted);
    background: var(--bg-card);
}

.mega-menu-small .mega-inner {
    padding: 24px;
}

.mega-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mega-resource-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s;
}

.mega-resource-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.mega-resource-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mega-resource-content {
    flex: 1;
}

.mega-resource-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mega-resource-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.nav-mega .dropdown-menu {
    display: none !important;
}

.mobile-dropdown {
    display: none;
}

/* === REQUEST TOOLKIT PAGE === */

.request-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.request-info h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.request-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.request-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.request-step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.request-step-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.request-step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.request-examples {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.request-examples h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.request-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.request-examples li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 20px;
    position: relative;
}

.request-examples li:last-child {
    border-bottom: none;
}

.request-examples li::before {
    content: '"';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 18px;
    font-weight: 700;
}

.request-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.request-form-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.request-form-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.request-form-card .btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

.request-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: left;
}

.request-note p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.request-note p:last-child {
    margin-bottom: 0;
}

.request-note strong {
    color: var(--text-primary);
}

.request-alt {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.request-alt h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.request-alt p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.roadmap-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.roadmap-status.planned {
    background: rgba(8, 145, 178, 0.1);
    color: var(--teal);
}

.roadmap-status.considering {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.roadmap-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.roadmap-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === FRAMEWORK TRUST STRIP === */

.trust-strip {
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.trust-strip-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-strip-frameworks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.framework-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    transition: border-color 0.15s, transform 0.15s;
}

.framework-badge:hover {
    border-color: var(--teal);
    transform: translateY(-1px);
}

/* === CASE STUDY SECTION === */

.case-study-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.case-study-scenario,
.case-study-solution {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.case-study-header {
    margin-bottom: 20px;
}

.case-study-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(8, 145, 178, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.case-study-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.case-study-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.profile-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.case-study-situation h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.case-study-situation p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.case-study-situation p:last-child {
    margin-bottom: 0;
}

.case-study-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-item:first-child {
    padding-top: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 70px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue);
}

.timeline-content h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.case-study-outcome {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}

.outcome-header {
    margin-bottom: 20px;
}

.outcome-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.outcome-card {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.outcome-card.highlight {
    background: linear-gradient(135deg, var(--teal), #0e7490);
    color: #fff;
}

.outcome-metric {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.outcome-card.highlight .outcome-metric {
    color: #fff;
}

.outcome-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.outcome-card.highlight .outcome-label {
    color: rgba(255, 255, 255, 0.9);
}

.case-study-note {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--text-muted);
}

.case-study-note p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.case-study-note strong {
    font-style: normal;
    color: var(--text-secondary);
}

/* === CHECKOUT TRUST BADGES === */

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-trust-item .trust-icon {
    font-size: 14px;
}

.trust-badges-section {
    padding: 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-badges-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-badge-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.checkout-trust-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 12px 0;
}

.checkout-trust-minimal span:nth-child(even) {
    color: var(--border);
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
    .mega-menu {
        display: none !important;
    }
    
    .nav-mega {
        position: relative !important;
        width: 100%;
    }
    
    .nav-mega .mobile-dropdown {
        display: none;
        position: static;
        background: var(--bg-secondary);
        border-radius: 8px;
        margin-top: 4px;
        padding: 8px;
    }
    
    .nav-mega.active .mobile-dropdown {
        display: block;
    }
    
    .mobile-dropdown a {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 14px;
        color: var(--text-primary);
    }
    
    .mobile-dropdown a:hover {
        background: var(--bg-card);
    }
    
    .mobile-dropdown .mobile-section-title {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        padding: 12px 12px 6px;
        margin-top: 8px;
        border-top: 1px solid var(--border);
    }
    
    .mobile-dropdown .mobile-section-title:first-child {
        margin-top: 0;
        border-top: none;
        padding-top: 4px;
    }
    
    .request-container {
        grid-template-columns: 1fr;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-container {
        grid-template-columns: 1fr;
    }
    
    .outcome-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-badges-inner {
        gap: 20px;
    }
    
    .trust-badge-card {
        flex: 1 1 45%;
        min-width: 150px;
    }
}

@media (max-width: 600px) {
    .trust-strip-frameworks {
        gap: 8px;
    }
    
    .framework-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .case-study-profile {
        grid-template-columns: 1fr;
    }
    
    .outcome-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .timeline-marker {
        width: auto;
    }
    
    .checkout-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .checkout-trust-minimal {
        flex-direction: column;
        gap: 6px;
    }
    
    .checkout-trust-minimal span:nth-child(even) {
        display: none;
    }
    
    .trust-badge-card {
        flex: 1 1 100%;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .mega-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mega-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-cat-tab {
        padding: 14px 14px;
        font-size: 12px;
    }
}

/* === SMB PRODUCT PAGE VISUALS === */

/* Stats Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.stat-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Outcome Grid */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.outcome-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.outcome-box:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.outcome-box h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.outcome-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Scenario Boxes */
.scenario-box {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin: 24px 0;
}

.scenario-box h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.scenario-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.scenario-box p:last-child {
    margin-bottom: 0;
}

.scenario-box strong {
    color: var(--text-primary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.feature-box h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════ COLORED CARD BORDERS ═══════════ */
.clr-blue{border-left:4px solid var(--blue) !important;border-radius:0 12px 12px 0 !important}
.clr-teal{border-left:4px solid var(--teal) !important;border-radius:0 12px 12px 0 !important}
.clr-purple{border-left:4px solid var(--purple) !important;border-radius:0 12px 12px 0 !important}
.clr-amber{border-left:4px solid var(--amber) !important;border-radius:0 12px 12px 0 !important}
.clr-green{border-left:4px solid var(--green) !important;border-radius:0 12px 12px 0 !important}
.clr-red{border-left:4px solid var(--red) !important;border-radius:0 12px 12px 0 !important}
.clr-orange{border-left:4px solid var(--orange) !important;border-radius:0 12px 12px 0 !important}
.clr-indigo{border-left:4px solid #4f46e5 !important;border-radius:0 12px 12px 0 !important}

.clr-blue .feature-icon,.clr-blue .situation-icon{color:var(--blue)}
.clr-teal .feature-icon,.clr-teal .situation-icon{color:var(--teal)}
.clr-purple .feature-icon,.clr-purple .situation-icon{color:var(--purple)}
.clr-amber .feature-icon,.clr-amber .situation-icon{color:var(--amber)}
.clr-green .feature-icon,.clr-green .situation-icon{color:var(--green)}
.clr-red .feature-icon,.clr-red .situation-icon{color:var(--red)}
.clr-orange .feature-icon,.clr-orange .situation-icon{color:var(--orange)}
.clr-indigo .feature-icon,.clr-indigo .situation-icon{color:#4f46e5}

/* Comparison Table Enhancement */
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 700;
    font-size: 14px;
}

.comparison-table td {
    font-size: 14px;
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    background: var(--bg-secondary);
}

/* Mobile Responsive - SMB Elements */
@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .outcome-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-box {
        padding: 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
}

/* === BEFORE/AFTER GRID === */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.before-after-card {
    border-radius: 12px;
    padding: 24px;
}

.before-after-card.before {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.before-after-card.after {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.before-after-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.before-after-card.before h4 {
    color: #dc2626;
}

.before-after-card.after h4 {
    color: #16a34a;
}

.before-after-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.before-after-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.before-after-card li:last-child {
    border-bottom: none;
}

/* === DOCUMENT CARD GRID === */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0 40px;
}

.doc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.doc-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.doc-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.doc-card .doc-what {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.doc-card .doc-why {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    margin: 0;
}

/* === COLOUR-CODED DOCUMENT GRID (v2) === */
.dg-section { margin: 0 0 40px; }
.dg-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 14px; padding-left: 14px; }
.dg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dg-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 18px 18px 18px 22px; position: relative; transition: all 0.3s var(--ease-out); }
.dg-card:hover { border-color: var(--border-light); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.dg-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 3px 0 0 3px; }
.dg-card.cat-prove::before { background: var(--blue); }
.dg-card.cat-risk::before { background: var(--teal); }
.dg-card.cat-run::before { background: var(--purple); }
.dg-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.dg-card .dg-what { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.5; }
.dg-card .dg-why { font-size: 12px; font-weight: 600; margin: 0; padding: 4px 10px; border-radius: 6px; display: inline-block; }
.cat-prove .dg-why { background: rgba(232,106,42,0.08); color: var(--blue); }
.cat-risk .dg-why { background: rgba(8,145,178,0.08); color: var(--teal); }
.cat-run .dg-why { background: rgba(124,58,237,0.08); color: var(--purple); }
.dg-extra { background: var(--bg-secondary); border-radius: 12px; padding: 18px 22px; margin-top: 16px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.dg-extra strong { color: var(--text-primary); font-weight: 700; }

/* Toolkit structure diagram */
.toolkit-diagram { margin: 32px 0; }
.toolkit-diagram svg { width: 100%; height: auto; }

/* Screenshot placement */
.doc-preview { margin: 32px 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.doc-preview img { width: 100%; display: block; }
.doc-preview-caption { background: var(--bg-secondary); padding: 12px 18px; font-size: 13px; color: var(--text-secondary); border-top: 1px solid var(--border); }

@media (max-width:700px) {
    .dg-grid { grid-template-columns: 1fr; }
}

/* === COST COMPARISON === */
.cost-comparison {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.cost-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    position: relative;
}

.cost-option.expensive {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.cost-option.recommended {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--green);
}

.cost-badge {
    position: absolute;
    top: -12px;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}

.cost-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cost-amount {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cost-option.expensive .cost-amount {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--red);
}

.cost-option.recommended .cost-amount {
    color: var(--green);
}

.cost-time {
    font-size: 12px;
    color: var(--text-muted);
}

.cost-option.recommended .cost-time {
    color: var(--green);
    font-weight: 600;
}

/* === MOBILE RESPONSIVE - NEW ELEMENTS === */
@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
    }
    
    .cost-option.recommended {
        order: -1;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cost-comparison {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === SINGLE PRODUCT BUY BOX === */
.single-product-box {
    max-width: 700px;
    margin: 0 auto;
}

.product-box-inner {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.15), 0 8px 24px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.product-box-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.product-box-header {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.product-status {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.product-box-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.product-box-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.product-stat {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #e2e8f0 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.product-stat::after {
    content: '📄';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    opacity: 0.5;
}

.product-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.product-stat-lbl {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-frameworks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.framework-tag {
    background: #e3dacc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.framework-tag:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.product-box-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-price {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.product-price-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-large {
    display: block;
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.5);
}

.product-guarantee {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-guarantee::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.product-guarantee a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

.product-guarantee a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .product-box-inner {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    
    .product-price {
        font-size: 36px;
    }
    
    .product-stat-num {
        font-size: 32px;
    }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Fade in from left */
.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Counter animation for numbers */
.animate-count {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-count.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HOMEPAGE HERO === */
.hero-home {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text .hero-sub {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero-text .hero-ctas {
    justify-content: flex-start;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === SITUATION SELECTOR CARDS === */
.situation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.situation-grid .situation-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

.situation-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.situation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity 0.3s;
}

.situation-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(8, 145, 178, 0.15);
}

.situation-card:hover::before {
    opacity: 1;
}

.situation-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.situation-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.situation-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.situation-solution {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-secondary), #e2e8f0);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
}

/* === SCENARIO HIGHLIGHT === */
.scenario-highlight {
    max-width: 900px;
    margin: 0 auto;
}

.scenario-highlight-inner {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.scenario-highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.scenario-highlight-inner h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.scenario-highlight-inner p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 32px;
}

.scenario-highlight-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.scenario-stat {
    text-align: center;
}

.scenario-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 4px;
}

.scenario-stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
}

/* === STATS SECTION ADJUSTMENT === */
.stats-section {
    padding: 60px 24px;
}

.stats-section .stat-grid {
    margin: 0;
}

/* === MOBILE RESPONSIVE - HOMEPAGE === */
@media (max-width: 900px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
    }
    
    .hero-text .hero-sub {
        text-align: center;
    }
    
    .hero-text .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-illustration {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-home {
        padding: 60px 24px 40px;
    }
    
    .situation-grid {
        grid-template-columns: 1fr;
    }
    
    .situation-card {
        padding: 24px;
    }
    
    .scenario-highlight-inner {
        padding: 32px 24px;
    }
    
    .scenario-highlight-inner h3 {
        font-size: 22px;
    }
    
    .scenario-highlight-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .scenario-stat-num {
        font-size: 28px;
    }
    
    .hero-illustration {
        max-width: 250px;
    }
}

/* === VISUAL ENHANCEMENTS === */

/* Situation cards visual upgrade */
.situation-card .situation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bg-secondary), #e2e8f0);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.situation-card:hover .situation-icon {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(37, 99, 235, 0.1));
    transform: scale(1.05);
}

/* Step cards visual upgrade */
.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.step-num {
    background: linear-gradient(135deg, var(--blue), var(--teal)) !important;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

/* Feature boxes upgrade */
.feature-box {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
}

/* Stats section visual background */
.stats-section {
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(8, 145, 178, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Stat box upgrade */
.stat-box {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-box:hover::after {
    opacity: 1;
}

/* CTA banner upgrade */
.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* === PRODUCT CARD IMAGES === */
.tier-card-image {
    margin: -28px -28px 20px -28px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #1a2332;
}

.tier-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-card-image img {
    transform: scale(1.02);
}

/* Adjust tier-name when image is present */
.tier-card-image + .tier-name {
    margin-top: 0;
}

/* === PRODUCT PAGE HERO WITH IMAGE === */
.product-hero {
    padding: 60px 24px 40px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-hero-text {
    text-align: left;
}

.product-hero-text h1 {
    text-align: left;
}

.product-hero-text .hero-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.product-hero-text .hero-trust {
    justify-content: flex-start;
}

.product-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-hero-text {
        text-align: center;
        order: 1;
    }
    
    .product-hero-text h1 {
        text-align: center;
    }
    
    .product-hero-text .hero-sub {
        text-align: center;
    }
    
    .product-hero-text .hero-trust {
        justify-content: center;
    }
    
    .product-hero-image {
        order: 2;
    }
    
    .product-hero-image img {
        max-width: 400px;
    }
}

/* === HERO BANNER IMAGE === */
.hero-banner-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 900px) {
    .hero-banner-img {
        max-width: 100%;
        border-radius: 8px;
    }
}

/* === HERO BANNER SECTION (Full Image) === */
.hero-banner-section {
    padding: 40px 24px 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.hero-banner-wrapper {
    max-width: 1000px;
    margin: 0 auto 32px;
}

.hero-banner-full {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.hero-ctas-centered {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-banner-section {
        padding: 24px 16px 40px;
    }
    
    .hero-banner-full {
        border-radius: 12px;
    }
    
    .hero-ctas-centered {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}

/* === HERO SMALL IMAGE === */
.hero-small-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

@media (max-width: 900px) {
    .hero-small-img {
        max-width: 300px;
    }
}

/* === PAGE HERO WITH IMAGE === */
.hero-page .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
}

.hero-page .hero-text {
    text-align: left;
}

.hero-page .hero-text h1 {
    margin-left: 0;
    margin-right: 0;
}

.hero-page .hero-text .hero-sub {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero-page .hero-text .hero-ctas {
    justify-content: flex-start;
}

.hero-page .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-page .hero-page-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 16px 32px rgba(15, 123, 138, 0.1));
}

@media (max-width: 900px) {
    .hero-page .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-page .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-page .hero-text .hero-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-page .hero-text .hero-ctas {
        justify-content: center;
    }

    .hero-page .hero-visual {
        order: 2;
    }

    .hero-page .hero-page-img {
        max-width: 240px;
    }
}

/* === NAVIGATION IMPROVEMENTS === */
.nav-link.active{color:var(--text-primary);position:relative}
.nav-link.active::after{content:'';position:absolute;bottom:2px;left:12px;right:12px;height:2px;background:var(--blue);border-radius:1px}
.dropdown-trigger.active::after{display:none}

/* Mobile nav product links */
.mobile-section-link{display:block;padding:12px;font-size:15px;color:var(--text-primary)}
.mobile-section-title{font-size:11px;color:var(--text-muted);font-weight:600;letter-spacing:1.5px;text-transform:uppercase;padding:12px 12px 4px;margin-top:8px}
.mobile-product-link{display:flex;justify-content:space-between;align-items:center;padding:8px 12px;font-size:14px;color:var(--text-secondary);border-radius:6px}
.mobile-product-link:hover{background:var(--bg-secondary)}
.mobile-price{font-size:12px;font-weight:600;color:var(--teal)}
.mobile-view-all{display:block;padding:6px 12px;font-size:12px;color:var(--blue);font-weight:600}
@media(max-width:900px){
    .nav-mega.active .mobile-dropdown{display:block;background:var(--bg-secondary);border-radius:8px;padding:8px;margin-top:4px}
    .mobile-dropdown{display:none}
    .mega-menu{display:none !important}
}

/* Mega menu category tab accent on hover/active */
.mega-cat-tab.active{border-bottom-color:var(--cat-accent, var(--teal));color:var(--cat-accent, var(--teal))}
.mega-cat-tab:hover{color:var(--cat-accent, var(--teal))}

/* === DARK PRODUCT HERO === */
.product-hero-dark{background:#1a2332;border-bottom:1px solid rgba(255,255,255,0.06)}
.product-hero-dark h1{color:#fff}
.product-hero-dark .hero-sub{color:#94a3b8}
.product-hero-dark .trust-pill{background:rgba(255,255,255,0.06);border-color:rgba(255,255,255,0.12);color:#cbd5e1}
.product-hero-dark .trust-badge{color:#94a3b8}
.hero-buy{display:flex;align-items:center;gap:1rem;margin-top:1.5rem;flex-wrap:wrap}
.hero-price{font-size:2rem;font-weight:700;color:#fff;letter-spacing:-0.02em}
.hero-price-note{font-size:0.875rem;color:#94a3b8}
.product-hero-dark .hero-buy .btn-teal{font-size:1rem;padding:0.75rem 2rem}
.hero-price-original{font-size:1.25rem;color:#64748b;text-decoration:line-through;margin-left:-0.25rem}
.product-price-was{font-size:1rem;color:var(--text-muted);text-decoration:line-through;margin-top:-0.25rem}
.demo-gif-wrap{margin:1rem 0 2rem}
.demo-gif-wrap img{width:100%;border-radius:8px;border:1px solid rgba(255,255,255,0.1);display:block}
.product-hero-dark .hero-badge{border-color:rgba(255,255,255,0.1)}
.product-hero-dark .product-hero-image img{box-shadow:0 20px 60px rgba(0,0,0,0.4)}

/* === BREADCRUMBS === */
.breadcrumb{margin-bottom:24px}
.breadcrumb-list{display:flex;align-items:center;gap:4px;list-style:none;flex-wrap:wrap}
.breadcrumb-item{display:flex;align-items:center;gap:4px;font-size:13px;font-weight:500}
.breadcrumb-item a{color:var(--text-muted);background:var(--bg-secondary);padding:4px 10px;border-radius:6px;transition:all .2s;text-decoration:none;border:1px solid transparent}
.breadcrumb-item a:hover{color:var(--blue);background:var(--bg-card);border-color:var(--border)}
.breadcrumb-sep{color:var(--border-light);display:flex;align-items:center}
.breadcrumb-sep svg{width:12px;height:12px}
.breadcrumb-current{color:var(--text-primary);font-weight:600;padding:4px 0}

/* === BACK TO TOP BUTTON === */
.back-to-top{position:fixed;bottom:32px;right:32px;width:44px;height:44px;border-radius:50%;background:var(--blue);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(0,0,0,0.2);opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .3s,visibility .3s,transform .3s,background .2s;z-index:90}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--blue-dark);transform:translateY(-2px)}
.back-to-top svg{width:20px;height:20px}

/* === IMPROVED SITUATION CARDS === */
.situation-card{border-left:3px solid transparent;transition:border-color .3s,transform .3s,box-shadow .3s,border-left-color .3s}
.situation-card:hover{border-left-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.situation-card:hover .situation-solution{color:var(--blue)}
.situation-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--bg-secondary);color:var(--blue);margin-bottom:16px}
.situation-icon svg{width:22px;height:22px}
.situation-solution{transition:color .2s}

/* === DARK CTA BANNER === */
.cta-banner-dark{background:#0F2B3C;border-top:1px solid rgba(255,255,255,0.06);border-bottom:none}
.cta-banner-dark h2{color:#fff}
.cta-banner-dark p{color:#94a3b8}
.cta-banner-dark .cta-note{color:#64748b}
.cta-banner-dark .cta-note a{color:#64748b}
.btn-accent{color:#fff;padding:14px 28px;border-radius:8px;font-size:15px;font-weight:600;transition:all .2s;border:none;cursor:pointer;display:inline-flex;align-items:center;gap:8px}
.btn-accent:hover{filter:brightness(1.1);transform:translateY(-1px)}
.btn-outline-light{background:transparent;color:#cbd5e1;border:1px solid rgba(255,255,255,0.2);padding:14px 28px;border-radius:8px;font-size:15px;font-weight:600;transition:all .2s;display:inline-flex;align-items:center;gap:8px}
.btn-outline-light:hover{border-color:#fff;color:#fff}

/* === SECTION LABEL IMPROVEMENTS === */
.section-label{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;color:var(--teal);padding-left:12px;border-left:3px solid var(--teal)}

/* === TRUST BADGE ICONS (SVG instead of emoji) === */
.trust-badge-icon{display:flex;align-items:center;justify-content:center;color:var(--teal)}
.trust-badge-icon svg{width:24px;height:24px}

/* === RESOURCE CARD ICONS (SVG instead of emoji) === */
.mega-resource-icon{display:flex;align-items:center;justify-content:center;color:var(--blue)}
.mega-resource-icon svg{width:22px;height:22px}

/* === SVG ICON CONTEXTS === */

/* Framework cards (about page) */
.fw-icon{display:flex;align-items:center;justify-content:center;color:var(--blue);margin-bottom:8px}
.fw-icon svg{width:28px;height:28px}

/* Selector cards (start-here page) */
.card-icon{display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:12px;background:var(--bg-secondary);color:var(--blue);margin-bottom:16px}
.card-icon svg{width:24px;height:24px}
.selector-card:hover .card-icon{background:rgba(232,106,42,0.1);color:var(--blue)}

/* Contact card icons */
.contact-icon{display:inline-flex;align-items:center;vertical-align:middle;margin-right:6px;color:var(--teal)}
.contact-icon svg{width:20px;height:20px}

/* Thank-you step icons */
.ty-step-icon{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:10px;background:rgba(15,123,138,0.15);color:#0f7b8a;margin-bottom:12px}
.ty-step-icon svg{width:24px;height:24px}

/* Mobile toggle SVG */
.mobile-toggle svg{width:24px;height:24px}

/* === BLOG CTA CARD === */
.blog-cta-card{margin:48px 0 16px;background:linear-gradient(135deg,#1a2332 0%,#1e3048 100%);border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,0.06)}
.blog-cta-inner{padding:36px}
.blog-cta-badge{display:inline-block;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:4px 12px;border-radius:4px;background:rgba(8,145,178,0.15);color:var(--teal);margin-bottom:16px}
.blog-cta-title{font-family:var(--font-display);font-size:22px;font-weight:700;color:#fff;margin-bottom:8px}
.blog-cta-desc{font-size:15px;color:#94a3b8;line-height:1.6;margin-bottom:16px;max-width:560px}
.blog-cta-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.blog-cta-stat{font-size:12px;font-weight:600;color:#cbd5e1;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:4px;padding:4px 10px}
.blog-cta-fw{font-size:11px;font-weight:600;color:#64748b;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06);border-radius:4px;padding:4px 8px}
.blog-cta-actions{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.blog-cta-link{font-size:14px;font-weight:600;color:var(--teal);transition:color .2s}
.blog-cta-link:hover{color:#fff}
.prose .blog-cta-card h3.blog-cta-title{color:#fff}
.prose .blog-cta-card p.blog-cta-desc{color:#94a3b8;font-size:15px}
.prose .blog-cta-card p{color:#94a3b8}

/* === TYPOGRAPHY REFINEMENTS === */
.section-sub{font-weight:500}
.hero h1{max-width:720px}
.hero-center h1{margin-left:auto;margin-right:auto}

/* ================================================================
   NAVIGATION & UI ENHANCEMENTS — Feb 2026 Batch
   ================================================================ */

/* === FEATURE BOX ICONS === */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue);
    margin-bottom: 12px;
    transition: background 0.3s, color 0.3s;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-box:hover .feature-icon {
    background: var(--blue);
    color: #fff;
}

/* === BEFORE / AFTER HEADING ICONS === */
.ba-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
.ba-icon svg { width: 16px; height: 16px; }
.ba-icon-before {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}
.ba-icon-after {
    background: rgba(5, 150, 105, 0.1);
    color: var(--green);
}

/* === HERO IMAGE ENLARGEMENT === */
.hero-small-img {
    max-width: 480px;
}
@media (max-width: 900px) {
    .hero-small-img {
        max-width: 320px;
    }
}

/* === NAV ACTIVE STATE REFINEMENT === */
.nav-link.active {
    color: var(--text-primary);
}
.dropdown-trigger.active {
    color: var(--text-primary);
}
.dropdown-trigger.active .arrow {
    color: var(--blue);
}

/* === MEGA MENU CATEGORY TAB ACCENT UNDERLINE === */
.mega-cat-tab.active {
    position: relative;
}
.mega-cat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--cat-accent, var(--teal));
    border-radius: 1px;
}

/* === MOBILE NAV SMOOTH OPEN/CLOSE === */
.nav-links {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 900px) {
    .nav-links.open {
        animation: slideDown 0.25s ease-out;
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile category section spacing */
    .mobile-cat-section {
        padding-bottom: 8px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--border);
    }
    .mobile-cat-section:last-child {
        border-bottom: none;
    }
}

/* === FEATURE BOX HOVER REFINEMENT === */
.feature-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-box:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

/* === SITUATION CARD SOLUTION BADGE HOVER === */
.situation-card:hover .situation-solution {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(37, 99, 235, 0.08));
    border-color: var(--teal);
    color: var(--teal);
}

/* === BEFORE/AFTER CARD POLISH === */
.before-after-card {
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}
.before-after-card.before {
    border-left: 4px solid var(--red);
}
.before-after-card.after {
    border-left: 4px solid var(--green);
}
.before-after-card h4 {
    display: flex;
    align-items: center;
}

/* === STEP CARD NUMBER HOVER === */
.step-card:hover .step-num {
    background: var(--blue);
    color: #fff;
    transform: scale(1.1);
    transition: all 0.3s;
}

/* === TIER CARD BUY BUTTON HOVER LIFT === */
.buy-btn {
    transition: all 0.2s;
}
.buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* === FOOTER LINK HOVER UNDERLINE === */
.footer-col a {
    position: relative;
}
.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #64748b;
    transition: width 0.3s;
}
.footer-col a:hover::after {
    width: 100%;
}

/* === TRUST BADGES SECTION POLISH === */
.trust-badges-section {
    border-top: 1px solid var(--border);
}
.trust-badge-card {
    transition: transform 0.2s;
}
.trust-badge-card:hover {
    transform: translateY(-2px);
}

/* === SCENARIO HIGHLIGHT STATS COUNTUP FEEL === */
.scenario-stat-num {
    font-family: var(--font-display);
    transition: color 0.3s;
}
.scenario-highlight:hover .scenario-stat-num {
    color: var(--teal);
}

/* === SMOOTH SCROLL OFFSET FOR STICKY NAV === */
html {
    scroll-padding-top: calc(var(--nav-h) + 20px);
}

/* === PRODUCT CARD (HOMEPAGE) IMAGE HOVER ZOOM === */
.tier-card-image img {
    transition: transform 0.4s ease;
}
.tier-card:hover .tier-card-image img {
    transform: scale(1.03);
}

/* === LINK TRANSITION SMOOTHING (GLOBAL) === */
a {
    transition: color 0.2s;
}

/* === FRAMEWORK PILL ON PRODUCT PAGES === */
.framework-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: border-color 0.2s;
}
.framework-tag:hover {
    border-color: var(--teal);
}

/* === PRODUCT STATUS BADGE === */
.product-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--green);
    margin-bottom: 12px;
}

/* === COMPARISON TABLE ROW HOVER === */
.cmp-table tbody tr {
    transition: background 0.15s;
}
.cmp-table tbody tr:hover {
    background: var(--bg-secondary);
}

/* ================================================================
   HOMEPAGE RESTRUCTURE — Feb 2026
   ================================================================ */

/* === HOMEPAGE UTILITY CLASSES === */
.hp-center { text-align: center; }
.hp-center-sub { text-align: center; margin-left: auto; margin-right: auto; }
.hp-narrow { max-width: 800px; margin-left: auto; margin-right: auto; margin-top: 40px; }
.hp-cta { margin-top: 40px; text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FRAMEWORK CREDIBILITY STRIP === */
.fw-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    overflow: hidden;
}
.fw-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}
.fw-strip-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.fw-strip-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.fw-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.fw-strip-item:hover {
    border-color: var(--teal);
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.08);
}
.fw-strip-icon {
    display: flex;
    align-items: center;
    color: var(--teal);
}
.fw-strip-icon svg {
    width: 16px;
    height: 16px;
}
.fw-strip-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .fw-strip-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .fw-strip-logos {
        justify-content: center;
        gap: 10px;
    }
    .fw-strip-item {
        padding: 5px 10px;
    }
    .fw-strip-name {
        font-size: 12px;
    }
}

/* === HOMEPAGE RECOMMENDED PRODUCT CARD === */
.hp-recommended {
    border-color: var(--teal);
    border-width: 2px;
    position: relative;
}
.hp-pick-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    z-index: 1;
}

/* === IMPLEMENTATION TIMELINE CARD === */
.timeline-card {
    max-width: 900px;
    margin: 0 auto;
}
.timeline-inner {
    background: linear-gradient(135deg, #1a2332 0%, #1e3048 100%);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.timeline-header {
    margin-bottom: 36px;
}
.timeline-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    background: rgba(8, 145, 178, 0.15);
    color: var(--teal);
    margin-bottom: 16px;
}
.timeline-inner h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}
.timeline-inner > .timeline-header > p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 640px;
}
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.timeline-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.3s, background 0.3s;
}
.timeline-step:hover {
    border-color: rgba(8, 145, 178, 0.3);
    background: rgba(8, 145, 178, 0.06);
}
.timeline-day {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.3px;
}
.timeline-desc {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}
.timeline-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.timeline-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.timeline-stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}
.timeline-stat-lbl {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .timeline-inner {
        padding: 32px 24px;
    }
    .timeline-steps {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .timeline-stats {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .timeline-steps {
        grid-template-columns: 1fr;
    }
}

/* === LEAD CAPTURE / FREE RESOURCES CARD === */
.lead-capture-card {
    max-width: 900px;
    margin: 0 auto;
}
.lead-capture-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.08);
}
.lead-capture-text h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.lead-capture-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
}
.lead-capture-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lead-capture-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.lead-capture-feat svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}
.lead-capture-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.lead-capture-note {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .lead-capture-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }
    .lead-capture-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .lead-capture-features {
        align-items: center;
    }
    .lead-capture-cta {
        width: 100%;
    }
    .lead-capture-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === INLINE STYLE REPLACEMENTS === */
.cta-note-link { color: inherit; text-decoration: underline; }
.cta-note-link:hover { color: #fff; }
.trust-badge-link { color: inherit; }
.trust-badge-link:hover { text-decoration: underline; }
.badge-link { color: inherit; }
.badge-link:hover { opacity: 0.8; }
.blog-prose { max-width: 760px; margin: 0 auto; }

/* === BLOG LIST CLASSES === */
.blog-list-item { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.blog-list-title { margin-bottom: 8px; }
.blog-list-link { color: var(--text-primary); }
.blog-list-link:hover { color: var(--teal); }
.blog-list-date { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-list-summary { color: var(--text-secondary); line-height: 1.7; }
.blog-list-more { color: var(--teal); font-weight: 600; }
.blog-list-more:hover { text-decoration: underline; }

/* === PRODUCTS LISTING PAGE === */
.products-cat-header { margin-bottom: 32px; }
.products-cat-header .section-title { margin-bottom: 8px; }
.products-cat-header .section-sub { color: var(--text-secondary); font-size: 15px; max-width: 640px; }

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.coming-soon-item {
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* === FREE RESOURCE UPGRADE LINKS === */
.resource-upgrade {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
.resource-upgrade a {
    color: var(--teal);
    font-weight: 600;
}
.resource-upgrade a:hover {
    text-decoration: underline;
}

/* ================================================================
   KIT (CONVERTKIT) EMAIL SIGNUP FORMS
   ================================================================ */

/* Form group — stacked in card context */
.kit-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: 260px;
}

/* Form row — horizontal in inline context */
.kit-form-row {
    display: flex;
    gap: 8px;
}

/* Shared input styles */
.kit-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.kit-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 123, 138, 0.15);
}

.kit-input::placeholder {
    color: var(--text-muted);
}

/* Submit button overrides */
.kit-submit {
    white-space: nowrap;
    flex-shrink: 0;
}

.kit-form-group .kit-submit {
    width: 100%;
    justify-content: center;
}

/* Success / error messages */
.kit-success {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
}

.kit-success-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green);
}

.kit-error {
    padding: 14px 18px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: #f87171;
}

.kit-error a {
    color: #f87171;
    text-decoration: underline;
}

/* Inline variant */
.kit-inline {
    max-width: 600px;
    margin: 32px auto 0;
    text-align: center;
}

.kit-inline .kit-form-row {
    justify-content: center;
}

.kit-inline-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.kit-inline-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

.kit-inline .kit-success,
.kit-inline .kit-error {
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 600px) {
    .kit-form-row {
        flex-direction: column;
    }

    .kit-form-row .kit-submit {
        width: 100%;
        justify-content: center;
    }

    .kit-form-group {
        min-width: auto;
    }
}

/* === TRUST STRIP === */
.trust-strip {
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 16px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.trust-lbl {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.trust-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 16px;
    font-style: italic;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .trust-num { font-size: 28px; }
}

/* === PRODUCT PAGE EMAIL CAPTURE === */
.product-notify {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 32px;
    text-align: center;
}

.product-notify-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

/* === COMPARISON TABLE — PRODUCT PAGES === */
.vs-table-wrap {
    margin: 48px 0;
    overflow-x: auto;
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.vs-table th {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border);
    text-align: left;
    color: var(--text-secondary);
}

.vs-table th.vs-highlight {
    color: var(--teal);
    background: rgba(12, 180, 206, 0.05);
}

.vs-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.vs-table td.vs-highlight {
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(12, 180, 206, 0.03);
}

.vs-table .vs-check {
    color: var(--green);
    font-weight: 700;
}

.vs-table .vs-cross {
    color: var(--text-tertiary);
}

.vs-table .vs-partial {
    color: var(--amber, #f59e0b);
}

/* === INTERACTIVE QUIZ === */
.quiz-container {
    max-width: 680px;
    margin: 0 auto;
}

.quiz-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.quiz-step {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    transition: background 0.3s;
}

.quiz-step.active {
    background: var(--teal);
}

.quiz-step.done {
    background: var(--teal);
}

.quiz-question {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.quiz-hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.quiz-option {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-size: 15px;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
}

.quiz-option:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(12, 180, 206, 0.12);
}

.quiz-option.selected {
    border-color: var(--teal);
    background: rgba(12, 180, 206, 0.06);
}

.quiz-option-label {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.quiz-option-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.quiz-back {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    padding: 8px 0;
}

.quiz-back:hover {
    color: var(--text-primary);
}

.quiz-results {
    margin-top: 16px;
}

.quiz-result-card {
    background: var(--bg-card);
    border: 2px solid var(--teal);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 16px;
}

.quiz-result-card .quiz-result-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--teal);
    margin-bottom: 8px;
}

.quiz-result-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quiz-result-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.quiz-result-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.quiz-result-meta span {
    font-size: 13px;
    color: var(--text-secondary);
}

.quiz-result-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quiz-alt {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.quiz-alt h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.quiz-restart {
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 600px) {
    .quiz-question { font-size: 20px; }
    .quiz-result-card { padding: 24px; }
    .quiz-result-actions { flex-direction: column; }
    .situation-grid .situation-card:last-child:nth-child(odd) {
        max-width: 100%;
    }
}

/* === COMPARISON PAGE === */
.compare-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 -1rem;padding:0 1rem}
.compare-table{width:100%;min-width:900px;border-collapse:collapse;font-size:0.9rem}
.compare-table thead{position:sticky;top:0;z-index:2}
.compare-table th,.compare-table td{padding:0.75rem 1rem;text-align:center;border-bottom:1px solid var(--border);vertical-align:top}
.compare-feature-col{width:160px;min-width:140px}
.compare-col{width:calc((100% - 160px)/5)}
.compare-feature{text-align:left;font-weight:600;color:var(--text-primary)}
.compare-header{display:flex;flex-direction:column;gap:0.25rem;padding:0.5rem 0}
.compare-label{font-size:0.7rem;text-transform:uppercase;letter-spacing:0.05em;color:var(--text-muted);font-weight:500}
.compare-name{font-size:1.05rem;font-weight:700;color:var(--text-primary)}
.compare-source{font-size:0.8rem;color:var(--text-muted)}
.compare-col-highlight{background:rgba(12,180,206,0.04)}
.compare-col-highlight .compare-name{color:#0CB4CE}
.compare-note{font-size:0.78rem;color:var(--text-muted);display:block;margin-top:0.2rem;line-height:1.3}
.cmp-good{color:#22c55e;font-weight:600}
.cmp-mid{color:#f59e0b;font-weight:500}
.cmp-bad{color:#ef4444;font-weight:500}
.compare-table td svg{width:16px;height:16px;vertical-align:middle}

.compare-honest-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:1.5rem}
.compare-honest-card{padding:2rem;border-radius:12px;border:1px solid var(--border)}
.compare-honest-card h3{display:flex;align-items:center;gap:0.5rem;margin-bottom:1rem;font-size:1.05rem}
.compare-honest-card h3 svg{width:20px;height:20px;flex-shrink:0}
.compare-honest-card ul{list-style:none;padding:0;display:flex;flex-direction:column;gap:0.6rem}
.compare-honest-card li{padding-left:1.25rem;position:relative;line-height:1.5;font-size:0.92rem;color:var(--text-secondary)}
.compare-honest-card li::before{content:"";position:absolute;left:0;top:0.55rem;width:6px;height:6px;border-radius:50%}
.compare-yes{background:rgba(34,197,94,0.03);border-color:rgba(34,197,94,0.15)}
.compare-yes h3{color:#22c55e}
.compare-yes li::before{background:#22c55e}
.compare-no{background:rgba(245,158,11,0.03);border-color:rgba(245,158,11,0.15)}
.compare-no h3{color:#f59e0b}
.compare-no li::before{background:#f59e0b}

.compare-detail-grid{display:flex;flex-direction:column;gap:0.75rem;margin-top:1.5rem}
.compare-detail{border:1px solid var(--border);border-radius:10px;overflow:hidden}
.compare-detail summary{padding:1.25rem 1.5rem;cursor:pointer;display:flex;flex-direction:column;gap:0.25rem;list-style:none}
.compare-detail summary::-webkit-details-marker{display:none}
.compare-detail summary::marker{display:none}
.compare-detail-title{font-weight:700;font-size:1.05rem;color:var(--text-primary)}
.compare-detail-verdict{font-size:0.88rem;color:var(--text-muted);font-style:italic}
.compare-detail[open] summary{border-bottom:1px solid var(--border);background:var(--bg-secondary)}
.compare-detail-body{padding:1.5rem;line-height:1.7}
.compare-detail-body p{margin-bottom:1rem;color:var(--text-secondary);font-size:0.95rem}
.compare-detail-body p:last-child{margin-bottom:0}
.compare-detail-body strong{color:var(--text-primary)}

@media(max-width:768px){
    .compare-honest-grid{grid-template-columns:1fr}
    .compare-detail summary{padding:1rem}
    .compare-detail-body{padding:1rem}
}

/* ================================================================
   HOMEPAGE v3 — CLEAN PROFESSIONAL LIGHT THEME (Vanta/Drata style)
   ================================================================ */

/* ── Hero ── */
.hp2-hero{
    padding:72px 24px 64px;
    background:#0F2B3C;
    border-bottom:none;
}
.hp2-hero-inner{
    max-width:var(--max-w);margin:0 auto;
    display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:center;
}
.hp2-hero-text{animation:hp2-up .7s ease-out both}
.hp2-hero-eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-size:12px;font-weight:600;letter-spacing:.6px;text-transform:uppercase;
    color:#E8935A;margin-bottom:20px;
}
.hp2-dot{width:7px;height:7px;border-radius:50%;background:#E86A2A;flex-shrink:0}
.hp2-hero h1{
    font-family:var(--font-display);font-size:clamp(30px,4.2vw,48px);
    font-weight:800;line-height:1.12;letter-spacing:-1px;
    color:#ffffff;margin-bottom:18px;
}
.hp2-grad{
    color:#ffffff;
    background:none;-webkit-background-clip:unset;-webkit-text-fill-color:unset;background-clip:unset;
}
.hp2-hero-sub{
    font-size:16px;color:#E8935A;line-height:1.7;
    max-width:520px;margin-bottom:28px;
}
.hp2-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:24px}
.hp2-hero .hp2-btn--primary{background:#ffffff;color:#0F2B3C}
.hp2-hero .hp2-btn--primary:hover{background:#f0f4f7;color:#0A1F2D;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15)}
.hp2-hero .hp2-btn--secondary{background:rgba(255,255,255,.1);color:#ffffff;border:1px solid rgba(255,255,255,.25)}
.hp2-hero .hp2-btn--secondary:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.4);color:#ffffff}
.hp2-hero-proof{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:13px;color:rgba(255,255,255,.55)}
.hp2-hero-proof strong{color:#ffffff;font-weight:700}
.hp2-proof-sep{color:rgba(255,255,255,.25)}

/* Hero visual — app frame */
.hp2-hero-visual{animation:hp2-up .7s ease-out .15s both}
.hp2-app-frame{
    background:#1a2332;border-radius:12px;overflow:hidden;
    box-shadow:0 24px 80px rgba(0,0,0,.14),0 4px 16px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.08);
}
.hp2-app-frame--lg{border-radius:14px}
.hp2-app-bar{
    display:flex;gap:6px;padding:10px 14px;
    background:#141c28;border-bottom:1px solid rgba(255,255,255,.06);
}
.hp2-app-bar span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.12)}
.hp2-app-bar span:first-child{background:#ff5f57}
.hp2-app-bar span:nth-child(2){background:#febc2e}
.hp2-app-bar span:last-child{background:#28c840}
.hp2-app-frame img{width:100%;display:block}

@keyframes hp2-up{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

@media(max-width:900px){
    .hp2-hero-inner{grid-template-columns:1fr;text-align:center}
    .hp2-hero-sub{margin-left:auto;margin-right:auto}
    .hp2-hero-actions{justify-content:center}
    .hp2-hero-proof{justify-content:center}
    .hp2-hero-visual{order:2}
}
@media(max-width:500px){
    .hp2-hero{padding:48px 16px 40px}
    .hp2-hero-actions{flex-direction:column}
    .hp2-btn{width:100%;justify-content:center}
}

/* ── Buttons ── */
.hp2-btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:12px 24px;border-radius:8px;font-size:14px;font-weight:600;
    transition:all .2s;text-decoration:none;border:none;cursor:pointer;
}
.hp2-btn--primary{background:var(--blue);color:#fff}
.hp2-btn--primary:hover{background:var(--blue-dark);transform:translateY(-1px);box-shadow:0 4px 12px rgba(232,106,42,.25)}
.hp2-btn--secondary{background:transparent;color:var(--text-secondary);border:1px solid var(--border)}
.hp2-btn--secondary:hover{border-color:var(--blue);color:var(--blue)}

/* ── Framework strip ── */
.hp2-fw-strip{
    background:#0A1F2D;border-bottom:1px solid rgba(255,255,255,.08);
    padding:16px 24px;overflow:hidden;
}
.hp2-fw-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;gap:24px}
.hp2-fw-label{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.45);white-space:nowrap;flex-shrink:0}
.hp2-fw-items{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.hp2-fw-items span{font-size:13px;font-weight:600;color:rgba(255,255,255,.7);white-space:nowrap;padding:4px 12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:6px}
@media(max-width:700px){
    .hp2-fw-inner{flex-direction:column;gap:10px;text-align:center}
    .hp2-fw-items{justify-content:center;gap:6px}
    .hp2-fw-items span{font-size:12px;padding:3px 8px}
}

/* ── Sections ── */
.hp2-section{padding:72px 24px}
.hp2-section--alt{background:var(--bg-secondary);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.hp2-section-inner{max-width:var(--max-w);margin:0 auto}
.hp2-label{font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--accent);margin-bottom:8px}
.hp2-label--center{text-align:center}
.hp2-heading--center{font-family:var(--font-display);font-size:clamp(26px,3.5vw,38px);font-weight:700;line-height:1.2;letter-spacing:-.4px;text-align:center;margin-bottom:12px}
.hp2-sub--center{font-size:16px;color:var(--text-secondary);text-align:center;max-width:640px;margin:0 auto 40px;line-height:1.7}

/* ── Stats row ── */
.hp2-stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.hp2-stat{text-align:center;padding:28px 20px;background:var(--bg-card);border:1px solid var(--border);border-radius:12px;transition:box-shadow .3s,transform .3s}
.hp2-stat:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.hp2-stat-n{display:block;font-family:var(--font-display);font-size:32px;font-weight:800;color:var(--blue);margin-bottom:8px}
.hp2-stat-l{font-size:14px;color:var(--text-secondary);line-height:1.5}
@media(max-width:700px){.hp2-stats-row{grid-template-columns:1fr}.hp2-stat-n{font-size:28px}}

/* ── Product showcase (alternating left/right) ── */
.hp2-showcase{display:grid;grid-template-columns:1.15fr 1fr;gap:48px;align-items:center}
.hp2-showcase--reverse{direction:rtl}.hp2-showcase--reverse>*{direction:ltr}
.hp2-showcase-text h2{font-family:var(--font-display);font-size:clamp(24px,3vw,32px);font-weight:700;line-height:1.2;margin-bottom:12px}
.hp2-showcase-text > p{font-size:15px;color:var(--text-secondary);line-height:1.7;margin-bottom:20px}
.hp2-showcase-meta{display:flex;align-items:center;gap:12px;margin-bottom:16px;flex-wrap:wrap}
.hp2-price{font-family:var(--font-display);font-size:28px;font-weight:800;color:var(--text-primary)}
.hp2-price-was{font-size:16px;color:var(--text-muted);text-decoration:line-through}
.hp2-tag{font-size:11px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:var(--teal);background:rgba(8,145,178,.08);padding:4px 10px;border-radius:4px}
.hp2-fw-chips{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px}
.hp2-fw-chips span{font-size:11px;font-weight:600;color:var(--text-muted);border:1px solid var(--border);padding:3px 8px;border-radius:4px;background:var(--bg-primary)}
@media(max-width:900px){
    .hp2-showcase,.hp2-showcase--reverse{grid-template-columns:1fr;direction:ltr;max-width:100%;overflow:hidden}
    .hp2-showcase--reverse>*{direction:ltr}
    .hp2-showcase-media{order:1;max-width:100%}
    .hp2-showcase-text{order:2;max-width:100%}
    .hp2-app-frame{max-width:100%;box-sizing:border-box}
    .hp2-app-frame img{max-width:100%;height:auto}
}

/* ── Product grid ── */
.hp2-pgrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;margin-bottom:40px}
.hp2-pcard{
    display:flex;flex-direction:column;background:var(--bg-card);border:1px solid var(--border);
    border-radius:12px;overflow:hidden;text-decoration:none;color:inherit;
    transition:border-color .25s,transform .25s,box-shadow .25s;position:relative;
}
.hp2-pcard:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.hp2-pcard--app{border-color:rgba(8,145,178,.3)}
.hp2-pcard--app:hover{border-color:var(--teal)}
.hp2-pcard-img{height:180px;overflow:hidden;background:var(--bg-secondary);display:flex;align-items:center;justify-content:center}
.hp2-pcard-img img{width:100%;height:100%;object-fit:contain;transition:transform .35s}
.hp2-pcard:hover .hp2-pcard-img img{transform:scale(1.04)}
.hp2-pcard-body{padding:16px;flex:1;display:flex;flex-direction:column}
.hp2-pcard-body h3{font-family:var(--font-display);font-size:15px;font-weight:700;margin-bottom:8px;line-height:1.3}
.hp2-pcard-price{font-family:var(--font-display);font-size:18px;font-weight:800;margin-bottom:8px}
.hp2-pcard-fw{display:flex;flex-wrap:wrap;gap:4px;margin-top:auto}
.hp2-pcard-fw span{font-size:10px;font-weight:600;color:var(--text-muted);border:1px solid var(--border);padding:2px 6px;border-radius:3px}
.hp2-pcard-badge{position:absolute;top:10px;right:10px;font-size:9px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;color:#fff;background:var(--teal);padding:3px 8px;border-radius:3px}

.hp2-cta-row{text-align:center;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ── Steps ── */
.hp2-steps{display:flex;align-items:flex-start;justify-content:center;gap:0;margin-top:40px}
.hp2-step{flex:1;max-width:280px;text-align:center;padding:0 20px}
.hp2-step-n{
    display:inline-flex;align-items:center;justify-content:center;
    width:44px;height:44px;border-radius:50%;
    background:var(--bg-secondary);border:2px solid var(--blue);
    font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--blue);margin-bottom:14px;
}
.hp2-step h4{font-size:16px;font-weight:700;margin-bottom:6px}
.hp2-step p{font-size:14px;color:var(--text-secondary);line-height:1.6}
.hp2-step-connector{display:flex;align-items:center;padding-top:12px;flex-shrink:0}
@media(max-width:768px){
    .hp2-steps{flex-direction:column;align-items:center;gap:24px}
    .hp2-step-connector{transform:rotate(90deg)}
}

/* ── Before / After ── */
.hp2-ba{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:32px}
.hp2-ba-col{border-radius:12px;padding:28px}
.hp2-ba--before{background:#fef2f2;border:1px solid #fecaca}
.hp2-ba--after{background:#f0fdf4;border:1px solid #bbf7d0}
.hp2-ba-col h4{font-family:var(--font-display);font-size:16px;font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:8px}
.hp2-ba--before h4{color:#dc2626}
.hp2-ba--after h4{color:#16a34a}
.hp2-ba-col h4 svg{width:18px;height:18px;flex-shrink:0}
.hp2-ba-col ul{list-style:none;padding:0;margin:0}
.hp2-ba-col li{padding:7px 0;font-size:14px;color:var(--text-secondary);border-bottom:1px solid rgba(0,0,0,.04)}
.hp2-ba-col li:last-child{border-bottom:none}
@media(max-width:768px){.hp2-ba{grid-template-columns:1fr}}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* ── Hero ── */
.ab-hero{padding:72px 24px 56px;background:#f5f3ed;border-bottom:1px solid var(--border)}
.ab-hero-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center}
.ab-hero-text{animation:hp2-up .7s ease-out both}
.ab-hero h1{font-family:var(--font-display);font-size:clamp(30px,4.2vw,48px);font-weight:800;line-height:1.12;letter-spacing:-1px;margin-bottom:18px}
.ab-hero-sub{font-size:16px;color:var(--text-secondary);line-height:1.7;max-width:520px;margin-bottom:28px}
.ab-hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.ab-hero-visual{animation:hp2-up .7s ease-out .15s both;display:flex;justify-content:center}
.ab-hero-img{width:100%;max-width:380px;height:auto;filter:drop-shadow(0 16px 32px rgba(0,0,0,.08));animation:float 6s ease-in-out infinite}
@media(max-width:900px){
    .ab-hero-inner{grid-template-columns:1fr;text-align:center}
    .ab-hero-sub{margin-left:auto;margin-right:auto}
    .ab-hero-actions{justify-content:center}
    .ab-hero-visual{order:2}
    .ab-hero-img{max-width:260px}
}

/* ── Two-col problem section ── */
.ab-two-col{display:grid;grid-template-columns:1.2fr .8fr;gap:48px;align-items:start}
.ab-col-text .ab-h2{font-family:var(--font-display);font-size:clamp(24px,3vw,34px);font-weight:700;line-height:1.2;margin-bottom:16px}
.ab-col-text p{font-size:15px;color:var(--text-secondary);line-height:1.75;margin-bottom:16px}
.ab-col-stats{display:flex;flex-direction:column;gap:14px}
.ab-stat-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:24px;text-align:center;box-shadow:var(--shadow-sm);transition:transform .2s,box-shadow .2s}
.ab-stat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.ab-stat-n{display:block;font-family:var(--font-display);font-size:28px;font-weight:800;color:var(--text-primary);margin-bottom:4px}
.ab-stat-l{font-size:13px;color:var(--text-muted);line-height:1.4}
.ab-stat-card--accent{border-color:var(--teal);background:linear-gradient(135deg,rgba(8,145,178,.04),rgba(8,145,178,.01))}
.ab-stat-card--accent .ab-stat-n{color:var(--teal)}
@media(max-width:768px){.ab-two-col{grid-template-columns:1fr}}

/* ── Mission pills ── */
.ab-mission-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:32px}
.ab-mission-pills span{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--text-secondary);padding:8px 16px;background:var(--bg-primary);border:1px solid var(--border);border-radius:8px}
.ab-mission-pills svg{width:16px;height:16px;color:var(--green);flex-shrink:0}

/* ── Deliver grid ── */
.ab-deliver-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.ab-deliver-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:28px;transition:border-color .25s,transform .25s,box-shadow .25s}
.ab-deliver-card:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.ab-deliver-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--bg-secondary);color:var(--blue);margin-bottom:14px}
.ab-deliver-icon svg{width:20px;height:20px}
.ab-deliver-card h4{font-size:15px;font-weight:700;margin-bottom:6px}
.ab-deliver-card p{font-size:13px;color:var(--text-muted);line-height:1.6}
@media(max-width:900px){.ab-deliver-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.ab-deliver-grid{grid-template-columns:1fr}}

/* ── Audience cards ── */
.ab-audience-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.ab-audience-card{background:var(--bg-primary);border:1px solid var(--border);border-radius:12px;padding:28px;position:relative;overflow:hidden;transition:transform .25s,box-shadow .25s}
.ab-audience-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.ab-audience-bar{position:absolute;top:0;left:0;right:0;height:3px;background:var(--blue)}
.ab-audience-bar--teal{background:var(--teal)}
.ab-audience-bar--green{background:var(--green)}
.ab-audience-card h4{font-size:15px;font-weight:700;margin-bottom:8px}
.ab-audience-card p{font-size:13px;color:var(--text-muted);line-height:1.6}
@media(max-width:768px){.ab-audience-grid{grid-template-columns:1fr}}

/* ── Principles ── */
.ab-principles{max-width:740px;margin:0 auto;display:flex;flex-direction:column;gap:0}
.ab-principle{display:flex;gap:20px;padding:28px 0;border-bottom:1px solid var(--border)}
.ab-principle:last-child{border-bottom:none}
.ab-principle-num{font-family:var(--font-display);font-size:28px;font-weight:800;color:var(--border-light);flex-shrink:0;width:48px;line-height:1}
.ab-principle-body h4{font-size:16px;font-weight:700;margin-bottom:6px}
.ab-principle-body p{font-size:14px;color:var(--text-secondary);line-height:1.65}

/* ── Framework grid ── */
.ab-fw-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:14px}
.ab-fw{background:var(--bg-primary);border:1px solid var(--border);border-radius:10px;padding:20px;text-align:center;transition:border-color .2s,box-shadow .2s}
.ab-fw:hover{border-color:var(--teal);box-shadow:var(--shadow-sm)}
.ab-fw svg{width:24px;height:24px;color:var(--teal);margin-bottom:8px}
.ab-fw h4{font-size:13px;font-weight:700;margin-bottom:2px}
.ab-fw span{font-size:11px;color:var(--text-muted)}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* ── Hero (legacy light — kept for fallback) ── */
.ct-hero{padding:72px 24px 48px;background:#f5f3ed;border-bottom:1px solid var(--border);text-align:center}
.ct-hero-inner{max-width:600px;margin:0 auto;animation:hp2-up .7s ease-out both}
.ct-hero h1{font-family:var(--font-display);font-size:clamp(30px,4.2vw,48px);font-weight:800;line-height:1.12;letter-spacing:-1px;margin-bottom:16px}
.ct-hero-sub{font-size:16px;color:var(--text-secondary);line-height:1.7}

/* ── Page hero — dark brand treatment (About, Services, Contact) ── */
.page-hero{padding:72px 24px 64px;background:#0F2B3C;text-align:center}
.page-hero-inner{max-width:720px;margin:0 auto;animation:hp2-up .7s ease-out both}
.page-hero .hp2-hero-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:600;letter-spacing:.6px;text-transform:uppercase;color:#E8935A;margin-bottom:20px}
.page-hero h1{font-family:var(--font-display);font-size:clamp(30px,4.2vw,48px);font-weight:800;line-height:1.12;letter-spacing:-1px;color:#ffffff;margin-bottom:18px}
.page-hero-sub{font-size:16px;color:#E8935A;line-height:1.7;max-width:600px;margin:0 auto 28px}
.page-hero-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.page-hero .hp2-btn--primary{background:#ffffff;color:#0F2B3C}
.page-hero .hp2-btn--primary:hover{background:#f0f4f7;color:#0A1F2D;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15)}
.page-hero .hp2-btn--secondary{background:rgba(255,255,255,.1);color:#ffffff;border:1px solid rgba(255,255,255,.25)}
.page-hero .hp2-btn--secondary:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.4);color:#ffffff}
@media(max-width:600px){
    .page-hero{padding:48px 16px 40px}
    .page-hero-actions{flex-direction:column;align-items:center}
    .page-hero-grid{grid-template-columns:1fr;text-align:center}
    .page-hero-grid .page-hero-actions{justify-content:center}
    .page-hero-visual{order:2}
}

/* ── Page hero grid — two-column with visual ── */
.page-hero-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1.1fr;gap:48px;align-items:center;animation:hp2-up .7s ease-out both}
.page-hero-grid .page-hero-sub{max-width:480px}
.page-hero-visual{animation:hp2-up .7s ease-out .15s both}
.page-hero-visual img{width:100%;height:auto;border-radius:12px;box-shadow:0 24px 80px rgba(0,0,0,.14),0 4px 16px rgba(0,0,0,.08)}

/* ── Section header — prominent treatment for key sections ── */
.section-header{padding:20px 0 8px;margin-bottom:24px;border-bottom:2px solid var(--teal)}
.section-header .hp2-label{font-size:13px;font-weight:800;letter-spacing:2.5px;color:var(--teal);margin-bottom:6px}
.section-header h2{font-family:var(--font-display);font-size:clamp(26px,3.5vw,38px);font-weight:800;line-height:1.2;letter-spacing:-.4px;margin-bottom:0}
.section-header p{font-size:16px;color:var(--text-secondary);line-height:1.7;margin-top:8px;max-width:640px}
.section-header--center{text-align:center;border-bottom:none;position:relative;padding-bottom:20px}
.section-header--center::after{content:'';display:block;width:60px;height:3px;background:var(--teal);margin:16px auto 0;border-radius:2px}
.section-header--center p{margin-left:auto;margin-right:auto}

/* ── Contact cards ── */
.ct-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:40px}
.ct-card{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:32px;text-align:center;transition:border-color .25s,transform .25s,box-shadow .25s}
.ct-card:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.ct-card[class*="clr-"]{text-align:left}
.ct-card-icon{width:48px;height:48px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px}
.ct-card-icon svg{width:22px;height:22px}
.ct-card-icon--blue{background:rgba(232,106,42,.08);color:var(--blue)}
.ct-card-icon--teal{background:rgba(8,145,178,.08);color:var(--teal)}
.ct-card-icon--green{background:rgba(5,150,105,.08);color:var(--green)}
.ct-card h3{font-family:var(--font-display);font-size:17px;font-weight:700;margin-bottom:10px}
.ct-card p{font-size:14px;color:var(--text-secondary);line-height:1.6;margin-bottom:16px}
.ct-email{display:inline-block;font-size:14px;font-weight:600;color:var(--blue);padding:8px 20px;border:1px solid var(--blue);border-radius:8px;transition:all .2s}
.ct-email:hover{background:var(--blue);color:#fff}
@media(max-width:768px){.ct-grid{grid-template-columns:1fr}}

/* ── Info bar ── */
.ct-info-bar{display:grid;grid-template-columns:1fr 1fr;gap:20px;padding:24px;background:var(--bg-secondary);border:1px solid var(--border);border-radius:12px}
.ct-info{display:flex;gap:14px;align-items:flex-start}
.ct-info-icon{width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;background:var(--bg-primary);border:1px solid var(--border);flex-shrink:0;color:var(--teal)}
.ct-info-icon svg{width:18px;height:18px}
.ct-info strong{display:block;font-size:14px;font-weight:700;margin-bottom:2px}
.ct-info p{font-size:13px;color:var(--text-muted);line-height:1.5;margin:0}
@media(max-width:600px){.ct-info-bar{grid-template-columns:1fr}}

/* ── Quick links ── */
.ct-links{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.ct-link-card{display:block;background:var(--bg-primary);border:1px solid var(--border);border-radius:12px;padding:28px;text-decoration:none;color:inherit;transition:border-color .25s,transform .25s,box-shadow .25s}
.ct-link-card:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.ct-link-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--bg-secondary);color:var(--blue);margin-bottom:14px}
.ct-link-icon svg{width:20px;height:20px}
.ct-link-card h4{font-size:15px;font-weight:700;margin-bottom:6px}
.ct-link-card p{font-size:13px;color:var(--text-muted);line-height:1.6;margin-bottom:12px}
.ct-link-go{font-size:13px;font-weight:600;color:var(--blue);transition:color .2s}
.ct-link-card:hover .ct-link-go{color:var(--teal)}
@media(max-width:600px){.ct-links{grid-template-columns:1fr}}

/* ================================================================
   PRODUCT DETAIL PAGE — LIGHT
   ================================================================ */
.pd-hero{padding:48px 24px 56px;background:#f5f3ed;border-bottom:1px solid var(--border)}
.pd-hero-inner{max-width:var(--max-w);margin:0 auto}
.pd-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;margin-top:16px}
.pd-hero-text h1{font-family:var(--font-display);font-size:clamp(26px,3.5vw,38px);font-weight:800;line-height:1.15;letter-spacing:-.5px;margin-bottom:12px}
.pd-hero-sub{font-size:16px;color:var(--text-secondary);line-height:1.7;margin-bottom:20px}
.pd-fw-chips{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px}
.pd-fw-chips span{font-size:11px;font-weight:600;color:var(--text-muted);border:1px solid var(--border);padding:4px 10px;border-radius:5px;background:var(--bg-secondary)}
.pd-doc-count{display:inline-flex;align-items:center;gap:6px;font-weight:600;color:var(--text-secondary)}
.pd-buy{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:4px}
.pd-price{font-family:var(--font-display);font-size:32px;font-weight:800;color:var(--text-primary)}
.pd-price-was{font-size:18px;color:var(--text-muted);text-decoration:line-through}
.pd-price-note{font-size:13px;color:var(--text-muted);width:100%}
.pd-hero-visual{animation:hp2-up .7s ease-out .1s both}
@media(max-width:900px){
    .pd-hero-grid{grid-template-columns:1fr}
    .pd-hero-visual{order:2}
}

/* Product hero — dark variant */
.pd-hero-dark{background:#0F2B3C;border-bottom:1px solid rgba(255,255,255,0.06)}
.pd-hero-dark h1{color:#fff}
.pd-hero-dark .pd-hero-sub{color:#94a3b8}
.pd-hero-dark .hp2-label{color:#E8935A}
.pd-hero-dark .pd-fw-chips span{background:rgba(255,255,255,0.06);border-color:rgba(255,255,255,0.12);color:#cbd5e1}
.pd-hero-dark .pd-doc-count{color:#94a3b8}
.pd-hero-dark .pd-price{color:#fff}
.pd-hero-dark .pd-price-was{color:#64748b}
.pd-hero-dark .pd-price-note{color:#94a3b8}
.pd-hero-dark .pd-buy .hp2-btn--primary{background:#E86A2A;color:#fff;border-color:#E86A2A}
.pd-hero-dark .pd-buy .hp2-btn--primary:hover{background:#c45a22}
.pd-hero-dark p[style*="color:var(--text-muted)"]{color:#94a3b8 !important}
.pd-hero-dark span[style*="background:rgba(13,148,136"]{background:rgba(13,148,136,0.12) !important;border-color:rgba(13,148,136,0.25) !important;color:#5eead4 !important}
.pd-hero-dark .breadcrumb a,.pd-hero-dark .breadcrumb span{color:#94a3b8}
.pd-hero-dark .breadcrumb a:hover{color:#E8935A}

/* Tier grid */
.pd-tier-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.pd-tier{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:28px;text-align:center;transition:border-color .25s,transform .25s,box-shadow .25s}
.pd-tier:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-md)}
.pd-tier--feat{border-color:var(--teal);border-width:2px}
.pd-tier-img{max-height:160px;overflow:hidden;border-radius:8px;margin-bottom:16px}
.pd-tier-img img{width:100%;height:100%;object-fit:cover}
.pd-tier-label{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--teal);margin-bottom:8px}
.pd-tier h3{font-family:var(--font-display);font-size:16px;font-weight:700;margin-bottom:12px}
.pd-tier-price{font-family:var(--font-display);font-size:32px;font-weight:800;margin-bottom:4px}
.pd-tier-price span{font-size:18px;font-weight:600;color:var(--text-muted)}
.pd-tier-note{font-size:12px;color:var(--text-muted);margin-top:8px}
.pd-tier-note a{color:var(--blue)}

/* Single product box */
.pd-single-box{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;overflow:hidden;box-shadow:var(--shadow-sm)}
.pd-single-inner{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;padding:32px}
.pd-single-left h3{font-family:var(--font-display);font-size:20px;font-weight:700;margin-bottom:12px}
.pd-single-status{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--green);margin-bottom:8px;display:block}
.pd-doc-badge{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--text-secondary);margin-top:12px}
.pd-single-right{display:flex;flex-direction:column;align-items:flex-start;justify-content:center}
@media(max-width:700px){.pd-single-inner{grid-template-columns:1fr}}

/* Notify */
.pd-notify{background:var(--bg-secondary);border:1px solid var(--border);border-radius:12px;padding:24px;text-align:center}
.pd-notify-h{font-weight:700;margin-bottom:12px}

/* Coming soon grid */
.pd-coming-grid{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.pd-coming-item{font-size:13px;font-weight:600;color:var(--text-muted);padding:8px 16px;background:var(--bg-primary);border:1px solid var(--border);border-radius:6px}

/* ================================================================
   THANK YOU PAGE
   ================================================================ */
.ty-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:32px}
.ty-step{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:24px;transition:transform .25s,box-shadow .25s}
.ty-step:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.ty-step-icon{width:40px;height:40px;border-radius:10px;background:var(--bg-secondary);color:var(--teal);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.ty-step-icon svg{width:20px;height:20px}
.ty-step h4{font-size:15px;font-weight:700;margin-bottom:6px}
.ty-step p{font-size:13px;color:var(--text-muted);line-height:1.6}
.ty-tips{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:24px}
.ty-tip{padding:20px 0;border-bottom:1px solid var(--border)}
.ty-tip:nth-last-child(-n+2){border-bottom:none}
.ty-tip h4{font-size:14px;font-weight:700;color:var(--teal);margin-bottom:4px}
.ty-tip p{font-size:14px;color:var(--text-secondary);line-height:1.65}
@media(max-width:700px){.ty-tips{grid-template-columns:1fr}}

/* === GET STARTED / INTAKE FORM === */
.intake-layout{display:grid;grid-template-columns:1fr 380px;gap:48px;align-items:start}
.intake-form-wrap{min-width:0}
.intake-form{display:flex;flex-direction:column;gap:24px}
.intake-group{display:flex;flex-direction:column;gap:6px}
.intake-label{font-size:14px;font-weight:600;color:var(--text-primary)}
.intake-req{color:var(--red);font-weight:700}
.intake-input,.intake-select,.intake-textarea{font-family:var(--font-body);font-size:15px;padding:12px 16px;border:1px solid var(--border);border-radius:8px;background:var(--bg-card);color:var(--text-primary);transition:border-color .2s,box-shadow .2s;width:100%}
.intake-input:focus,.intake-select:focus,.intake-textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(8,145,178,0.1)}
.intake-input::placeholder,.intake-textarea::placeholder{color:var(--text-muted);font-size:14px}
.intake-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;padding-right:40px;cursor:pointer}
.intake-textarea{resize:vertical;min-height:80px}
.intake-checks{display:flex;flex-direction:column;gap:10px}
.intake-check{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text-secondary);cursor:pointer}
.intake-check input[type="checkbox"]{width:18px;height:18px;accent-color:var(--teal);cursor:pointer;flex-shrink:0}
.intake-check span{line-height:1.4}
.intake-submit{width:100%;padding:16px;font-size:16px;margin-top:8px}
.intake-submit:disabled{opacity:0.6;cursor:not-allowed}
.intake-privacy{font-size:12px;color:var(--text-muted);text-align:center;line-height:1.5}

/* Sidebar */
.intake-sidebar{display:flex;flex-direction:column;gap:20px;position:sticky;top:calc(var(--nav-h) + 24px)}
.intake-sidebar-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:24px;box-shadow:var(--shadow-sm)}
.intake-sidebar-card--alt{background:var(--bg-secondary)}
.intake-sidebar-card h4{font-family:var(--font-display);font-size:16px;font-weight:700;margin-bottom:16px}
.intake-sidebar-card p{font-size:13px;color:var(--text-secondary);line-height:1.6;margin-bottom:12px}
.intake-next-steps{display:flex;flex-direction:column;gap:16px}
.intake-next-step{display:flex;gap:12px;align-items:flex-start}
.intake-next-num{width:28px;height:28px;border-radius:50%;background:var(--teal);color:#fff;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0}
.intake-next-step strong{display:block;font-size:14px;font-weight:600;margin-bottom:2px}
.intake-next-step p{font-size:12px;color:var(--text-muted);line-height:1.5;margin:0}
.intake-trust-items{display:flex;flex-direction:column;gap:12px}
.intake-trust-item{display:flex;align-items:center;gap:10px;font-size:13px;font-weight:500;color:var(--text-secondary)}
.intake-trust-icon{font-size:16px;flex-shrink:0}

/* Success state */
.intake-success{text-align:center;padding:60px 24px;background:var(--bg-card);border:1px solid var(--border);border-radius:12px}
.intake-success-icon{width:64px;height:64px;border-radius:50%;background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:700;margin:0 auto 20px}
.intake-success h3{font-family:var(--font-display);font-size:24px;font-weight:700;margin-bottom:8px}
.intake-success p{font-size:15px;color:var(--text-secondary);margin-bottom:24px;max-width:400px;margin-left:auto;margin-right:auto}

/* Responsive */
@media(max-width:900px){
.intake-layout{grid-template-columns:1fr;gap:32px}
.intake-sidebar{position:static;order:2}
}
