*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0A165E;
    --navy-light: #1E2656;
    --navy-muted: #272F5D;
    --coral: #2B4DFF;
    --coral-dark: #1a3de6;
    --bg: #ffffff;
    --bg-soft: #F5F6F7;
    --bg-warm: #EEF1FF;
    --text: #0A165E;
    --text-secondary: #585B6F;
    --text-muted: #6E6E77;
    --border: #E5E7E8;
    --border-light: #E2E3EC;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Sora', system-ui, -apple-system, sans-serif;
    background: var(--bg-soft);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 48px; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-soft);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--navy);
}
.nav-logo img { height: 32px; border-radius: 8px; }
.nav-logo span { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-right a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 14.5px; font-weight: 500;
    transition: color 0.15s; position: relative;
}
.nav-right a:hover { color: var(--navy); }
.nav-right a:not(.btn-coral-sm)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--coral);
    transform: scaleX(0); transform-origin: center;
    transition: transform 0.25s ease;
}
.nav-right a:not(.btn-coral-sm):hover::after { transform: scaleX(1); }
.btn-coral-sm {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 8px;
    background: var(--coral); color: #fff !important;
    font-size: 14px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
}
.btn-coral-sm:hover { background: var(--coral-dark); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    background: var(--bg-soft);
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px 5px 6px; border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 13px; font-weight: 600; color: var(--text-secondary);
    margin-bottom: 28px;
}
.hero-tag-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -0.04em; color: var(--navy);
    margin-bottom: 24px;
}
.hero h1 em { font-style: normal; }
.hero h1 em .typewriter-text {
    background: var(--coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-right: 3px solid var(--coral);
    animation: cursorBlink 0.7s step-end infinite;
}
@keyframes cursorBlink {
    0%, 100% { border-color: var(--coral); }
    50% { border-color: transparent; }
}
.hero p {
    font-size: 18px; color: var(--text-secondary);
    max-width: 480px; line-height: 1.7;
    font-weight: 400; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-coral {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px; border-radius: 10px;
    background: var(--coral); color: #fff;
    font-size: 15.5px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s; box-shadow: 0 4px 16px rgba(43,77,255,0.25);
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(43,77,255,0.3); }
.btn-navy {
    background: var(--navy);
    box-shadow: 0 4px 16px rgba(0,40,57,0.25);
}
.btn-navy:hover {
    background: var(--navy-light);
    box-shadow: 0 6px 24px rgba(0,40,57,0.32);
}
.btn-outline-lg {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px; border-radius: 10px;
    background: #fff; color: var(--navy);
    font-size: 15.5px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}
.btn-outline-lg:hover { border-color: var(--navy); transform: translateY(-2px); }

/* ── HERO MOCKUP ── */
.hero-mockup {
    position: relative; z-index: 2;
}
.mockup-window {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,40,57,0.15), 0 0 0 1px rgba(0,40,57,0.05);
    overflow: hidden;
}
.mockup-titlebar {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-light);
}
.mockup-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot-red { background: #ff5f57; }
.mockup-dot-yellow { background: #febc2e; }
.mockup-dot-green { background: #28c840; }
.mockup-titlebar span {
    margin-left: 8px; font-size: 11px; color: var(--text-muted);
    font-weight: 500;
}
.mockup-body { padding: 24px; }
.mockup-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
}
.mockup-header h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
.mockup-badge {
    font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 12px;
    background: rgba(34,197,94,0.1); color: #16a34a;
}
.mockup-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-bottom: 20px;
}
.mockup-stat {
    padding: 14px; border-radius: 8px; background: var(--bg-soft);
    border: 1px solid var(--border-light);
}
.mockup-stat-num {
    font-size: 20px; font-weight: 800; color: var(--navy);
    letter-spacing: -0.02em;
}
.mockup-stat-label { font-size: 10.5px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.mockup-table { width: 100%; }
.mockup-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.mockup-row:last-child { border-bottom: none; }
.mockup-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
}
.mockup-row-text { flex: 1; }
.mockup-row-name { font-size: 12.5px; font-weight: 600; color: var(--navy); }
.mockup-row-sub { font-size: 10.5px; color: var(--text-muted); }
.mockup-score {
    font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 6px;
}
.score-high { background: rgba(34,197,94,0.1); color: #16a34a; }
.score-mid { background: rgba(234,179,8,0.1); color: #ca8a04; }
.score-low { background: rgba(239,68,68,0.1); color: #dc2626; }

/* ── STATS BAR ── */
.stats-bar {
    padding: 56px 48px;
    background: var(--navy);
}
.stats-bar-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    text-align: center;
}
.stat-num {
    font-size: clamp(2.25rem, 3.5vw, 3rem); font-weight: 900;
    color: #fff; letter-spacing: -0.03em; line-height: 1.1;
}
.stat-num .stat-suffix { font-size: 0.65em; color: var(--coral); }
.stat-label {
    font-size: 13.5px; color: rgba(255,255,255,0.5);
    font-weight: 500; margin-top: 6px;
}

/* ── SECTION ── */
.section { padding: 100px 48px; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-tag {
    display: inline-block; font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--coral); margin-bottom: 14px;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800;
    color: var(--navy); letter-spacing: -0.03em; margin-bottom: 16px;
    line-height: 1.15;
}
.section-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.65; }

/* ── FEATURES ── */
.features { background: var(--bg); }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1080px; margin: 0 auto;
}
.feature-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: 16px; padding: 36px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,40,57,0.04);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--coral), #e07840);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    border-color: var(--navy);
    box-shadow: 0 16px 48px rgba(0,40,57,0.1);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; color: #fff;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon { background: var(--coral); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
    font-size: 18px; font-weight: 700; color: var(--navy);
    margin-bottom: 10px; letter-spacing: -0.015em;
}
.feature-card p { font-size: 14.5px; color: var(--navy-muted); line-height: 1.7; }

