:root {
    /* Color Tokens - Vision Blue Palette */
    --accent-blue: #0055FF;
    --accent-blue-glow: rgba(0, 85, 255, 0.4);
    --azure: #00A3FF;
    --bio-neon: #00FFC2;
    --alert-red: #FF3B30;
    --alert-red-glow: rgba(255, 59, 48, 0.4);
    
    --raven-black: #05070A;
    --cobalt-dark: #0A0F1A;
    --cobalt-card: rgba(16, 24, 40, 0.6);
    
    --white: #FFFFFF;
    --gray-lt: #8F9BB3;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-card: 32px;

    /* Animation State */
    --scroll-y: 0px;
    --privacy-scroll: 0;

    /* Layout Tokens */
    --container-max: 1200px;
    --radius-pill: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    max-width: 100%; /* Better than 100vw for preventing scrollbar-related gaps */
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%; /* Force no gaps */
    overflow-x: hidden; /* Prevent horizontal gaps */
    background-color: var(--raven-black);
    position: relative;
}

html {
    scroll-behavior: smooth;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* --- Utilities --- */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid rgba(0, 85, 255, 0.3);
    border-radius: 20px;
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.btn-pill {
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-blue-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--glass-border);
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 1000;
    border-radius: 40px;
}

.container-nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-scrolled {
    background: rgba(10, 15, 26, 0.8) !important;
    border: 1px solid rgba(0, 85, 255, 0.2) !important;
    top: 10px !important;
    padding: 0 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased for a more spacious, premium feel */
    font-size: 1.2rem;
    letter-spacing: 1.5px; /* Subtle increase to match the new space */
}

.logo-pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--accent-blue);
}

.logo-pulse::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    animation: radar-pulse 2s infinite linear;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px; /* Standardized to prevent excessive gaps with buttons */
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-links a {
    transition: color 0.3s var(--transition);
}

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

.btn-nav {
    padding: 10px 24px !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 12px; /* Providing space for the pill shape */
}

/* --- Mobile Menu --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent-blue); /* Updated to brand blue */
    transition: 0.3s var(--transition);
    border-radius: 2px;
}

/* Mobile State (Tablets & Phones) */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        transform: translateX(100%);
        visibility: hidden; /* Prevent ghost layout shifts */
        pointer-events: none;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition: 0.4s var(--transition);
    }

    /* Stagger transitions for mobile items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

    .btn-nav {
        margin-left: 0 !important;
        width: 80%;
        max-width: 300px;
        text-align: center;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* --- Sections --- */
#hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden; 
    padding-top: 100px;
    background: linear-gradient(to bottom, rgba(5, 7, 10, 0.4) 0%, rgba(5, 7, 10, 0.7) 100%), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.radar-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%; /* Stretch to edge-to-edge */
    transform: scale(calc(1 + (var(--scroll-y) * 0.0015)));
    background: radial-gradient(circle at center, rgba(0, 85, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    opacity: calc(1.5 - (var(--scroll-y) * 0.002));
    will-change: transform, opacity;
}

.hero-content {
    z-index: 2;
    transform: translateY(calc(var(--scroll-y) * -0.2));
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 800px; /* Preserve a readable width while pinned right */
    margin-right: 5%; /* Offset from the edge for visual balance */
    margin-left: 0;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--white);
    max-width: 600px;
    margin-bottom: 40px;
    margin-left: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 450; /* Slightly heavier for readability */
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

/* --- Features Grid --- */
#mission {
    padding: 100px 0 60px;
    text-align: center;
}

#mission h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.4rem;
    color: var(--gray-lt);
    max-width: 800px;
    margin: 24px auto 0;
    line-height: 1.6;
}

/* --- Protocol Timeline --- */
.protocol-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
}

.protocol-step {
    flex: 1 1 280px;
    max-width: 400px;
    background: var(--glass-bg);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 1px solid var(--glass-border);
    position: relative;
    transition: transform 0.4s var(--transition);
}

.protocol-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    background: rgba(0, 85, 255, 0.05);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-blue);
    opacity: 0.3;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.protocol-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.protocol-step p {
    color: var(--gray-lt);
    font-size: 1rem;
    line-height: 1.6;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 100px;
}

.pillar-card {
    padding: 40px;
    border-radius: var(--radius-card);
    transition: all 0.5s var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    background: rgba(0, 85, 255, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

/* --- Experience Showroom --- */
#experience {
    padding: 100px 0;
    text-align: center;
}

#experience h2 {
    font-size: 3.5rem;
    margin-bottom: 60px;
}

.showroom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

.device-frame-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.device-frame {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 19.5;
    background: #000;
    border-radius: calc(var(--radius-card) + 12px);
    border: 10px solid #1a1a1a;
    box-shadow: 0 40px 100px rgba(0, 85, 255, 0.1), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.6s var(--transition);
}

.device-frame:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 50px 120px rgba(0, 85, 255, 0.2);
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: calc(var(--radius-card) - 10px);
}

.frame-caption {
    font-size: 0.9rem;
    color: var(--gray-lt);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.full-bleed {
    width: 100%;
    overflow-x: hidden; /* Extra hardening against horizontal gaps */
    background: var(--cobalt-dark);
    padding: 100px 0;
    margin: 0;
}

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

.privacy-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 32px;
}

.check-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li::before {
    content: '✓';
    color: var(--bio-neon);
    font-weight: bold;
}

.privacy-visual {
    height: 400px;
    border-radius: var(--radius-card);
    background: radial-gradient(circle at center, var(--accent-blue-glow), transparent);
    transform: scale(calc(0.8 + (var(--privacy-scroll) * 0.2)));
    opacity: var(--privacy-scroll);
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
    opacity: 0.8;
    border-radius: var(--radius-card);
}

