/* ============================================
   APOLLO VIP - STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0D1B2A;
    color: #e5e7eb;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    color: #F59E0B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF9500;
}

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

.strikethrough {
    text-decoration: line-through;
    color: #9ca3af;
}

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

/* STICKY HEADER */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a3a57;
    z-index: 50;
    padding: 1rem;
    display: none;
}

.sticky-header.show {
    display: block;
}

.sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-timer {
    text-align: center;
}

.timer-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.timer-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #F59E0B;
    font-family: 'Courier New', monospace;
}

.sticky-cta {
    background-color: #00C853;
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-cta:hover {
    background-color: #00a844;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 1rem 1rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.urgency-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: #2a3a57;
    border: 1px solid #F59E0B;
    border-radius: 9999px;
}

.urgency-badge span {
    color: #FF9500;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.price-section {
    margin-bottom: 2rem;
}

.price {
    font-size: clamp(2.25rem, 8vw, 3.75rem);
    font-weight: 800;
    color: #FF9500;
    margin-bottom: 0.5rem;
}

.price-subtext {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* BUTTONS */
.cta-button {
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button.primary {
    background-color: #00C853;
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background-color: #00a844;
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.6);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #e5e7eb;
    border: 2px solid #4b5563;
}

.cta-button.secondary:hover {
    border-color: #F59E0B;
    color: #F59E0B;
}

.cta-button.full-width {
    width: 100%;
}

.button-subtext {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* COUNTDOWN SECTION */
.countdown-section {
    padding: 2rem 1rem;
    background-color: #0D1B2A;
}

.countdown-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.timer-display {
    background: linear-gradient(135deg, #FF3B30 0%, #FF9500 100%);
    padding: 0.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.timer-text {
    background-color: #0D1B2A;
    padding: 2rem 3rem;
    border-radius: 1rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #FF3B30;
    font-family: 'Courier New', monospace;
}

.timer-message {
    font-size: 1rem;
    color: #d1d5db;
    margin-top: 1rem;
}

/* SECTIONS */
.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 1rem;
    background-color: #0D1B2A;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.25rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #d1d5db;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: #1a2847;
    border: 1px solid #2a3a57;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #F59E0B;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F59E0B;
}

.testimonial-header h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.stars {
    color: #F59E0B;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    background-color: #1a2847;
    border: 1px solid #2a3a57;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #F59E0B;
    background-color: rgba(245, 158, 11, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-box p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* TABLE */
.table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a2847;
    border-radius: 0.75rem;
    overflow: hidden;
}

.comparison-table thead {
    background-color: #2a3a57;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid #3a4a67;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #2a3a57;
    color: #d1d5db;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: rgba(245, 158, 11, 0.05);
}

.comparison-table strong {
    color: #F59E0B;
}

/* GUARANTEE */
.guarantee-card {
    background-color: #1a2847;
    border: 1px solid #2a3a57;
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-card h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.guarantee-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* CHOICES */
.choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.choice-card {
    background-color: #1a2847;
    border: 2px solid #2a3a57;
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.choice-card.recommended {
    border-color: #F59E0B;
    background: linear-gradient(135deg, #1a2847 0%, rgba(245, 158, 11, 0.05) 100%);
}

.choice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.choice-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background-color: #F59E0B;
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.choice-badge.limited {
    background-color: #6b7280;
    color: #fff;
}

.choice-card h3 {
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.choice-features {
    list-style: none;
    margin-bottom: 2rem;
}

.choice-features li {
    color: #d1d5db;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.choice-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: 700;
}

/* FOOTER */
.footer {
    background-color: #0a1118;
    border-top: 1px solid #2a3a57;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F59E0B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a3a57;
    color: #6b7280;
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sticky-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sticky-cta {
        width: 100%;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .timer-text {
        padding: 1.5rem 2rem;
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-card {
        padding: 2rem 1.5rem;
    }

    .guarantee-card h2 {
        font-size: 1.5rem;
    }

    .choices-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .timer-text {
        padding: 1rem 1.5rem;
        font-size: 1.75rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
