/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Dark Theme with Neon Accents */
    --color-bg-primary: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-card: #111111;
    --color-bg-card-hover: #1a1a1a;
    
    /* Neon Colors */
    --color-neon-blue: #00D9FF;
    --color-neon-blue-glow: rgba(0, 217, 255, 0.5);
    --color-neon-yellow: #FFD700;
    --color-neon-yellow-glow: rgba(255, 215, 0, 0.5);
    --color-neon-green: #00FF88;
    --color-neon-green-glow: rgba(0, 255, 136, 0.5);
    --color-neon-red: #FF0066;
    --color-neon-red-glow: rgba(255, 0, 102, 0.5);
    
    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B8B8B8;
    --color-text-muted: #666666;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Shadows */
    --shadow-neon-blue: 0 0 20px var(--color-neon-blue-glow);
    --shadow-neon-yellow: 0 0 20px var(--color-neon-yellow-glow);
    --shadow-neon-green: 0 0 20px var(--color-neon-green-glow);
    --shadow-neon-red: 0 0 20px var(--color-neon-red-glow);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

/* Section */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    color: var(--color-text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-neon-blue), #0099CC);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-neon-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--color-neon-blue-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-xl {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.25rem;
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.btn-ghost:hover {
    color: var(--color-neon-blue);
}

.w-full {
    width: 100%;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--color-neon-blue-glow);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 217, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Financial Network Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Financial Data Visualization Layer */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at bottom, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}

/* Financial Elements Container */
.hero-financial-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Financial Symbols */
.financial-symbol {
    position: absolute;
    font-family: var(--font-display);
    font-weight: bold;
    color: var(--color-neon-blue);
    text-shadow: 0 0 20px var(--color-neon-blue-glow), 0 0 40px var(--color-neon-blue-glow);
    will-change: transform, opacity, filter;
    animation: floatFinancial 20s cubic-bezier(0.4, 0, 0.2, 1) infinite, symbolGlow 4s ease-in-out infinite;
    filter: blur(0.3px);
    transform-style: preserve-3d;
    mix-blend-mode: screen;
}

.financial-symbol:nth-child(1) { 
    left: 10%; 
    font-size: 2rem; 
    animation-delay: 0s;
    animation-duration: 18s;
    --float-x: 50px;
    --float-rotate: 360deg;
}
.financial-symbol:nth-child(2) { 
    left: 85%; 
    font-size: 1.5rem; 
    animation-delay: -3s;
    animation-duration: 22s;
    color: var(--color-neon-yellow); 
    text-shadow: 0 0 25px var(--color-neon-yellow-glow);
    --float-x: -80px;
    --float-rotate: -180deg;
}
.financial-symbol:nth-child(3) { 
    left: 15%; 
    font-size: 1.8rem; 
    animation-delay: -6s;
    animation-duration: 19s; 
    color: var(--color-neon-green); 
    text-shadow: 0 0 25px var(--color-neon-green-glow);
    --float-x: 60px;
    --float-rotate: 270deg;
}
.financial-symbol:nth-child(4) { 
    left: 75%; 
    font-size: 2.2rem; 
    animation-delay: -9s;
    animation-duration: 21s;
    --float-x: -40px;
    --float-rotate: -360deg;
}
.financial-symbol:nth-child(5) { 
    left: 5%; 
    font-size: 1.6rem; 
    animation-delay: -12s;
    animation-duration: 20s;
    color: var(--color-neon-yellow); 
    text-shadow: 0 0 25px var(--color-neon-yellow-glow);
    --float-x: 70px;
    --float-rotate: 180deg;
}
.financial-symbol:nth-child(6) { 
    left: 60%; 
    font-size: 2rem; 
    animation-delay: -15s;
    animation-duration: 23s;
    color: var(--color-neon-green); 
    text-shadow: 0 0 25px var(--color-neon-green-glow);
    --float-x: -30px;
    --float-rotate: -270deg;
}
.financial-symbol:nth-child(7) { 
    left: 35%; 
    font-size: 2.5rem; 
    animation-delay: -18s;
    animation-duration: 24s;
    --float-x: 40px;
    --float-rotate: 450deg;
}

