/* CSS Variables matching the screenshot exact colors */
:root {
    --bg-dark: #070e17; /* Based on the background of the dark parts */
    --cyan: #00E5FF;
    --purple: #8B5CF6;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --danger: #ef4444;
    --wa-color: #25D366;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Montserrat', sans-serif;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.dark-theme {
    font-family: var(--font-body);
    color: var(--text-gray);
    background-color: var(--bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-white); line-height: 1.2; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.font-light { font-weight: 300; }
.font-bold { font-weight: 800; }

/* Custom Logo */
.custom-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.logo-top {
    font-family: var(--font-logo);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 8px;
}
.logo-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-logo);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--text-gray);
}
.logo-line {
    height: 1px;
    width: 30px;
    background-color: var(--text-gray);
}

/* Header */
.main-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 24px 0;
    z-index: 50;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }

/* Primary CTA Buttons */
.glow-button {
    background: var(--cyan);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 
        0 8px 25px -5px rgba(0, 229, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.glow-button:hover {
    background: var(--cyan);
    box-shadow: 
        0 15px 30px -5px rgba(0, 0, 0, 0.8);
    transform: translateY(-4px);
}

/* Ghost Button (Header Nav) */
.ghost-button {
    background: transparent;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.ghost-button:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}
.primary-btn {
    padding: 16px 40px;
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: -2;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(16, 49, 48, 0.75);
    z-index: -1;
}
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
.cyan-text { color: var(--cyan); }
.purple-text { color: var(--purple); }

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.6rem);
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.hero-cta-wrapper { display: flex; flex-direction: column; align-items: center; }

/* Scarcity tag - Light/Inverted */
.scarcity-tag-light {
    background: #f8f9fa;
    border: 2px solid #ef4444;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.scarcity-tag-light strong {
    font-weight: 800;
}
.pulsing-tag {
    animation: tag-pulse 2s infinite;
}
@keyframes tag-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Hero Benefits */
.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.hero-benefits li {
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-icon {
    color: var(--cyan);
    flex-shrink: 0;
}

/* ===== SECTION 2: PROBLEM ===== */
.problem-section { padding: 6rem 0; background-color: #F4F6F8; }

/* Pre-title / Eyebrow */
.pre-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555555;
    text-align: center;
    margin-bottom: 1rem;
}

/* Main H2 Title */
.problem-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: #111111;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.problem-line-light { font-weight: 400; display: block; }
.problem-line-heavy { font-weight: 900; display: block; }

/* Subtitle / Context */
.problem-section .section-context {
    color: #666666;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 60px;
}
.section-context { text-align: center; max-width: 700px; margin: 0 auto 3rem; font-size: 1.125rem; }

/* Cards Grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.pain-card {
    background: #0d131f;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card h3 { color: #ffffff; font-weight: 700; }
.pain-card p { color: #94a3b8; font-weight: 400; }
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18); }
.icon-wrapper { color: var(--cyan); width: 48px; height: 48px; margin-bottom: 1.5rem; }

/* ===== SECTION 3: DESIRE — RADICAL REDESIGN ===== */
.desire-section {
    padding: 6rem 0;
    background-color: #050708; /* Negro absoluto */
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow behind image */
.desire-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 30%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,255,255,0.06) 0%, rgba(139,92,246,0.04) 40%, transparent 70%);
    pointer-events: none;
}

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

/* IMAGE: cinematic neon glow frame */
.desire-image img {
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(0, 255, 255, 0.15),
        0 0 40px rgba(0, 255, 255, 0.12),
        0 0 80px rgba(139, 92, 246, 0.10),
        0 30px 60px rgba(0,0,0,0.7);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.desire-image img:hover {
    box-shadow:
        0 0 0 1px rgba(0, 255, 255, 0.3),
        0 0 60px rgba(0, 255, 255, 0.2),
        0 0 100px rgba(139, 92, 246, 0.15),
        0 40px 80px rgba(0,0,0,0.8);
    transform: scale(1.02);
}

/* HEADLINE HIERARCHY */
.desire-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    line-height: 1;
}
.desire-stop {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    color: #00FFFF;
    letter-spacing: -4px;
    line-height: 0.9;
    text-shadow:
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 50px rgba(0, 255, 255, 0.3);
    animation: stop-pulse 3s ease-in-out infinite;
}
@keyframes stop-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(0,255,255,0.6), 0 0 50px rgba(0,255,255,0.3); }
    50% { text-shadow: 0 0 30px rgba(0,255,255,0.9), 0 0 70px rgba(0,255,255,0.5), 0 0 100px rgba(0,255,255,0.2); }
}
.desire-subline {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: #9ca3af;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.75rem;
}

