/* ============================================================
   KORTEQ SYSTEMS — Enterprise Dark Design System v2
   No Frameworks. Pure Engineering.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');

/* ── 1. Design Tokens ───────────────────────────────────── */
:root {
    --bg-main: #0A0A0A;
    --bg-secondary: #0F172A;
    --accent-color: #0052FF;
    --accent-glow: rgba(0, 82, 255, 0.15);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 82, 255, 0.25);
    --danger-muted: rgba(239, 68, 68, 0.7);
    --radius-sm: 4px;
    --radius-md: 8px;
    --max-width: 1400px;
    --header-height: 72px;
    --section-padding: clamp(5rem, 8vw, 8rem);
}

/* ── 2. Reset & Base ────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── 3. Utilities ───────────────────────────────────────── */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    padding: 6px 14px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.05);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 4rem;
}

/* ── 4. Buttons ─────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-primary);
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 82, 255, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-massive {
    font-size: 1.1rem;
    padding: 22px 52px;
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(0, 82, 255, 0.3);
}
.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 40px rgba(0, 82, 255, 0.5), 0 0 80px rgba(0, 82, 255, 0.15);
    opacity: 0;
    animation: btn-pulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btn-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ── 5. Header ──────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    height: var(--header-height);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-dot { color: var(--accent-color); }

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text-primary);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.header-cta {
    padding: 10px 22px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. Footer ──────────────────────────────────────────── */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand .header-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-slogan {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 0.85rem;
    max-width: 320px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ── 7. Hero Section ────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text > * {
    opacity: 0;
    transform: translateY(26px);
    animation: hero-rise 0.8s ease forwards;
}

.hero-badge { animation-delay: 0.08s; }

.hero-text h1 { animation-delay: 0.18s; }

.hero-text p { animation-delay: 0.28s; }

.hero-actions {
    animation-delay: 0.38s;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding: 8px 16px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.06);
}

.hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-vapour-container {
    width: 100%;
    min-height: 70px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(26px);
    animation: hero-rise 0.8s ease 0.18s forwards;
    line-height: 1.15;
}

.cycle-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cycle-heading.cycle-out {
    opacity: 0;
    transform: translateY(-12px);
}

.hero-text p {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ── Hero Orbit Panel (2026 Impact) ──────────────────────── */
.hero-orbit-panel {
    position: relative;
    padding: 2.5rem;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 82, 255, 0.08);
}

.orbit-ring-1 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-color: rgba(0, 82, 255, 0.12);
    animation: orbit-spin 20s linear infinite;
}

.orbit-ring-2 {
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%);
    border-color: rgba(0, 82, 255, 0.06);
    animation: orbit-spin 35s linear infinite reverse;
}

.orbit-ring-3 {
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    border-color: rgba(0, 82, 255, 0.03);
    animation: orbit-spin 50s linear infinite;
}

.orbit-ring-1::before,
.orbit-ring-2::before,
.orbit-ring-3::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 12px 2px rgba(0, 82, 255, 0.5);
}

.orbit-ring-1::before { top: -3px; left: 50%; }
.orbit-ring-2::before { bottom: -3px; right: 20%; }
.orbit-ring-3::before { top: 30%; left: -3px; }

@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.2) 0%, rgba(10, 10, 10, 0.95) 60%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(0, 82, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 40px 8px rgba(0, 82, 255, 0.08);
    animation: core-breathe 4s ease-in-out infinite;
}

@keyframes core-breathe {
    0%, 100% { box-shadow: 0 0 40px 8px rgba(0, 82, 255, 0.08); }
    50% { box-shadow: 0 0 60px 15px rgba(0, 82, 255, 0.15); }
}

.orbit-core-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.orbit-core-sub {
    font-size: 0.45rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-top: 4px;
}

.orbit-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 1rem;
    width: 100%;
    max-width: 440px;
}

.orbit-stat {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9) translateY(15px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.orbit-stat-1 { animation: orbit-stat-in 0.6s ease 0.4s forwards; }
.orbit-stat-2 { animation: orbit-stat-in 0.6s ease 0.55s forwards; }
.orbit-stat-3 { animation: orbit-stat-in 0.6s ease 0.7s forwards; }
.orbit-stat-4 { animation: orbit-stat-in 0.6s ease 0.85s forwards; }

@keyframes orbit-stat-in {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.orbit-stat:hover {
    border-color: rgba(0, 82, 255, 0.3);
    box-shadow: 0 0 30px -5px rgba(0, 82, 255, 0.12);
}

.orbit-stat-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.25) 0%, transparent 70%);
    border-radius: var(--radius-md) 0 0 0;
    pointer-events: none;
}

.orbit-stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.orbit-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.orbit-stat-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.orbit-stat-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-color), rgba(0, 82, 255, 0.4));
    border-radius: 2px;
    animation: bar-fill-in 1.8s ease 1.2s forwards;
}

@keyframes bar-fill-in {
    to { width: var(--fill-width); }
}

/* Autonomous Core — Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: hero-visual-in 1s ease 0.2s forwards;
}

.hero-core-wrapper {
    position: relative;
    width: 100%;
}

/* ── Client Trust Banner ────────────────────────────────── */
.client-trust-banner {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.client-trust-banner::before,
.client-trust-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.client-trust-banner::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.client-trust-banner::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.client-marquee-track {
    animation: marquee-scroll 35s linear infinite;
}

@keyframes hero-rise {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-visual-in {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── 8. Marquee Banner ──────────────────────────────────── */
.infrastructure-banner {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.infrastructure-banner::before,
.infrastructure-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.infrastructure-banner::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.infrastructure-banner::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.banner-label {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}

.marquee-track span {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 16px;
    margin: 0 0.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.marquee-track .dot {
    border: none;
    background: none;
    padding: 0;
    margin: 0 1rem;
    font-size: 0.4rem;
    opacity: 0.2;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ── 9. Trusted By / Client Logos ───────────────────────── */
.trusted-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-main);
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.015);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.4;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.trusted-logo:hover {
    opacity: 0.8;
    border-color: rgba(255, 255, 255, 0.15);
}

/* ── 9b. Trusted Strip (Logo Marquee) ───────────────────── */
.trusted-strip {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.trusted-strip::before,
.trusted-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.trusted-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.trusted-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.trusted-strip-label {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.5;
}

.trusted-strip-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.trusted-strip-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: trusted-scroll 45s linear infinite;
    will-change: transform;
}

.trusted-strip-logo {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) invert(1) brightness(1.1);
    opacity: 0.55;
    transition: opacity 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}

.trusted-strip-logo:hover {
    opacity: 0.9;
    filter: grayscale(0%) invert(0) brightness(1);
}

@keyframes trusted-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .trusted-strip-logo {
        height: 36px;
        max-width: 120px;
    }
    .trusted-strip-track {
        gap: 2rem;
    }
}

/* ── 10. Agitation Section ──────────────────────────────── */
.agitation-section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.agitation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04), transparent 65%);
    pointer-events: none;
}