/* ── SHOWCASE (split image+text sections) ── */
.showcase { background: var(--bg-soft); }
.showcase-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.showcase-inner.reverse { direction: rtl; }
.showcase-inner.reverse > * { direction: ltr; }
.showcase-text .section-tag { margin-bottom: 12px; }
.showcase-text h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800;
    color: var(--navy); letter-spacing: -0.03em; margin-bottom: 16px;
    line-height: 1.15;
}
.showcase-text p {
    font-size: 16px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 24px;
}
.showcase-list { list-style: none; margin-bottom: 28px; }
.showcase-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 8px 0; font-size: 15px; color: var(--text-secondary);
}
.showcase-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--coral); }
.showcase-mockup {
    background: #fff; border-radius: 12px;
    box-shadow: 0 16px 64px rgba(0,40,57,0.1), 0 0 0 1px rgba(0,40,57,0.04);
    padding: 28px; position: relative;
}
.showcase-mockup-bar {
    display: flex; gap: 6px; margin-bottom: 20px;
}
.showcase-mockup-bar span {
    height: 8px; border-radius: 4px; background: var(--border-light);
}
.showcase-mockup-bar span:first-child { width: 30%; }
.showcase-mockup-bar span:nth-child(2) { width: 20%; }
.showcase-mockup-bar span:nth-child(3) { width: 15%; }
.showcase-mockup-rows { display: flex; flex-direction: column; gap: 10px; }
.showcase-mockup-row {
    display: flex; gap: 10px; align-items: center;
    padding: 12px 14px; border-radius: 8px;
    background: var(--bg-soft); border: 1px solid var(--border-light);
}
.showcase-mockup-row .smr-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.showcase-mockup-row .smr-lines {
    flex: 1; display: flex; flex-direction: column; gap: 5px;
}
.showcase-mockup-row .smr-line {
    height: 6px; border-radius: 3px; background: var(--border);
}
.showcase-mockup-row .smr-line:first-child { width: 70%; }
.showcase-mockup-row .smr-line:last-child { width: 45%; }
.showcase-mockup-row .smr-score {
    font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
    flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg); }