/* Removed network nodes and connections - only floating symbols remain */

/* Interactive Mouse Parallax Layer - Removed to focus on floating symbols */

/* Glow effect for symbols */
@keyframes symbolGlow {
    0%, 100% {
        filter: blur(0.3px) brightness(1);
    }
    50% {
        filter: blur(0.5px) brightness(1.3);
    }
}

/* Animation Keyframes */
@keyframes financialPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    33% { 
        transform: scale(1.1) rotate(1deg);
        opacity: 0.8;
    }
    66% { 
        transform: scale(0.9) rotate(-1deg);
        opacity: 0.9;
    }
}

@keyframes dataFlow {
    0% { 
        transform: translateX(0) translateY(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-30px) translateY(-15px);
        opacity: 0.8;
    }
    100% { 
        transform: translateX(-60px) translateY(-30px);
        opacity: 0.6;
    }
}

@keyframes floatFinancial {
    0% { 
        transform: translate3d(0, 150vh, 0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% { 
        transform: translate3d(var(--float-x, 0), -10vh, 0) rotate(var(--float-rotate, 5deg)) scale(1.1);
        opacity: 0.9;
    }
    90% {
        opacity: 0.4;
    }
    100% { 
        transform: translate3d(calc(var(--float-x, 0) * -0.5), -160vh, 0) rotate(calc(var(--float-rotate, 5deg) * -1)) scale(0.8);
        opacity: 0;
    }
}

@keyframes networkPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 15px var(--color-neon-blue-glow);
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 25px var(--color-neon-blue-glow);
    }
}

@keyframes connectionFlow {
    0%, 100% { 
        opacity: 0.1;
        transform: scaleX(0.5);
    }
    50% { 
        opacity: 0.6;
        transform: scaleX(1);
    }
}

@keyframes parallaxFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0);
        opacity: 0.4;
    }
    50% { 
        transform: translate3d(10px, -15px, 0);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--color-neon-blue);
    border-radius: 100px;
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
    color: var(--color-neon-blue);
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-icon i {
    color: var(--color-neon-blue);
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.highlight-yellow {
    color: var(--color-neon-yellow);
    text-shadow: var(--shadow-neon-yellow);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: var(--space-3xl);
}

.cta-subtext {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neon-blue);
    text-shadow: var(--shadow-neon-blue);
}

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

/* Pain Section */
.pain-section {
    background: var(--color-bg-secondary);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.pain-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.pain-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-neon-red);
    box-shadow: var(--shadow-neon-red);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.pain-icon i {
    color: var(--color-neon-red);
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-neon-red);
}

.pain-highlight {
    background: rgba(255, 0, 102, 0.1);
    border: 1px solid var(--color-neon-red);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
}

.text-accent {
    color: var(--color-neon-blue);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Solution Section */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.method-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon-blue);
    box-shadow: var(--shadow-neon-blue);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.method-icon i {
    color: var(--color-neon-green);
}

.method-card h3 {
    color: var(--color-neon-blue);
    margin-bottom: var(--space-md);
}

.result-highlight {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--color-neon-yellow);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Authority Section */
.authority-section {
    background: var(--color-bg-secondary);
}

.founders-section {
    max-width: 800px;
    margin: 0 auto;
}

.founders-section h3 {
    text-align: center;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.founder-card {
    text-align: center;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--color-neon-blue);
    margin-bottom: var(--space-md);
    object-fit: cover;
}