.agitation-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.75rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agitation-section .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agitation-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

.agitation-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 3rem auto 0;
    border-radius: 2px;
}

/* ── 11. Persona / Who This Is For ──────────────────────── */
.persona-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.persona-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.persona-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.persona-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
}

.persona-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.persona-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── 12. Comparison Section ─────────────────────────────── */
.comparison-section {
    padding: var(--section-padding) 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comp-col {
    padding: 2.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.comp-col.traditional {
    background-color: rgba(255, 255, 255, 0.015);
    border-top: 3px solid var(--danger-muted);
}

.comp-col.traditional h3 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.comp-col.korteq {
    background-color: var(--bg-secondary);
    border-color: var(--accent-color);
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 0 50px rgba(0, 82, 255, 0.08), inset 0 1px 0 rgba(0, 82, 255, 0.2);
    transform: scale(1.03);
}

.comp-col.korteq h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.comp-col ul li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comp-col ul li:last-child { border-bottom: none; }

.comp-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.comp-col.traditional .comp-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-muted);
}

.comp-col.traditional li {
    color: #64748b;
}

.comp-col.korteq .comp-icon {
    background: rgba(0, 82, 255, 0.1);
    color: var(--accent-color);
}

/* ── 13. Arsenal Grid ───────────────────────────────────── */
.arsenal-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.arsenal-card {
    display: block;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.arsenal-card::before {
    content: attr(data-index);
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.arsenal-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 82, 255, 0.1);
}

.arsenal-card .card-accent {
    width: 32px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.arsenal-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.arsenal-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── 14. Metrics Section ────────────────────────────────── */
.metrics-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.metric-box {
    text-align: center;
    padding: 2rem 1rem;
    border-left: 2px solid var(--accent-color);
}

.metric-value {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

/* ── 15. Protocol / Process ─────────────────────────────── */
.protocol-section {
    padding: var(--section-padding) 2rem;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.protocol-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(33.33% + 1rem);
    right: calc(33.33% + 1rem);
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), rgba(0, 82, 255, 0.2));
}

.protocol-step {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.protocol-step:hover {
    border-color: var(--border-accent);
}

.protocol-step .step-watermark {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.protocol-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.protocol-step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── 16. FAQ Accordion ──────────────────────────────────── */
.faq-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.faq-sidebar h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.faq-sidebar p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--border-accent);
    border-left: 3px solid var(--accent-color);
}

.faq-question {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    padding: 1.25rem 1.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 1.75rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }

/* ── 17. Final CTA ──────────────────────────────────────── */
.final-cta {
    padding: var(--section-padding) 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #001133 50%, #001a4d 100%);
    text-align: center;
    border-top: 1px solid var(--border-accent);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.cta-content .cta-sub {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── 18. Page Hero (Sub-pages) ──────────────────────────── */
.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    max-width: 800px;
}

.page-hero p {
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.page-hero .hero-actions {
    justify-content: center;
}

.page-vapour-container {
    width: 100%;
    max-width: 800px;
    min-height: 50px;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.page-vapour-container .cycle-heading {
    font-size: clamp(1.6rem, 4vw, 3rem);
    text-align: center;
}

/* ── 20. Scroll Animations ──────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(7) { transition-delay: 0.48s; }
.stagger-children .fade-up:nth-child(8) { transition-delay: 0.56s; }
.stagger-children .fade-up:nth-child(9) { transition-delay: 0.64s; }

/* ── 21. Responsive ─────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-vapour-container { min-height: 60px; }
    .page-vapour-container { min-height: 50px; }
    .hero-visual {
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-orbit-panel {
        min-height: 380px;
        padding: 2rem;
    }

    .orbit-ring-3 { width: 400px; height: 400px; }

    .orbit-stats { max-width: 400px; gap: 0.75rem; }

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

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

    .footer-brand { grid-column: 1 / -1; }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-sidebar { text-align: center; }

    .protocol-grid::before { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        align-items: flex-start;
        padding: 2rem 1.5rem 4rem;
    }

    .hero-container {
        gap: 2rem;
        align-items: start;
    }

    .hero-visual {
        order: -1;
    }

    .hero-orbit-panel {
        min-height: 340px;
        padding: 1.5rem;
    }

    .orbit-ring-2 { width: 280px; height: 280px; }
    .orbit-ring-3 { width: 360px; height: 360px; }
    .orbit-center { z-index: 10; }
    .orbit-core { width: 75px; height: 75px; }
    .orbit-core-label { font-size: 0.95rem; }

    .orbit-stats { max-width: 380px; gap: 2.5rem 0.75rem; }
    .orbit-stat { padding: 1.25rem 1rem; }
    .orbit-stat-num { font-size: 1.4rem; }

    .hamburger { display: flex; }

    .header-logo-img { height: 28px; }
    .footer-logo-img { height: 32px; }

    .header-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        background-color: var(--bg-main);
        border-bottom: 1px solid var(--border-subtle);
        padding: 2rem;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .header-nav.open { transform: translateY(0); }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .nav-list a { font-size: 1.1rem; }
    .header-cta { display: none; }

    .arsenal-grid,
    .protocol-grid,
    .comparison-grid,
    .persona-grid {
        grid-template-columns: 1fr;
    }

    .comp-col.korteq { transform: none; }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }

    .trusted-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .hero-text h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-vapour-container { min-height: 55px; }
    .page-vapour-container { min-height: 55px; }
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .cta-content h2 { font-size: 1.75rem; }
    .agitation-section h2 { font-size: 2rem; }
    .section-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .section-header { margin-bottom: 2.5rem; }

    .page-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .page-hero .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero .hero-actions .btn-primary,
    .page-hero .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trusted-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: 1fr; }
    .hero-section {
        padding: 1.5rem 1rem 3rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-vapour-container { min-height: 50px; }
    .page-vapour-container { min-height: 55px; }

    .hero-badge {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-orbit-panel {
        min-height: 300px;
        padding: 1.25rem;
    }

    .orbit-ring-1 { width: 160px; height: 160px; }
    .orbit-ring-2 { width: 240px; height: 240px; }
    .orbit-ring-3 { width: 320px; height: 320px; }
    .orbit-core { width: 65px; height: 65px; }
    .orbit-core-label { font-size: 0.85rem; }
    .orbit-core-sub { font-size: 0.4rem; }

    .orbit-stats { max-width: 320px; gap: 0.5rem; }
    .orbit-stat { padding: 1rem 0.75rem; }
    .orbit-stat-num { font-size: 1.2rem; }
    .orbit-stat-label { font-size: 0.55rem; letter-spacing: 0.5px; }
}

/* ── 22. Navigation Dropdown ────────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-toggle.active {
    color: var(--text-primary);
}

.nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    min-width: 420px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-subtle);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-heading {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.dropdown-col {
    display: flex;
    flex-direction: column;
}

.dropdown-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-col a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

/* ── 23. Trust Badges ───────────────────────────────────── */
.trust-badges-section {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.trust-badge-item:hover {
    opacity: 0.9;
}

.trust-badge-icon {
    font-size: 1.1rem;
}

.trust-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

/* ── 24. Testimonials ───────────────────────────────────── */
.testimonials-section {
    padding: var(--section-padding) 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #facc15;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ── 25. Case Study Highlights ──────────────────────────── */
.case-highlights-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.case-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.case-card {
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.case-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.case-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    padding: 4px 10px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.05);
    margin-bottom: 1.25rem;
}

.case-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.case-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.case-metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.case-metric-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ── 26. About Section ──────────────────────────────────── */
.about-section {
    padding: var(--section-padding) 2rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.about-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.about-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-card {
    padding: 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease;
}

.about-card:hover {
    border-color: var(--border-accent);
}

.about-card-icon {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.about-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── 27. Insights / Blog ────────────────────────────────── */
.insights-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.insight-card {
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.insight-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.insight-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    padding: 4px 10px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.05);
    margin-bottom: 1.25rem;
}

.insight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.insight-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.insight-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

/* ── 28. Contact Section ────────────────────────────────── */
.contact-section {
    padding: var(--section-padding) 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-channel-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.contact-channel-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0.15rem;
}

.contact-channel a {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-channel a:hover {
    color: var(--text-primary);
}

.contact-channel span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background-color: rgba(0, 82, 255, 0.03);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-hero {
    text-align: center;
}

.contact-page-section {
    padding-top: 0;
}

/* ── Operations Channel Cards ───────────────────────────── */
.ops-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ops-channel-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md, 12px);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ops-channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ops-channel-card:hover {
    border-color: var(--border-accent, rgba(0, 82, 255, 0.3));
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.ops-channel-card:hover::before {
    opacity: 1;
}

.ops-card-featured {
    border-color: var(--accent-color, #0052FF);
    background: rgba(0, 82, 255, 0.04);
}

.ops-card-featured::before {
    opacity: 1;
}

.ops-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color, #0052FF);
    background: rgba(0, 82, 255, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 82, 255, 0.2);
}

.ops-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm, 8px);
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-color, #0052FF);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ops-channel-card:hover .ops-card-icon {
    border-color: var(--accent-color, #0052FF);
    background: rgba(0, 82, 255, 0.08);
}

.ops-card-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary, #94A3B8);
    margin-bottom: 0.5rem;
}

.ops-channel-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin-bottom: 0.75rem;
}

.ops-card-desc {
    color: var(--text-secondary, #94A3B8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ops-card-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
}

.ops-detail-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary, #94A3B8);
}

.ops-detail-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary, #fff);
}

.ops-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm, 8px);
    background: rgba(255, 255, 255, 0.02);
    color: var(--accent-color, #0052FF);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ops-card-cta:hover {
    background: rgba(0, 82, 255, 0.08);
    border-color: var(--accent-color, #0052FF);
    color: var(--text-primary, #fff);
}

.ops-card-cta svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ops-card-cta:hover svg {
    transform: translateX(4px);
}

.ops-social-footer {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* 2-column variant for 2 channel cards */
.ops-channels-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

@media (max-width: 900px) {
    .ops-channels-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ── Office Hub Cards ───────────────────────────────────── */
.contact-offices-section {
    padding: 6rem 0;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md, 12px);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.office-card:hover {
    border-color: var(--border-accent, rgba(0, 82, 255, 0.3));
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.office-card:hover::before {
    opacity: 1;
}

.office-card-hq {
    border-color: var(--accent-color, #0052FF);
    background: rgba(0, 82, 255, 0.04);
}

.office-card-hq::before {
    opacity: 1;
}

.office-card-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color, #0052FF);
    background: rgba(0, 82, 255, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 82, 255, 0.2);
    margin-bottom: 1rem;
    width: fit-content;
}

.office-card-flag {
    margin-bottom: 1rem;
}

.office-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin-bottom: 0.25rem;
}

.office-region {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary, #94A3B8);
    margin-bottom: 1.5rem;
    display: block;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.25rem;
    margin-top: auto;
}

.office-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary, #94A3B8);
    line-height: 1.5;
}

.office-detail-icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.office-detail-row a {
    color: var(--accent-color, #0052FF);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-detail-row a:hover {
    color: var(--text-primary, #fff);
}

@media (max-width: 900px) {
    .office-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ── Contact Social Section ─────────────────────────────── */
.contact-social-section {
    padding: 3rem 0;
}

/* ── Compliance Strip ───────────────────────────────────── */
.compliance-strip {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 2rem;
}

.compliance-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary, #94A3B8);
}

.compliance-icon {
    font-size: 1.1rem;
}

.compliance-item strong {
    color: var(--text-primary, #fff);
    font-weight: 600;
}

@media (max-width: 600px) {
    .compliance-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.contact-layout-centered {
    grid-template-columns: 1fr;
    max-width: 700px;
}

.contact-page-social {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.contact-social-links a:hover {
    color: var(--accent-color);
    border-color: var(--border-accent);
    background: rgba(0, 82, 255, 0.05);
}

/* ── 29. Footer Social ──────────────────────────────────── */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1.25rem;
}

.footer-contact-link {
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-contact-link:hover {
    color: var(--accent-color);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--accent-color);
    background: rgba(0, 82, 255, 0.1);
}

.footer-contact-line {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* ── 30. Cookie Consent Banner ──────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 1.25rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-inner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner-inner p a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.cookie-decline {
    padding: 10px 20px;
    font-size: 0.8rem;
        color: #0f172a;
        background-color: #e2e8f0;
        border-color: #cbd5e1;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

    .cookie-decline:hover {
        background-color: #f8fafc;
        border-color: #e2e8f0;
        color: #020617;
    }

/* ============================================================
   CASE STUDIES PAGE — Dedicated Styles
   ============================================================ */

/* ── Hero Metrics Row ───────────────────────────────────── */
.cs-hero-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    justify-content: center;
}

.cs-hero-metric {
    text-align: center;
}

.cs-hero-metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.cs-hero-metric-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ── Filter Bar ─────────────────────────────────────────── */
.cs-filter-section {
    padding: 0 2rem 2rem;
}

.cs-filter-bar {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cs-filter-btn {
    padding: 10px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-filter-btn:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
    background: rgba(0, 82, 255, 0.05);
}

.cs-filter-btn.active {
    border-color: var(--accent-color);
    color: var(--text-primary);
    background: rgba(0, 82, 255, 0.1);
}

/* ── Featured Case Study ────────────────────────────────── */
.cs-featured-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.cs-featured-card {
    padding: 3rem;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.03) 0%, rgba(0, 82, 255, 0.01) 100%);
    position: relative;
    overflow: hidden;
}

.cs-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.cs-featured-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cs-featured-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f59e0b;
    padding: 4px 10px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(245, 158, 11, 0.05);
}

.cs-featured-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cs-featured-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

/* Featured Flow (Challenge / Solution / Result) */
.cs-featured-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cs-flow-item {
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.cs-flow-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.cs-flow-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Featured Metrics */
.cs-featured-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cs-featured-metric {
    text-align: center;
}

.cs-featured-metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.cs-featured-metric-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* Featured Tech Stack */
.cs-featured-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cs-tech-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.5px;
}

/* Featured Quote */
.cs-featured-quote {
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
    background: rgba(0, 82, 255, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 2rem;
}

.cs-featured-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1rem;
}

/* ── Case Studies Grid ──────────────────────────────────── */
.cs-grid-section {
    padding: var(--section-padding) 2rem;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cs-card {
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.cs-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.cs-card.hidden {
    display: none;
}

.cs-card-header {
    margin-bottom: 1.25rem;
}

.cs-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cs-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* Card Detail (Always Visible) */
.cs-card-detail {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.cs-detail-section {
    margin-bottom: 1.5rem;
}

.cs-detail-section h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cs-detail-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Before/After Comparison */
.cs-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.cs-before,
.cs-after {
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cs-before {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cs-after {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.cs-ba-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.cs-before .cs-ba-label { color: var(--danger-muted); }
.cs-after .cs-ba-label { color: rgba(34, 197, 94, 0.8); }

.cs-ba-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Detail Quote */
.cs-detail-quote {
    padding: 1.25rem;
    border-left: 2px solid var(--accent-color);
    background: rgba(0, 82, 255, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1rem;
}

.cs-detail-quote p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.cs-quote-author {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Detail Tech */
.cs-detail-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ── Industries Marquee ─────────────────────────────────── */
.cs-industries-section {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.cs-industries-marquee {
    overflow: hidden;
    position: relative;
}

.cs-industries-marquee::before,
.cs-industries-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.cs-industries-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-main), transparent);
}

.cs-industries-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-main), transparent);
}

.cs-marquee-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: cs-marquee-scroll 30s linear infinite;
    width: max-content;
}

.cs-industry-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.cs-industry-divider {
    color: var(--accent-color);
    font-size: 0.5rem;
    opacity: 0.5;
}

@keyframes cs-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Case Studies Responsive ────────────────────────────── */
@media (max-width: 1024px) {
    .cs-featured-flow {
        grid-template-columns: 1fr;
    }

    .cs-featured-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cs-featured-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .cs-hero-metrics {
        gap: 1.5rem;
    }

    .cs-filter-bar {
        gap: 0.4rem;
    }

    .cs-filter-btn {
        padding: 8px 14px;
        font-size: 0.7rem;
    }

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

    .cs-featured-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-before-after {
        grid-template-columns: 1fr;
    }

    .cs-featured-card {
        padding: 1.5rem;
    }
}

/* ── Legal / Content Pages ──────────────────────────────── */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.legal-meta {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-content article {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-subtle);
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.6rem;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.35rem;
}

.legal-content a {
    color: var(--accent-color);
    transition: opacity 0.2s ease;
}

.legal-content a:hover {
    opacity: 0.8;
}

.legal-content a.btn-primary {
    color: var(--text-primary);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content .definition-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.legal-content .definition-item {
    padding: 0.85rem 1.15rem;
    border-left: 2px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content .definition-item strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

.legal-content .definition-item span {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.legal-content .highlight-box {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    background: var(--accent-glow);
    margin: 1.5rem 0;
}

.legal-content .highlight-box p {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 0.92rem;
}

.legal-contact-box {
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
}

.legal-contact-box h3 {
    margin-bottom: 1rem;
}

.legal-contact-box p {
    margin-bottom: 0.5rem;
}

.legal-contact-box .btn-primary {
    margin-top: 1.25rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 0 1.25rem 4rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-contact-box {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .cs-hero-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .cs-featured-metrics {
        grid-template-columns: 1fr;
    }

    .cs-featured-card h2 {
        font-size: 1.5rem;
    }
}

/* ── 31. Responsive — New Sections ──────────────────────── */
@media (max-width: 1024px) {
    .contact-page-section .arsenal-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .testimonials-grid,
    .case-highlights-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Mobile dropdown — override all desktop styles */
    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        min-width: auto !important;
        width: 100% !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        gap: 0.25rem !important;
        padding: 0.75rem 0 0.5rem 1rem !important;
        margin-top: 0.5rem !important;
        box-shadow: none !important;
        background-color: transparent !important;
        border: none !important;
        border-left: 2px solid var(--accent-color) !important;
        border-radius: 0 !important;
        transition: none !important;
    }

    .nav-dropdown-menu::before { display: none !important; }

    .nav-dropdown.active > .nav-dropdown-menu {
        display: grid !important;
    }

    .nav-dropdown-toggle.active::after {
        display: none;
    }

    .dropdown-heading {
        font-size: 0.6rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.35rem;
    }

    .dropdown-col {
        margin-bottom: 0.5rem;
    }

    .dropdown-col a {
        font-size: 0.95rem;
        padding: 0.35rem 0;
        color: var(--text-secondary) !important;
    }

    .dropdown-col a:hover {
        color: var(--text-primary) !important;
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .case-highlights-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .trust-badges-grid {
        gap: 1.5rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        order: -1;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================================
   MANIFESTO PAGE — Dedicated Styles
   ============================================================ */

/* ── Manifesto Hero Enhancement ─────────────────────────── */
.manifesto-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    min-height: 60vh;
    position: relative;
}

.manifesto-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.manifesto-hero .section-label {
    margin-bottom: 2rem;
}

.manifesto-hero h1 {
    max-width: 800px;
}

.manifesto-hero .hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Identity Section (Engineers, Not Agencies) ─────────── */
.manifesto-identity-section {
    padding: var(--section-padding) 2rem;
}

.manifesto-identity-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.manifesto-identity-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.manifesto-identity-text .section-title {
    margin-top: 1rem;
}

.manifesto-identity-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.manifesto-not-card,
.manifesto-is-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.015);
}

.manifesto-not-card {
    border-top: 3px solid var(--danger-muted);
}

.manifesto-is-card {
    border-top: 3px solid var(--accent-color);
    background: var(--bg-secondary);
    box-shadow: 0 0 50px rgba(0, 82, 255, 0.06);
}

.manifesto-not-card h4,
.manifesto-is-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.manifesto-not-card h4 {
    color: var(--text-secondary);
}

.manifesto-is-card h4 {
    color: var(--accent-color);
}

.manifesto-not-card ul,
.manifesto-is-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.manifesto-not-card li,
.manifesto-is-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.manifesto-not-card li {
    color: #64748b;
}

/* ── The Oath Section ───────────────────────────────────── */
.manifesto-oath-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.manifesto-oath-card {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-oath-card .section-subtitle {
    margin: 0 auto 3rem;
}

.oath-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.oath-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.oath-item:hover {
    border-color: var(--border-accent);
    background: rgba(0, 82, 255, 0.02);
    box-shadow: 0 0 30px rgba(0, 82, 255, 0.05);
}

.oath-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.06);
    font-size: 0.8rem;
}

.oath-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.oath-item p strong {
    color: var(--text-primary);
}

/* ── Team Section ───────────────────────────────────────── */
.manifesto-team-section {
    padding: var(--section-padding) 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.manifesto-team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Timeline Section ───────────────────────────────────── */
.manifesto-timeline-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.manifesto-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.manifesto-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 11px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), rgba(0, 82, 255, 0.15));
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0.25rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--accent-color);
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 82, 255, 0.2);
}

.timeline-item:last-child .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 25px rgba(0, 82, 255, 0.4);
}

.timeline-content {
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--border-accent);
}

.timeline-year {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    padding: 3px 10px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.05);
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Manifesto Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
    .manifesto-identity-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .manifesto-team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .manifesto-hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .manifesto-identity-cards {
        gap: 1rem;
    }

    .manifesto-team-cards {
        grid-template-columns: 1fr;
    }

    .oath-list {
        grid-template-columns: 1fr;
    }

    .oath-item {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .manifesto-timeline {
        padding-left: 2.5rem;
    }

    .timeline-marker {
        left: -2.5rem;
        width: 20px;
        height: 20px;
    }

    .manifesto-timeline::before {
        left: 9px;
    }
}

@media (max-width: 480px) {
    .oath-item {
        flex-direction: row;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem;
    }

    .timeline-content {
        padding: 1.25rem 1.5rem;
    }
}

/* ── Founder's Note Section ─────────────────────────────── */
.founder-note-section {
    padding: var(--section-padding) 2rem;
    background: var(--bg-main);
}

.founder-note-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 3.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 1px 60px rgba(0, 82, 255, 0.04);
}

.founder-note-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.founder-photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-accent);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 82, 255, 0.08);
}

.founder-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-photo-placeholder.no-photo {
    position: relative;
}

.founder-photo-placeholder.no-photo::after {
    content: '';
    width: 60px;
    height: 60px;
    background: var(--border-accent);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.4;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.founder-note-content .section-label {
    margin-bottom: 1rem;
}

.founder-note-content .section-title {
    margin-bottom: 1.75rem;
}

.founder-note-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.btn-linkedin:hover {
    background: rgba(0, 82, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 82, 255, 0.15);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .founder-note-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.75rem;
        text-align: center;
    }

    .founder-note-visual {
        order: 0;
    }

    .founder-note-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .founder-photo-placeholder {
        width: 140px;
        height: 140px;
    }
}

/* ── Identity Comparison Grid (Old Way vs New Reality) ──── */
.identity-comparison-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex-direction: unset !important;
}