.steps-grid {
    max-width: 960px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    position: relative;
}
.steps-grid::before {
    content: ''; position: absolute;
    top: 48px; left: 15%; right: 15%;
    height: 2px; background: linear-gradient(90deg, var(--border), var(--coral), var(--border));
    opacity: 0.4;
}
.step-item {
    text-align: center; position: relative; padding: 28px 20px 24px;
    background: var(--bg-soft); border: 1px solid var(--border-light);
    border-radius: 16px; transition: all 0.3s ease;
}
.step-item:hover { border-color: rgba(43,77,255,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-4px); }
.step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    margin: 0 auto 20px; position: relative; z-index: 2;
    transition: all 0.3s ease;
}
.step-item:hover .step-num { background: var(--coral); transform: scale(1.1); }
.step-icon {
    width: 32px; height: 32px; margin: 0 auto 12px;
    color: var(--coral); opacity: 0.7;
}
.step-item h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ── PLATFORM PILLARS (TABS) ── */
.pillars { background: var(--navy); color: #fff; }
.pillars-inner { max-width: 1080px; margin: 0 auto; }
.pillar-tabs {
    display: flex; gap: 0; margin-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pillar-tab {
    flex: 1; padding: 18px 20px; text-align: center;
    font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.45);
    cursor: pointer; transition: all 0.2s;
    border: none; background: none; position: relative;
}
.pillar-tab:hover { color: rgba(255,255,255,0.7); }
.pillar-tab.active { color: #fff; }
.pillar-tab::after {
    content: ''; position: absolute; bottom: -1px; left: 50%; right: 50%;
    height: 3px; background: var(--coral);
    transition: all 0.3s ease; border-radius: 3px 3px 0 0;
}
.pillar-tab.active::after { left: 0; right: 0; }
.pillar-content {
    display: none;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.pillar-content.active {
    display: flex; align-items: flex-start; gap: 64px;
    opacity: 1; transform: translateY(0);
}
.pillar-text { flex: 1; }
.pillar-text h3 {
    font-size: 2rem; font-weight: 800; margin-bottom: 16px;
    letter-spacing: -0.03em; color: #fff;
}
.pillar-text p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.pillar-list { list-style: none; }
.pillar-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; font-size: 15px; color: rgba(255,255,255,0.75);
}
.pillar-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--coral); }

/* ── USE CASES ── */
.use-cases { background: var(--bg-soft); }
.use-cases-grid {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.use-case-card {
    padding: 36px; border-radius: 16px;
    border: 1px solid var(--border-light);
    background: #fff;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0,40,57,0.04);
}
.use-case-card:hover {
    border-color: var(--navy); transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,40,57,0.1);
}
.use-case-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; color: #fff;
    transition: all 0.3s ease;
}
.use-case-card:hover .use-case-icon { background: var(--coral); }
.use-case-icon svg { width: 22px; height: 22px; }
.use-case-card h3 {
    font-size: 18px; font-weight: 700; color: var(--navy);
    margin-bottom: 10px; letter-spacing: -0.015em;
}
.use-case-card p { font-size: 14.5px; color: var(--navy-muted); line-height: 1.7; }

