/* Reset and Variables */
:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --secondary: #10B981;
    --secondary-hover: #059669;
    --accent: #F59E0B;
    --background: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Typography Utilities */
.text-green { color: var(--secondary); }
.text-white { color: #FFFFFF; }
.w-full { width: 100%; }

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary), #047857);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--secondary-hover), #064E3B);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79,70,229,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 64px;
}

.section-title span {
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--background);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    animation: float 6s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, var(--text-main) 0%, #0F172A 100%);
    padding: 100px 0;
    color: white;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.bonus-card p {
    color: #CBD5E1;
    margin-bottom: 24px;
}

.bonus-value {
    font-size: 0.875rem;
    color: #94A3B8;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.bonus-value span {
    text-decoration: line-through;
}

.bonus-value strong {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-left: 8px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--background);
}

.pricing-card {
    background: var(--card-bg);
    max-width: 500px;
    margin: 0 auto;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-card h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.price-original {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.price-original span {
    text-decoration: line-through;
    color: #EF4444;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 500;
}

.guarantee-text {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 48px 0;
    text-align: center;
    font-size: 0.875rem;
}

footer p {
    margin-bottom: 16px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero { padding: 60px 0 80px; }
    .section-title { font-size: 2rem; }
    .pricing-card { padding: 32px 24px; }
    .amount { font-size: 3rem; }
}