.identity-compare-card {
    padding: 2.25rem 2rem !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-subtle) !important;
}

.manifesto-not-card.identity-compare-card {
    border-top: none !important;
    border-left: 3px solid var(--danger-muted) !important;
    background: rgba(239, 68, 68, 0.02) !important;
}

.manifesto-is-card.identity-compare-card {
    border-top: none !important;
    border-left: 3px solid var(--accent-color) !important;
    background: var(--bg-secondary) !important;
    box-shadow: 0 0 60px rgba(0, 82, 255, 0.06) !important;
}

@media (max-width: 768px) {
    .identity-comparison-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Team Section Atmospheric Background ────────────────── */
.manifesto-team-atmospheric {
    position: relative;
    overflow: hidden;
}

.manifesto-team-atmospheric .team-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, var(--bg-main) 0%, transparent 15%, transparent 85%, var(--bg-main) 100%),
        linear-gradient(to right, var(--bg-main) 0%, transparent 20%, transparent 80%, var(--bg-main) 100%);
    pointer-events: none;
}

.manifesto-team-atmospheric::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><rect fill="%230A0A0A" width="400" height="400"/><text x="20" y="30" fill="%23111827" font-family="monospace" font-size="10">const deploy = async () =&gt; {</text><text x="20" y="50" fill="%23111827" font-family="monospace" font-size="10">  await engine.initialize();</text><text x="20" y="70" fill="%23111827" font-family="monospace" font-size="10">  return pipeline.scale();</text><text x="20" y="90" fill="%23111827" font-family="monospace" font-size="10">};</text><text x="20" y="130" fill="%230d1525" font-family="monospace" font-size="10">class AutonomousEngine {</text><text x="20" y="150" fill="%230d1525" font-family="monospace" font-size="10">  private nodes: Node[];</text><text x="20" y="170" fill="%230d1525" font-family="monospace" font-size="10">  async run() { ... }</text><text x="20" y="190" fill="%230d1525" font-family="monospace" font-size="10">}</text><text x="20" y="230" fill="%23111827" font-family="monospace" font-size="10">export function optimize(</text><text x="20" y="250" fill="%23111827" font-family="monospace" font-size="10">  data: Pipeline[]</text><text x="20" y="270" fill="%23111827" font-family="monospace" font-size="10">) { return transform(data); }</text><text x="200" y="60" fill="%230d1525" font-family="monospace" font-size="10">// korteq.systems</text><text x="200" y="80" fill="%230d1525" font-family="monospace" font-size="10">import { Engine } from</text><text x="200" y="100" fill="%230d1525" font-family="monospace" font-size="10">  &apos;@korteq/autonomous&apos;;</text><text x="200" y="140" fill="%23111827" font-family="monospace" font-size="10">interface SystemConfig {</text><text x="200" y="160" fill="%23111827" font-family="monospace" font-size="10">  nodes: number;</text><text x="200" y="180" fill="%23111827" font-family="monospace" font-size="10">  uptime: 0.999;</text><text x="200" y="200" fill="%23111827" font-family="monospace" font-size="10">}</text><text x="200" y="240" fill="%230d1525" font-family="monospace" font-size="10">async function scale() {</text><text x="200" y="260" fill="%230d1525" font-family="monospace" font-size="10">  await cluster.replicate();</text><text x="200" y="280" fill="%230d1525" font-family="monospace" font-size="10">  return metrics.compound();</text><text x="200" y="300" fill="%230d1525" font-family="monospace" font-size="10">}</text></svg>') repeat;
    background-blend-mode: overlay;
    opacity: 0.5;
}