/* ── TESTIMONIAL ── */
.testimonials { background: var(--bg); }
.testimonials-grid {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.testimonial-card {
    padding: 36px; border-radius: 16px;
    background: var(--bg-soft); border: 1px solid var(--border-light);
}
.testimonial-quote {
    font-size: 16px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* ── HIGHLIGHT ── */
.highlight { background: var(--navy); color: #fff; }
.highlight-inner {
    max-width: 1080px; margin: 0 auto;
    display: flex; align-items: center; gap: 80px;
}
.highlight-text { flex: 1; }
.highlight-text .section-tag { color: rgba(255,255,255,0.5); }
.highlight-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800;
    color: #fff; letter-spacing: -0.03em; margin-bottom: 20px;
    line-height: 1.15;
}
.highlight-text p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 32px; }
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 10px;
    background: #fff; color: var(--navy);
    font-size: 15px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s;
}
.btn-white:hover { background: #f0f1f3; }
.highlight-features {
    flex: 0 0 380px;
    display: flex; flex-direction: column; gap: 16px;
}
.highlight-feature {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 14.5px; color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}
.highlight-feature:hover { background: rgba(255,255,255,0.1); transform: translateX(6px); }
.highlight-feature svg { flex-shrink: 0; color: var(--coral); }

/* ── PLATFORM TEASER ── */
.platform-teaser {
    padding: 80px 48px;
    background: var(--navy);
    text-align: center;
}
.platform-teaser-inner { max-width: 620px; margin: 0 auto; }
.platform-teaser-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800;
    color: #fff; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.15;
}
.platform-teaser-desc {
    font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 28px;
}

