/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    /* Core Colors */
    --bg-base: #030305;
    --bg-surface: #0a0a0f;
    --bg-alt: #0a0a0f;
    
    /* Accents - Premium Tech Look */
    --accent-primary: #7C3AED;   /* Deep Violet */
    --accent-secondary: #3B82F6; /* Bright Blue */
    
    /* Text */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    /* Typography */
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Layout & Utilities */
    --max-w: 1280px;
    --section-pad: 120px 24px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Borders & Shadows */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glow-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background removed as requested */

img, svg, iframe {
    max-width: 100%;
    display: block;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.text-gradient-accent {
    background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Bento Box Container */
.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--glow-shadow);
}

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

.bento-content {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-base);
    box-shadow: 0 0 0 rgba(255,255,255,0);
}

.btn-primary:hover:not([type="submit"]) {
    transform: scale(1.02);
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
}

@keyframes slideGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.btn-accent {
    position: relative;
    background: transparent;
    color: #fff;
    border: none;
    z-index: 1;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3), 0 0 40px rgba(59, 130, 246, 0.15);
}

.btn-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% auto;
    animation: slideGradient 3s linear infinite;
    z-index: -2;
}

.btn-accent::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 100px;
    background: #030305;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-accent:hover:not([type="submit"]) {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6), 0 0 50px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.btn-accent:hover:not([type="submit"])::after {
    background: rgba(124, 58, 237, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-outline:hover:not([type="submit"]) {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 0 50px rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    position: relative;
    background: transparent;
    color: #fff;
    border: none;
    z-index: 1;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3), 0 0 40px rgba(18, 140, 126, 0.15);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, #25D366, #128C7E, #25D366);
    background-size: 200% auto;
    animation: slideGradient 3s linear infinite;
    z-index: -2;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 100px;
    background: #030305;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover:not([type="submit"]) {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6), 0 0 60px rgba(18, 140, 126, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-whatsapp:hover:not([type="submit"])::after {
    background: rgba(37, 211, 102, 0.15);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center; /* Center the container to help with absolute positioning */
    align-items: center;
    height: 80px; /* Fixed height to keep it stable */
    background: transparent;
    border: 1px solid transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    top: 24px;
    width: calc(100% - 48px);
    max-width: var(--max-w);
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.header-logo-link {
    position: absolute;
    left: 24px;
    display: flex;
    align-items: center;
    transition: opacity 0.4s;
}

.header-phone {
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

@media (min-width: 768px) {
    .header-phone {
        display: block;
    }
}

.header-phone:hover {
    color: #fff;
}

.header-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header-cta {
    position: absolute;
    right: 24px;
    transform: translateX(0);
    display: block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .header-cta {
    right: 50%;
    transform: translateX(50%);
}

.nav-links {
    display: none;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: 0.3s;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 40px;
}

/* Video Background */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}

/* Aurora Borealis Background Effect */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.aurora-bg::before,
.aurora-bg::after {
    content: '';
    position: absolute;
    top: 0;
    width: 70vw;
    height: 70vh;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    mix-blend-mode: screen;
    will-change: transform;
    animation: auroraMove 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.aurora-bg::before {
    left: -10vw;
    background: radial-gradient(circle, rgba(167,139,250,0.4) 0%, rgba(59,130,246,0) 70%);
}

.aurora-bg::after {
    right: -10vw;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(167,139,250,0) 70%);
    animation-delay: -7s;
    animation-duration: 20s;
}

@keyframes auroraMove {
    0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
    50% { transform: translate3d(15vw, 10vh, 0) scale(1.1) rotate(5deg); }
    100% { transform: translate3d(-10vw, -5vh, 0) scale(0.9) rotate(-5deg); }
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #c4b5fd;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    text-wrap: balance;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 32px;
    text-wrap: balance;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 0;
}

/* VIDEO PLAYER */
.video-showcase {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    border: 12px solid #13131a; /* iPhone bezel */
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 0 0 4px #000, 0 0 0 1px rgba(255,255,255,0.1);
    background: #000;
}

.video-showcase::before {
    /* Dynamic Island Notch */
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.video-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px; /* Inner radius for screen */
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 11;
}

.video-showcase iframe,
.video-showcase video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.video-progress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Will be revealed by JS or standard reveal */
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
}

.video-progress-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-progress-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    color: #ef4444; /* Red color initially */
    transition: color 0.4s ease;
}

.video-progress-header.unlocked {
    color: #10B981; /* Green color when finished */
}

.lock-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.video-progress-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
}

