/* CSS Variables for Theme */
:root {
    --primary: #4F46E5;       /* Indigo */
    --primary-light: #6366F1;
    --primary-dark: #3730A3;
    --secondary: #06B6D4;     /* Cyan */
    --cta: #F59E0B;           /* Amber */
    --cta-hover: #D97706;
    --text-main: #1E293B;     /* Slate */
    --text-muted: #475569;
    --bg-main: #F8FAFC;       /* Very light gray */
    --bg-card: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; font-family: var(--font-body); font-weight: 600; }

a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { background-color: #F1F5F9; }

/* Highlight styling */
.highlight {
    color: var(--cta);
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(245, 158, 11, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    position: relative;
    padding: 4rem 0 8rem 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.hero-content .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: var(--bg-main);
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: #FFFFFF;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
}

.btn-large {
    width: 100%;
    font-size: 1.3rem;
    padding: 1.5rem;
}

.secure-payment {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secure-payment i {
    color: #10B981; /* Emerald green */
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section-header.text-white p, .section-header.text-white h2 {
    color: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}

/* Ideal For */
.ideal-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ideal-image {
    flex: 1;
}

.ideal-content {
    flex: 1;
}

.rounded-img {
    border-radius: 20px;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.check-list i {
    color: #10B981;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

/* Achieve */
.achieve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achieve-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.achieve-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(79, 70, 229, 0.05);
    line-height: 1;
}

/* Bonuses */
.bonuses {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.glass-effect h3 {
    color: white;
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.bonus-img {
    height: 180px;
    margin: 0 auto 1.5rem auto;
    object-fit: contain;
}

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

.testimonial-img {
    border-radius: 20px;
    width: 100%;
}

/* Checkout Section */
.checkout-box {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.checkout-author {
    flex: 1;
    min-width: 300px;
}

.checkout-offer {
    flex: 1.5;
    min-width: 300px;
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 20px;
    border: 2px dashed #CBD5E1;
    text-align: center;
}

.price-container {
    margin: 2rem 0;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

.payment-img {
    max-height: 40px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #1E293B;
    color: #94A3B8;
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.important-notice {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.important-notice h4 {
    color: #F87171;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .ideal-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .checkout-box {
        padding: 2rem;
        gap: 2rem;
    }
    
    .checkout-offer {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
}