/* ============================================================
   OUTBOUND ENGINE PAGE — Lead Engine Styles
   ============================================================ */

/* ── Hero Trust Stats ───────────────────────────────────── */
.hero-trust-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-item {
    text-align: center;
}

.hero-trust-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.hero-trust-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ── Agitation Cards Grid ───────────────────────────────── */
.agitation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.agitation-card {
    padding: 2rem 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.agitation-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.agitation-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 1rem;
}

.agitation-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.agitation-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── 4-Column Protocol Grid ────────────────────────────── */
.protocol-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.protocol-grid-4::before {
    left: calc(25% + 1rem);
    right: calc(25% + 1rem);
}

/* ── Metrics Footnote ───────────────────────────────────── */
.metrics-footnote {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 2.5rem;
    font-style: italic;
    line-height: 1.7;
}

/* ── Setup Fee Banner ───────────────────────────────────── */
.setup-fee-banner {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 2.5rem;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.04) 0%, rgba(0, 82, 255, 0.01) 100%);
    text-align: center;
}

.setup-fee-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.setup-fee-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.setup-fee-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -1px;
}

.setup-fee-once {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    padding: 4px 10px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.setup-fee-note {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ── Zero Setup Fee Modifier ────────────────────────────── */
.setup-fee-zero {
    border-color: rgba(0, 200, 83, 0.3);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.06) 0%, rgba(0, 82, 255, 0.03) 100%);
}

