:root {
    /* Color Palette - Premium Dark Theme */
    --bg-dark: #0a0e17;
    --bg-panel: rgba(22, 28, 45, 0.65);
    --bg-panel-border: rgba(64, 82, 122, 0.4);
    
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
    
    --accent-cyan: #00f0ff;
    --accent-gold: #ffd700;
    --accent-red: #ff3b30;
    --accent-green: #34c759;
    --accent-blue: #007aff;
    
    --gradient-primary: linear-gradient(135deg, #007aff 0%, #00f0ff 100%);
    --gradient-danger: linear-gradient(135deg, #ff3b30 0%, #ff8a00 100%);
    --gradient-gold: linear-gradient(135deg, #ffba00 0%, #ffd700 100%);
    
    --font-heading: 'Pretendard', -apple-system, sans-serif;
    --font-body: 'Inter', 'Pretendard', sans-serif;
}

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

html {
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 122, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
    padding-top: 100px; /* Make room for urgent banner and sticky nav */
}

/* ================= STICKY NAVIGATION ================= */
.sticky-nav {
    position: fixed;
    top: 40px; /* Below urgent banner */
    left: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    z-index: 1001; /* Ensure it stays on top of menu */
}

.brand-logo i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.mobile-menu-btn {
    display: none;
    background: rgba(22, 28, 45, 0.92);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: none;
    place-items: center;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: clamp(1rem, 4vw, 3rem);
    margin: 0;
    margin-left: auto;
    padding: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
    direction: ltr;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(0, 240, 255, 0.12);
    color: var(--accent-cyan);
    border-color: rgba(0, 240, 255, 0.55);
}

.nav-links li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.6rem 1rem;
        gap: 0.75rem;
    }
    
    .mobile-menu-btn {
        display: grid;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 28, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 240, 255, 0.15);
        
        /* Hidden state */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        border: none;
        transition: all 0.3s ease-in-out;
    }

    .nav-actions {
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-links.show {
        max-height: 300px; /* arbitrary height to allow expansion */
        opacity: 1;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 0;
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        box-shadow: none;
        background: rgba(0, 240, 255, 0.05);
    }
}

/* ================= LANGUAGE SWITCHER ================= */
.language-switcher {
    position: relative;
    z-index: 1002;
}

.language-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(22, 28, 45, 0.92);
    color: #fff;
    cursor: pointer;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.language-switcher-toggle:hover,
.language-switcher.is-open .language-switcher-toggle {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.55);
}

.language-switcher-icon {
    color: var(--accent-cyan);
    font-size: 0.95rem;
}

