@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
    --bg-deep: #020716;
    --text-main: #ffffff;
    --text-muted: #d6dfef;
    --gold: #f6c452;
    --gold-soft: #ffe3a0;
    --line: rgba(123, 171, 242, 0.36);
    --header-h: 68px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text-main);
    background: var(--bg-deep);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-family: "Manrope", "Inter", "Trebuchet MS", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(2, 8, 24, 0.74);
    border-bottom: 1px solid rgba(120, 165, 234, 0.28);
}

.header-shell {
    max-width: 1440px;
    margin: 0 auto;
    min-height: var(--header-h);
    padding: 6px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-brand {
    display: inline-flex;
    flex-shrink: 0;
    width: min(170px, 30vw);
}

.header-logo {
    width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 1;
}

.nav-link {
    color: #edf3ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0em;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: 0.2s ease;
}

.nav-link:hover {
    border-color: rgba(123, 171, 242, 0.5);
    background: rgba(16, 40, 88, 0.4);
}

.nav-link.active {
    color: var(--gold-soft);
    border-color: rgba(246, 196, 82, 0.5);
    background: rgba(246, 196, 82, 0.1);
}

/* ── Hamburger button (hidden on desktop) ────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid rgba(123, 171, 242, 0.28);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
    border-color: rgba(246, 196, 82, 0.4);
    background: rgba(246, 196, 82, 0.06);
}

.burger-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #c8dcf5;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .burger-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-toggle[aria-expanded="true"] .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav overlay backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(1, 4, 16, 0.82);
    z-index: 998;
}
.nav-backdrop.open { display: block; }

.landing-page {
    min-height: calc(100vh - var(--header-h));
}

.hero-section {
    min-height: calc(100vh - var(--header-h));
    position: relative;
    overflow: hidden;
}

.hero-bg,
.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background: url("../images/hero-bg.png") center center / cover no-repeat;
}

.hero-layer {
    background:
        radial-gradient(circle at 23% 18%, rgba(39, 83, 170, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(1, 8, 24, 0.18) 0%, rgba(1, 8, 24, 0.56) 100%);
}

.hero-shell {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-brand {
    width: min(420px, 58vw);
    margin-bottom: 2px;
}

.brand-logo {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(460px, 1fr);
    gap: 20px;
    align-items: center;
}

.eyebrow {
    margin: 0;
    color: var(--gold);
    font-size: clamp(11px, 0.95vw, 15px);
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: clamp(24px, 3vw, 48px);
    height: 2px;
    background: rgba(246, 196, 82, 0.65);
}

.hero-title {
    margin: 10px 0 0;
    line-height: 1.05;
}

.title-light,
.title-accent {
    display: block;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 800;
}

.title-accent {
    color: var(--gold);
}

.hero-text {
    margin: 12px 0 0;
    max-width: 520px;
    font-size: clamp(14px, 0.92vw, 17px);
    line-height: 1.5;
    color: var(--text-muted);
}

.hero-text strong {
    color: var(--gold);
}

.hero-visual {
    position: relative;
    min-height: 400px;
}

.globe-wrap {
    position: absolute;
    inset: 0;
}

.globe-ring {
    width: min(44vw, 560px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid rgba(83, 153, 255, 0.5);
    box-shadow:
        0 0 35px rgba(80, 167, 255, 0.2),
        inset 0 0 35px rgba(80, 167, 255, 0.16);
    position: absolute;
    top: 2%;
    right: 3%;
}

.shield-core {
    position: absolute;
    top: 15%;
    right: 20%;
    width: min(20vw, 260px);
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

.shield-svg {
    width: 100%;
    display: block;
}

.platform-glow {
    position: absolute;
    bottom: 9%;
    right: 14%;
    width: min(28vw, 350px);
    aspect-ratio: 1 / 0.26;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 232, 165, 0.94) 0%, rgba(34, 156, 255, 0.8) 31%, rgba(6, 22, 70, 0.2) 66%, rgba(6, 22, 70, 0) 100%);
}

.platform-base {
    position: absolute;
    bottom: 2%;
    right: 8%;
    width: min(36vw, 460px);
    aspect-ratio: 1 / 0.26;
    border-radius: 50%;
    border: 2px solid rgba(44, 162, 255, 0.6);
    box-shadow:
        inset 0 0 22px rgba(40, 146, 255, 0.2),
        0 0 24px rgba(40, 146, 255, 0.2);
}

.floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    min-width: 185px;
    background: linear-gradient(180deg, rgba(9, 22, 52, 0.95), rgba(6, 18, 44, 0.85));
    border: 1.5px solid rgba(110, 173, 255, 0.58);
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(58, 134, 255, 0.2);
}

.floating-badge p {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.badge-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold-soft);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.badge-top {
    top: 0;
    left: 5%;
}

.badge-left {
    top: 33%;
    left: 2%;
}

.badge-right {
    top: 33%;
    right: 1%;
}

.benefits-strip {
    margin-top: 120px;
    background: linear-gradient(180deg, rgba(5, 17, 44, 0.9), rgba(3, 13, 34, 0.87));
    border: 1.5px solid var(--line);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    backdrop-filter: blur(2px);
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-right: 1px solid var(--line);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-text h3 {
    margin: 0 0 4px;
    font-size: clamp(14px, 1.05vw, 20px);
    line-height: 1.2;
}

.benefit-text p {
    margin: 0;
    color: #e4ecfb;
    font-size: clamp(12px, 0.85vw, 15px);
    line-height: 1.35;
}

/* ═══════════════════════════════════════════════
   HOME SECTIONS  (hs-*)
═══════════════════════════════════════════════ */

.hs-section {
    padding: 80px 22px;
}

.hs-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.hs-eyebrow {
    margin: 0 0 14px;
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
}

.hs-title {
    margin: 0 0 16px;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
}

.hs-body {
    margin: 0 0 36px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 640px;
}

.hs-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border: 1.5px solid rgba(246, 196, 82, 0.5);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-soft);
    text-decoration: none;
    transition: 0.2s ease;
    background: rgba(246, 196, 82, 0.06);
}

.hs-link-btn:hover {
    background: rgba(246, 196, 82, 0.14);
    border-color: var(--gold);
    color: #fff;
}

/* ── Problem stats ────────────────────────────── */
.hs-problem {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(39, 83, 170, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(2, 8, 24, 0) 0%, rgba(5, 18, 48, 0.6) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hs-stat-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(5, 17, 44, 0.7);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.hs-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px 20px;
}

.hs-stat-num {
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--gold);
    line-height: 1;
}