/* BODY COPY */
.desire-body-copy {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.desire-body-copy p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #d1d5db;
    line-height: 1.5;
}
.desire-body-copy strong {
    color: #ffffff;
    font-weight: 700;
}
.desire-kicker {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem) !important;
    font-weight: 700 !important;
    color: #00FFFF !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
}

/* IMPACT BOX */
.rational-box {
    background: #0D1618;
    padding: 1.75rem 1.5rem;
    border-left: 5px solid #00FFFF;
    border-top: none; border-right: none; border-bottom: none;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.03), 0 8px 24px rgba(0,0,0,0.4);
}
.impact-question {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.impact-answer {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
}
.impact-answer strong {
    color: #00FFFF;
    font-weight: 700;
}
.info-icon { width: 24px; height: 24px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ===== SECTION 4: EL SISTEMA ===== */
.solution-section { background-color: #F8F9FA; padding: 6rem 0; }

.solution-headline { text-align: center; margin-bottom: 4rem; display: flex; flex-direction: column; align-items: center; }
.solution-pretitle { font-size: 1rem; font-weight: 600; letter-spacing: 3px; color: #666; text-transform: uppercase; }
.solution-title { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 900; color: #111; margin-top: 0.5rem; line-height: 1; margin-bottom: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.step-card {
    background: #0B1416; padding: 2.5rem 2rem; border-radius: 16px;
    border: none; position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.step-number {
    font-size: 5rem; font-weight: 900; color: #1A262A; opacity: 1;
    position: absolute; top: -10px; right: 1rem; line-height: 1; font-family: var(--font-heading);
    z-index: 0;
}
.step-card h4 { position: relative; z-index: 1; margin-bottom: 1rem; font-size: 1.25rem; font-weight: 700; }
.card-title-white { color: #ffffff !important; }
.card-title-cyan { color: #00FFFF !important; }
.card-text-gray { position: relative; z-index: 1; color: #9ca3af; line-height: 1.6; }

.solution-cta-wrapper { margin-top: 4rem; text-align: center; }

/* ===== SECTION 5: QUÉ INCLUYE ===== */
.includes-section { padding: 7rem 0; background-color: #050a12; border-top: 1px solid rgba(255,255,255,0.05); }
.includes-headline { text-align: center; margin-bottom: 4rem; display: flex; flex-direction: column; align-items: center; }
.includes-pretitle { font-size: 1rem; font-weight: 600; letter-spacing: 3px; color: var(--cyan); text-transform: uppercase; }
.includes-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: #ffffff; margin-top: 0.5rem; line-height: 1.1; }

.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.include-card { 
    background: #0B131D; padding: 2.5rem 2rem; border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.include-card:hover { transform: translateY(-5px); border-top: 2px solid var(--cyan); background: #0F1A28; }
.include-icon { width: 48px; height: 48px; color: #6b7280; margin-bottom: 1.5rem; transition: color 0.3s; }
.cyan-icon { color: var(--cyan); filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.4)); }
.include-card:hover .include-icon:not(.cyan-icon) { color: #ffffff; }
.include-title { font-size: 1.35rem; color: #ffffff; font-weight: 700; margin-bottom: 1rem; }
.include-desc { color: #9ca3af; font-size: 1.05rem; line-height: 1.6; }
.includes-cta { text-align: center; }

.closing-section { padding: 6rem 0; background-color: #FFFFFF; text-align: center; }
.closing-content { max-width: 800px; margin: 0 auto; }
.closing-context { font-size: 1.125rem; margin-bottom: 2rem; }
.urgency-text { font-size: 1.125rem; color: #B0BEC5; font-weight: 600; margin-bottom: 3rem; }
.antifriction-microcopy { margin-top: 1rem; font-size: 0.875rem; color: var(--text-gray); }

/* WhatsApp Widget matching screenshot */
.wa-widget-container { position: fixed; bottom: 32px; right: 32px; z-index: 100; }
.wa-floating-btn {
    width: 64px; height: 64px; background-color: var(--wa-color); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); animation: heartbeat 2s infinite; transition: transform 0.3s ease;
}
.wa-floating-btn:hover { transform: scale(1.1); }
@keyframes pulse-dot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } }
@keyframes heartbeat { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 15% { transform: scale(1.15); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 30% { transform: scale(1); } 45% { transform: scale(1.15); } 60% { transform: scale(1); } }

/* Modals */
.wa-modal {
    position: absolute; bottom: 80px; right: 0; width: 350px; background: #efeae2;
    border-radius: 16px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); overflow: hidden;
    transform: translateY(20px); opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.05);
}
.wa-modal.show { transform: translateY(0); opacity: 1; visibility: visible; }
.wa-header {
    background-color: #008069; color: white; padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); z-index: 10;
}
.wa-profile { display: flex; align-items: center; gap: 12px; }
.wa-avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; object-fit: cover; }
.wa-info { display: flex; flex-direction: column; }
.wa-info strong { font-size: 1rem; font-weight: 600; line-height: 1.2; color: #fff; }
.wa-info span { font-size: 0.8rem; opacity: 0.9; color: #e2e8f0; }
.close-btn { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 1.8rem; cursor: pointer; transition: color 0.2s; padding-bottom: 4px; }
.close-btn:hover { color: white; }

.wa-body { 
    flex: 1; padding: 20px 16px; height: 320px; overflow-y: auto;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23000000" fill-opacity="0.04" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    background-attachment: local;
    display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth;
}
.wa-chat-container { display: flex; flex-direction: column; gap: 12px; padding-bottom: 10px; }
.wa-bot-message { 
    background: #ffffff; color: #111b21; padding: 10px 14px; 
    border-radius: 0 12px 12px 12px; font-size: 0.95rem; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.1); max-width: 85%; align-self: flex-start;
    animation: chatPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    line-height: 1.4;
}
.wa-user-message {
    background: #d9fdd3; color: #111b21; padding: 10px 14px; 
    border-radius: 12px 12px 0 12px; font-size: 0.95rem; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.1); max-width: 85%; align-self: flex-end;
    animation: chatPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    line-height: 1.4; margin-left: auto;
}
@keyframes chatPopIn {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-faq-list {
    display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px;
    animation: chatPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s; opacity: 0;
}
.wa-faq-chip {
    background: #ffffff; border: 1px solid #e2e8f0; color: #111b21;
    padding: 10px 14px; border-radius: 12px; font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; text-align: left; width: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: space-between;
}
.wa-faq-chip::after {
    content: '→'; color: #008069; font-weight: bold; font-size: 1.1rem;
    transition: transform 0.2s; flex-shrink: 0; margin-left: 8px;
}
.wa-faq-chip:hover { background: #d9fdd3; border-color: #008069; transform: translateY(-1px); }
.wa-faq-chip:hover::after { transform: translateX(3px); }

/* Typing animation */
.wa-typing { display: flex; gap: 4px; padding: 14px 16px; align-items: center; width: fit-content; }
.wa-typing .dot { width: 6px; height: 6px; background: #8696a0; border-radius: 50%; animation: typeBounce 1.4s infinite ease-in-out both; }
.wa-typing .dot:nth-child(1) { animation-delay: -0.32s; }
.wa-typing .dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typeBounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

.wa-final-cta {
    align-self: center; background: #008069; color: #fff; padding: 12px 24px;
    border-radius: 24px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
    margin-top: 8px; box-shadow: 0 2px 6px rgba(0,128,105,0.3); transition: all 0.2s;
    animation: chatPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; display: block; text-align: center;
}
.wa-final-cta:hover { background: #016b58; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,128,105,0.4); color: white; }

/* Captation Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(5px); z-index: 1000;
    display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-content {
    background: #ffffff; /* White modal as per usual standard */
    width: 90%; max-width: 550px; border-radius: 16px; padding: 40px;
    position: relative; transform: scale(0.95); transition: all 0.3s;
}
.modal-overlay.show .modal-content { transform: scale(1); }
.close-modal-btn { position: absolute; top: 20px; right: 20px; font-size: 2rem; border: none; background: none; cursor: pointer; color: #666; }
.modal-subtitle { color: #666; text-align: center; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group input { width: 100%; padding: 16px; border: 1px solid #ccc; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; }
.form-group input:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(0,229,255,0.2); }
.legal-group { margin: 24px 0; font-size: 0.85rem; color: #666; }
.checkbox-container { display: flex; gap: 10px; }
.secure-text { display: flex; align-items: center; gap: 5px; color: #10B981; font-weight: 600; margin-top: 5px; }

/* Responsive */
@media (max-width: 1024px) {
    .desire-container { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .header-cta { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-section { padding-top: 120px; }
}

/* Footer Styles */
.site-footer { background-color: #050a12; padding: 3rem 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-logo { display: inline-block; font-family: 'Poppins', sans-serif; transform: scale(0.8); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #A0AEC0; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { color: #4A5568; font-size: 0.8rem; margin-top: 1rem; }
#legal-modal-body h2 { margin-bottom: 20px; font-size: 1.8rem; }
#legal-modal-body h3 { margin-top: 20px; margin-bottom: 10px; font-size: 1.2rem; }
#legal-modal-body p { margin-bottom: 15px; font-size: 1rem; line-height: 1.6; color: #4A5568; }
