/* ============================================
   FastBytes.io — Red / Black / White Theme
   ============================================ */

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

:root {
    --bg-primary: #080808;
    --bg-secondary: #0e0e0e;
    --bg-card: rgba(18, 18, 18, 0.8);
    --bg-card-hover: rgba(28, 28, 28, 0.9);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(220, 38, 38, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --red: #dc2626;
    --red-light: #ef4444;
    --red-dark: #b91c1c;
    --red-glow: rgba(220, 38, 38, 0.15);
    --green: #22c55e;
    --amber: #f59e0b;
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Nav --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}
.nav-logo span { color: var(--red); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}
.nav-cta:hover {
    background: var(--red-dark) !important;
    box-shadow: 0 4px 20px var(--red-glow);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 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); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: white;
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 2rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}
.glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18), transparent);
    top: -10%; left: 25%;
    animation: drift 14s ease-in-out infinite;
}
.glow-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent);
    bottom: 10%; right: 20%;
    animation: drift 18s ease-in-out infinite reverse;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-15px, 10px); }
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
}
.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--red-glow);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}
.gradient-text {
    background: linear-gradient(135deg, var(--red-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Ticker --- */
.ticker {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: auto;
    padding-top: 3rem;
    overflow: hidden;
}
.ticker-track {
    background: rgba(220, 38, 38, 0.04);
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    padding: 0.6rem 0;
    overflow: hidden;
}
.ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}
.ticker-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.ticker-item strong {
    color: var(--text-primary);
    font-weight: 700;
}
.ticker-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Proof Bar --- */
.proof-bar {
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
    background: var(--bg-secondary);
}
.proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.proof-stat {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    text-align: center;
}
.proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.proof-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red-light);
}
.proof-label {
    width: 100%;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}
.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* --- AI Rescue Operations (Consulting Spotlight) --- */
.section-ai-rescue {
    padding: 5rem 0;
    background: var(--bg-primary);
}
.ai-rescue-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, var(--bg-card) 45%, var(--bg-card) 100%);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 60px var(--red-glow);
}
.ai-rescue-card-visible {
    opacity: 1;
    transform: none;
}
.ai-rescue-glow {
    position: absolute;
    top: -30%;
    left: 20%;
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent 70%);
    pointer-events: none;
}
.ai-rescue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
}
.ai-rescue-content {
    padding: 3rem 2.5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.ai-rescue-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    position: relative;
}
.ai-rescue-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}
.ai-rescue-lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
}
.ai-rescue-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}
.ai-rescue-engagements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    margin-bottom: 1.75rem;
    position: relative;
}
.ai-rescue-engagements li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}
.ai-rescue-engagements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}
.ai-rescue-cta-wrap {
    position: relative;
}
.ai-rescue-cta {
    position: relative;
    animation: ai-rescue-cta-pulse 3s ease-in-out infinite;
}
.ai-rescue-cta:hover {
    animation: none;
    box-shadow: 0 0 28px var(--red-glow), 0 0 56px rgba(220, 38, 38, 0.2);
}
.ai-rescue-cta-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-left: 0.15rem;
}
@keyframes ai-rescue-cta-pulse {
    0%, 100% { box-shadow: 0 4px 20px var(--red-glow); }
    50% { box-shadow: 0 4px 28px var(--red-glow), 0 0 40px rgba(220, 38, 38, 0.12); }
}

/* AI Rescue visual - ship navigation radar (PPI scope) */
.ai-rescue-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

/* Scope housing - circular display like a ship's radar */
.ai-rescue-scope {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.6);
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(220, 38, 38, 0.25);
    background: radial-gradient(ellipse 100% 100% at 50% 50%, #0c120c 0%, #061006 50%, #030503 100%);
    padding: 6px;
    position: relative;
    box-sizing: border-box;
}
.ai-rescue-scope-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(12, 24, 12, 0.98) 0%, rgba(4, 12, 4, 0.99) 70%, #000 100%);
    box-sizing: border-box;
}

