/* ==========================================================================
   DESIGN SYSTEM - SIGCREA PREMIUM THEME (CREA-BA)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-primary: #070B19;
    --bg-secondary: #0D1527;
    --bg-card: rgba(13, 21, 39, 0.65);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(0, 180, 216, 0.25);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --color-cyan: #00B4D8;
    --color-cyan-hover: #48CAE4;
    --color-cyan-glow: rgba(0, 180, 216, 0.15);
    
    --color-gold: #FFB703;
    --color-gold-hover: #FB8500;
    --color-gold-glow: rgba(255, 183, 3, 0.15);
    
    --color-green: #10B981;
    --color-green-glow: rgba(16, 185, 129, 0.15);
    
    --color-purple: #8B5CF6;
    --color-purple-glow: rgba(139, 92, 246, 0.15);
    
    --white: #FFFFFF;
    --black: #000000;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transition & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 15px 35px 0 rgba(0, 0, 0, 0.5);
    --shadow-cyan-glow: 0 0 20px 0 rgba(0, 180, 216, 0.3);
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   BACKGROUND VISUAL EFFECTS
   ========================================================================== */

/* Glowing Orb Backgrounds */
.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: -2;
    opacity: 0.45;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
    top: -20vw;
    left: -10vw;
    animation: drift-slow 25s infinite alternate ease-in-out;
}

.bg-glow-2 {
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    bottom: 10vw;
    right: -10vw;
    opacity: 0.25;
    animation: drift-slow 35s infinite alternate-reverse ease-in-out;
}

/* Engineering Blueprint Grid Overlay */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(0, 180, 216, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 180, 216, 0.02) 1px, transparent 1px);
    pointer-events: none;
    z-index: -1;
}

.blueprint-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-primary) 90%);
}

/* ==========================================================================
   CONTAINERS & LAYOUT UTILITIES
   ========================================================================== */

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

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Text and Colors helper */
.gradient-text-cyan {
    background: linear-gradient(135deg, #00B4D8 0%, #48CAE4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #FFB703 0%, #FB8500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-cyan {
    color: var(--color-cyan);
}

.icon-cyan {
    color: var(--color-cyan);
}

.icon-gold {
    color: var(--color-gold);
}

.icon-yellow {
    color: #FFB703;
}

.text-cyan { color: var(--color-cyan); }
.text-gold { color: var(--color-gold); }
.text-green { color: var(--color-green); }
.text-purple { color: var(--color-purple); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, #0077B6 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.45);
    background: linear-gradient(135deg, var(--color-cyan-hover) 0%, #0096C7 100%);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    border: 1px solid rgba(0, 180, 216, 0.35);
    color: var(--color-cyan);
    background: rgba(0, 180, 216, 0.03);
}

.btn-outline:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--color-cyan);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-btn {
    transition: transform var(--transition-fast);
}

.btn:hover .icon-btn {
    transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-svg {
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.4));
}

.pulse-circle {
    animation: central-pulse 3s infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu triggers */
.mobile-menu-btn {
    display: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 110;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 99;
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 6rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan);
    animation: pulse-glow 2s infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-cyan);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Countdown */
.countdown-container {
    margin-bottom: 2.5rem;
}

