:root {
    --navy: #071832;
    --navy-mid: #0D2545;
    --navy-light: #132F58;
    --blue: #1D4ED8;
    --blue-light: #3B82F6;
    --blue-glow: #60A5FA;
    --red: #DC2626;
    --red-light: #EF4444;
    --white: #FFFFFF;
    --off-white: #F0F6FF;
    --muted: #93AED4;
    --border: rgba(59, 130, 246, 0.2);
    --card-bg: rgba(13, 37, 69, 0.7);
    --gradient-hero: linear-gradient(135deg, #040F22 0%, #071832 40%, #0D2545 70%, #0E1F40 100%);
    --gradient-accent: linear-gradient(135deg, #1D4ED8, #2563EB);
    --gradient-red: linear-gradient(135deg, #B91C1C, #DC2626);
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
}

.section-label.red {
    color: var(--red-light);
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

/* ── Navbar ── */
#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: transparent;
}

#main-nav.scrolled {
    background: rgba(4, 15, 34, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-brand span.brand-247 { color: var(--blue-light); }
.nav-brand span.brand-dot { color: var(--red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* ── Buttons ── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.5);
    color: var(--white);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-secondary-custom:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    background: rgba(59, 130, 246, 0.08);
}

.btn-red-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-red-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.55);
    color: var(--white);
}

.btn-lg-primary {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ── Sections ── */
section { position: relative; }

.section-dark { background: var(--navy); }
.section-mid { background: var(--navy-mid); }
.section-alt {
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}

.container-site {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ── Hero ── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(29, 78, 216, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(29, 78, 216, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-glow);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--blue-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(147, 174, 212, 0.85);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.scroll-arrow {
    width: 24px; height: 24px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
}

/* ── Stats Bar ── */
#stats {
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.red {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── Pricing ── */
#pricing { background: var(--navy); }

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.pricing-headline {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pricing-tagline {
    font-size: 1.1rem;
    color: var(--red-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-desc {
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.pricing-points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.pricing-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--off-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-point .icon-x {
    width: 20px; height: 20px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--red-light);
    font-size: 0.75rem;
    font-weight: 900;
}

/* ── Problem ── */
#problem { background: var(--navy-mid); }

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(7, 24, 50, 0.5);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
}

.problem-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(13, 37, 69, 0.7);
}

.problem-icon {
    width: 36px; height: 36px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.problem-text {
    font-size: 0.9rem;
    color: var(--off-white);
    font-weight: 500;
    line-height: 1.5;
}

.callout-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.callout-box::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px;
    background: var(--gradient-accent);
    border-radius: 0 2px 2px 0;
}

.callout-quote {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.callout-sub {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Platform ── */
#platform { background: var(--navy); }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.capability-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.capability-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.capability-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.capability-card:hover::after { opacity: 1; }

.cap-icon {
    width: 48px; height: 48px;
    background: rgba(29, 78, 216, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.cap-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.65rem;
}

.cap-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cap-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(29, 78, 216, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    color: var(--blue-light);
    font-weight: 500;
}

/* ── Natural Language Examples ── */
.nl-examples {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nl-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(7, 24, 50, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--off-white);
    font-style: italic;
}

.nl-icon {
    color: var(--blue-light);
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-style: normal;
    font-weight: 700;
}

/* ── Autonomous / Workflow items ── */
.workflow-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.87rem;
    color: var(--off-white);
}

.workflow-item::before {
    content: '✓';
    display: inline-flex;
    width: 18px; height: 18px;
    background: rgba(29, 78, 216, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--blue-glow);
    font-weight: 900;
    flex-shrink: 0;
}

/* ── Copilots section ── */
.copilot-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.copilot-badge {
    padding: 0.4rem 0.9rem;
    background: rgba(13, 37, 69, 0.8);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--off-white);
}

/* ── Technology ── */
#technology { background: var(--navy-mid); }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: rgba(7, 24, 50, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.tech-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tech-icon.blue { background: rgba(29, 78, 216, 0.2); }
.tech-icon.cyan { background: rgba(6, 182, 212, 0.15); }

.tech-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.tech-card-sub {
    font-size: 0.8rem;
    color: var(--muted);
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tech-list-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.87rem;
    color: var(--off-white);
}

.tech-dot {
    width: 6px; height: 6px;
    background: var(--blue-light);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Who We Serve ── */
#serve { background: var(--navy); }

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.serve-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.serve-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
}

.serve-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    display: block;
}

.serve-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

/* ── Market ── */
#market { background: var(--navy-mid); }

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.market-number {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.market-number-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 2rem;
}

.future-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.future-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--off-white);
}

.future-item .arrow {
    width: 28px; height: 28px;
    background: rgba(29, 78, 216, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ── Vision ── */
#vision { background: var(--navy); }

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.vision-pillar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.vision-pillar:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.pillar-icon {
    font-size: 1.75rem;
    margin-bottom: 0.85rem;
    display: block;
}

.pillar-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.4;
}

/* ── CTA Section ── */
#cta {
    background: linear-gradient(135deg, #040F22 0%, #071832 50%, #0A1E3D 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(29, 78, 216, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--off-white);
}

.cta-point .check {
    color: var(--blue-light);
    font-weight: 900;
}

.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

.cta-guarantee strong { color: var(--red-light); font-style: normal; }

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Footer ── */
footer {
    background: #040F22;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 3rem 0 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.footer-brand span.brand-247 { color: var(--blue-light); }
.footer-brand span.brand-dot { color: var(--red); }

.footer-tagline {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(147, 174, 212, 0.5);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--blue-glow);
    font-weight: 600;
}

/* ── Dividers ── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0;
}

/* ── Hamburger ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

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

/* ── Privacy Page ── */
.privacy-page {
    min-height: 100vh;
    padding: calc(80px + 5rem) 0 6rem;
}

.privacy-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1.1rem;
}

.privacy-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.privacy-accent-line {
    width: 44px;
    height: 2px;
    background: var(--blue-light);
    margin-bottom: 3rem;
}

.privacy-body {
    max-width: 760px;
}

.privacy-lead {
    font-size: 1.05rem;
    color: var(--off-white);
    line-height: 1.85;
    margin-bottom: 3rem;
}

.privacy-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.privacy-block:last-child { border-bottom: none; margin-bottom: 0; }

.privacy-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.privacy-block p {
    font-size: 0.925rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 0.875rem;
}

.privacy-block p:last-child { margin-bottom: 0; }

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0.875rem;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: var(--muted);
    line-height: 1.75;
    padding: 0.5rem 0;
}

.privacy-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--blue-light);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.privacy-callout {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(245, 158, 11, 0.82);
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .market-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
    .section-pad { padding: 4rem 0; }
    .pricing-card { padding: 2rem; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .nav-cta .btn-secondary-custom { display: none; }
    .hero-title { letter-spacing: -0.02em; }
}

@media (max-width: 480px) {
    .container-site { padding: 0 1.25rem; }
    .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
    .serve-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-pillars { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-actions { flex-direction: column; align-items: stretch; }
}