.founder-card h4 {
    color: var(--color-neon-blue);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.founders-quote {
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    color: var(--color-text-secondary);
    margin-top: var(--space-2xl);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.step-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon-yellow);
    box-shadow: var(--shadow-neon-yellow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-neon-yellow);
    color: var(--color-bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-card h3 {
    color: var(--color-neon-yellow);
    margin-top: var(--space-md);
}

/* Calculator Section */
.calculator-section {
    background: var(--color-bg-secondary);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--color-bg-card);
    border: 2px solid var(--color-neon-blue);
    border-radius: 16px;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-neon-blue);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-neon-blue);
    box-shadow: 0 0 10px var(--color-neon-blue-glow);
}

.phone-input-group {
    display: flex;
    gap: var(--space-sm);
    align-items: stretch;
}

.country-select {
    flex: 0 0 28%;
    min-width: 130px;
    max-width: 150px;
    font-size: 0.8rem;
    padding: var(--space-md) var(--space-xs);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: -0.02em;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    min-width: 0;
}

/* Mobile optimizations for phone input */
@media (max-width: 768px) {
    .phone-input-group {
        gap: var(--space-xs);
    }
    
    .country-select {
        flex: 0 0 26%;
        min-width: 85px;
        max-width: 100px;
        font-size: 0.9rem;
        padding: var(--space-md) var(--space-xs);
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        letter-spacing: -0.02em;
    }
    
    .phone-input-group input[type="tel"] {
        flex: 1;
        padding: var(--space-md) var(--space-sm);
    }
}

@media (max-width: 480px) {
    .country-select {
        flex: 0 0 28%;
        min-width: 75px;
        max-width: 90px;
        font-size: 0.85rem;
        padding: var(--space-md) 4px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        letter-spacing: -0.02em;
    }
    
    .phone-input-group input[type="tel"] {
        padding: var(--space-md) var(--space-sm);
    }
}

.currency-input {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: var(--space-md);
    color: var(--color-text-secondary);
    font-weight: 600;
}

.currency-input input {
    padding-left: var(--space-2xl);
}

.form-security {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Calculator Results */
.calculator-results {
    margin-top: var(--space-2xl);
}

.results-title {
    text-align: center;
    color: var(--color-neon-yellow);
    margin-bottom: var(--space-xl);
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.result-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: var(--space-xl);
}

.result-card.traditional {
    border: 2px solid var(--color-neon-red);
}

.result-card.savings-club {
    border: 2px solid var(--color-neon-green);
}

.result-card h4 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.result-item .value {
    font-weight: 700;
}

.highlight-red {
    color: var(--color-neon-red);
}

.highlight-green {
    color: var(--color-neon-green);
}

.results-cta {
    text-align: center;
}

.savings-message {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: var(--color-bg-secondary);
    font-weight: 700;
    color: var(--color-text-primary);
}

.comparison-table th.traditional {
    color: var(--color-neon-red);
}

.comparison-table th.savings-club {
    color: var(--color-neon-green);
}

.highlight-row {
    background: rgba(255, 215, 0, 0.1);
}

.loss {
    color: var(--color-neon-red);
    font-weight: 700;
}

.savings {
    color: var(--color-neon-green);
    font-weight: 700;
}

.comparison-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-style: italic;
    font-size: 1.125rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(255, 215, 0, 0.1));
    border-top: 2px solid var(--color-neon-yellow);
    border-bottom: 2px solid var(--color-neon-yellow);
}

.attention {
    color: var(--color-neon-red);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.urgency-item {
    text-align: center;
}

.urgency-item .label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.urgency-item .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-neon-yellow);
    text-shadow: var(--shadow-neon-yellow);
}

.countdown {
    font-family: monospace;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-neon-blue);
}