.setup-fee-zero .setup-fee-price {
    font-size: 2.5rem;
    color: #00c853;
}

.setup-fee-zero .setup-fee-once {
    border-color: rgba(0, 200, 83, 0.3);
    color: #00c853;
}

/* ── Pricing Success Fee ────────────────────────────────── */
.pricing-success-fee {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 82, 255, 0.02) 100%);
}

.pricing-success-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.pricing-success-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -1px;
}

.pricing-success-note {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ── Pricing Section ────────────────────────────────────── */
.pricing-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.pricing-grid-single {
    grid-template-columns: 1fr;
    max-width: 440px;
}

.pricing-grid-wide {
    max-width: 900px;
}

.pricing-card {
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

/* Featured Card (Growth Engine) */
.pricing-card-featured {
    border-color: var(--accent-color);
    background: var(--bg-secondary);
    transform: scale(1.06);
    box-shadow: 0 0 80px rgba(0, 82, 255, 0.18), 0 0 40px rgba(0, 82, 255, 0.08), inset 0 1px 0 rgba(0, 82, 255, 0.25);
    z-index: 2;
    position: relative;
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(180deg, var(--accent-color), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card-featured:hover {
    border-color: var(--accent-color);
    transform: scale(1.06) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.pricing-tier-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pricing-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -2px;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-volume {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    padding: 8px 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-check {
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-fup-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    opacity: 0.7;
}

.pricing-fup-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ── Pricing Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

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

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

    .protocol-grid-4::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .agitation-grid {
        grid-template-columns: 1fr;
    }

    .protocol-grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-trust-stats {
        gap: 1.5rem;
    }

    .hero-trust-value {
        font-size: 1.35rem;
    }

    .setup-fee-banner {
        padding: 1.5rem;
    }

    .setup-fee-main {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-trust-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================================
   CORPORATE WEB PAGE — Dedicated Styles
   ============================================================ */

/* ── CW Hero Enhancement ────────────────────────────────── */
.cw-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.cw-hero .section-label {
    margin-bottom: 2rem;
}

.cw-hero h1 {
    max-width: 800px;
}

.cw-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.cw-hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    justify-content: center;
}

.cw-hero-stat {
    text-align: center;
}

.cw-hero-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.cw-hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ── CW Agitation Section ───────────────────────────────── */
.cw-agitation-section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.cw-agitation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04), transparent 65%);
    pointer-events: none;
}

.cw-agitation-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.75rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cw-agitation-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.cw-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cw-pain-card {
    padding: 2rem 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.cw-pain-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.cw-pain-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 1rem;
}

.cw-pain-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cw-pain-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── CW Scope / Deliverables Section ────────────────────── */
.cw-scope-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.cw-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cw-scope-card {
    padding: 2.25rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.cw-scope-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.cw-scope-icon {
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.06);
}

.cw-scope-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.cw-scope-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── CW Tech Stack Section ──────────────────────────────── */
.cw-stack-section {
    padding: var(--section-padding) 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cw-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.cw-stack-item {
    padding: 12px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cw-stack-item:hover {
    border-color: var(--border-accent);
    background: rgba(0, 82, 255, 0.05);
}

.cw-stack-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.cw-stack-item:hover .cw-stack-name {
    color: var(--text-primary);
}

/* ── CW Protocol (5-column) ─────────────────────────────── */
.cw-protocol-section {
    background-color: var(--bg-secondary);
}

.cw-protocol-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.cw-protocol-grid .protocol-step h3 {
    font-size: 1.1rem;
}

.cw-protocol-grid .protocol-step p {
    font-size: 0.88rem;
}

/* ── CW Trust Section ───────────────────────────────────── */
.cw-trust-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.cw-trust-section .trust-badges-grid {
    margin-bottom: 3rem;
}

.cw-testimonial-single {
    max-width: 700px;
    margin: 0 auto;
}

.cw-testimonial-single .testimonial-card {
    text-align: center;
}

.cw-testimonial-single .testimonial-author {
    justify-content: center;
}

/* ── CW Engagement / Pricing Anchor Section ─────────────── */
.cw-engagement-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-main);
}

.cw-engagement-box {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.cw-engagement-price-block {
    margin-bottom: 2rem;
}

.cw-engagement-starting {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.cw-engagement-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.1;
}

.cw-engagement-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    display: inline-block;
}

.cw-engagement-includes li {
    padding: 0.45rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cw-engagement-includes .pricing-check {
    color: var(--accent-color);
    font-weight: 700;
}

.cw-engagement-note {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ── CW Step Week Badge ─────────────────────────────────── */
.step-week {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    margin-bottom: 0.75rem;
}

/* ── CW Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .cw-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .cw-hero {
        padding-top: 8rem;
    }
}

@media (max-width: 768px) {
    .cw-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .cw-hero h1 {
        font-size: 2rem;
    }

    .cw-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cw-hero-actions .btn-primary,
    .cw-hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .cw-hero-stats {
        gap: 1.5rem;
    }

    .cw-hero-stat-value {
        font-size: 1.35rem;
    }

    .cw-pain-grid,
    .cw-scope-grid,
    .cw-protocol-grid {
        grid-template-columns: 1fr;
    }

    .cw-agitation-section h2 {
        font-size: 1.75rem;
    }

    .cw-engagement-box {
        padding: 2rem 1.5rem;
    }

    .cw-engagement-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cw-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cw-hero h1 {
        font-size: 1.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   E-COMMERCE PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── EC Hero ────────────────────────────────────────────── */
.ec-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.ec-hero .section-label {
    margin-bottom: 2rem;
}

.ec-hero h1 {
    max-width: 800px;
}

.ec-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.ec-hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    justify-content: center;
}

.ec-hero-stat {
    text-align: center;
}

.ec-hero-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.ec-hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ── EC Agitation Section ───────────────────────────────── */
.ec-agitation-section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.ec-agitation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04), transparent 65%);
    pointer-events: none;
}

.ec-agitation-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.75rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ec-agitation-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.ec-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ec-pain-card {
    padding: 2rem 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ec-pain-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.ec-pain-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 1rem;
}

.ec-pain-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.ec-pain-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── EC Scope / Deliverables Section ────────────────────── */
.ec-scope-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.ec-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ec-scope-card {
    padding: 2.25rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ec-scope-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.ec-scope-icon {
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.06);
}

.ec-scope-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.ec-scope-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── EC Tech Stack Section ──────────────────────────────── */
.ec-stack-section {
    padding: var(--section-padding) 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ec-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.ec-stack-item {
    padding: 12px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.ec-stack-item:hover {
    border-color: var(--border-accent);
    background: rgba(0, 82, 255, 0.05);
}

.ec-stack-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.ec-stack-item:hover .ec-stack-name {
    color: var(--text-primary);
}

/* ── EC Protocol (6-column) ─────────────────────────────── */
.ec-protocol-section {
    background-color: var(--bg-secondary);
}

.ec-protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.ec-protocol-grid .protocol-step h3 {
    font-size: 1.05rem;
}

.ec-protocol-grid .protocol-step p {
    font-size: 0.85rem;
}

/* ── EC Engagement Model Section ────────────────────────── */
.ec-engagement-section {
    padding: var(--section-padding) 2rem;
}

.ec-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ec-engagement-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ec-engagement-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.ec-engagement-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.06);
}

.ec-engagement-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.ec-engagement-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── EC Trust Section ───────────────────────────────────── */
.ec-trust-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.ec-trust-section .trust-badges-grid {
    margin-bottom: 3rem;
}

.ec-testimonial-single {
    max-width: 700px;
    margin: 0 auto;
}

.ec-testimonial-single .testimonial-card {
    text-align: center;
}

.ec-testimonial-single .testimonial-author {
    justify-content: center;
}

/* ── EC Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .ec-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .ec-hero {
        padding-top: 8rem;
    }
}

@media (max-width: 768px) {
    .ec-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .ec-hero h1 {
        font-size: 2rem;
    }

    .ec-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .ec-hero-actions .btn-primary,
    .ec-hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .ec-hero-stats {
        gap: 1.5rem;
    }

    .ec-hero-stat-value {
        font-size: 1.35rem;
    }

    .ec-pain-grid,
    .ec-scope-grid,
    .ec-protocol-grid,
    .ec-engagement-grid {
        grid-template-columns: 1fr;
    }

    .ec-agitation-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .ec-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .ec-hero h1 {
        font-size: 1.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE APPS PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── MA Hero ────────────────────────────────────────────── */
.ma-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.ma-hero .section-label {
    margin-bottom: 2rem;
}

.ma-hero h1 {
    max-width: 800px;
}

.ma-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.ma-hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    justify-content: center;
}

