/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #0b4f87;
    --primary-strong: #083b66;
    --primary-soft: #e8f0f8;
    --accent: #2a7abf;
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --bg: #edf3f8;
    --surface: #f7fafd;
    --surface-alt: #f1f6fb;
    --dark: #294158;
    --dark-soft: #355069;
    --border: #d8e2ec;
    --border-dark: rgba(255, 255, 255, 0.18);
    --white: #ffffff;
    --gradient-main: linear-gradient(120deg, #0b4f87, #2a7abf);
    --gradient-dark: linear-gradient(160deg, #2d4760, #3b5f7d);
    --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.06);
    --shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: 220ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    font-family: 'Manrope', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== UTILITIES ===== */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    color: #b9dbf8;
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: #d1deea;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--transition), transform 0.55s var(--transition);
    transition-delay: var(--delay, 0s);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.34; }
}

@keyframes scroll-down {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% { transform-origin: bottom; }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(39, 61, 82, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dark);
    padding: 10px 0;
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #d5e3f1;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8fc4f6;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--white);
    color: var(--primary-strong);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(143, 196, 246, 0.25);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--gradient-dark);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(180, 208, 233, 0.16) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.28;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -100px;
    background: rgba(180, 213, 240, 0.2);
}

.hero-glow-2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -80px;
    background: rgba(150, 192, 228, 0.15);
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    text-align: center;
    max-width: 920px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #9cc9f2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--white);
}

.hero-sub {
    font-size: 18px;
    color: #c4d4e6;
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-strong);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    border-color: var(--border-dark);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-white {
    background: var(--white);
    color: var(--primary-strong);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
    border-color: var(--border);
    color: var(--ink);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 22px 32px;
    flex-wrap: wrap;
}

.hero-stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0 16px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #a9d1f5;
}

.stat-label {
    font-size: 12px;
    color: #c4d4e6;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-dark);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 38px;
    background: var(--border-dark);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #9cc9f2;
    animation: scroll-down 2s ease-in-out infinite;
}

/* ===== SECTIONS ===== */
.section {
    padding: 92px 0;
    position: relative;
}

.section-light {
    background: var(--surface);
    color: var(--ink);
}

.section-dark {
    background: #2f4b63;
    color: var(--white);
}

.section-gradient {
    background: linear-gradient(165deg, #395874, #486b8a);
    color: var(--white);
}

.section-cta {
    background: linear-gradient(145deg, #3f6382, #4f7698);
    padding: 110px 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.section-tag.tag-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    color: #b7d8f5;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 17px;
    line-height: 1.72;
}

.section-light .section-desc {
    color: var(--muted);
}

/* ===== PAIN CARDS ===== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 44px;
}

.pain-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid #9ec6e9;
    border-radius: var(--radius);
    padding: 26px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.pain-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.pain-cost {
    display: inline-block;
    margin-top: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

/* ===== QUOTE ===== */
.quote-block {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 26px 30px;
}

.quote-block blockquote {
    font-size: 17px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.7;
}

.quote-block cite {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

/* ===== SOLUTION CARDS ===== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.sol-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    background: rgba(165, 208, 244, 0.16);
}

.sol-icon-red,
.sol-icon-blue,
.sol-icon-teal,
.sol-icon-amber,
.sol-icon-purple,
.sol-icon-rose {
    background: rgba(165, 208, 244, 0.16);
}

.solution-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.solution-card p {
    font-size: 13px;
    color: #c6d5e6;
    line-height: 1.62;
}

.sol-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    background: rgba(165, 208, 244, 0.2);
    color: #b7d8f5;
    border: 1px solid rgba(165, 208, 244, 0.4);
}

.sol-tag-green,
.sol-tag-blue,
.sol-tag-purple {
    background: rgba(165, 208, 244, 0.2);
    color: #b7d8f5;
}

/* ===== CORRIDOR ===== */
.corridor-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.pipe-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 26px 20px;
    transition: var(--transition);
}

.pipe-step:hover {
    transform: translateY(-3px);
}

.pipe-num {
    width: 34px;
    height: 34px;
    background: rgba(165, 208, 244, 0.18);
    border: 1px solid rgba(165, 208, 244, 0.45);
    border-radius: 50%;
    color: #c9e3fa;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.pipe-step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pipe-step p {
    font-size: 12px;
    color: #c4d4e6;
    line-height: 1.55;
}

.pipe-arrow {
    font-size: 24px;
    color: #a9cff1;
    margin-top: 30px;
    flex-shrink: 0;
}

.corridor-example {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(165, 208, 244, 0.45);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.example-label {
    font-size: 16px;
    font-weight: 700;
    color: #cce4fb;
    margin-bottom: 14px;
}

.example-text {
    font-size: 16px;
    color: #d2deea;
    line-height: 1.68;
    max-width: 700px;
    margin: 0 auto;
}

.example-text strong {
    color: var(--white);
}

.example-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.example-tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(165, 208, 244, 0.16);
    color: #c2ddf5;
    border: 1px solid rgba(165, 208, 244, 0.35);
}

/* ===== DIFFERENTIATORS ===== */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 52px;
}

.diff-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.diff-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
    background: var(--primary-soft);
}

