/* ============================================
   Route B - Modern Website Styles
   Brand: #5099C3 (blue) / #262B4C (dark navy)
   ============================================ */

/* --- Cookie Consent Theme --- */
:root {
    --cc-bg: #1a1e38;
    --cc-primary-color: #e2e8f0;
    --cc-secondary-color: #94a3b8;
    --cc-btn-primary-bg: #5099C3;
    --cc-btn-primary-color: #fff;
    --cc-btn-primary-hover-bg: #3A7BA8;
    --cc-btn-secondary-bg: #262B4C;
    --cc-btn-secondary-color: #e2e8f0;
    --cc-btn-secondary-hover-bg: #2f3561;
    --cc-separator-border-color: rgba(80, 153, 195, 0.15);
    --cc-cookie-category-block-bg: #262B4C;
    --cc-cookie-category-block-hover-bg: #2f3561;
    --cc-overlay-bg: rgba(12, 14, 31, 0.7);
    --cc-toggle-on-bg: #5099C3;
}

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

:root {
    --blue: #5099C3;
    --blue-light: #6DB3D9;
    --blue-dark: #3A7BA8;
    --navy: #262B4C;
    --navy-deep: #1a1e38;
    --navy-darker: #12152a;
    --navy-darkest: #0c0e1f;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #eef1f5;
    --gray-200: #dde2ea;
    --gray-300: #b8c0ce;
    --gray-400: #8892a4;
    --gray-500: #64708a;
    --gray-600: #4a5568;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --text-dark-muted: #64748b;
    --accent-glow: rgba(80, 153, 195, 0.15);
    --accent-glow-strong: rgba(80, 153, 195, 0.3);
    --gradient-hero: linear-gradient(135deg, #0c0e1f 0%, #1a1e38 50%, #1e2a45 100%);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(80, 153, 195, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--blue-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark-muted);
    max-width: 640px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.text-accent {
    color: var(--blue);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn__icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
    transform: translate(3px, -3px);
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(80, 153, 195, 0.3);
}

.btn--primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 25px rgba(80, 153, 195, 0.4);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: padding 0.15s ease;
}

/* CSS scroll-driven animation — runs on compositor, works during momentum scroll */
@supports (animation-timeline: scroll()) {
    @keyframes nav-bg {
        0%, 0.1% {
            background: transparent;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            border-bottom-color: transparent;
            padding: 14px 0;
        }
        0.5%, 100% {
            background: rgba(12, 14, 31, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom-color: rgba(80, 153, 195, 0.1);
            padding: 10px 0;
        }
    }

    .nav {
        animation: nav-bg linear both;
        animation-timeline: scroll();
        transition: none;
    }
}

/* JS fallback for browsers without scroll-timeline support */
.nav--scrolled {
    background: rgba(12, 14, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom-color: rgba(80, 153, 195, 0.1);
}

.nav__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-icon {
    width: 90px;
    height: auto;
    color: var(--white);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav__link--cta {
    background: var(--blue);
    color: var(--white);
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO - Dark, dramatic, IssuePass-inspired
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Subtle grid pattern */
.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(80, 153, 195, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 153, 195, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(80, 153, 195, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(38, 43, 76, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(80, 153, 195, 0.06) 0%, transparent 40%);
}

/* Floating orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    will-change: transform;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(80, 153, 195, 0.12);
    top: -100px;
    left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(80, 153, 195, 0.08);
    bottom: -100px;
    right: -50px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: rgba(109, 179, 217, 0.06);
    top: 40%;
    left: 50%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, 30px) scale(1.05); }
    66% { transform: translate(-20px, 50px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -40px) scale(1.08); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(80, 153, 195, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    will-change: transform, opacity;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Hero Container */
.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content - Left side */
.hero__content {
    max-width: 580px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(80, 153, 195, 0.1);
    border: 1px solid rgba(80, 153, 195, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue-light);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(80, 153, 195, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(80, 153, 195, 0); }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-row {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero__stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-light);
    margin-left: 1px;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual - Right side terminal */
.hero__visual {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero__terminal {
    background: rgba(15, 18, 35, 0.8);
    border: 1px solid rgba(80, 153, 195, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(80, 153, 195, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.hero__terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero__terminal-dot--red { background: #ff5f57; }
.hero__terminal-dot--yellow { background: #febc2e; }
.hero__terminal-dot--green { background: #28c840; }

.hero__terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
}

.hero__terminal-body {
    padding: 24px;
    min-height: 280px;
}

.hero__terminal-line {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--gray-300);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s ease;
}

.hero__terminal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__terminal-line--output {
    padding-left: 20px;
    color: var(--gray-400);
}

.hero__terminal-prompt {
    color: var(--blue);
    margin-right: 8px;
    font-weight: 500;
}

.hero__terminal-cmd {
    color: var(--white);
}

.hero__terminal-success {
    color: #28c840;
    margin-right: 8px;
}

.hero__terminal-info {
    color: var(--blue-light);
    margin-right: 8px;
}

.hero__terminal-highlight {
    color: var(--blue-light);
    font-weight: 500;
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero__scroll span {
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(80, 153, 195, 0.2);
    box-shadow: 0 12px 40px rgba(80, 153, 195, 0.1);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}


.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--blue);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    background: rgba(80, 153, 195, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-dark-muted);
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* Service card - Cyber variant */
.service-card--cyber {
    border-color: rgba(80, 153, 195, 0.2);
}

.service-card__label--cyber {
    background: rgba(255, 90, 90, 0.1);
    color: #ff5a5a;
}

/* ============================================
   CYBERSECURITY BANNER
   ============================================ */
.cyber-banner {
    padding: 60px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cyber-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(80, 153, 195, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(80, 153, 195, 0.06) 0%, transparent 40%);
}

.cyber-banner__layout {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cyber-banner__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    color: var(--blue-light);
}

.cyber-banner__icon svg {
    width: 100%;
    height: 100%;
}

.cyber-banner__content {
    flex: 1;
}

.cyber-banner__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cyber-banner__desc {
    font-size: 0.9375rem;
    color: var(--gray-300);
    line-height: 1.65;
    max-width: 680px;
}

.cyber-banner .btn--primary {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cyber-banner__layout {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ============================================
   FRACTIONAL CTO SECTION
   ============================================ */
.fcto {
    padding: 120px 0;
    background: var(--gray-50);
}

.fcto__layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.fcto__intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-dark-muted);
    margin-bottom: 16px;
}

.fcto__features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.fcto__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fcto__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 153, 195, 0.1);
    border-radius: var(--radius-md);
    color: var(--blue);
}

.fcto__feature-icon svg {
    width: 22px;
    height: 22px;
}

.fcto__feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.fcto__feature-desc {
    font-size: 0.9375rem;
    color: var(--text-dark-muted);
    line-height: 1.6;
}

/* CTO Card / How it works */
.fcto__card {
    position: sticky;
    top: 100px;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(38, 43, 76, 0.3);
}

.fcto__card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.fcto__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.fcto__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fcto__step-num {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--blue-light);
    font-family: var(--font-mono);
    padding-top: 2px;
}

.fcto__step h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.fcto__step p {
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.55;
}

.fcto__card .btn--primary {
    background: var(--blue);
    margin-top: 8px;
}

/* ============================================
   APPROACH / WHY ROUTE B
   ============================================ */
.approach {
    padding: 120px 0;
    background: var(--white);
}

.approach__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.approach__card {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.approach__card:hover {
    border-color: rgba(80, 153, 195, 0.2);
    box-shadow: 0 8px 30px rgba(80, 153, 195, 0.08);
    transform: translateY(-2px);
}

.approach__number {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}

.approach__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.approach__card p {
    font-size: 0.9375rem;
    color: var(--text-dark-muted);
    line-height: 1.65;
}

/* ============================================
   CLIENTS / TRUST
   ============================================ */
.clients {
    padding: 120px 0;
    background: var(--gray-50);
}

.clients__logos {
    margin-bottom: 56px;
}

.clients__logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.clients__logo-item {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.clients__logo-item:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 4px 15px rgba(80, 153, 195, 0.1);
    transform: translateY(-2px);
}

.clients__regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.clients__region {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.clients__region-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.clients__region-desc {
    font-size: 0.875rem;
    color: var(--text-dark-muted);
    line-height: 1.7;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--navy-deep);
    color: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.contact__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--blue-light);
    margin-top: 2px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.contact__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.contact__detail-value:hover {
    color: var(--blue-light);
}

.contact__people {
    display: flex;
    gap: 24px;
}

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

.contact__person-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(80, 153, 195, 0.15);
    border: 1px solid rgba(80, 153, 195, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--blue-light);
}

.contact__person-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.contact__person-email {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.contact__person-email:hover {
    color: var(--blue-light);
}

/* Contact Form */
.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(80, 153, 195, 0.15);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--navy);
    color: var(--white);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    background: var(--navy-darkest);
    color: var(--gray-400);
}

.footer__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
}

.footer__logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--gray-400);
    max-width: 320px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 64px;
    justify-content: flex-end;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.footer__col a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--blue-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--blue-light);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal {
    padding: 120px 0 80px;
    background: var(--dark);
    min-height: calc(100vh - 200px);
}

.legal__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal__updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal__section {
    margin-bottom: 40px;
}

.legal__section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal__section h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-200);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal__section p {
    font-size: 0.9375rem;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal__section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.legal__section li {
    font-size: 0.9375rem;
    color: var(--gray-300);
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
}

.legal__section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.legal__section a {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal__section a:hover {
    color: var(--blue);
}

.legal__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.875rem;
}

.legal__table th,
.legal__table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal__table th {
    color: var(--gray-200);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
}

.legal__table td {
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .legal {
        padding: 100px 0 60px;
    }

    .legal__table {
        font-size: 0.8125rem;
    }

    .legal__table th,
    .legal__table td {
        padding: 8px 10px;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        max-width: 520px;
    }

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

    .fcto__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fcto__card {
        position: static;
    }

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

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .section-title br {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.35s ease;
        border-left: 1px solid rgba(80, 153, 195, 0.1);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .hero__container {
        padding: 140px 24px 80px;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__scroll {
        display: none;
    }

    .services,
    .fcto,
    .approach,
    .clients,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services__grid,
    .approach__grid {
        grid-template-columns: 1fr;
    }

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

    .contact__people {
        flex-direction: column;
    }

    .contact__title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .fcto__content .section-title br {
        display: none;
    }

    .footer__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        justify-content: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
    }

    .footer__legal {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero__container {
        padding: 120px 16px 60px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__terminal-body {
        padding: 16px;
        font-size: 0.75rem;
    }

    .hero__terminal-line {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 16px;
    }

    .service-card,
    .approach__card {
        padding: 28px 24px;
    }

    .fcto__card {
        padding: 28px 24px;
    }

    .cyber-banner {
        padding: 40px 0;
    }

    .contact__form-wrapper {
        padding: 24px;
    }
}