.ma-hero-stat {
    text-align: center;
}

.ma-hero-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.ma-hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ── MA Agitation Section ───────────────────────────────── */
.ma-agitation-section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.ma-agitation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.04), transparent 65%);
    pointer-events: none;
}

.ma-agitation-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.75rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ma-agitation-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.ma-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ma-pain-card {
    padding: 2rem 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ma-pain-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.ma-pain-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 1rem;
}

.ma-pain-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.ma-pain-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── MA Scope / Deliverables Section ────────────────────── */
.ma-scope-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.ma-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ma-scope-card {
    padding: 2.25rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ma-scope-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.ma-scope-icon {
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    background: rgba(0, 82, 255, 0.06);
}

.ma-scope-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.ma-scope-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ── MA Tech Stack Section ──────────────────────────────── */
.ma-stack-section {
    padding: var(--section-padding) 2rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ma-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.ma-stack-item {
    padding: 12px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.ma-stack-item:hover {
    border-color: var(--border-accent);
    background: rgba(0, 82, 255, 0.05);
}

.ma-stack-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.ma-stack-item:hover .ma-stack-name {
    color: var(--text-primary);
}

/* ── MA Protocol (6-column) ─────────────────────────────── */
.ma-protocol-section {
    background-color: var(--bg-secondary);
}

.ma-protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.ma-protocol-grid .protocol-step h3 {
    font-size: 1.05rem;
}

.ma-protocol-grid .protocol-step p {
    font-size: 0.85rem;
}

/* ── MA Engagement Model Section ────────────────────────── */
.ma-engagement-section {
    padding: var(--section-padding) 2rem;
}

.ma-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ma-engagement-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.015);
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ma-engagement-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.ma-engagement-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.06);
}