.diff-icon-blue,
.diff-icon-green,
.diff-icon-amber,
.diff-icon-purple {
    background: var(--primary-soft);
}

.diff-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.diff-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ===== COMPARE TABLE ===== */
.compare-table-wrap {
    background: var(--surface-alt);
    border-radius: var(--radius);
    padding: 34px;
    border: 1px solid var(--border);
    overflow-x: auto;
}

.compare-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--ink);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table th {
    background: #12304d;
    color: var(--white);
    padding: 13px 16px;
    text-align: center;
    font-weight: 600;
}

.compare-table th:first-child {
    text-align: left;
    border-radius: 10px 0 0 0;
}

.compare-table th:last-child {
    border-radius: 0 10px 0 0;
}

.compare-table td {
    padding: 13px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
}

.compare-table .highlight-col {
    background: #edf5fc;
    color: var(--primary-strong);
    font-weight: 700;
}

.compare-table th.highlight-col {
    background: var(--primary);
    color: var(--white);
}

.compare-table tbody tr:hover {
    background: #f2f7fc;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: #f6cf77;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 14px;
    color: #d3e0ec;
    line-height: 1.68;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 108px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(165, 208, 244, 0.18);
    border: 1px solid rgba(165, 208, 244, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #d6e8f8;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 14px;
    display: block;
}

.testimonial-author span {
    font-size: 12px;
    color: #a9bfd4;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.pricing-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card-featured {
    border: 2px solid #8cbfe9;
    background: var(--surface);
}

.pricing-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    margin-bottom: 18px;
}

.pricing-badge-featured {
    background: var(--gradient-main);
    color: var(--white);
}

.pricing-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.pricing-amount span {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
}

.pricing-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 8px 0;
    border-bottom: 1px solid #eaf0f6;
}

/* ===== CTA ===== */
.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.16;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 34px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #314b63;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 38px;
}

.footer-brand p {
    font-size: 14px;
    color: #9fb3c8;
    margin-top: 14px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: #adc0d3;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9fb3c8;
}

.footer-legal {
    font-size: 11px;
    color: #8297ac;
    margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .solution-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: 16px;
        right: 16px;
        background: rgba(13, 31, 49, 0.96);
        border: 1px solid var(--border-dark);
        border-radius: 12px;
        padding: 14px;
        flex-direction: column;
        gap: 10px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: #d9e7f5;
        padding: 6px 4px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .pain-grid,
    .diff-grid,
    .solution-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px;
        padding: 24px 16px;
    }

    .stat-divider {
        width: 56px;
        height: 1px;
    }

    .corridor-pipeline {
        flex-direction: column;
        align-items: center;
    }

    .pipe-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .pipe-step {
        max-width: 100%;
    }

    .compare-table-wrap {
        padding: 18px;
    }

    .compare-table th,
    .compare-table td {
        padding: 9px 10px;
        font-size: 12px;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 98px 16px 60px;
    }

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