.language-switcher-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.language-switcher-current {
    color: #fff;
    max-width: 9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-switcher-caret {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.25s ease, color 0.25s ease;
}

.language-switcher.is-open .language-switcher-caret {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.language-switcher-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(320px, calc(100vw - 2rem));
    max-height: min(70vh, 420px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.65rem;
    background: rgba(10, 15, 28, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.language-switcher-panel[hidden] {
    display: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(0, 240, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 240, 255, 0.12);
    color: var(--accent-cyan);
    border-color: rgba(0, 240, 255, 0.45);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(0, 122, 255, 0.28);
}

@media (max-width: 768px) {
    .language-switcher-toggle {
        width: 44px;
        min-width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
    }

    .language-switcher-label,
    .language-switcher-current,
    .language-switcher-caret {
        display: none;
    }

    .language-switcher-panel {
        top: calc(100% + 0.6rem);
        right: 0;
        width: min(260px, calc(100vw - 1rem));
        max-height: min(60vh, 320px);
    }

    .lang-btn {
        padding: 0.65rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Urgent Banner */
.urgent-banner {
    background: #ff3b30;
    color: #fff;
    padding: 0.6rem 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.5);
    display: flex;
    align-items: center;
}
.marquee {
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-size: 1rem;
}
@keyframes marquee {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Radar Scan effect */
.radar-scan {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        repeating-radial-gradient(
            rgba(0, 240, 255, 0.05) 0,
            rgba(0, 240, 255, 0.05) 1px,
            transparent 1px,
            transparent 40px
        );
    z-index: -1;
    opacity: 0.7;
    animation: scan 10s linear infinite;
}
@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Typography Utilities */
.highlight-text-red {
    color: var(--accent-red);
    font-weight: 900;
    font-size: 1.1em;
}
.glow-text-red {
    text-shadow: 0 0 30px rgba(255, 59, 48, 0.8);
}
.alert-heading {
    font-size: 2rem !important;
    font-weight: 900;
    letter-spacing: -1px;
}
.danger-divider {
    background: var(--gradient-danger) !important;
    width: 100px !important;
}

.highlight-text-cyan {
    color: var(--accent-cyan);
    font-weight: 800;
}
.highlight-text-gold {
    color: var(--accent-gold);
    font-weight: 800;
}
.glow-text {
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}
.glow-text-gold {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.text-center { text-align: center; }
.text-blue { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }
.text-green { color: var(--accent-green); }
.text-gold { color: var(--accent-gold); }
.text-cyan { color: var(--accent-cyan); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Layout Containers */
.section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.container-medium { max-width: 900px; }
.container-small { max-width: 700px; }

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-panel-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ================= HERO SECTION ================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6rem;
    position: relative;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pulse-badge {
    background: rgba(255, 59, 48, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(255, 59, 48, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.hero-lead {
    max-width: 760px;
    margin: -1.5rem auto 3rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.prompt-card {
    padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.prompt-card h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    word-break: keep-all;
    text-shadow: 0 0 24px rgba(255, 59, 48, 0.4);
}

.prompt-card h2 i {
    margin-right: 0.5rem;
    font-size: 0.9em;
    text-shadow: 0 0 18px rgba(255, 59, 48, 0.6);
}

.prompt-card .divider {
    height: 4px;
    width: 80px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.prompt-card p {
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
    color: #e2e8f0;
    line-height: 1.7;
    word-break: keep-all;
    max-width: 820px;
    margin: 0 auto;
}

.prompt-card p strong {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(transparent 65%, rgba(255, 59, 48, 0.3) 65%);
    padding: 0 0.15em;
}

.prompt-card .sub-text {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    opacity: 0.85;
    margin-top: 1rem;
    color: var(--text-muted);
}

.alert-box {
    background: rgba(255, 59, 48, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.alert-box i {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}
.alert-box div strong {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.solution-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.emphasis-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 122, 255, 0.05) 100%);
    border: 2px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0, 240, 255, 0.05);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    transform: scale(1.02);
}

.solution-flex {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
.solution-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pulse-icon-cyan {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    animation: iconPulseCyan 2s infinite;
}

@keyframes iconPulseCyan {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.solution-text {
    text-align: left;
    word-break: keep-all;
    line-height: 1.6;
}

.solution-headline {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #fff;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.solution-subline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #e2e8f0;
    display: block;
}

.solution-subline strong {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(transparent 65%, rgba(0, 240, 255, 0.3) 65%);
    padding: 0 0.15em;
    font-size: inherit;
    margin-bottom: 0;
}

.solution-text strong {
    font-size: 1.2rem;
    color: #fff;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.super-emphasis {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(0, 122, 255, 0.05) 100%);
    border: 2px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.05);
    padding: 3rem 1.5rem;
    margin: 4rem 0;
    transform: scale(1.03);
}

.super-emphasis .solution-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.super-emphasis .solution-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    background: rgba(0, 240, 255, 0.15);
    color: var(--accent-cyan);
    margin: 0;
    animation: iconPulseCyanSuper 2s infinite;
}

@keyframes iconPulseCyanSuper {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.super-emphasis .solution-text {
    text-align: center;
}

.super-emphasis .solution-headline {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.super-emphasis .solution-subline {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.8;
}

.super-emphasis .solution-subline > strong {
    color: #00f0ff;
    background: none;
    padding: 0;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    font-size: 1.1em;
}

.massive-highlight {
    display: block;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    color: #fff;
    font-size: 1.1em;
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.15);
    letter-spacing: -0.02em;
    max-width: 90%;
}

.massive-highlight strong {
    color: #fff;
    font-weight: 900;
    font-size: 1.15em;
    background: linear-gradient(transparent 60%, rgba(0, 240, 255, 0.4) 60%);
    padding: 0 0.1em;
    margin: 0;
}

.founder-quote {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    position: relative;
}

/* ================= HERO URGENCY BLOCK ================= */
.hero-urgency-block {
    position: relative;
    text-align: center;
    margin: 5rem auto;
    padding: 4rem 1rem;
    max-width: 880px;
    z-index: 1;
}

.hero-urgency-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: rgba(255, 59, 48, 0.03); /* Subtle red tint */
    border-top: 1px solid rgba(255, 59, 48, 0.15);
    border-bottom: 1px solid rgba(255, 59, 48, 0.15);
    z-index: -1;
}

.hero-urgency-icon {
    display: block;
    font-size: clamp(3.5rem, 7vw, 5rem);
    margin: 0 auto 2rem;
    text-shadow: 0 0 40px rgba(255, 59, 48, 0.7),
                 0 0 80px rgba(255, 59, 48, 0.35);
    animation: heroUrgencyPulse 2.4s ease-in-out infinite;
}

@keyframes heroUrgencyPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.06); opacity: 0.92; }
}

.hero-urgency-headline {
    display: block;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1.75rem;
    word-break: keep-all;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-urgency-sub {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #ff8a00;
    margin-bottom: 2.75rem;
    word-break: keep-all;
    text-shadow: 0 0 30px rgba(255, 138, 0, 0.35);
}

.hero-urgency-lead {
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    color: #f8fafc;
    margin-bottom: 1.25rem;
    line-height: 1.65;
    word-break: keep-all;
    font-weight: 500;
}

.hero-urgency-lead strong {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(transparent 65%, rgba(0, 240, 255, 0.18) 65%);
    padding: 0 0.15em;
}

.hero-urgency-note {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.65;
    word-break: keep-all;
    margin: 0 auto;
    max-width: 720px;
}

@media (max-width: 600px) {
    .hero-urgency-block {
        margin: 3rem auto;
    }
    .hero-urgency-headline br,
    .hero-urgency-sub br,
    .hero-urgency-lead br {
        display: none;
    }
}

/* Plain inline quote — no surrounding box, just italic text */
.founder-quote-plain {
    margin: 1.75rem auto 0;
    max-width: 760px;
    padding: 0 1rem;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    text-align: center;
    word-break: keep-all;
}

.founder-quote-plain i {
    color: rgba(0, 240, 255, 0.35);
    margin-right: 0.4rem;
    font-size: 0.85em;
}

/* ================= FOUNDER FEATURE QUOTE (BIG) ================= */
.founder-quote-feature {
    position: relative;
    max-width: 880px;
    margin: 4.5rem auto 0;
    padding: 3.25rem 2.5rem 2.25rem;
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.12);
    border-bottom: 1px solid rgba(0, 240, 255, 0.12);
}

.founder-quote-body {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    line-height: 1.65;
    color: #f1f5f9;
    font-weight: 500;
    margin: 0 auto;
    word-break: keep-all;
    letter-spacing: -0.01em;
}

.founder-quote-body strong {
    color: #fff;
    font-weight: 800;
    background: linear-gradient(transparent 65%, rgba(255, 138, 0, 0.22) 65%);
    padding: 0 0.15em;
}

.founder-quote-attr {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* CTA wrapper — gives the hero CTA real breathing room above and below */
.hero-cta-wrap {
    text-align: center;
    margin: 3.5rem 0 1.5rem;
}

@media (max-width: 600px) {
    .founder-quote-feature {
        margin-top: 3rem;
        padding: 2.5rem 1.25rem 1.75rem;
    }
    .founder-quote-body br {
        display: none;
    }
    .hero-cta-wrap {
        margin: 2.5rem 0 1rem;
    }
}

/* Action Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
}
.primary-cta {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}
.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);
}
.secondary-cta {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-cyan);
}
.secondary-cta:hover {
    background: rgba(0, 240, 255, 0.1);
}

/* ================= SERVICE SECTION ================= */
.service-section {
    background-color: #06080d;
}
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.service-subtitle {
    max-width: 760px;
    margin: -1.8rem auto 2.5rem;
    color: var(--text-muted);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    word-break: keep-all;
}

.service-subtitle-emphasis {
    color: var(--accent-gold);
    font-weight: 800;
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    aspect-ratio: 16/9;
    border: 2px solid rgba(0, 240, 255, 0.3);
    background:
        radial-gradient(circle at top, rgba(0, 240, 255, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(7, 12, 24, 0.95), rgba(17, 24, 39, 0.95));
}
.tracking-video-trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}
.play-btn-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.video-container:hover .play-btn-overlay {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container.is-fallback .play-btn-overlay {
    display: none;
}

.tracking-video-trigger[hidden] {
    display: none;
}

.visual-fallback {
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.visual-fallback[hidden] {
    display: none !important;
}

.visual-fallback-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.16);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #c7f9ff;
    font-size: 0.9rem;
    font-weight: 700;
}

.visual-fallback h3 {
    max-width: 620px;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: clamp(1.3rem, 3vw, 2rem);
}

.visual-fallback p {
    max-width: 640px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.visual-fallback-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.visual-fallback-tags span {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5eefc;
    font-size: 0.92rem;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.deliverables-grid-compact {
    margin-bottom: 3.5rem;
}

.deliverable-card {
    padding: 1.75rem;
    height: 100%;
}

.deliverable-card-compact {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.deliverable-card-compact:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deliverable-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.05);
}

.deliverable-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    color: #fff;
}

.deliverable-card p {
    color: var(--text-muted);
}

.service-flow-panel {
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-flow-header {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.service-flow-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--accent-cyan);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-flow-header h3 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.55;
    margin-bottom: 0.9rem;
    color: #fff;
}

.service-flow-header p {
    color: var(--text-muted);
    line-height: 1.8;
}

.process-section-head {
    max-width: 760px;
    margin: 0 auto 1.5rem;
}

.process-section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 1rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--accent-gold);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.process-section-head h3 {
    color: #fff;
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    margin-bottom: 0.55rem;
}

.process-section-head p {
    color: var(--text-muted);
    line-height: 1.75;
}

.process-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1.6rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(100, 116, 139, 0.2);
    min-height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.process-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.step-cyan .process-step-icon {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.step-gold .process-step-icon {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.step-green .process-step-icon {
    border-color: rgba(52, 199, 89, 0.4);
    background: rgba(52, 199, 89, 0.1);
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.15);
}

.process-step-number {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-gold .process-step-number {
    color: var(--accent-gold);
}

.step-green .process-step-number {
    color: var(--accent-green);
}

.process-step-body h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    word-break: keep-all;
}

.process-step-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    word-break: keep-all;
}

.process-price {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 1.1em;
    color: var(--accent-cyan);
    white-space: nowrap;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.process-price-warm {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.process-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.18);
    font-size: 1.2rem;
}

.service-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.service-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0;
    color: #dce7f8;
    font-size: 0.95rem;
}

.service-trust-item i {
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.service-note {
    margin: 1.8rem auto 1rem;
    max-width: 760px;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }

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

    .service-flow-panel {
        padding: 0;
    }

    .deliverable-card-compact {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 0.9rem;
        row-gap: 0.2rem;
        align-items: start;
        padding: 1.1rem 1rem;
        border-radius: 18px;
    }

    .deliverable-card-compact .deliverable-icon {
        grid-row: 1 / span 2;
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        border-radius: 12px;
        font-size: 1.15rem;
    }

    .deliverable-card-compact h3 {
        margin-bottom: 0.2rem;
        font-size: 1.02rem;
        line-height: 1.35;
        color: #fff;
    }

    .deliverable-card-compact p {
        font-size: 0.95rem;
        line-height: 1.65;
        color: #94a3b8;
        margin: 0;
    }
    
.deliverable-card-compact h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    line-height: 1.35;
    color: #fff;
}

    .service-flow-header {
        margin-bottom: 1.4rem;
    }

    .process-section-head {
        margin-bottom: 1rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .process-step {
        flex-direction: row;
        align-items: flex-start;
        padding: 1.25rem 1rem;
    }

    .process-step-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .process-step-connector {
        display: none;
    }

    .service-trust-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.pricing-card {
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pro-card {
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
    background: linear-gradient(180deg, rgba(22, 28, 45, 0.8) 0%, rgba(10, 14, 23, 0.9) 100%);
    transform: scale(1.05);
    z-index: 2;
}
@media (max-width: 768px) {
    .pro-card { transform: scale(1); }
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.price-header h3 {
    font-size: 1.3rem;
    color: var(--text-muted);
}
.pro-card .price-header h3 {
    color: var(--accent-cyan);
}
.price-value {
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0 0.5rem;
    color: #fff;
}
.price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 40px;
}
.check-list {
    list-style: none;
    margin-top: auto;
}
.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.05rem;
}
.check-list i {
    margin-top: 0.3rem;
}
.basic-check i { color: var(--text-muted); }
.success-check i { color: var(--accent-green); }

.action-alert {
    background: rgba(255, 138, 0, 0.12);
    border: 1px solid rgba(255, 138, 0, 0.28);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
    margin: 3.5rem 0;
}

.action-alert.professional-alert {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.gold-divider-center {
    background: var(--gradient-gold) !important;
    width: 60%;
    margin: 1.5rem auto;
}

.service-note-inline {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.action-alert-divider {
    height: 1px;
    background: rgba(255, 138, 0, 0.2);
    width: 60%;
    margin: 1.5rem auto;
}

/* ================= FORM SECTION ================= */
.form-wrapper {
    padding: 3rem;
}
@media (max-width: 768px) {
    .form-wrapper { padding: 1.5rem; }
}

.form-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    text-align: center;
}
.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-subtitle-strong {
    color: #ffe4bf;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.7;
}

.form-guide-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    margin: 0 0 2rem;
    border-radius: 12px;
    background: rgba(0, 122, 255, 0.12);
    border: 1px solid rgba(0, 122, 255, 0.24);
    color: #d9f2ff;
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-guide-message i {
    color: var(--accent-cyan);
    margin-top: 0.12rem;
}

.security-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    margin: 0 0 2.5rem;
    border-radius: 12px;
    background: rgba(255, 59, 48, 0.08);
    border: 1px solid rgba(255, 59, 48, 0.25);
    color: #ffd6d2;
    font-size: 0.95rem;
}

.security-note i {
    color: var(--accent-red);
    margin-top: 0.1rem;
}

.pending-checkout-banner {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.28);
    color: #ffe7b0;
}

.pending-checkout-banner i {
    color: #ffd76a;
}

.pending-checkout-content {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pending-checkout-content strong {
    color: #fff;
    font-size: 1rem;
}

.pending-checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pending-checkout-clear {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.form-divider {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    margin: 2.5rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-instruction {
    background: rgba(0, 122, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-card {
    padding: 1.3rem 1.25rem 0.3rem;
    margin-bottom: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(100, 116, 139, 0.25);
    background: rgba(15, 23, 42, 0.52);
}

.form-card .form-group:last-child,
.tracking-entry-card .form-group:last-child {
    margin-bottom: 0.75rem;
}

.case-info-card {
    margin-bottom: 0;
}

.form-section-note {
    margin: -0.65rem 0 1.25rem;
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.section-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.08);
    color: #d9fbff;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.section-action-button:hover {
    border-color: rgba(0, 240, 255, 0.65);
    background: rgba(0, 240, 255, 0.16);
    transform: translateY(-1px);
}

.tracking-entry-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracking-entry-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 68px;
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(0, 240, 255, 0.22);
    border-radius: 14px;
    background: rgba(8, 15, 30, 0.32);
    color: var(--text-muted);
    text-align: center;
}

.tracking-entry-empty i {
    color: var(--accent-cyan);
}

.tracking-entry-empty[hidden] {
    display: none !important;
}

.tracking-entry-card {
    padding: 1.3rem 1.25rem 0.3rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 15, 30, 0.52);
}

.tracking-entry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tracking-entry-title {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.tracking-entry-number {
    color: var(--accent-cyan);
}

.tracking-entry-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 0.95rem;
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 999px;
    background: rgba(255, 59, 48, 0.08);
    color: #ffd6d2;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tracking-entry-remove:hover {
    border-color: rgba(255, 59, 48, 0.55);
    background: rgba(255, 59, 48, 0.16);
    transform: translateY(-1px);
}

.tracking-entry-remove:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.form-group-row {
    display: flex;
    gap: 1.5rem;
}
@media (max-width: 600px) {
    .form-group-row { flex-direction: column; gap: 0; }
    .tracking-entry-header { flex-direction: column; align-items: stretch; }
    .section-action-button, .tracking-entry-remove { width: 100%; }
}
.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
}
.required {
    color: var(--accent-red);
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon-wrapper.align-top {
    align-items: flex-start;
}
.input-icon {
    position: absolute;
    left: 1rem;
    color: #64748b;
    font-size: 1.1rem;
}
.input-icon-wrapper.align-top .input-icon {
    top: 1rem;
}
.target-red { color: var(--accent-red); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(100, 116, 139, 0.4);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
}

.date-input-wrapper input[type="text"] {
    padding-right: 4.25rem;
}

.date-picker-button {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(100, 116, 139, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #dbeafe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.date-picker-button:hover,
.date-picker-button:focus-visible {
    border-color: rgba(0, 240, 255, 0.45);
    background: rgba(0, 240, 255, 0.12);
    color: #ffffff;
    outline: none;
}

.date-picker-native-input {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    opacity: 0;
    pointer-events: none;
    inset: auto;
}

textarea {
    resize: vertical;
    min-height: 50px;
}

textarea::placeholder {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(100, 116, 139, 0.8);
}

#contacts::placeholder {
    font-size: 0.85rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
    background: rgba(15, 23, 42, 0.9);
}

small {
    display: block;
    margin-top: 0.4rem;
    color: #64748b;
    font-size: 0.8rem;
}

.char-count {
    float: right;
    font-weight: normal;
    color: #64748b;
    font-size: 0.85rem;
}

input[type="file"] {
    display: none;
}
.file-upload-wrapper {
    border: 2px dashed rgba(100, 116, 139, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(15, 23, 42, 0.4);
}
.file-upload-wrapper:hover, .file-upload-wrapper.dragover {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.05);
}
.upload-icon {
    font-size: 2.5rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.file-list {
    margin-top: 1rem;
    text-align: left;
}
.file-item {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: start;
    font-size: 0.9rem;
}

.file-item-name {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.file-item-name i {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.file-item-size {
    flex-shrink: 0;
    white-space: nowrap;
    text-align: right;
    color: var(--text-muted);
}

.file-item-summary {
    margin-top: 0.75rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.08);
    font-weight: 600;
}

.file-item-summary .file-item-size {
    color: var(--text-main);
}

@media (max-width: 480px) {
    .file-item {
        grid-template-columns: minmax(0, 1fr);
    }

    .file-item-size {
        white-space: normal;
        text-align: left;
    }
}

.submit-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem;
}

.turnstile-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.turnstile-widget {
    min-height: 65px;
}

.submit-urgency-note {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
}

.emergency-contact-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.emergency-contact-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
}

.emergency-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.emergency-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(0, 122, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.08), 0 8px 24px rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.emergency-icon {
    font-size: 2.6rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.emergency-text {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.emergency-text strong {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.emergency-text p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
    word-break: keep-all;
    line-height: 1.5;
}

.emergency-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 340px;
}

.contact-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

.contact-btn-text span {
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.9;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: 1px solid #1ebd5a;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn i {
    font-size: 1.25em;
}

.whatsapp-btn:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.email-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.email-btn i {
    color: #cbd5e1;
    font-size: 1.2em;
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 900px) {
    .emergency-contact-box {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
    .emergency-links {
        flex-direction: column;
        align-items: center;
    }
    .contact-btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .emergency-contact-box {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .emergency-icon-wrap {
        width: 64px;
        height: 64px;
    }
    .emergency-icon {
        font-size: 2.2rem;
    }
    .emergency-text strong {
        font-size: 1.4rem;
        text-align: center;
    }
    .emergency-text p {
        font-size: 1rem;
        text-align: center;
    }
}

.disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.disclaimer ul {
    list-style: none;
}
.disclaimer li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

/* ================= MODAL ================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #111827;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    max-height: calc(100dvh - 2rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}
.modal-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.modal-body {
    text-align: left;
    margin-bottom: 2rem;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-body p {
    color: var(--text-muted);
}

.modal-body strong {
    color: #fff;
}

.info-highlight {
    background: rgba(255, 138, 0, 0.12);
    border: 1px solid rgba(255, 138, 0, 0.32);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}
.success-condition {
    background: rgba(255,255,255,0.03);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}
.success-condition h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}
.result-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.result-list li {
    margin-bottom: 0.3rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}
.modal-actions .btn {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    transition: all 0.2s;
}
.btn-cancel {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.btn-cancel:hover {
    background: rgba(255,255,255,0.2);
}
.btn-confirm {
    background: var(--gradient-primary);
    color: #fff;
}

.secure-badge {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

@media (max-width: 768px) {
    .modal-overlay {
        align-items: flex-start;
        padding: 0.75rem;
    }

    .modal-content {
        width: 100%;
        max-height: calc(100dvh - 1.5rem);
        padding: 1.25rem 1rem 1rem;
        margin: 0;
    }

    .modal-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .modal-body {
        margin-bottom: 1rem;
        padding-right: 0.2rem;
    }

    .modal-actions {
        flex-direction: column;
        margin-top: auto;
        gap: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .modal-actions .btn {
        padding: 0.9rem;
    }

    .secure-badge {
        margin-top: 1rem;
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* ================= STATS SECTION ================= */
.stats-section {
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(22, 28, 45, 0.8) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 4rem 1.5rem;
}

.stats-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 3rem;
    color: #fff;
}

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

.stat-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    border-radius: 16px;
    padding: 2rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
    transform: translateY(-5px);
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    margin: 0 0 0.5rem;
    line-height: 1.1;
    letter-spacing: 0;
    display: block;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.stat-number .stat-unit {
    font-size: 0.55em;
    font-weight: 700;
    margin-left: 0.1em;
    color: var(--accent-cyan);
    opacity: 0.85;
    vertical-align: baseline;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.45;
    word-break: keep-all;
    display: block;
    text-align: center;
    margin: 0;
}

.stats-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* ================= URGENCY SECTION ================= */
.urgency-section {
    background-color: #06080d;
}

.urgency-card {
    padding: 2.75rem 2.25rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.06) 0%, rgba(0, 240, 255, 0.04) 100%);
    border: 1px solid rgba(255, 59, 48, 0.22);
}

.urgency-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 59, 48, 0.12);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff6b60;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-transform: none;
}

.urgency-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #fff;
    line-height: 1.35;
    word-break: keep-all;
}

.urgency-timer-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto 1rem;
    font-family: 'Monaco', 'Courier New', monospace;
    max-width: 460px;
}

.timer-item {
    flex: 1;
    background: rgba(8, 12, 22, 0.85);
    border: 1px solid rgba(255, 59, 48, 0.28);
    border-radius: 14px;
    padding: 1.1rem 0.5rem 0.85rem;
    min-width: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04),
                0 8px 24px rgba(0, 0, 0, 0.35);
}

.timer-number {
    font-size: clamp(2.2rem, 6vw, 2.9rem);
    font-weight: 900;
    color: #ff6b60;
    text-shadow: 0 0 18px rgba(255, 59, 48, 0.45);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.timer-sep {
    font-size: clamp(1.6rem, 4vw, 2rem);
    color: rgba(255, 59, 48, 0.35);
    font-weight: 700;
    align-self: center;
    line-height: 1;
}

.urgency-timer-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    word-break: keep-all;
}

.urgency-warning {
    background: rgba(255, 59, 48, 0.08);
    border-left: 3px solid var(--accent-red);
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #f8fafc;
    text-align: left;
    line-height: 1.55;
    word-break: keep-all;
}

/* ================= SLOTS SECTION ================= */
.slots-section {
    background-color: #06080d;
}

.slots-card {
    padding: 2.5rem;
    text-align: center;
}

.slots-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.slots-progress {
    margin-bottom: 1.5rem;
}

.slots-bar {
    width: 100%;
    height: 12px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slots-fill {
    height: 100%;
    background: var(--gradient-danger);
    border-radius: 6px;
    transition: width 0.6s ease;
    box-shadow: 0 0 20px rgba(255, 138, 0, 0.6);
}

.slots-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #fff;
}

.slots-text strong {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.slots-text span {
    color: var(--text-muted);
}

.slots-warning {
    background: rgba(255, 138, 0, 0.12);
    border: 1px solid rgba(255, 138, 0, 0.28);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #ffcf9b;
    margin-top: 1.5rem;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    background-color: #06080d;
}

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

.testimonial-card {
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(0, 240, 255, 0.15);
    background: var(--bg-panel);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.12;
    color: var(--accent-cyan);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-header {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-info h4 {
    color: #fff;
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.testimonial-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-region {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.02em;
}

.testimonial-case-id {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.55rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 999px;
    color: var(--accent-cyan);
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
}

.testimonial-rating {
    display: flex;
    gap: 0.15rem;
    color: var(--accent-gold);
    font-size: 0.78rem;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0.25rem;
}

.testimonial-text {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    word-break: keep-all;
    flex: 1;
}

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

.testimonial-case {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 122, 255, 0.12);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-family: 'Monaco', 'Courier New', monospace;
    letter-spacing: 0.02em;
}

.testimonial-result {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-green);
    font-weight: 600;
}

.testimonial-result i {
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    .testimonial-header {
        flex-wrap: wrap;
    }
    .testimonial-rating {
        order: 3;
        width: 100%;
        margin-top: 0.25rem;
    }
}

/* ================= FAQ SECTION ================= */
.faq-section {
    background-color: #06080d;
}

.faq-list {
    margin-top: 2.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-panel);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.faq-question:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--accent-cyan);
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(0, 240, 255, 0.08);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0.25rem 1.5rem 1.6rem;
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    margin-top: 0;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 1rem 0 0;
    font-size: 0.97rem;
}

.faq-answer strong {
    color: #fff;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .urgency-timer-container {
        flex-wrap: wrap;
    }

    .timer-item {
        min-width: 70px;
        padding: 0.8rem 1rem;
    }

    .timer-number {
        font-size: 2rem;
    }
}

/* ================= PROFESSIONAL/PREMIUM MODIFICATIONS ================= */

.urgent-banner.professional-banner {
    background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #e2e8f0;
}
.professional-banner strong {
    color: var(--accent-gold);
}

.trust-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    letter-spacing: 0.05em;
}

.gold-divider {
    background: var(--gradient-gold) !important;
    width: 100px !important;
}

.professional-card h2 {
    text-shadow: 0 0 24px rgba(255, 215, 0, 0.2);
}
.professional-card h2 i {
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
}
.professional-card p strong {
    background: linear-gradient(transparent 65%, rgba(255, 215, 0, 0.2) 65%);
}

.professional-icon {
    color: var(--accent-cyan);
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.5),
                 0 0 80px rgba(0, 240, 255, 0.25);
}
.professional-icon.hero-urgency-icon {
    animation: heroUrgencyPulseCyan 2.4s ease-in-out infinite;
}
@keyframes heroUrgencyPulseCyan {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.06); opacity: 0.92; }
}

.hero-urgency-block.professional-urgency::before {
    background: rgba(0, 122, 255, 0.03);
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}
