@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Colors */
    --primary: #0a0e27;
    --secondary: #1a1f3a;
    --accent: #6366f1;
    --accent-bright: #818cf8;
    --accent-light: #a5b4fc;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    
    /* Spacing */
    --spacing-xs: clamp(8px, 2vw, 12px);
    --spacing-sm: clamp(12px, 3vw, 20px);
    --spacing-md: clamp(20px, 4vw, 40px);
    --spacing-lg: clamp(40px, 6vw, 80px);
}

/* Performance Optimizations */
@supports (backdrop-filter: blur(20px)) {
    :root {
        --blur-fallback: none;
    }
}

@supports not (backdrop-filter: blur(20px)) {
    :root {
        --blur-fallback: rgba(10, 14, 39, 0.95);
    }
}

/* Base Styles - Mobile First (320px) */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
    /* Performance */
    contain: layout style;
}

/* Optimized noise texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: 1;
    pointer-events: none;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    will-change: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
    /* Performance */
    contain: layout;
}

/* Utility Classes */
.hide-mobile {
    display: none !important;
}

.show-mobile {
    display: inline-block !important;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

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

/* Hero Section - Mobile First */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    /* Performance */
    contain: layout style;
}

/* Hero Background - OPTIMIZED */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    /* Performance */
    will-change: auto;
    contain: layout style paint;
}

/* Optimized Orbs with GPU acceleration */
.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    /* Optimized animation */
    animation: float-optimized 20s ease-in-out infinite;
    /* GPU acceleration */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    /* Reduced blur for performance */
    filter: blur(20px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 60%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, #ef4444 0%, transparent 60%);
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, var(--accent-bright) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    animation-delay: -5s;
}

/* Optimized float animation */
@keyframes float-optimized {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(15px, -15px, 0) scale(1.05);
    }
}

/* Hero Logo */
.hero-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
}

.logo-container {
    position: relative;
    padding: clamp(15px, 3vw, 20px) clamp(30px, 5vw, 40px);
    background: linear-gradient(135deg, var(--glass-bg), rgba(99, 102, 241, 0.02));
    border: 2px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.15);
    /* Fallback for browsers without backdrop-filter */
    background-color: var(--blur-fallback);
}

.logo-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.05));
}

.logo-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.logo-text-bold {
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Authority Badge */
.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    color: var(--accent-light);
    white-space: nowrap;
    /* Fallback */
    background-color: var(--blur-fallback);
}

/* Status Indicator */
.status-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--glass-border);
    z-index: 10;
    animation: fadeInDown 0.8s ease-out 0.5s both;
    font-size: clamp(0.7rem, 1.5vw, 0.875rem);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-optimized 2s infinite;
}

.status-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Optimized pulse animation */
@keyframes pulse-optimized {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1); 
    }
}

/* Hero Grid - Mobile First */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

/* Typography - Mobile First */
.hero-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Optimized gradient animation */
.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-bright) 50%, var(--text-primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-optimized 4s ease-in-out infinite;
}

@keyframes gradient-optimized {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw + 0.25rem, 1.25rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Impact Metrics - Mobile First - OPTIMIZED */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    /* Performance */
    will-change: transform;
    transform: translateZ(0);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.metric-card:hover {
    transform: translate3d(0, -3px, 0);
    border-color: var(--accent);
    box-shadow: 0 8px 20px -5px rgba(99, 102, 241, 0.2);
}

.metric-number {
    font-size: clamp(1.25rem, 3vw + 0.25rem, 2rem);
    font-weight: 800;
    color: var(--accent-bright);
    display: block;
    margin-bottom: 0.2rem;
}

.metric-live {
    font-size: clamp(1.25rem, 3vw + 0.25rem, 2rem);
    font-weight: 700;
    color: var(--success);
}

.metric-label {
    font-size: clamp(0.65rem, 1vw + 0.1rem, 0.875rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* CTA Buttons - Mobile First */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cta-primary,
.cta-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw + 0.1rem, 1.125rem);
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 48px;
    touch-action: manipulation;
    /* Performance */
    transform: translateZ(0);
    will-change: transform;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px -3px rgba(99, 102, 241, 0.3);
}

.cta-primary:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 8px 24px -5px rgba(99, 102, 241, 0.4);
}

.cta-secondary-button {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.cta-secondary-button:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent);
    transform: translate3d(0, -2px, 0);
}

/* Urgency Ticker - Mobile First */
.urgency-ticker {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border-left: 3px solid var(--danger);
    border-radius: 10px;
}

.ticker-icon {
    flex-shrink: 0;
    color: var(--danger);
    animation: pulse-optimized 2s infinite;
    margin-top: 2px;
}

