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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(to bottom, #ffffff 0%, #fef2f2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(to right, #b18000, #fbbf24, #b18000);
    text-align: center;
    padding: 0.75rem 1rem;
}

.top-banner p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(136deg, #380065 0%, #b32cfe 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 56rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-golden {
    background: #fbbf24;
    color: #111827;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    opacity: 0.95;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

/* Main Offer Section */
.main-offer {
    padding: 3rem 1rem;
}

.offer-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.offer-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fd4ddc;
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.offer-bonus {
    font-size: 1rem;
    color: #737373;
}

/* Pricing Card */
.pricing-card {
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border: 2px solid #fbcfe8;
    border-radius: 1rem;
    box-shadow: 0 20px 60px -15px rgba(225, 29, 72, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-label {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-weight: 700;
    margin: 0;
}

.price-strikethrough {
    font-size: 2rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-main {
    font-size: 3rem;
    color: #fd4ddc;
}

.price-arrow {
    font-size: 2.5rem;
    color: #fd4ddc;
}

.badge-savings {
    background: #22c55e;
    color: white;
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
}

/* Features List */
.features-list {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.checkmark {
    color: #22c55e;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Subscription Terms */
.subscription-terms {
    font-size: 0.75rem;
    color: #737373;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, #ff23d1, #6a0db4);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(225, 29, 72, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(to right, #ff23d1, #6a0db4);
    box-shadow: 0 15px 40px -10px rgba(225, 29, 72, 0.5);
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: #737373;
    font-size: 0.875rem;
    text-decoration: underline;
    padding: 0.5rem;
}

.btn-decline:hover {
    color: #1a1a1a;
}

.guarantee {
    font-size: 0.75rem;
    color: #737373;
    text-align: center;
    margin-top: 1rem;
}

/* Availability Note */
.availability-note {
    text-align: center;
    font-size: 0.875rem;
    color: #737373;
    margin-top: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbcfe8;
}

.separator {
    color: #4b5563;
}

.footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 1.5rem;
}

.footer-legal {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .top-banner p {
        font-size: 1rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .main-offer {
        padding: 4rem 1rem;
    }

    .offer-header h2 {
        font-size: 2.5rem;
    }