.video-progress-bar-container {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.video-progress-percent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    min-width: 65px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.video-progress-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.video-progress-fill {
    height: 100%;
    width: 0%;
    background: #ef4444; /* Red fill */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    transition: background-color 0.4s, box-shadow 0.4s;
}

.video-progress-fill.unlocked {
    background: #10B981; /* Green fill */
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.video-final-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-final-cta-wrapper.visible {
    height: 100px; 
    opacity: 1;
    margin-top: 0; /* Bajado un poquito respecto al -15px anterior */
    pointer-events: auto;
}

.video-final-cta {
    width: 100%;
    max-width: 300px;
}

/* =========================================
   BENTO GRID (METODO & BENEFICIOS)
   ========================================= */
.bento-section {
    padding: var(--section-pad);
    max-width: var(--max-w);
    margin: 0 auto;
}

#method {
    margin-top: 80px; /* Pushes the method section down as requested */
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.bento-item-large {
    grid-column: 1 / -1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to top right, rgba(10,10,15,1), rgba(10,10,15,0));
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-secondary);
}

.bento-icon svg {
    width: 28px;
    height: 28px;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    padding: var(--section-pad);
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.review-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.review-card:hover::before {
    transform: translateY(10px) scale(1.05);
    color: rgba(255, 255, 255, 0.04);
}

.review-stars {
    position: relative;
    z-index: 1;
    display: flex;
    color: #fbbf24;
    margin-bottom: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover .review-stars {
    transform: translateX(4px);
}

.review-stars svg { width: 18px; height: 18px; }

.review-card p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-weight: 300;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover p {
    transform: translateX(4px);
}

.reviewer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255,255,255,0.3);
}

.reviewer-info strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* =========================================
   CTA SECTION
   ========================================= */
.final-cta {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.final-cta h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

/* =========================================
   URGENCY SECTION
   ========================================= */

.urgency-section {
    padding: 0 24px 80px 24px;
    display: flex;
    justify-content: center;
}

.urgency-card {
    background: rgba(255, 60, 0, 0.03);
    border: 1px solid rgba(255, 60, 0, 0.15);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 60, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(255, 60, 0, 0.08), transparent 50%);
    pointer-events: none;
}

.urgency-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 60, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.2);
    animation: pulse-urgent 2s infinite;
}

.flame-icon {
    width: 32px;
    height: 32px;
    color: #ff4d00;
}

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

.urgency-content {
    flex-grow: 1;
    text-align: left;
}

.urgency-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.urgency-content p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.highlight-urgent {
    color: #ff4d00;
    font-weight: 700;
}

.urgency-progress {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 100%;
    transform-origin: left;
    height: 100%;
    background: linear-gradient(90deg, #ff4d00, #ff8c00);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 77, 0, 0.5);
    animation: progress-load 1.5s ease-out forwards;
}

@keyframes progress-load {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(0.6); }
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Roadmap Section (3 Pasos) - Thin Strip
   ========================================== */
.roadmap-strip-section {
    padding: 20px 5%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}
.roadmap-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 10px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: var(--max-w);
    width: 100%;
}
.strip-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: transform 0.3s ease;
}
.strip-step:hover {
    transform: translateY(-2px);
}
.strip-step:hover .strip-icon svg {
    color: #fff;
    filter: drop-shadow(0 0 5px var(--accent-primary));
}
.strip-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 58, 237, 0.3);
}
.strip-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    transition: color 0.3s ease, filter 0.3s ease;
}
.strip-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-main);
    white-space: nowrap;
}
.strip-content p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
    white-space: nowrap;
}
.strip-divider {
    flex-grow: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 30px;
    position: relative;
    overflow: hidden;
}
.animated-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: slide-line 2.5s infinite linear;
}

@keyframes slide-line {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(calc(100% + 50px)); }
}

/* ==========================================
   Cost of Inaction (COI) Section - New Design
   ========================================== */
.coi-section-new {
    padding: 100px 5%;
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255, 51, 51, 0.1);
    border-bottom: 1px solid rgba(255, 51, 51, 0.1);
}
.coi-container-new {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.coi-left h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 10px;
}
.coi-left p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
}
.coi-right {
    position: relative;
    padding: 20px;
}
.coi-metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}
.coi-metric-card:hover {
    transform: translateY(-5px) scale(1.02);
}
.alert-card {
    border-left: 4px solid #ff3333;
    animation: float-card 6s ease-in-out infinite;
}
.danger-card {
    border-left: 4px solid #ff8c00;
    animation: float-card 6s ease-in-out infinite 3s;
}

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

.metric-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.metric-icon svg {
    width: 32px;
    height: 32px;
}
.metric-content {
    position: relative;
    z-index: 2;
}
.metric-content .metric-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
/* Animations for the specific numbers */
.alert-card .metric-number {
    animation: soft-heartbeat 2s ease-in-out infinite;
    transform-origin: left bottom;
}
.danger-card .metric-number {
    animation: soft-heartbeat 2s ease-in-out infinite 1s;
    transform-origin: left bottom;
}