/* --- Report Preview --- */
#reports {
    padding: 100px 0;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

/* --- Stats Grid --- */
.stats-grid {
    margin-top: 48px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.stat-label {
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.stat-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    backface-visibility: hidden; /* Force GPU layer promotion */
}

.stat-fill {
    height: 100%;
    width: 100%;
    transform: scaleX(0); /* Default to 0 */
    transform-origin: left;
    background: linear-gradient(90deg, var(--accent-blue), var(--bio-neon));
    box-shadow: 0 0 20px var(--accent-blue-glow);
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Trigger animation purely via CSS class */
.stats-grid.visible .stat-fill {
    transform: scaleX(var(--target-scale, 0));
}

.stat-item {
    display: grid;
    grid-template-columns: 300px 1fr 140px; /* Increased label width for stability */
    align-items: center;
    gap: 40px;
    contain: layout paint;
}

.stat-value {
    font-weight: 800;
    color: var(--bio-neon);
    text-align: right;
    font-size: 1.1rem;
    white-space: nowrap; /* Prevent "Weight" from wrapping */
}

/* --- Intelligence FAQ --- */
#faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px; /* Increased for bill-shape consistency */
    overflow: hidden;
    transition: all 0.3s var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-lt);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active {
    background: rgba(0, 85, 255, 0.03);
    border-color: var(--accent-blue);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

/* --- Mobile-First Global Overrides --- */
/* --- Clinical Validation --- */
#validation {
    padding: 100px 0;
    text-align: center;
}

.validation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.metric-card {
    padding: 40px;
    border-radius: var(--radius-card);
    background: rgba(10, 15, 26, 0.4);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition);
}

.metric-card:hover {
    background: rgba(0, 85, 255, 0.05);
    border-color: var(--accent-blue);
    transform: translateY(-8px);
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-blue);
    margin-bottom: 8px;
    display: block;
}

.metric-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.metric-desc {
    color: var(--gray-lt);
    font-size: 0.9rem;
    line-height: 1.5;
}

.report-cta {
    margin-top: 60px;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--accent-blue);
    font-weight: 600;
    transition: all 0.3s var(--transition);
}

.report-cta:hover {
    background: var(--glass-border);
}

@media (max-width: 768px) {
    :root {
        --radius-card: 24px;
    }

    h1 { font-size: 2.2rem; overflow-wrap: break-word; line-height: 1.15; }
    h2 { font-size: 1.7rem; overflow-wrap: break-word; line-height: 1.25; }

    .container {
        padding: 0 24px;
    }

    #hero {
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 100px 0 0;
        overflow: hidden;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-content h1 {
        font-size: 1.8rem !important; /* Specificity hardening to override desktop */
        line-height: 1.2;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .btn-pill {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .protocol-timeline {
        gap: 40px;
    }

    .protocol-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .section-badge {
        margin: 0 auto 16px;
    }

    .stats-grid {
        padding: 24px; /* Drastic reduction from 60px to prevent overflow */
    }

    /* Clinical Metrics Mobile Refactor (Stacked) */
    .stat-item {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        width: 100%;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-value {
        text-align: left;
        margin-top: 4px;
    }

    .privacy-text {
        text-align: center;
        order: 2;
    }

    .privacy-visual {
        order: 1;
        margin-bottom: 30px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info, .footer-links, .footer-social {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-links ul, .footer-social ul {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #final-cta { padding: 60px 0; }
    .cta-card { padding: 40px 24px; border-radius: 32px; }
    .cta-card h2 { 
        font-size: 1.8rem !important; /* High specificity for mobile hero text consistency */
    }
}

/* --- Final CTA --- */
#final-cta {
    padding: 100px 0;
}

.cta-card {
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(0, 85, 255, 0.15), transparent 60%);
}

.cta-card h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-info p {
    color: var(--gray-lt);
    margin-top: 20px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li, .footer-social li {
    margin-bottom: 12px;
    color: var(--gray-lt);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: var(--gray-lt);
    font-size: 0.9rem;
    transition: color 0.3s var(--transition);
}

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

.dot {
    width: 3px;
    height: 3px;
    background: var(--glass-border);
    border-radius: 50%;
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: var(--gray-lt);
    line-height: 1.6;
    opacity: 0.6;
}

.copyright {
    color: var(--gray-lt);
    font-size: 0.8rem;
    margin-top: 10px;
}

/* --- Animations --- */
@keyframes radar-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--transition);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 968px) {
    .hero-content h1 { font-size: 3rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
/* Guardian SOS Section */
#sos-protocol {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.sos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.sos-visual {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--cobalt-dark);
}

.radar-pulse.red {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--alert-red-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: sos-pulse 3s infinite;
    z-index: 2;
}

@keyframes sos-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.sos-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sos-card {
    background: var(--cobalt-card);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition);
}

.sos-card:hover {
    transform: translateX(10px);
    border-color: var(--alert-red);
    background: rgba(255, 59, 48, 0.05);
}

.sos-icon {
    font-size: 1.5rem;
    color: var(--alert-red);
    margin-bottom: 16px;
}

.sos-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.sos-card p {
    color: var(--gray-lt);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Contact Section --- */
#contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-card {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 60px;
    border-radius: 40px;
    text-align: left;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-left: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s var(--transition);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue-glow);
}

textarea.form-control {
    border-radius: 24px;
    min-height: 150px;
    resize: none;
}

.contact-info {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-lt);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 40px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}