.faq-question {
    color: var(--color-neon-blue);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.faq-answer {
    color: var(--color-text-secondary);
}

/* Final CTA */
.final-cta {
    background: var(--color-bg-secondary);
    text-align: center;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.choice-card {
    padding: var(--space-xl);
    border-radius: 12px;
    border: 2px solid transparent;
}

.choice-card.bad {
    background: rgba(255, 0, 102, 0.1);
    border-color: var(--color-neon-red);
}

.choice-card.good {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--color-neon-green);
}

.choice-card h3 {
    color: inherit;
    margin-bottom: var(--space-md);
}

.final-cta-button {
    margin-top: var(--space-2xl);
}

.cta-reminder {
    margin-top: var(--space-md);
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Footer */
.footer {
    background: var(--color-bg-primary);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    width: 150px;
    margin-bottom: var(--space-md);
}

.footer p {
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
}

.footer-security {
    color: var(--color-text-muted);
}

/* Modal and Popup Styles */
.popup-overlay,
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
}

.popup-content,
.modal-content {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    background: var(--color-bg-card);
    border: 2px solid var(--color-neon-blue);
    border-radius: 16px;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-neon-blue);
}

.popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.popup-close:hover {
    color: var(--color-neon-red);
}

.popup-title,
.modal-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-neon-yellow);
}

.popup-text,
.modal-subtitle {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.popup-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neon-blue);
    margin-bottom: var(--space-md);
}

/* Upsell Styles */
.upsell-offer {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--color-neon-yellow);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-top: var(--space-xl);
}

.upsell-description {
    margin-bottom: var(--space-md);
}

.upsell-benefits {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.upsell-benefits li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
}

.upsell-benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-neon-green);
}

.upsell-price {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.original-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.special-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: var(--space-sm) 0;
}

.price-highlight {
    color: var(--color-neon-yellow);
    text-shadow: var(--shadow-neon-yellow);
    font-size: 2rem;
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix container padding on mobile */
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Fix section padding on mobile */
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pain-grid,
    .method-grid,
    .founders-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    /* Fix card paddings on mobile */
    .pain-card,
    .method-card,
    .step-card,
    .faq-item,
    .calculator-form {
        padding: var(--space-lg);
    }
    
    .results-comparison {
        grid-template-columns: 1fr;
    }
    
    .urgency-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--space-sm);
    }
    
    .popup-content,
    .modal-content {
        margin: 20px;
        padding: var(--space-lg);
        width: calc(100% - 40px);
    }
    
    /* Fix hero padding */
    .hero {
        padding: var(--space-2xl) 0;
        min-height: auto;
    }
    
    /* Fix comparison table */
    .comparison-table-container {
        margin: 0 calc(-1 * var(--space-md));
        padding: 0 var(--space-md);
    }
    
    /* Fix urgency stats */
    .urgency-item .value {
        font-size: 1.5rem;
    }
    
    /* Ensure full width sections */
    body {
        overflow-x: hidden;
    }
    
    /* Fix button sizes on mobile */
    .btn-xl {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid transparent;
    border-top-color: var(--color-neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Stripe Buy Button Styling */
.upsell-actions stripe-buy-button {
    display: block;
    width: 100%;
    margin-bottom: var(--space-md);
}

/* Custom Stripe button styles commented out to ensure functionality */
/*
stripe-buy-button::part(button) {
    background: var(--color-neon-blue) !important;
    color: var(--color-bg) !important;
    font-family: inherit !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    padding: var(--space-md) var(--space-xl) !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

stripe-buy-button::part(button):hover {
    background: var(--color-neon-blue-glow) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px var(--color-neon-blue-glow) !important;
}
*/

/* Promotion CTA Styles */
.promotion-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 217, 255, 0.2));
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid var(--color-neon-blue);
}

.promotion-title {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.promotion-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.promotion-urgency {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.promotion-btn {
    background: linear-gradient(135deg, var(--color-neon-blue), #00a8cc);
    color: var(--color-bg-primary);
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.promotion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

/* Mobile styles for promotion CTA */
@media (max-width: 768px) {
    .promotion-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .promotion-title {
        font-size: 1.75rem;
    }
    
    .promotion-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .promotion-urgency {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .promotion-btn {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