/* ── CTA ACTIONS ── */
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CTA ── */
.cta { text-align: center; background: var(--bg-warm); }
.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
    color: var(--navy); letter-spacing: -0.03em; margin-bottom: 16px;
    line-height: 1.1;
}
.cta p {
    font-size: 17px; color: var(--text-secondary); margin-bottom: 36px;
    max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
    padding: 64px 48px 32px;
    border-top: 1px solid var(--border-light);
    background: var(--bg);
}
.footer-inner {
    max-width: 1080px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 48px; flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand-name {
    display: flex; align-items: center; gap: 9px;
    font-size: 17px; font-weight: 800; color: var(--navy);
    margin-bottom: 12px; letter-spacing: -0.02em;
}
.footer-brand-name img { height: 28px; border-radius: 6px; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.footer-col h4 {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; color: var(--navy); margin-bottom: 14px;
}
.footer-col a {
    display: block; font-size: 13.5px; color: var(--text-secondary);
    text-decoration: none; margin-bottom: 9px; transition: color 0.15s;
}
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
    max-width: 1080px; margin: 40px auto 0;
    padding-top: 20px; border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-mockup { display: none; }
    .hero-text { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .features-grid, .use-cases-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .showcase-inner, .showcase-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
    .section [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    .highlight-inner { flex-direction: column; gap: 48px; }
    .highlight-features { flex: auto; width: 100%; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps-grid::before { display: none; }
    .pillar-content.active { flex-direction: column; }
    .pillar-tabs { flex-wrap: wrap; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
/* ── HAMBURGER MENU ── */
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 32px; position: relative;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
    display: block; width: 20px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(2.5px, 2.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(2.5px, -2.5px); }

@media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-right {
        position: fixed; top: 68px; left: 0; right: 0;
        background: #fff; flex-direction: column;
        padding: 20px 24px; gap: 0;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-100%); opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 99;
    }
    .nav-right.open {
        transform: translateY(0); opacity: 1;
        pointer-events: auto;
    }
    .nav-right a {
        display: block !important;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-right a:last-child { border-bottom: none; }
    .nav-right a.btn-coral-sm {
        margin-top: 8px; text-align: center;
        border-bottom: none;
    }
    .hero, .section { padding-left: 20px; padding-right: 20px; }
    .hero h1 { font-size: 2.25rem; }
    .footer { padding: 40px 20px 24px; }
    .footer-inner { flex-direction: column; gap: 32px; }
    .steps-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 20px 60px; }
    .page-hero h1 { font-size: 2rem; }
    .platform-teaser { padding: 60px 20px; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── ACTIVE NAV ── */
.nav-right a.active { color: var(--navy); }
.nav-right a.active::after { transform: scaleX(1); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    padding: 140px 48px 80px;
    background: var(--bg-soft);
    text-align: center;
}
.page-hero .section-tag { margin-bottom: 14px; }
.page-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -0.04em; color: var(--navy);
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 18px; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ── MOCKUP UTILITY CLASSES (replacing inline styles) ── */
.mockup-pad { padding: 20px; }
.mockup-no-pad { padding: 0; overflow: hidden; }

.m-tag { font-size: 11px; padding: 5px 12px; border-radius: 6px; font-weight: 600; }
.m-tag-active { background: var(--coral); color: #fff; }
.m-tag-inactive { background: var(--bg-soft); color: var(--text-muted); border: 1px solid var(--border-light); }

.m-section-label { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }

.m-field-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; background: var(--bg-soft);
    border: 1px solid var(--border-light); border-radius: 8px; margin-bottom: 6px;
}
.m-field-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.m-field-name { flex: 1; font-size: 12px; font-weight: 600; color: var(--navy); }
.m-field-meta { font-size: 10px; color: var(--text-muted); }

.m-success-bar {
    margin-top: 14px; padding: 10px 14px;
    background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15);
    border-radius: 8px; display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: #16a34a; font-weight: 600;
}

.m-risk-box {
    flex: 0 0 80px; height: 80px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(239,68,68,0.03));
    border: 1px solid rgba(239,68,68,0.15);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.m-risk-score { font-size: 24px; font-weight: 900; color: #dc2626; line-height: 1; }
.m-risk-label { font-size: 9px; color: #dc2626; font-weight: 600; margin-top: 2px; }

.m-progress-row { display: flex; align-items: center; gap: 6px; }
.m-progress-label { font-size: 10px; color: var(--text-muted); width: 70px; }
.m-progress-bar { flex: 1; height: 5px; background: var(--border-light); border-radius: 3px; }
.m-progress-fill { height: 100%; border-radius: 3px; }

.m-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.m-report-item {
    padding: 8px 10px; background: var(--bg-soft);
    border: 1px solid var(--border-light); border-radius: 6px;
    font-size: 10.5px; font-weight: 600; color: var(--navy);
}

.m-comp-tag { font-size: 10px; padding: 4px 10px; border-radius: 4px; font-weight: 600; }

.m-phase-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 8px; margin-bottom: 8px;
}
.m-phase-icon {
    width: 24px; height: 24px; border-radius: 50%; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.m-phase-name { flex: 1; font-size: 12px; font-weight: 600; }
.m-phase-status { font-size: 10px; font-weight: 600; }

.m-metric { text-align: center; }
.m-metric-num { font-size: 18px; font-weight: 800; }
.m-metric-label { font-size: 9px; color: var(--text-muted); font-weight: 500; }

/* AI Section card styles */
.ai-section { background: var(--navy); color: #fff; }
.ai-grid {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ai-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.ai-card-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-card-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ai-card-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.ai-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden;
}
.ai-panel-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 8px;
}
.ai-panel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.4);
}
.ai-panel-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }
.ai-panel-body { padding: 20px; }
.ai-section-label {
    font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 600;
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}
.ai-summary {
    padding: 14px; background: rgba(255,255,255,0.04);
    border-radius: 8px; border-left: 3px solid var(--coral);
    font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.ai-action-row {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
}
.ai-action-tag { font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 700; }
.ai-action-text { font-size: 11.5px; color: rgba(255,255,255,0.65); }
.ai-metric-box {
    flex: 1; padding: 10px; border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.ai-metric-num { font-size: 16px; font-weight: 800; }
.ai-metric-label { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ── LINK CARD OVERRIDES ── */
a.use-case-card { text-decoration: none; color: inherit; }
a.use-case-card h3 { color: var(--navy); }
a.use-case-card p { color: var(--text-muted); }

a.feature-card { text-decoration: none; color: inherit; }
a.feature-card h3 { color: var(--navy); }
a.feature-card p { color: var(--navy-muted); }

/* Page hero responsive */
@media (max-width: 900px) {
    .ai-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .page-hero { padding: 120px 20px 60px; }
    .page-hero h1 { font-size: 2rem; }
}