.countdown-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.countdown-clock {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.countdown-unit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(13, 21, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 75px;
    padding: 0.6rem 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-num {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown-divider {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--border-color);
    animation: blink 1.5s infinite;
}

/* Lead Form */
.form-container {
    padding: 2rem;
}

.form-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-wrapper, .select-wrapper {
    position: relative;
    background: rgba(7, 11, 25, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.input-wrapper:focus-within, .select-wrapper:focus-within {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.15);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-wrapper:focus-within .input-icon, .select-wrapper:focus-within .input-icon {
    color: var(--color-cyan);
}

.input-wrapper input, .select-wrapper select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    font-size: 0.95rem;
    color: var(--white);
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.65rem;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Custom animated success state */
.form-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.5s ease forwards;
}

.form-feedback.hidden {
    display: none;
}

.feedback-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.feedback-icon-circle {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-icon {
    color: var(--color-green);
    width: 24px;
    height: 24px;
}

.feedback-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.feedback-msg {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Hero Right: Banner Showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

/* Background circles */
.tech-ring {
    position: absolute;
    border: 1px solid rgba(0, 180, 216, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring-1 { width: 115%; height: 115%; border-style: dashed; animation: rotate-clockwise 40s linear infinite; }
.ring-2 { width: 130%; height: 130%; border-color: rgba(255, 183, 3, 0.05); animation: rotate-counter 60s linear infinite; }
.ring-3 { width: 145%; height: 145%; }

.showcase-frame {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 216, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-normal);
}

.showcase-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: var(--shadow-cyan-glow), 0 20px 50px rgba(0, 0, 0, 0.7);
}

.showcase-img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.frame-tag {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(7, 11, 25, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.icon-spin {
    animation: rotate-clockwise 8s linear infinite;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.badge-top-left {
    top: 10%;
    left: -20%;
}

.badge-bottom-right {
    bottom: 15%;
    right: -15%;
}

.badge-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cyan-bg { background: rgba(0, 180, 216, 0.1); border: 1px solid rgba(0, 180, 216, 0.2); }
.gold-bg { background: rgba(255, 183, 3, 0.1); border: 1px solid rgba(255, 183, 3, 0.2); }

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-val {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.badge-lbl {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-cyan);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.feature-icon {
    width: 28px;
    height: 28px;
}

/* Card Glows */
.cyan-glow { box-shadow: inset 0 0 12px rgba(0, 180, 216, 0.15); border-color: rgba(0, 180, 216, 0.2); }
.gold-glow { box-shadow: inset 0 0 12px rgba(255, 183, 3, 0.15); border-color: rgba(255, 183, 3, 0.2); }
.green-glow { box-shadow: inset 0 0 12px rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.2); }
.purple-glow { box-shadow: inset 0 0 12px rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.2); }

.feature-card-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-cyan);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.1);
}

.feature-card:hover .feature-card-border {
    width: 100%;
}

.feature-card:nth-child(2):hover .feature-card-border { background: var(--color-gold); }
.feature-card:nth-child(2):hover { box-shadow: 0 15px 40px rgba(255, 183, 3, 0.1); border-color: rgba(255, 183, 3, 0.3); }

.feature-card:nth-child(3):hover .feature-card-border { background: var(--color-green); }
.feature-card:nth-child(3):hover { box-shadow: 0 15px 40px rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); }

.feature-card:nth-child(4):hover .feature-card-border { background: var(--color-purple); }
.feature-card:nth-child(4):hover { box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.3); }

/* ==========================================================================
   STATS SECTION (BAHIA / IMPACT)
   ========================================================================== */

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, var(--bg-secondary) 30%, var(--bg-secondary) 70%, transparent);
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stats-visual {
    position: relative;
}

.stats-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.logo-watermark {
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 6.5rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    line-height: 1;
}

.stats-visual-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.stats-visual-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.region-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-section {
    padding: 8rem 0;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    border-radius: 12px;
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.accordion-trigger:hover {
    color: var(--color-cyan);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.accordion-trigger:hover .accordion-icon {
    color: var(--color-cyan);
    border-color: rgba(0, 180, 216, 0.4);
    background: rgba(0, 180, 216, 0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 2rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-content ul {
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
    list-style-type: disc;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.6s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--color-cyan);
    border-color: var(--color-cyan);
}

/* ==========================================================================
   CTA BOTTOM SECTION
   ========================================================================== */

.cta-bottom-section {
    padding: 4rem 0 8rem;
}

.cta-bottom-container {
    padding: 5rem 2rem;
    text-align: center;
    border-color: rgba(0, 180, 216, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cta-bottom-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.cta-bottom-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: #03060E;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.6fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-links a:hover {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
    background: rgba(0, 180, 216, 0.05);
    transform: translateY(-3px);
}

.footer-links-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-contact-info svg {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    background-color: #020409;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright, .tech-signature {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tech-signature {
    font-weight: 500;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 180, 216, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

@keyframes central-pulse {
    0% { r: 12px; opacity: 0.8; }
    50% { r: 17px; opacity: 0.3; }
    100% { r: 12px; opacity: 0.8; }
}

@keyframes drift-slow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5vw, 5vh) scale(1.1); }
    100% { transform: translate(-5vw, -5vh) scale(0.95); }
}

@keyframes rotate-clockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-counter {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

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

.animate-float-slow {
    animation: float-badge 6s infinite ease-in-out;
}

.animate-float-normal {
    animation: float-badge-opposite 5s infinite ease-in-out;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-badge-opposite {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        max-width: 700px;
    }
    
    .hero-description {
        max-width: 650px;
    }
    
    .countdown-clock {
        justify-content: center;
    }
    
    .form-container {
        width: 100%;
        max-width: 600px;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .visual-wrapper {
        max-width: 380px;
    }
    
    .badge-top-left {
        left: -10%;
    }
    
    .badge-bottom-right {
        right: -10%;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .stats-content {
        text-align: center;
    }
    
    .stats-grid {
        justify-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .navbar {
        height: var(--header-height);
    }
    
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .countdown-unit-box {
        min-width: 60px;
        padding: 0.5rem 0.3rem;
    }
    
    .countdown-num {
        font-size: 1.5rem;
    }
    
    .visual-wrapper {
        max-width: 290px;
    }
    
    .badge-top-left {
        left: -5%;
        top: 5%;
        padding: 0.5rem 0.8rem;
    }
    
    .badge-bottom-right {
        right: -5%;
        bottom: 5%;
        padding: 0.5rem 0.8rem;
    }
    
    .stats-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   MINIMAL FOOTER
   ========================================================================== */
.minimal-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background: rgba(7, 11, 25, 0.4);
    margin-top: 4rem;
}

.minimal-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.minimal-footer .copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.minimal-footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.minimal-footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.minimal-footer-links .divider {
    color: var(--border-color);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .minimal-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