/* Range rings - static concentric circles (1/4, 1/2, 3/4, full) */
.ai-rescue-range-rings {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-rescue-range-rings .range-ring {
    position: absolute;
    border: 1px solid rgba(220, 38, 38, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.15);
}
.ai-rescue-range-rings .r1 { width: 50%; height: 50%; }
.ai-rescue-range-rings .r2 { width: 75%; height: 75%; }
.ai-rescue-range-rings .r3 { width: 87.5%; height: 87.5%; }
.ai-rescue-range-rings .r4 { width: 100%; height: 100%; }

/* Sweep line - thin rotating trace from center (PPI sweep) */
.ai-rescue-sweep-line {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 3;
    /* Very thin wedge = sweep line (ship radar style) */
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 356deg,
        rgba(220, 38, 38, 0.4) 357deg,
        rgba(255, 255, 255, 1) 359deg,
        rgba(239, 68, 68, 1) 360deg
    );
    animation: ai-rescue-sweep-rotate 4s linear infinite;
}
@keyframes ai-rescue-sweep-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Blips - radar contacts (small, sharp returns) */
.ai-rescue-blips {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.ai-rescue-blips .blip {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.9), 0 0 16px rgba(220, 38, 38, 0.4);
    transform: translate(-50%, -50%);
    animation: ai-rescue-blip-pulse 1.2s ease-in-out infinite;
}
.ai-rescue-blips .b1 { top: 32%; left: 42%; animation-delay: 0s; }
.ai-rescue-blips .b2 { top: 48%; left: 62%; animation-delay: 0.2s; }
.ai-rescue-blips .b3 { top: 64%; left: 38%; animation-delay: 0.4s; }
.ai-rescue-blips .b4 { top: 38%; left: 68%; animation-delay: 0.1s; }
.ai-rescue-blips .b5 { top: 56%; left: 72%; animation-delay: 0.3s; }
@keyframes ai-rescue-blip-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Center dot - own ship / origin */
.ai-rescue-center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.9);
    z-index: 4;
}

@media (max-width: 900px) {
    .ai-rescue-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ai-rescue-content {
        padding: 2.5rem 2rem;
    }
    .ai-rescue-visual {
        min-height: 220px;
        order: -1;
        padding: 1.5rem;
    }
    .ai-rescue-scope {
        width: 200px;
        height: 200px;
        padding: 4px;
    }
}
@media (max-width: 768px) {
    .ai-rescue-card { max-width: 100%; }
    .ai-rescue-engagements { grid-template-columns: 1fr; gap: 0.35rem; }
    .ai-rescue-visual { min-height: 180px; }
}

/* --- Section Base --- */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-secondary); }
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Expertise --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.expertise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.expertise-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.expertise-card:hover::before { opacity: 1; }
.expertise-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.expertise-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.expertise-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.expertise-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.expertise-roles span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* --- Employer Section --- */
.employer-pitch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
.pitch-problem, .pitch-solution {
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.pitch-problem {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}
.pitch-solution {
    background: var(--red-glow);
    border: 1px solid rgba(220, 38, 38, 0.2);
}
.pitch-problem h3, .pitch-solution h3 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.pitch-solution h3 { color: var(--red-light); }
.pitch-problem p, .pitch-solution p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.pitch-problem strong { color: var(--text-primary); }
.pitch-solution strong { color: var(--text-primary); }

/* --- Pricing --- */
.pricing-header {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.pricing-card.featured {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.06), var(--bg-card));
    position: relative;
}
.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 0 0 6px 6px;
}
.pricing-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.pricing-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.pricing-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.pricing-features {
    flex: 1;
    margin-bottom: 1.5rem;
}
.pricing-features li {
    font-size: 0.825rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.7rem;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.6;
}

/* --- SLA Bar --- */
.sla-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.sla-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.sla-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.sla-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}
.sla-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Forms --- */
.section-cta-form {
    padding: 6rem 0;
    background: var(--bg-primary);
}
.cta-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.cta-form-layout.reverse {
    grid-template-columns: 1.2fr 1fr;
}
.cta-form-layout.reverse .cta-form-content { order: 1; }
.cta-form-layout.reverse .contact-form { order: 0; }