.ma-engagement-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.ma-engagement-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── MA Trust Section ───────────────────────────────────── */
.ma-trust-section {
    padding: var(--section-padding) 2rem;
    background-color: var(--bg-secondary);
}

.ma-trust-section .trust-badges-grid {
    margin-bottom: 3rem;
}

.ma-testimonial-single {
    max-width: 700px;
    margin: 0 auto;
}

.ma-testimonial-single .testimonial-card {
    text-align: center;
}

.ma-testimonial-single .testimonial-author {
    justify-content: center;
}

/* ── MA Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .ma-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .ma-hero {
        padding-top: 8rem;
    }
}

@media (max-width: 768px) {
    .ma-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .ma-hero h1 {
        font-size: 2rem;
    }

    .ma-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .ma-hero-actions .btn-primary,
    .ma-hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .ma-hero-stats {
        gap: 1.5rem;
    }

    .ma-hero-stat-value {
        font-size: 1.35rem;
    }

    .ma-pain-grid,
    .ma-scope-grid,
    .ma-protocol-grid,
    .ma-engagement-grid {
        grid-template-columns: 1fr;
    }

    .ma-agitation-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .ma-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .ma-hero h1 {
        font-size: 1.75rem;
    }
}

/* ── Blog Article Styles ────────────────────────────────── */
.blog-content-section {
    padding: var(--section-padding) 0;
}

.blog-body h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.5px;
}

.blog-body h2:first-child {
    margin-top: 0;
}

.blog-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.blog-callout {
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent-color);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}

.blog-callout h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-cta-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.blog-cta-box h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.blog-cta-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-body h2 {
        font-size: 1.35rem;
    }

    .blog-callout {
        padding: 1.25rem 1.5rem;
    }

    .blog-cta-box {
        padding: 1.75rem;
    }
}

/* ── Guarantee Banner ───────────────────────────────────── */
.guarantee-banner {
    border: 1px solid rgba(0, 82, 255, 0.25);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.06), rgba(0, 82, 255, 0.02));
    margin-top: 2.5rem;
}

.guarantee-banner .guarantee-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.guarantee-banner .guarantee-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-banner .guarantee-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Competitor Comparison Box ──────────────────────────── */
.pricing-comparison-box {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-top: 2rem;
    background: var(--bg-card);
}

.pricing-comparison-box .comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

.pricing-comparison-box .comp-row:last-child {
    border-bottom: none;
}

.pricing-comparison-box .comp-label {
    color: var(--text-secondary);
}

.pricing-comparison-box .comp-value {
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-comparison-box .comp-value.old {
    text-decoration: line-through;
    opacity: 0.45;
    font-weight: 400;
}

.pricing-comparison-box .comp-value.highlight {
    color: var(--accent-color);
}

.pricing-comparison-box .comp-savings {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.88rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* ── Enhanced Comparison Box ────────────────────────────── */
.pricing-comparison-enhanced {
    border: 2px solid rgba(0, 82, 255, 0.25);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 82, 255, 0.04) 100%);
    padding: 2rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.pricing-comparison-enhanced::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.comp-row-expensive .comp-label {
    color: var(--text-secondary);
}

.comp-row-expensive .comp-value-red {
    text-decoration: line-through;
    color: #ff4d4d !important;
    opacity: 0.85 !important;
    font-weight: 600 !important;
}

.comp-row-korteq {
    background: rgba(0, 82, 255, 0.06);
    border-radius: 8px;
    padding: 0.85rem 1rem !important;
    margin-top: 0.25rem;
    border-bottom: none !important;
}

.comp-row-korteq .comp-label {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.comp-row-korteq .comp-value.highlight {
    font-size: 1.2rem;
    font-weight: 800;
    color: #00c853 !important;
}

.pricing-comparison-enhanced .comp-savings {
    font-size: 1rem;
    padding-top: 1.25rem;
    color: #00c853;
    font-weight: 700;
}

.savings-big {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00c853;
    letter-spacing: -0.5px;
}

/* ── Deployment Timeline ────────────────────────────────── */
.deployment-timeline {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.timeline-step {
    flex: 1;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.timeline-step .timeline-days {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .deployment-timeline {
        flex-direction: column;
    }
    .guarantee-banner {
        padding: 1.5rem;
    }
    .pricing-comparison-box {
        padding: 1.25rem;
    }
}

/* ── Contact Social Proof ───────────────────────────────── */
.contact-social-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

.contact-social-proof .proof-stat {
    text-align: center;
}

.contact-social-proof .proof-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
}

.contact-social-proof .proof-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}