.ticker-text {
    font-size: clamp(0.8rem, 1.5vw + 0.1rem, 1.05rem);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

/* Hero Visual - Mobile First */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.daniel-container {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.daniel-hero {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(99, 102, 241, 0.2));
    border-radius: 16px;
    object-fit: contain;
}

/* Problem Identifier Section - Mobile First */
.problem-identifier {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
}

.section {
    padding: 40px 0;
    position: relative;
    /* Performance */
    contain: layout style;
}

.section-dark {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: clamp(0.65rem, 1vw + 0.05rem, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-tag.danger {
    background: var(--danger);
}

.section-title {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-title-white {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: white;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.5vw + 0.1rem, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Cards - Mobile First - OPTIMIZED */
.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    /* Performance */
    transform: translateZ(0);
    will-change: transform;
    /* Fallback */
    background-color: var(--blur-fallback);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--glass-border);
}

.problem-card[data-urgency="critical"]::before {
    background: var(--danger);
    animation: pulse-optimized 2s infinite;
}

.problem-card[data-urgency="high"]::before {
    background: var(--warning);
}

.problem-card[data-urgency="medium"]::before {
    background: var(--accent);
}

.problem-card:hover {
    transform: translate3d(0, -5px, 0);
    border-color: var(--accent);
    box-shadow: 0 16px 32px -8px rgba(99, 102, 241, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.urgency-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: clamp(0.6rem, 1vw + 0.05rem, 0.7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.urgency-badge.critical {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.urgency-badge.high {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.urgency-badge.medium {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-bright);
}

.time-left {
    font-size: clamp(0.7rem, 1vw + 0.05rem, 0.875rem);
    color: var(--text-secondary);
    font-weight: 600;
}

.problem-card h3 {
    font-size: clamp(1.1rem, 2vw + 0.2rem, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.problem-card h3 svg {
    color: var(--accent-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: clamp(0.85rem, 1.5vw + 0.05rem, 1rem);
}

.consequence {
    padding: 0.6rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--danger);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 0.95rem);
}

.consequence strong {
    color: var(--danger);
}

.card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: clamp(1.25rem, 2.5vw + 0.25rem, 2rem);
    font-weight: 800;
    color: var(--accent-bright);
}

.stat-text {
    font-size: clamp(0.75rem, 1.2vw + 0.05rem, 0.875rem);
    color: var(--text-secondary);
}

/* Consequences Section - Mobile First */
.consequences-section {
    padding: 40px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.section-header.dark h2 {
    color: var(--text-primary);
}

.text-danger {
    color: var(--danger);
}

/* Timeline - Mobile First - OPTIMIZED */
.consequences-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-item {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    /* Performance */
    transform: translateZ(0);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.timeline-item:hover {
    transform: translate3d(0, -5px, 0);
    border-color: var(--danger);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.15);
}

.timeline-marker {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: pulse-optimized 3s infinite;
    font-size: clamp(0.7rem, 1vw + 0.05rem, 0.875rem);
}

.timeline-content h3 {
    font-size: clamp(1rem, 1.8vw + 0.15rem, 1.25rem);
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 0.95rem);
}

/* Companies Ticker - Mobile First - OPTIMIZED */
.companies-ticker {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
    /* Fallback */
    background-color: var(--blur-fallback);
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
    font-size: clamp(0.75rem, 1.2vw + 0.05rem, 0.9rem);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-optimized 2s infinite;
}

.ticker-track {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 2rem;
    animation: scroll-optimized 30s linear infinite;
    padding: 0 0.5rem;
    /* GPU acceleration */
    transform: translateZ(0);
    will-change: transform;
}

/* Optimized scroll animation */
@keyframes scroll-optimized {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.company-case {
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 1.2vw + 0.05rem, 0.95rem);
    white-space: nowrap;
}

/* Solutions Grid - Mobile First - OPTIMIZED */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, var(--glass-bg), rgba(99, 102, 241, 0.02));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Performance */
    transform: translateZ(0);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.solution-card:hover {
    transform: translate3d(0, -5px, 0);
    border-color: var(--accent);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.05));
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px -5px rgba(99, 102, 241, 0.25);
    color: white;
}

.solution-title {
    font-size: clamp(1.1rem, 2vw + 0.15rem, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: clamp(0.85rem, 1.3vw + 0.05rem, 1.05rem);
}

/* Why It Works - Mobile First - OPTIMIZED */
.why-it-works {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    /* Fallback */
    background-color: var(--blur-fallback);
}

.daniel-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 12px 24px -6px rgba(99, 102, 241, 0.3);
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: clamp(1.1rem, 2vw + 0.2rem, 1.75rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.insider-info {
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 0.6rem;
    align-items: start;
}

.info-item .icon {
    flex-shrink: 0;
    color: var(--accent-bright);
    margin-top: 0.1rem;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 0.95rem);
    margin: 0;
}

.info-item strong {
    color: var(--text-primary);
}

/* Benefits Grid - Mobile First - OPTIMIZED */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--glass-bg), rgba(99, 102, 241, 0.02));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    /* Performance */
    transform: translateZ(0);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.benefit-item:hover {
    transform: translate3d(0, -5px, 0);
    border-color: var(--accent);
    box-shadow: 0 12px 24px -6px rgba(99, 102, 241, 0.25);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px -4px rgba(99, 102, 241, 0.25);
    color: white;
}

.benefit-title {
    font-size: clamp(1rem, 1.8vw + 0.15rem, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.benefit-text {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 0.95rem);
    line-height: 1.5;
}

/* Success Stories - Mobile First - OPTIMIZED */
.testimonials-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.story-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* Performance */
    transform: translateZ(0);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.story-card:hover {
    transform: translate3d(0, -5px, 0);
    border-color: var(--accent);
    box-shadow: 0 16px 32px -8px rgba(99, 102, 241, 0.25);
}

.story-header {
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.story-amount {
    font-size: clamp(0.85rem, 1.5vw + 0.1rem, 1.125rem);
    font-weight: 800;
    color: var(--warning);
}

.story-amount.saved {
    color: var(--success);
}

.story-date {
    font-size: clamp(0.65rem, 1vw + 0.05rem, 0.75rem);
    color: var(--text-secondary);
}

.story-content {
    padding: 1.25rem;
}

.story-content h3 {
    font-size: clamp(1rem, 1.8vw + 0.15rem, 1.25rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Timeline - OPTIMIZED */
.story-timeline {
    background: var(--glass-bg);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.timeline-point {
    padding: 1rem;
    background: rgba(99, 102, 241, 0.03);
    border-left: 4px solid var(--glass-border);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.timeline-point:hover {
    border-color: var(--accent);
    background: rgba(99, 102, 241, 0.08);
}

.timeline-point.success {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

.point-time {
    font-size: clamp(0.65rem, 1vw + 0.05rem, 0.75rem);
    font-weight: 700;
    color: var(--accent-bright);
    display: block;
    margin-bottom: 0.2rem;
}

.timeline-point p {
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 1.2vw + 0.05rem, 0.875rem);
    display: block;
}

/* Story sections */
.story-problem,
.story-solution,
.story-result {
    margin-bottom: 0.6rem;
    padding: 0.6rem;
    background: var(--glass-bg);
    border-radius: 6px;
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 0.95rem);
}

.story-problem strong,
.story-solution strong,
.story-result strong {
    color: var(--accent-bright);
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-quote {
    padding: 0.6rem;
    background: rgba(99, 102, 241, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    font-style: italic;
    color: var(--text-secondary);
    margin: 1rem 0;
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 0.95rem);
}

.testimonial-author {
    text-align: right;
    color: var(--accent-bright);
    font-weight: 600;
    font-size: clamp(0.75rem, 1.2vw + 0.05rem, 0.875rem);
}

/* Form Section - Mobile First - OPTIMIZED */
.form-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.form-main-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.form-top-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Daniel Card - Mobile First - OPTIMIZED */
.daniel-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), var(--glass-bg));
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px -6px rgba(99, 102, 241, 0.25);
    /* Performance */
    transform: translateZ(0);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.daniel-card:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 16px 32px -8px rgba(99, 102, 241, 0.3);
}

.daniel-photo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.daniel-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
    filter: drop-shadow(0 6px 16px rgba(99, 102, 241, 0.2));
    background: white;
}

.daniel-name {
    font-size: clamp(1.1rem, 2vw + 0.2rem, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.daniel-title {
    font-size: clamp(0.85rem, 1.3vw + 0.05rem, 1.1rem);
    color: var(--accent-light);
    margin-bottom: 0.6rem;
}

.daniel-card p {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.3vw + 0.05rem, 1.05rem);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.expert-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: clamp(0.7rem, 1vw + 0.05rem, 0.85rem);
    font-weight: 600;
    box-shadow: 0 3px 8px -2px rgba(99, 102, 241, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.badge svg {
    width: 12px;
    height: 12px;
}

/* Form Container - Mobile First - OPTIMIZED */
.form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), var(--glass-bg));
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 0.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 32px -8px rgba(99, 102, 241, 0.25);
    /* Fallback */
    background-color: var(--blur-fallback);
}

.form-container iframe {
    border-radius: 10px !important;
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.2);
    min-height: 450px;
}

/* Process Steps - Mobile First */
.process-steps-horizontal {
    background: linear-gradient(135deg, var(--glass-bg), rgba(99, 102, 241, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
    /* Fallback */
    background-color: var(--blur-fallback);
}

.process-steps-horizontal h4 {
    font-size: clamp(1rem, 1.8vw + 0.15rem, 1.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.step-horizontal {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-horizontal:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translate3d(0, -3px, 0);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 16px -4px rgba(99, 102, 241, 0.3);
}

.step-horizontal h4 {
    font-size: clamp(0.95rem, 1.5vw + 0.1rem, 1.25rem);
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step-horizontal p {
    font-size: clamp(0.8rem, 1.2vw + 0.05rem, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Form Trust - Mobile First */
.form-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.trust-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.3vw + 0.05rem, 1rem);
    transition: all 0.3s ease;
}

.trust-element:hover {
    color: var(--accent-light);
    transform: translateY(-1px);
}

/* Footer CTA - Mobile First */
.footer-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-content {
    position: relative;
    z-index: 1;
}

/* Footer - Mobile First */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: var(--primary);
}

.footer-text {
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 1.2vw + 0.05rem, 0.95rem);
}

/* WhatsApp Float - Mobile First */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    /* Performance */
    transform: translateZ(0);
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: white;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse-optimized 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    color: var(--primary);
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: clamp(0.7rem, 1vw + 0.05rem, 0.85rem);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-3px);
}

.whatsapp-tooltip strong {
    display: block;
    margin-bottom: 0.15rem;
}

.whatsapp-tooltip span {
    font-size: clamp(0.65rem, 1vw + 0.05rem, 0.8rem);
    color: var(--text-muted);
}

/* Animations - OPTIMIZED */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Animation Classes */
.animate-slide-down {
    animation: fadeInDown 0.6s ease;
}

/* Performance Classes */
.reduce-animations * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.reduce-effects .orb {
    display: none !important;
}

.reduce-effects [class*="backdrop"] {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: var(--blur-fallback) !important;
}

/* ====================================
   RESPONSIVE BREAKPOINTS
   ==================================== */

/* Mobile Large (481px+) */
@media (min-width: 481px) {
    .hero {
        min-height: 90vh;
        padding: 50px 0;
    }
    
    .authority-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .status-indicator {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .status-dot {
        width: 7px;
        height: 7px;
    }
    
    .daniel-container {
        max-width: 350px;
    }
    
    .impact-metrics {
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .cta-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .daniel-photo-container {
        width: 180px;
        height: 180px;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-container iframe {
        min-height: 500px;
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-badge {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hide-mobile {
        display: inline-block !important;
    }
    
    .show-mobile {
        display: none !important;
    }
    
    .hero {
        min-height: 95vh;
        padding: 60px 0;
    }
    
    .authority-badge {
        font-size: 0.875rem;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .status-indicator {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .status-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
    
    .daniel-container {
        max-width: 100%;
    }
    
    .daniel-hero {
        max-height: 500px;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-primary,
    .cta-secondary-button {
        padding: 14px 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .problem-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .consequences-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .why-it-works {
        flex-direction: row;
        text-align: left;
        padding: 2rem;
    }
    
    .daniel-badge {
        width: 150px;
        height: 150px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-top-section {
        grid-template-columns: 1fr 2fr;
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-horizontal::after {
        content: '';
        position: absolute;
        top: 35px;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), transparent);
    }
    
    .step-horizontal:last-child::after {
        display: none;
    }
    
    .form-trust {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .orb-1 {
        width: 400px;
        height: 400px;
    }
    
    .orb-2 {
        width: 300px;
        height: 300px;
    }
    
    .orb-3 {
        width: 350px;
        height: 350px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .icon {
        width: 24px;
        height: 24px;
    }
    
    .icon-lg {
        width: 32px;
        height: 32px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 600px;
        gap: 2rem;
    }
    
    .daniel-hero {
        max-height: 750px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .consequences-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .daniel-badge {
        width: 180px;
        height: 180px;
    }
    
    .daniel-photo-container {
        width: 200px;
        height: 200px;
    }
    
    .form-container iframe {
        min-height: 600px;
    }
    
    .orb-1 {
        width: 600px;
        height: 600px;
        filter: blur(60px);
        opacity: 0.2;
    }
    
    .orb-2 {
        width: 400px;
        height: 400px;
        filter: blur(60px);
        opacity: 0.2;
    }
    
    .orb-3 {
        width: 500px;
        height: 500px;
        filter: blur(60px);
        opacity: 0.2;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .orb {
        animation: none !important;
    }
    
    .gradient-text {
        animation: none !important;
    }
    
    .ticker-content {
        animation: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #e5e7eb;
        --glass-border: rgba(255, 255, 255, 0.3);
    }
    
    .problem-card,
    .solution-card,
    .benefit-item {
        border-width: 2px;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .hero-bg,
    .orb,
    body::before {
        display: none !important;
    }
    
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Touch targets minimum size */
a,
button,
input,
textarea,
select {
    min-height: 44px;
    min-width: 44px;
}

/* Mobile alignment fix */
@media (max-width: 767px) {
    .trust-element {
        justify-content: flex-start;
    }
}