.cta-form-content .section-title {
    text-align: left;
}
.cta-form-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.cta-form-trust {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.trust-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
}
.trust-item::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}
.form-group select option {
    background: #1a1a1a;
    color: var(--text-primary);
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
.form-note a {
    color: var(--red-light);
    text-decoration: underline;
}

/* --- Talent Offer --- */
.talent-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}
.talent-offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}
.talent-offer-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.talent-offer-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.talent-offer-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.talent-offer-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Salary Table --- */
.salary-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.salary-header {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.salary-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.salary-grid {
    display: flex;
    flex-direction: column;
}
.salary-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}
.salary-row:last-child { border-bottom: none; }
.salary-role {
    font-size: 0.9rem;
    font-weight: 600;
}
.salary-range {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}
.salary-demand {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
}
.demand-critical {
    color: var(--red-light);
    background: var(--red-glow);
}
.demand-high {
    color: var(--amber);
    background: rgba(245, 158, 11, 0.12);
}

/* --- Regional Demand Map --- */
.demand-map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.region-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.region-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.region-heat {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.region-critical .region-heat {
    color: var(--red-light);
    background: var(--red-glow);
}
.region-critical { border-color: rgba(220, 38, 38, 0.15); }
.region-critical:hover { border-color: rgba(220, 38, 38, 0.35); }

.region-high .region-heat {
    color: var(--amber);
    background: rgba(245, 158, 11, 0.12);
}
.region-high { border-color: rgba(245, 158, 11, 0.1); }
.region-high:hover { border-color: rgba(245, 158, 11, 0.25); }

.region-growing .region-heat {
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
}
.region-growing { border-color: rgba(34, 197, 94, 0.08); }
.region-growing:hover { border-color: rgba(34, 197, 94, 0.2); }

.region-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.region-detail {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.region-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.region-stats span {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding-left: 0.75rem;
    position: relative;
}
.region-stats span::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

/* --- Talent CTA Card --- */
.section-cta-talent {
    padding: 5rem 0;
    background: var(--bg-secondary);
}
.talent-cta-card {
    position: relative;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}
.talent-cta-card .cta-glow {
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent 70%);
    pointer-events: none;
}
.talent-cta-card .section-title {
    position: relative;
}
.talent-cta-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    position: relative;
}
.talent-cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
}
.talent-cta-features .trust-item {
    padding-left: 1.25rem;
}
.talent-cta-alt {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    position: relative;
}
.talent-cta-alt a {
    color: var(--red-light);
    text-decoration: underline;
}

/* --- About --- */
.about-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-content .section-title { text-align: left; }
.about-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-content strong { color: var(--text-primary); }
.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-value {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all var(--transition);
}
.about-value:hover { border-color: var(--border-hover); }
.about-value h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.about-value p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- Final CTA --- */
.section-final-cta {
    padding: 5rem 0;
    background: var(--bg-primary);
}
.final-cta {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.06), var(--bg-card));
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    overflow: hidden;
}
.final-cta-glow {
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent 70%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    position: relative;
}
.final-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
}
.final-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.footer-contact a {
    font-size: 0.85rem;
    color: var(--red-light);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--red); }
.footer-links-group h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.footer-links-group li { margin-bottom: 0.4rem; }
.footer-links-group a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--text-primary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured::before { display: none; }
    .employer-pitch { grid-template-columns: 1fr; }
    .sla-bar { grid-template-columns: 1fr; }
    .talent-offer-grid { grid-template-columns: repeat(2, 1fr); }
    .demand-map-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-form-layout, .cta-form-layout.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-form-layout.reverse .cta-form-content { order: 0; }
    .cta-form-layout.reverse .contact-form { order: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.25rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.6rem 0;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 0.75rem;
        text-align: center;
    }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 6rem 1.5rem 0; }
    .hero-title { font-size: 2rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 260px; justify-content: center; }
    .expertise-grid { grid-template-columns: 1fr; }
    .talent-offer-grid { grid-template-columns: 1fr; }
    .demand-map-grid { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .proof-grid { gap: 1.5rem; }
    .proof-divider { display: none; }
    .proof-number { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .salary-row { grid-template-columns: 1fr; gap: 0.25rem; }
    .salary-range { font-size: 1.1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .final-cta-buttons .btn { width: 100%; max-width: 260px; }
}
