/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --gold-primary: #B8860B;
    --gold-light: #DAA520;
    --gold-dark: #8B6914;
    --navy-blue: #1E3A8A;
    --navy-dark: #0F1F4D;
    --red-accent: #DC2626;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 100%);
    color: var(--white);
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 10 L90 90 L10 90 Z" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    opacity: 0.1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.4),
        inset 0 -10px 30px rgba(0, 0, 0, 0.3),
        inset 0 10px 30px rgba(255, 255, 255, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.token-shine {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

.token-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: var(--navy-dark);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-box {
    background: var(--red-accent);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.urgency-icon {
    font-size: 32px;
}

.urgency-text {
    font-size: 15px;
    line-height: 1.4;
}

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: var(--navy-dark);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.6);
}

.cta-secondary {
    background: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--gold-primary);
}

.cta-secondary:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-large {
    font-size: 22px;
    padding: 22px 50px;
}

.guarantee-badge {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.guarantee-icon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 8px;
}

/* ===================================
   COUNTDOWN TIMER
   =================================== */
.countdown-section {
    background: var(--red-accent);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.time-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.time-label {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
    font-family: var(--font-body);
}

.time-separator {
    font-size: 48px;
    font-weight: 900;
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 42px);
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.benefit-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray-700);
    margin-top: -30px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-featured {
    border: 3px solid var(--gold-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.pricing-subtitle-card {
    color: var(--gray-700);
    font-size: 16px;
    margin-bottom: 20px;
}

.pricing-price {
    margin: 20px 0;
    color: var(--navy-dark);
}

.price-currency {
    font-size: 32px;
    vertical-align: top;
    font-weight: 700;
}

.price-amount {
    font-size: 64px;
    font-weight: 900;
    font-family: var(--font-heading);
}

.price-period {
    font-size: 32px;
    font-weight: 700;
}

.savings-badge {
    background: var(--red-accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin: 15px 0;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: 20px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--gold-primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--gray-900);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
}

.verified {
    color: #059669;
    font-size: 13px;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */
.guarantee-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 100%);
    color: var(--white);
    text-align: center;
}

.guarantee-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 18px;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
}

.guarantee-subtext {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 15px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: var(--section-padding);
    background: var(--white);
    text-align: center;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.final-cta-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 40px;
}

.final-cta-box {
    background: var(--gray-50);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.final-cta-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-point {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 500;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 16px;
    color: var(--red-accent);
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-200);
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-clickbank {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 20px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .token-placeholder {
        width: 250px;
        height: 250px;
    }

    .token-text {
        font-size: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .final-cta-points {
        grid-template-columns: 1fr;
    }

    .time-number {
        font-size: 36px;
    }

    .time-separator {
        font-size: 36px;
    }
}