.hs-stat-lbl {
    font-size: clamp(12px, 0.85vw, 14px);
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.hs-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--line);
    flex-shrink: 0;
}

/* ── How it works steps ───────────────────────── */
.hs-how {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(63, 130, 236, 0.12), transparent 50%),
        rgba(2, 8, 24, 0.3);
}

.hs-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
}

.hs-step {
    flex: 1;
    background: rgba(5, 17, 44, 0.65);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s;
}

.hs-step:hover {
    border-color: rgba(246, 196, 82, 0.45);
}

.hs-step-num {
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 2.4vw, 38px);
    font-weight: 800;
    color: var(--gold);
    opacity: 0.7;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hs-step-content h3 {
    margin: 0 0 8px;
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 700;
    color: #fff;
}

.hs-step-content p {
    margin: 0;
    font-size: clamp(13px, 0.85vw, 15px);
    color: var(--text-muted);
    line-height: 1.6;
}

.hs-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 22px;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── Before / After ───────────────────────────── */
.hs-shift {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse at 50% 100%, rgba(39, 83, 170, 0.14), transparent 55%);
}

.hs-shift-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    margin-top: 8px;
    background: rgba(5, 17, 44, 0.55);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.hs-shift-col {
    padding: 36px 40px;
}

.hs-shift-divider {
    background: var(--line);
}

.hs-shift-label {
    margin: 0 0 20px;
    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hs-before .hs-shift-label {
    color: rgba(200, 80, 80, 0.85);
}

.hs-after .hs-shift-label {
    color: var(--gold);
}

.hs-shift-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hs-shift-list li {
    font-size: clamp(13px, 0.9vw, 15px);
    color: var(--text-muted);
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.hs-before .hs-shift-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    font-size: 11px;
    color: rgba(220, 90, 90, 0.8);
    top: 2px;
}

.hs-after .hs-shift-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 12px;
    color: var(--gold);
    top: 1px;
    font-weight: 700;
}

/* ── Audience cards ───────────────────────────── */
.hs-audience {
    background:
        radial-gradient(ellipse at 100% 50%, rgba(39, 83, 170, 0.15), transparent 50%);
}