@keyframes soft-heartbeat {
    0%, 100% { transform: scale(1); text-shadow: 0 0 0 transparent; }
    50% { transform: scale(1.05); text-shadow: 0 4px 20px currentColor; }
}
.metric-content .metric-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .urgency-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
    }
    
    .urgency-content {
        text-align: center;
    }
    
    .urgency-progress {
        width: 100%;
        align-items: center;
    }
    
    .roadmap-strip {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }
    .strip-step {
        width: 100%;
        justify-content: center;
    }
    .strip-divider {
        width: 1px;
        height: 30px;
        margin: 10px 0;
    }
    .animated-line {
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(180deg, transparent, var(--accent-primary), transparent);
        animation: slide-line-vertical 2.5s infinite linear;
    }
    
    @keyframes slide-line-vertical {
        0% { transform: translateY(-50px); }
        100% { transform: translateY(calc(100% + 50px)); }
    }
    
    .coi-metrics {
        flex-direction: column;
    }
    
    .coi-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .coi-left h2 {
        font-size: 2.2rem;
    }
    .coi-metric-card.danger-card {
        margin-left: 0 !important;
    }
    
    .site-header.scrolled .header-cta {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    padding: 64px 24px 32px;
    border-top: 1px solid var(--border-light);
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 28px;
    opacity: 0.7;
    margin: 0 auto 32px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* =========================================
   MEDIA QUERIES (DESKTOP)
   ========================================= */
@media (min-width: 768px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
    .btn { width: auto; }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 32px;
    }
    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--text-muted);
        transition: color 0.2s;
    }
    .nav-links a:hover {
        color: var(--text-main);
    }
    
    .header-cta {
        display: block;
        padding: 10px 24px;
        background: rgba(255,255,255,0.1);
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: 0.2s;
    }
    .header-cta:hover {
        background: #fff;
        color: #000;
    }
    
    .menu-toggle { display: none; }
    
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(250px, auto);
    }
    
    .bento-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-item-tall {
        grid-row: span 2;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   DESKTOP HERO SPLIT LAYOUT
   ========================================= */
@media (min-width: 1024px) {
    .hero {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
        text-align: left;
        max-width: 1400px;
        padding: 100px 48px 40px;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
        gap: 64px;
        margin: 0 auto;
    }

    .hero-content-wrapper {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(3rem, 5vw, 5rem);
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }

    .hero-ctas {
        flex-direction: row;
        width: auto;
    }

    .video-showcase {
        height: auto;
        max-height: 80vh;
        margin-top: 0;
        width: 100%;
        max-width: 360px; /* Cap width for phone frame */
    }
}

/* =========================================
   MODALS & FORMS
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content-large {
    max-width: 700px;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 32px;
    text-align: center;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-form input,
.premium-form select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.premium-form input:focus,
.premium-form select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

/* Floating labels for inputs */
.premium-form input + label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-muted);
    transition: all 0.2s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.premium-form input:focus + label,
.premium-form input:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    background: var(--bg-alt);
}

/* Static labels for select */
.static-label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Modal Form Views (Loading & Success) */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.premium-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.premium-form select option {
    background: var(--bg-alt);
    color: var(--text-main);
}

.form-submit {
    margin-top: 12px;
    padding: 18px;
    font-size: 1.1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
}



/* =========================================
   METHODOLOGY SECTION
   ========================================= */

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-weight: 600;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.method-card {
    position: relative;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.015);
}

.method-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.method-number {
    position: absolute;
    top: -5px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card:hover .method-number {
    transform: scale(1.05) translate(-5px, 5px);
    color: rgba(255, 255, 255, 0.04);
}

.method-card .bento-content {
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card:hover .bento-content {
    transform: translateX(4px);
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.method-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.methodology-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* =========================================
   HEADER EMAIL
   ========================================= */

.header-email {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    display: none;
}

@media (min-width: 768px) {
    .header-email {
        display: block;
    }
}

.header-email:hover {
    color: #fff;
}

.site-header.scrolled .header-email {
    right: 24px;
    transform: translateX(0);
}

/* =========================================
   HERO FORM CONTAINER
   ========================================= */

.hero-form-column {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-form-card {
    background: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    opacity: 0.5;
}

.hero-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.hero-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-form-header p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.hero-inline-form .form-row {
    display: flex;
    gap: 16px;
}

.hero-inline-form .form-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .hero-inline-form .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.hero-form-btn {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    padding: 16px;
    border-radius: 12px;
}

/* =========================================
   FOOTER MULTI-COLUMN LAYOUT
   ========================================= */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

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

/* =========================================
   COOKIE BANNER (LIQUID GLASS)
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 48px);
    max-width: 600px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner.hide {
    transform: translateX(-50%) translateY(150%) scale(0.9);
    opacity: 0;
}

.cookie-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-display);
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 120px;
    cursor: pointer;
}

.cookie-btn.accept {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border: none;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