.hs-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.hs-aud-card {
    background: rgba(5, 17, 44, 0.65);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

.hs-aud-card:hover {
    border-color: rgba(246, 196, 82, 0.45);
    transform: translateY(-3px);
}

.hs-aud-icon {
    width: 46px;
    height: 46px;
    background: rgba(246, 196, 82, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(246, 196, 82, 0.25);
}

.hs-aud-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.hs-aud-card h3 {
    margin: 0;
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 700;
    color: #fff;
}

.hs-aud-card p {
    margin: 0;
    font-size: clamp(13px, 0.85vw, 15px);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── CTA banner ───────────────────────────────── */
.hs-cta {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(63, 130, 236, 0.2), transparent 60%),
        linear-gradient(180deg, rgba(5, 18, 48, 0.8) 0%, rgba(2, 8, 24, 0.95) 100%);
}

.hs-cta-inner {
    text-align: center;
    max-width: 680px;
}

.hs-cta-title {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
}

.hs-cta-sub {
    margin: 0 0 36px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.65;
    color: var(--text-muted);
}

.hs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #f6c452 0%, #e0a22a 100%);
    border: none;
    border-radius: 10px;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 700;
    color: #0d0900;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: 0.2s ease;
    box-shadow: 0 4px 24px rgba(246, 196, 82, 0.28);
}

.hs-cta-btn:hover {
    background: linear-gradient(135deg, #ffd466 0%, #f0b030 100%);
    box-shadow: 0 6px 32px rgba(246, 196, 82, 0.4);
    transform: translateY(-2px);
    color: #0d0900;
}

/* ── Responsive home sections ─────────────────── */
@media (max-width: 900px) {
    .hs-steps {
        flex-direction: column;
        gap: 16px;
    }
    .hs-step-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
        font-size: 18px;
    }
    .hs-audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hs-shift-grid {
        grid-template-columns: 1fr;
    }
    .hs-shift-divider {
        height: 1px;
        width: 100%;
    }
    .hs-shift-col {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .hs-section {
        padding: 56px 16px;
    }
    .hs-stat-row {
        flex-direction: column;
        gap: 0;
    }
    .hs-stat {
        padding: 22px 16px;
        border-bottom: 1px solid var(--line);
    }
    .hs-stat:last-child {
        border-bottom: none;
    }
    .hs-stat-divider {
        display: none;
    }
    .hs-cta-inner {
        text-align: left;
    }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */

/* Page wrapper */
.ab-page {
    background:
        radial-gradient(circle at 84% 14%, rgba(63, 130, 236, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(2, 9, 28, 0.82), rgba(2, 8, 22, 0.95)),
        url("../images/hero-bg.png") center top / cover no-repeat;
}

/* ── Hero ─────────────────────────────────────── */
.ab-hero {
    position: relative;
    min-height: clamp(340px, 44vh, 500px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(1, 9, 26, 0.8) 0%, rgba(2, 12, 36, 0.52) 48%, rgba(1, 8, 24, 0.16) 100%);
    border-bottom: 1px solid rgba(123, 171, 242, 0.18);
}

.ab-hero-inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px 46px;
}

.ab-hero-card {
    max-width: 700px;
    background: linear-gradient(145deg, rgba(5, 18, 52, 0.88), rgba(3, 12, 36, 0.82));
    border: 1px solid rgba(123, 171, 242, 0.4);
    border-radius: 22px;
    padding: clamp(24px, 2.8vw, 38px) clamp(22px, 2.7vw, 38px);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
}

.ab-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: clamp(13px, 1.05vw, 17px);
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ab-hero-title {
    margin: 0;
    color: #edf3ff;
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.ab-hero-sub {
    margin: 14px 0 0;
    color: #c4d4ee;
    font-size: clamp(14px, 0.94vw, 16px);
    line-height: 1.6;
}

/* ── Body ─────────────────────────────────────── */
.ab-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* ── Section base ─────────────────────────────── */
.ab-section {
    margin-top: 52px;
    background: linear-gradient(150deg, rgba(7, 21, 54, 0.74), rgba(4, 15, 40, 0.68));
    border: 1px solid rgba(123, 171, 242, 0.2);
    border-radius: 20px;
    padding: 30px 30px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.ab-section-ruled {
    padding-top: 30px;
}

.ab-section-hd {
    margin-bottom: 28px;
}

.ab-sec-title {
    margin: 0;
    color: var(--gold);
    font-size: clamp(22px, 2.15vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ── Two-column layout ────────────────────────── */
.ab-two-col {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 34px;
    align-items: start;
}

.ab-col-main p {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.7;
}

.ab-col-main p+p {
    margin-top: 16px;
}

/* Pills aside */
.ab-pill-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-pill {
    padding: 13px 18px;
    background: linear-gradient(140deg, rgba(9, 26, 68, 0.82), rgba(5, 17, 46, 0.76));
    border: 1px solid rgba(246, 196, 82, 0.26);
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    color: #edf3ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ── Callout bar ──────────────────────────────── */
.ab-callout-bar {
    border-left: 4px solid var(--gold);
    padding: 4px 0 4px 24px;
    max-width: 760px;
}

.ab-callout-bar p {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.7;
}

.ab-callout-bar p+p {
    margin-top: 14px;
}

/* ── Closing quote ────────────────────────────── */
.ab-closing-quote {
    margin: 28px 0 0;
    padding: 22px 28px;
    background: linear-gradient(120deg, rgba(246, 196, 82, 0.08), rgba(246, 196, 82, 0.03));
    border: 1px solid rgba(246, 196, 82, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: 16px;
    color: #f0f6ff;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    font-style: normal;
    line-height: 1.55;
    max-width: 820px;
}

.ab-closing-quote p {
    margin: 0;
}

.ab-closing-quote p+p {
    margin-top: 12px;
}

.ab-contact-link {
    color: #f5d985;
    font-weight: 700;
    text-decoration: none;
}

.ab-contact-link:hover {
    text-decoration: underline;
}

.ab-contact-meta {
    color: #d5e2f6;
    font-size: 0.92em;
}

/* ═══════════════════════════════════════════════
   START WITH TRUST PAGE
═══════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */
.st-hero {
    position: relative;
    min-height: clamp(300px, 42vh, 480px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(1, 9, 26, 0.88) 0%, rgba(2, 12, 36, 0.6) 50%, rgba(1, 8, 24, 0.2) 100%),
        url("../images/hero-bg.png") center 30% / cover no-repeat;
    border-bottom: 1px solid rgba(123, 171, 242, 0.18);
}

.st-hero-inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 52px 40px 56px;
}

.st-hero-inner .ab-kicker {
    margin-bottom: 18px;
}

.st-hero-title {
    margin: 0;
    color: #edf3ff;
    font-size: clamp(26px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 860px;
}

.st-br {
    display: none;
}

@media (min-width: 860px) {
    .st-br {
        display: inline;
    }
}

.st-hero-sub {
    margin: 18px 0 0;
    color: #c0d2ee;
    font-size: clamp(15px, 1.12vw, 18px);
    line-height: 1.65;
    max-width: 560px;
}

/* ── Body ─────────────────────────────────────── */
.st-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* ── Pillars ──────────────────────────────────── */
.st-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}

.st-pillar {
    padding: 28px 24px;
    background: linear-gradient(150deg, rgba(8, 24, 62, 0.86), rgba(4, 15, 40, 0.8));
    border: 1px solid rgba(123, 171, 242, 0.22);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.st-pillar:hover {
    border-color: rgba(246, 196, 82, 0.38);
    transform: translateY(-3px);
}

.st-pillar-num {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    opacity: 0.9;
}

.st-pillar h3 {
    margin: 0 0 10px;
    color: #edf3ff;
    font-size: clamp(15px, 1.25vw, 19px);
    font-weight: 700;
    line-height: 1.3;
}

.st-pillar p {
    margin: 0;
    color: #b8cde8;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.65;
}

/* ── Contact section ──────────────────────────── */
.st-contact-section {
    margin-top: 44px;
}

.st-contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ── Section headings ─────────────────────────── */
.st-section-title {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.st-section-sub {
    margin: 0 0 22px;
    color: #b0c6e2;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.6;
}

/* ── Form ─────────────────────────────────────── */
.st-form-wrap {
    background: linear-gradient(155deg, rgba(7, 22, 58, 0.9), rgba(4, 14, 38, 0.85));
    border: 1px solid rgba(123, 171, 242, 0.28);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.st-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.st-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.st-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.st-field label {
    color: #c8d8f0;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.st-field input,
.st-field textarea {
    width: 100%;
    border: 1px solid rgba(123, 171, 242, 0.32);
    border-radius: 10px;
    padding: 11px 14px;
    color: #edf3ff;
    background: rgba(2, 10, 30, 0.7);
    font: 14px/1.5 inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.st-field textarea {
    resize: vertical;
}

.st-field input::placeholder,
.st-field textarea::placeholder {
    color: #6e8cb0;
}

.st-field input:focus,
.st-field textarea:focus {
    outline: none;
    border-color: rgba(246, 196, 82, 0.64);
    box-shadow: 0 0 0 3px rgba(246, 196, 82, 0.12);
}

.st-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #c9981e, #e8b832);
    border: none;
    border-radius: 12px;
    color: #0a0800;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.st-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.st-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #0a0800;
    stroke-width: 2;
}

/* ── Contact panel ────────────────────────────── */
.st-contact-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.st-contact-info {
    background: linear-gradient(155deg, rgba(7, 22, 58, 0.9), rgba(4, 14, 38, 0.85));
    border: 1px solid rgba(123, 171, 242, 0.28);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.st-email-row,
.st-address-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #d8e8fb;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.18s ease;
}

.st-email-row:hover {
    color: var(--gold-soft);
}

.st-info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 196, 82, 0.1);
    border: 1px solid rgba(246, 196, 82, 0.22);
    border-radius: 10px;
}

.st-info-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Map ──────────────────────────────────────── */
.st-map-wrap {
    border: 1px solid rgba(123, 171, 242, 0.24);
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.st-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ═══════════════════════════════════════════════
   WHO THIS IS FOR PAGE
═══════════════════════════════════════════════ */
.who-hero {
    min-height: clamp(340px, 44vh, 500px);
    background:
        linear-gradient(100deg, rgba(1, 9, 26, 0.8) 0%, rgba(2, 12, 36, 0.52) 48%, rgba(1, 8, 24, 0.16) 100%);
}

.who-hero .ab-hero-inner {
    max-width: 1240px;
}

.who-hero-card {
    max-width: 700px;
}

.who-hero-card .ab-kicker {
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: none;
}

.who-hero-card .ab-hero-title {
    max-width: 560px;
}

.who-hero-card .ab-hero-sub {
    max-width: 560px;
}

.who-section {
    position: relative;
}

.who-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.who-card {
    min-height: 260px;
    padding: clamp(22px, 2.3vw, 30px);
    background:
        linear-gradient(150deg, rgba(8, 24, 62, 0.86), rgba(4, 15, 40, 0.8));
    border: 1px solid rgba(123, 171, 242, 0.24);
    border-radius: 18px;
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.who-card:hover {
    border-color: rgba(246, 196, 82, 0.42);
    transform: translateY(-4px);
    box-shadow:
        0 28px 58px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.who-card-featured {
    border-color: rgba(246, 196, 82, 0.54);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.32),
        0 0 26px rgba(246, 196, 82, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.who-card h2 {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: clamp(17px, 1.2vw, 21px);
    font-weight: 800;
    line-height: 1.2;
}

.who-card p {
    margin: 0;
    color: #d8e4f5;
    font-size: clamp(13px, 0.92vw, 15px);
    font-weight: 500;
    line-height: 1.7;
}

.who-card p+p {
    margin-top: 14px;
}

.who-trust-callout {
    margin-top: 38px;
    padding: 22px 28px;
    background: linear-gradient(120deg, rgba(246, 196, 82, 0.08), rgba(22, 58, 126, 0.18));
    border: 1px solid rgba(246, 196, 82, 0.24);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
}

.who-trust-callout p {
    margin: 0;
    color: #f0f6ff;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 700;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   PROBLEM EXISTS PAGE
═══════════════════════════════════════════════ */

/* Page wrapper */
.prob-page {
    background:
        radial-gradient(circle at 84% 14%, rgba(63, 130, 236, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(2, 9, 28, 0.82), rgba(2, 8, 22, 0.95)),
        url("../images/hero-bg.png") center top / cover no-repeat;
}

/* ── Hero ─────────────────────────────────────── */
.prob-hero {
    position: relative;
    min-height: clamp(340px, 44vh, 500px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(1, 9, 26, 0.8) 0%, rgba(2, 12, 36, 0.52) 48%, rgba(1, 8, 24, 0.16) 100%);
    border-bottom: 1px solid rgba(123, 171, 242, 0.18);
}

.prob-hero-inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px 46px;
}

.prob-hero-card {
    max-width: 700px;
    background: linear-gradient(145deg, rgba(5, 18, 52, 0.88), rgba(3, 12, 36, 0.82));
    border: 1px solid rgba(123, 171, 242, 0.4);
    border-radius: 22px;
    padding: clamp(24px, 2.8vw, 38px) clamp(22px, 2.7vw, 38px);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
}

.prob-hero-title {
    margin: 0;
    color: var(--gold);
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.prob-hero-sub {
    margin: 14px 0 0;
    color: #c4d4ee;
    font-size: clamp(14px, 0.94vw, 16px);
    line-height: 1.6;
    max-width: 540px;
}

/* Stats row */
.prob-stats {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.prob-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 18px;
    background: linear-gradient(150deg, rgba(8, 24, 62, 0.9), rgba(4, 15, 40, 0.85));
    border: 1px solid rgba(246, 196, 82, 0.32);
    border-radius: 18px;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.prob-stat-num {
    color: var(--gold);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
}

.prob-stat-label {
    color: #c4d2ea;
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 500;
    line-height: 1.5;
}

/* ── Body content shell ──────────────────────── */
.prob-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* ── Callout block ───────────────────────────── */
.prob-callout {
    margin-top: 56px;
    background: linear-gradient(150deg, rgba(7, 21, 54, 0.74), rgba(4, 15, 40, 0.68));
    border: 1px solid rgba(123, 171, 242, 0.2);
    border-radius: 20px;
    padding: 28px 30px 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.prob-callout-inner {
    border-left: 4px solid var(--gold);
    padding: 4px 0 4px 24px;
    max-width: 760px;
}

.prob-callout-lead {
    margin: 0 0 14px;
    color: #f0f6ff;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 700;
    line-height: 1.3;
}

.prob-callout-inner p {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.65;
}

.prob-callout-inner p+p {
    margin-top: 12px;
}

/* ── Section base ────────────────────────────── */
.prob-section {
    margin-top: 52px;
    background: linear-gradient(150deg, rgba(7, 21, 54, 0.74), rgba(4, 15, 40, 0.68));
    border: 1px solid rgba(123, 171, 242, 0.2);
    border-radius: 20px;
    padding: 30px 30px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.prob-section-hd {
    margin-bottom: 24px;
}

.prob-sec-title {
    margin: 0;
    color: var(--gold);
    font-size: clamp(22px, 2.15vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.prob-sec-intro {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: clamp(14px, 0.98vw, 16px);
    line-height: 1.6;
    max-width: 680px;
}

.prob-sec-emphasis {
    display: block;
    margin-top: 10px;
    color: var(--gold-soft);
    font-weight: 800;
}

/* ── Failure Loop ────────────────────────────── */
.prob-loop {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
}

/* connecting line */
.prob-loop::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    background: linear-gradient(90deg,
            rgba(100, 149, 228, 0.28),
            rgba(100, 149, 228, 0.52) 50%,
            rgba(255, 90, 96, 0.38));
    z-index: 0;
}

.prob-loop-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.prob-loop-step.actor .step-dot {
    background: linear-gradient(145deg, rgba(16, 44, 102, 0.95), rgba(10, 30, 76, 0.9));
    border: 2px solid rgba(100, 149, 228, 0.55);
    color: #d6e4ff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.prob-loop-step.danger .step-dot {
    background: linear-gradient(145deg, rgba(90, 16, 28, 0.9), rgba(64, 10, 20, 0.88));
    border: 2px solid rgba(255, 90, 96, 0.5);
    color: #ff9ea0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.step-lbl {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.prob-loop-step.actor .step-lbl {
    color: #c8dafb;
}

.prob-loop-step.danger .step-lbl {
    color: #ff9ea0;
}

.prob-loop-note {
    margin: 36px 0 0;
    color: var(--text-muted);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.65;
    max-width: 720px;
}

.prob-loop-note strong {
    color: #f0f6ff;
}

/* ── Damage Grid ─────────────────────────────── */
.prob-damage-section {
    padding-top: 30px;
}

.prob-damage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prob-damage-card {
    background: linear-gradient(160deg, rgba(9, 26, 68, 0.82), rgba(5, 17, 46, 0.76));
    border: 1px solid rgba(100, 149, 226, 0.22);
    border-radius: 20px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.prob-damage-card:hover {
    border-color: rgba(246, 196, 82, 0.4);
    transform: translateY(-3px);
}

.damage-accent {
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 18px;
    opacity: 0.85;
}

.prob-damage-card h3 {
    margin: 0 0 12px;
    color: #edf3ff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.prob-damage-card p {
    margin: 0;
    color: #b8cadf;
    font-size: 14px;
    line-height: 1.6;
}

/* ── Why It Persists ─────────────────────────── */
.prob-why-section {
    padding-top: 30px;
}

.prob-why-body {
    margin-top: 28px;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prob-why-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.65;
}

.prob-closing-quote {
    margin: 40px 0 0;
    padding: 24px 32px;
    background: linear-gradient(120deg, rgba(246, 196, 82, 0.08), rgba(246, 196, 82, 0.03));
    border: 1px solid rgba(246, 196, 82, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: 16px;
    color: #f0f6ff;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    font-style: normal;
    line-height: 1.5;
    max-width: 820px;
}

/* ═══════════════════════════════════════════════
   SHARED INNER PAGE SYSTEM (ip-*)
   All inner pages except homepage use these.
═══════════════════════════════════════════════ */

.ip-page {
    background:
        radial-gradient(circle at 84% 14%, rgba(63, 130, 236, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(2, 9, 28, 0.84), rgba(2, 8, 22, 0.97)),
        url("../images/hero-bg.png") center top / cover no-repeat;
    min-height: 100vh;
}

/* ── Open hero (no box) ───────────────────────── */
.ip-hero {
    position: relative;
    min-height: clamp(280px, 40vh, 460px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(1, 9, 26, 0.9) 0%, rgba(2, 12, 36, 0.62) 50%, rgba(1, 8, 24, 0.18) 100%),
        url("../images/hero-bg.png") center 30% / cover no-repeat;
    border-bottom: 1px solid rgba(123, 171, 242, 0.18);
}

.ip-hero-inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 52px 40px 56px;
}

.ip-hero-inner .ab-kicker {
    margin-bottom: 16px;
}

.ip-hero-title {
    margin: 0;
    color: #edf3ff;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 820px;
}

.ip-hero-sub {
    margin: 16px 0 0;
    color: #b8cfe8;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.65;
    max-width: 560px;
}

/* ── Body shell ───────────────────────────────── */
.ip-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ── Glass section card ───────────────────────── */
.ip-section {
    background: linear-gradient(150deg, rgba(7, 22, 58, 0.9), rgba(4, 14, 38, 0.85));
    border: 1px solid rgba(123, 171, 242, 0.24);
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.ip-section-title {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: clamp(20px, 1.9vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.ip-section-sub {
    margin: 0 0 24px;
    color: #9ab4d4;
    font-size: clamp(14px, 0.95vw, 15px);
    line-height: 1.6;
}

/* ── Pillar grid (3-col) ──────────────────────── */
.ip-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.ip-pillar-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.ip-pillar-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.ip-pillar {
    background: rgba(3, 12, 36, 0.7);
    border: 1px solid rgba(123, 171, 242, 0.2);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.ip-pillar:hover {
    border-color: rgba(246, 196, 82, 0.36);
    transform: translateY(-2px);
}

.ip-pillar-num {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.85;
}

.ip-pillar h3 {
    margin: 0 0 8px;
    color: #edf3ff;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 700;
    line-height: 1.3;
}

.ip-pillar p {
    margin: 0;
    color: #9ab4d4;
    font-size: clamp(13px, 0.92vw, 15px);
    line-height: 1.65;
}

/* ── Two-col layout ───────────────────────────── */
.ip-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 20px;
}

.ip-col-text p {
    margin: 0;
    color: #b8cfe8;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.72;
}

.ip-col-text p+p {
    margin-top: 14px;
}

/* ── Pill list ────────────────────────────────── */
.ip-pill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-pill {
    padding: 12px 16px;
    background: rgba(3, 12, 36, 0.7);
    border: 1px solid rgba(246, 196, 82, 0.22);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    color: #d8e8fb;
    font-size: 13.5px;
    font-weight: 600;
}

/* ── Quote / callout ──────────────────────────── */
.ip-quote {
    margin: 0;
    padding: 22px 26px;
    background: linear-gradient(120deg, rgba(246, 196, 82, 0.07), rgba(246, 196, 82, 0.02));
    border: 1px solid rgba(246, 196, 82, 0.26);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    color: #eef4ff;
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 600;
    font-style: normal;
    line-height: 1.6;
    margin-top: 20px;
}

/* ── Callout text bar ─────────────────────────── */
.ip-callout {
    border-left: 4px solid var(--gold);
    padding: 4px 0 4px 22px;
    margin-top: 16px;
}

.ip-callout p {
    margin: 0;
    color: #b8cfe8;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
}

.ip-callout p+p {
    margin-top: 12px;
}

/* ════════════════════════════════════════════════
   SITE FOOTER
════════════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, rgba(4, 12, 32, 0.0) 0%, rgba(2, 8, 24, 1) 100%);
    border-top: 1px solid rgba(123, 171, 242, 0.14);
    margin-top: 80px;
    padding: 60px 0 0;
}

.footer-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(123, 171, 242, 0.1);
}

/* Brand column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-tagline {
    margin: 0;
    color: #aac4de;
    font-size: 14px;
    line-height: 1.65;
    max-width: 260px;
}

.footer-cta-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(246, 196, 82, 0.5);
    border-radius: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-cta-btn:hover {
    background: rgba(246, 196, 82, 0.1);
    border-color: var(--gold);
    color: #fff;
}

/* Nav columns */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-nav-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.footer-nav-link {
    display: block;
    margin-bottom: 10px;
    color: #9dbbd8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-nav-link:hover {
    color: #edf3ff;
}

.footer-address {
    margin: 6px 0 0;
    color: #7a9bbf;
    font-size: 13px;
    line-height: 1.65;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 12px;
}

.footer-copy {
    margin: 0;
    color: #6e90b0;
    font-size: 13px;
}

.footer-legal {
    margin: 0;
    color: #5a7a98;
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-shell {
        padding: 16px 18px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .globe-ring {
        width: min(80vw, 560px);
        right: 10%;
        top: 4%;
    }

    .shield-core {
        width: min(42vw, 290px);
        right: 32%;
        top: 18%;
    }

    .platform-glow {
        width: min(60vw, 420px);
        right: 22%;
    }

    .platform-base {
        width: min(70vw, 520px);
        right: 14%;
    }

    .badge-top {
        left: 2%;
    }

    .badge-left {
        left: 1%;
    }

    .badge-right {
        right: 1%;
    }

    .benefits-strip {
        grid-template-columns: 1fr;
        margin-top: 16px;
    }

    .benefit-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }

    .ab-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .st-contact-grid {
        grid-template-columns: 1fr;
    }

    .st-pillars {
        grid-template-columns: 1fr;
    }

    .st-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ip-pillar-grid,
    .ip-pillar-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ip-two-col {
        grid-template-columns: 1fr;
    }

    .ip-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ab-body,
    .prob-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ab-section,
    .prob-section,
    .prob-callout {
        padding: 24px 22px 26px;
    }

    .prob-damage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-card-grid {
        grid-template-columns: 1fr;
    }

    .who-card {
        min-height: auto;
    }

    .who-hero-card {
        max-width: 100%;
    }

    .prob-hero-card {
        max-width: 640px;
    }
}

/* ════════════════════════════════════════════════
   TABLET  (max-width: 768px)
════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Header ────────────────────────────────── */
    :root { --header-h: 60px; }

    .header-shell {
        padding: 0 16px;
        gap: 8px;
    }

    .header-brand {
        flex-shrink: 0;
        width: min(148px, 38vw);
    }

    /* Show hamburger, push to right */
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        margin-left: auto;
    }

    .theme-toggle {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        margin-left: 6px;
    }

    /* ── Desktop nav hidden on mobile (Bootstrap offcanvas handles it) */
    .main-nav {
        display: none !important;
    }

    /* ── Homepage hero ─────────────────────────── */
    .hero-shell {
        padding: 28px 18px 20px;
    }

    .hero-brand {
        width: min(200px, 55vw);
        margin-bottom: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-copy {
        text-align: center;
    }

    .eyebrow {
        font-size: 10px;
        gap: 8px;
        justify-content: center;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: 18px;
    }

    .title-light,
    .title-accent {
        font-size: clamp(28px, 8.5vw, 40px);
    }

    .hero-text {
        font-size: clamp(14px, 4vw, 17px);
        max-width: 100%;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-visual {
        min-height: 320px;
    }

    .globe-ring {
        width: min(88vw, 380px);
        right: 2%;
        top: 4%;
    }

    .shield-core {
        width: min(50vw, 200px);
        right: 25%;
        top: 20%;
    }

    .platform-glow {
        width: min(72vw, 300px);
        right: 10%;
        bottom: 12%;
    }

    .platform-base {
        width: min(86vw, 390px);
        right: 3%;
        bottom: 5%;
    }

    .floating-badge {
        min-width: 140px;
        padding: 8px;
        gap: 8px;
    }

    .floating-badge p { font-size: 11px; }

    .badge-icon { width: 20px; height: 20px; }

    .badge-top { top: 2%; }

    .badge-left,
    .badge-right { top: 32%; }

    /* ── Benefits strip ────────────────────────── */
    .benefits-strip {
        grid-template-columns: 1fr;
        margin-top: 16px;
    }

    .benefit-item {
        padding: 14px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefit-item:last-child { border-bottom: 0; }

    .benefit-icon { width: 32px; height: 32px; }

    /* ── Inner page ip-* ───────────────────────── */
    .ip-hero-inner {
        padding: 44px 20px 48px;
    }

    .ip-hero-title {
        font-size: clamp(24px, 6.5vw, 34px);
    }

    .ip-hero-sub {
        font-size: 15px;
    }

    .ip-body {
        padding: 20px 16px 64px;
        gap: 16px;
    }

    .ip-section {
        padding: 24px 18px;
    }

    .ip-section-title {
        font-size: clamp(18px, 5vw, 22px);
    }

    .ip-pillar-grid,
    .ip-pillar-grid.cols-4,
    .ip-pillar-grid.cols-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ip-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ip-quote {
        font-size: clamp(14px, 4vw, 16px);
        padding: 18px 20px;
    }

    /* ── Start With Trust ──────────────────────── */
    .st-hero-inner { padding: 44px 20px 48px; }

    .st-body { padding: 20px 16px 64px; }

    .st-pillars { margin-top: 24px; gap: 12px; }

    .st-contact-grid { grid-template-columns: 1fr; }

    .st-form-wrap { padding: 22px 18px; }

    .st-row-2 { grid-template-columns: 1fr; }

    .st-submit-btn { width: 100%; }

    .st-map-wrap { height: 220px; }

    /* ── Problem/About legacy ──────────────────── */
    .ab-hero { min-height: auto; }

    .ab-hero-inner { padding: 28px 16px 32px; }

    .ab-hero-card { max-width: 100%; padding: 20px 18px; }

    .ab-body { padding: 0 16px 60px; }

    .ab-section { margin-top: 32px; padding: 20px 16px; }

    .prob-hero { min-height: auto; padding: 0; }

    .prob-hero-inner { padding: 28px 16px 32px; }

    .prob-hero-card { max-width: 100%; padding: 20px 18px; }

    .prob-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .prob-body { padding: 0 16px 60px; }

    .prob-section { margin-top: 32px; padding: 20px 16px; }

    .prob-loop { grid-template-columns: 1fr; gap: 16px; }

    .prob-loop::before { display: none; }

    .prob-damage-grid { grid-template-columns: 1fr; gap: 12px; }

    /* ── Who This Is For ───────────────────────── */
    .who-hero { min-height: auto; }

    .who-hero-card { padding: 20px 18px; border-radius: 20px; }

    .who-card-grid { grid-template-columns: 1fr; gap: 14px; }

    .who-card { padding: 20px 18px; min-height: auto; }

    .who-trust-callout { margin-top: 24px; padding: 20px 18px; }

    /* ── Footer ────────────────────────────────── */
    .site-footer { margin-top: 48px; padding-top: 40px; }

    .footer-shell { padding: 0 20px; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 28px;
    }

    .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 16px 0;
    }
}

/* ════════════════════════════════════════════════
   SMALL PHONES  (max-width: 480px)
════════════════════════════════════════════════ */
@media (max-width: 480px) {

    :root { --header-h: 56px; }

    .header-shell { padding: 0 12px; }

    .header-brand { width: min(130px, 42vw); }

    /* Hero */
    .hero-shell { padding: 20px 14px 16px; }

    .title-light,
    .title-accent {
        font-size: clamp(26px, 9vw, 36px);
    }

    .hero-text { font-size: 14px; }

    .hero-visual { min-height: 260px; }

    /* Inner pages */
    .ip-hero-inner { padding: 32px 16px 36px; }

    .ip-hero-title { font-size: clamp(21px, 6.5vw, 28px); }

    .ip-hero-sub { font-size: 14px; }

    .ip-body { padding: 14px 12px 48px; gap: 12px; }

    .ip-section { padding: 18px 14px; border-radius: 14px; }

    .ip-section-title { font-size: clamp(16px, 5vw, 20px); }

    .ip-pillar { padding: 16px 14px; }

    .ip-quote { padding: 14px 16px; font-size: 14px; }

    /* Problem stats: single column on tiny screens */
    .prob-stats { grid-template-columns: 1fr; }

    /* Footer */
    .footer-nav { grid-template-columns: 1fr; gap: 20px; }

    .footer-logo { height: 28px; }
}

/* ════════════════════════════════════════════════
   THEME TOGGLE BUTTON
════════════════════════════════════════════════ */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(123, 171, 242, 0.28);
    background: rgba(16, 40, 88, 0.25);
    color: #a8c4e0;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 8px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(246, 196, 82, 0.1);
    border-color: rgba(246, 196, 82, 0.4);
    color: var(--gold);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
    display: block;
    pointer-events: none;
}

.icon-sun { display: none; }
.icon-moon { display: block; }

/* ════════════════════════════════════════════════
   LIGHT MODE OVERRIDES
════════════════════════════════════════════════ */
[data-theme="light"] {
    --bg-deep: #f0f4fc;
    --text-main: #0a1628;
    --text-muted: #2a3f5f;
    --line: rgba(10, 22, 40, 0.18);
}

[data-theme="light"] body {
    background: #f0f4fc;
    color: #0a1628;
}

/* Header */
[data-theme="light"] .site-header {
    background: rgba(240, 244, 252, 0.92);
    border-bottom-color: rgba(10, 22, 40, 0.12);
}

[data-theme="light"] .nav-link {
    color: #1a2d4a;
}

[data-theme="light"] .nav-link:hover {
    background: rgba(10, 22, 40, 0.06);
    border-color: rgba(10, 22, 40, 0.2);
    color: #0a1628;
}

[data-theme="light"] .nav-link.active {
    color: #a07000;
    background: rgba(246, 196, 82, 0.14);
    border-color: rgba(246, 196, 82, 0.4);
}

/* Theme toggle in light mode */
[data-theme="light"] .theme-toggle {
    border-color: rgba(10, 22, 40, 0.2);
    background: rgba(10, 22, 40, 0.05);
    color: #2a4060;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(246, 196, 82, 0.12);
    border-color: rgba(246, 196, 82, 0.5);
    color: #a07000;
}

[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

[data-theme="light"] .nav-toggle {
    border-color: rgba(10, 22, 40, 0.2);
}

[data-theme="light"] .burger-bar {
    background: #1a2d4a;
}

[data-theme="light"] .main-nav {
    background: #eef2fb;
    border-left: none;
}

[data-theme="light"] .main-nav .nav-link {
    color: #1a2d4a;
    background: rgba(10, 22, 40, 0.04);
    border-color: rgba(10, 22, 40, 0.1);
}

[data-theme="light"] .main-nav .nav-link:hover {
    background: rgba(10, 22, 40, 0.08);
    border-color: rgba(10, 22, 40, 0.22);
    color: #0a1628;
}

[data-theme="light"] .nav-backdrop {
    background: rgba(10, 22, 40, 0.5);
}

/* Inner page backgrounds */
[data-theme="light"] .ip-page {
    background: #f0f4fc;
}

[data-theme="light"] .ip-hero {
    background: linear-gradient(160deg, #dce6f8 0%, #eaf0fb 100%);
    border-bottom-color: rgba(10, 22, 40, 0.1);
}

[data-theme="light"] .ab-kicker {
    color: #a07000;
    background: rgba(246, 196, 82, 0.14);
    border-color: rgba(246, 196, 82, 0.35);
}

[data-theme="light"] .ip-hero-title {
    color: #0a1628;
}

[data-theme="light"] .ip-hero-sub {
    color: #3a5878;
}

/* Sections */
[data-theme="light"] .ip-section {
    background: #ffffff;
    border-color: rgba(10, 22, 40, 0.09);
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}

[data-theme="light"] .ip-section-title {
    color: #a07000;
}

[data-theme="light"] .ip-section-sub {
    color: #4a6a8a;
}

/* Pillars */
[data-theme="light"] .ip-pillar {
    background: #f5f8ff;
    border-color: rgba(10, 22, 40, 0.1);
}

[data-theme="light"] .ip-pillar:hover {
    border-color: rgba(246, 196, 82, 0.5);
}

[data-theme="light"] .ip-pillar h3 {
    color: #0a1628;
}

[data-theme="light"] .ip-pillar p {
    color: #4a6a8a;
}

/* Text & quotes */
[data-theme="light"] .ip-col-text p {
    color: #2a4060;
}

[data-theme="light"] .ip-quote {
    background: rgba(246, 196, 82, 0.07);
    border-color: rgba(246, 196, 82, 0.35);
    border-left-color: #c8940a;
    color: #1a2d4a;
}

[data-theme="light"] .ip-pill {
    background: #edf2ff;
    border-color: rgba(246, 196, 82, 0.35);
    border-left-color: #c8940a;
    color: #1a2d4a;
}

[data-theme="light"] .ip-callout {
    border-left-color: #c8940a;
}

[data-theme="light"] .ip-callout p {
    color: #2a4060;
}

/* Homepage hero */
[data-theme="light"] .landing-page {
    background: #f0f4fc;
}

[data-theme="light"] .hero-section {
    background: #f0f4fc;
}

[data-theme="light"] .hero-layer {
    background: linear-gradient(180deg, rgba(220, 232, 255, 0.5) 0%, rgba(200, 220, 248, 0.7) 100%);
}

[data-theme="light"] .eyebrow {
    color: #a07000;
}

[data-theme="light"] .hero-title,
[data-theme="light"] .title-light {
    color: #0a1628;
}

[data-theme="light"] .hero-text {
    color: #3a5878;
}

[data-theme="light"] .hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(10, 22, 40, 0.1);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
}

[data-theme="light"] .benefit-item {
    border-color: rgba(10, 22, 40, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .benefit-text h3 {
    color: #0a1628;
}

[data-theme="light"] .benefit-text p {
    color: #4a6a8a;
}

/* Footer */
[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, rgba(240, 244, 252, 0) 0%, #dde5f5 100%);
    border-top-color: rgba(10, 22, 40, 0.12);
}

[data-theme="light"] .footer-top {
    border-bottom-color: rgba(10, 22, 40, 0.1);
}

[data-theme="light"] .footer-tagline {
    color: #4a6a8a;
}

[data-theme="light"] .footer-nav-label {
    color: #a07000;
}

[data-theme="light"] .footer-nav-link {
    color: #2a4a6a;
}

[data-theme="light"] .footer-nav-link:hover {
    color: #0a1628;
}

[data-theme="light"] .footer-address {
    color: #4a6a8a;
}

[data-theme="light"] .footer-copy {
    color: #6a8aaa;
}

[data-theme="light"] .footer-legal {
    color: #8aaccb;
}

[data-theme="light"] .footer-cta-btn {
    border-color: rgba(160, 112, 0, 0.5);
    color: #a07000;
}

[data-theme="light"] .footer-cta-btn:hover {
    background: rgba(246, 196, 82, 0.12);
    border-color: #c8940a;
    color: #5a3c00;
}

/* ════════════════════════════════════════════════
   BOOTSTRAP OFFCANVAS — MOBILE NAV
════════════════════════════════════════════════ */

/* Panel */
.offcanvas.offcanvas-start {
    background: #020c24 !important;
    border-right: 1px solid rgba(123, 171, 242, 0.2) !important;
    width: 280px !important;
    max-width: 85vw !important;
}

/* Header row inside offcanvas */
.offcanvas-header {
    border-bottom: 1px solid rgba(123, 171, 242, 0.15);
    padding: 16px 20px;
}

/* Body */
.offcanvas-body {
    padding: 14px 16px 32px;
}

/* Nav links inside offcanvas */
.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offcanvas-nav .nav-link {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(123, 171, 242, 0.14) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #ccdcf5 !important;
    text-align: left;
    white-space: normal;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.offcanvas-nav .nav-link:hover {
    background: rgba(16, 40, 88, 0.55) !important;
    border-color: rgba(123, 171, 242, 0.32) !important;
    color: #fff !important;
}

.offcanvas-nav .nav-link.active {
    background: rgba(246, 196, 82, 0.1) !important;
    border-color: rgba(246, 196, 82, 0.42) !important;
    color: var(--gold-soft) !important;
}

/* Light mode offcanvas */
[data-theme="light"] .offcanvas.offcanvas-start {
    background: #eef2fb !important;
    border-right-color: rgba(10, 22, 40, 0.14) !important;
}

[data-theme="light"] .offcanvas-header {
    border-bottom-color: rgba(10, 22, 40, 0.1);
}

[data-theme="light"] .offcanvas-nav .nav-link {
    border-color: rgba(10, 22, 40, 0.1) !important;
    background: rgba(10, 22, 40, 0.03) !important;
    color: #1a2d4a !important;
}

[data-theme="light"] .offcanvas-nav .nav-link:hover {
    background: rgba(10, 22, 40, 0.08) !important;
    color: #0a1628 !important;
}

/* ── Light mode: home sections ────────────────── */
[data-theme="light"] .hs-section {
    background: transparent;
}

[data-theme="light"] .hs-problem {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(200, 218, 255, 0.4), transparent 50%),
        linear-gradient(180deg, rgba(230, 240, 255, 0.3) 0%, rgba(220, 232, 255, 0.6) 100%);
    border-top-color: rgba(100, 140, 210, 0.25);
    border-bottom-color: rgba(100, 140, 210, 0.25);
}

[data-theme="light"] .hs-eyebrow {
    color: #a07000;
}

[data-theme="light"] .hs-title {
    color: #0a1628;
}

[data-theme="light"] .hs-body,
[data-theme="light"] .hs-step-content p,
[data-theme="light"] .hs-aud-card p,
[data-theme="light"] .hs-cta-sub,
[data-theme="light"] .hs-shift-list li,
[data-theme="light"] .hs-stat-lbl {
    color: #3a5878;
}

[data-theme="light"] .hs-stat-row,
[data-theme="light"] .hs-step,
[data-theme="light"] .hs-aud-card,
[data-theme="light"] .hs-shift-grid {
    background: rgba(225, 235, 255, 0.7);
    border-color: rgba(100, 140, 210, 0.3);
}

[data-theme="light"] .hs-step-content h3,
[data-theme="light"] .hs-aud-card h3,
[data-theme="light"] .hs-cta-title {
    color: #0a1628;
}

[data-theme="light"] .hs-shift-divider {
    background: rgba(100, 140, 210, 0.25);
}

[data-theme="light"] .hs-cta {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(180, 210, 255, 0.4), transparent 60%),
        linear-gradient(180deg, rgba(220, 232, 255, 0.7) 0%, rgba(200, 218, 255, 0.9) 100%);
    border-top-color: rgba(100, 140, 210, 0.25);
}

[data-theme="light"] .hs-link-btn {
    color: #a07000;
    border-color: rgba(180, 130, 0, 0.4);
    background: rgba(246, 196, 82, 0.1);
}

[data-theme="light"] .hs-link-btn:hover {
    color: #0a1628;
    background: rgba(246, 196, 82, 0.2);
    border-color: #a07000;
}

[data-theme="light"] .hs-aud-icon {
    background: rgba(246, 196, 82, 0.15);
    border-color: rgba(180, 130, 0, 0.3);
}

[data-theme="light"] .hs-stat-num,
[data-theme="light"] .hs-step-num {
    color: #c08000;
}

/* Show hamburger only on mobile */
@media (min-width: 769px) {
    .nav-toggle { display: none !important; }
    .main-nav { display: flex !important; }
}