@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Quicksand:wght@400;500;700&family=Inter:wght@400;600&display=swap');

:root {
    --primary-blue: #2196F3;
    --light-blue: #E3F2FD;
    --sunny-yellow: #FFEB3B;
    --light-yellow: #FFF9C4;
    --friendly-green: #4CAF50;
    --light-green: #E8F5E9;
    --accent-orange: #FF9800;
    --text-dark: #333333;
    --text-light: #757575;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--light-yellow);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero .badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.hero p.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-visual {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--friendly-green);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.5);
    background: #43A047;
}

.cta-subtext {
    display: block;
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--text-light);
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Features/What is inside */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 5px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card.blue {
    border-color: var(--primary-blue);
}

.feature-card.yellow {
    border-color: var(--sunny-yellow);
}

.feature-card.green {
    border-color: var(--friendly-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}


/* Bonus Section */
.bonus-section {
    background-color: var(--light-blue);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.bonus-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
}

.bonus-card h4 {
    margin: 15px 0 10px;
    color: var(--primary-blue);
}

.bonus-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* New Pricing Card Style */
.pricing {
    background: #0a111a;
    padding: 100px 0;
}

.pricing-card-premium {
    background: #141e2b;
    border: 2px solid #2563eb;
    border-radius: 30px;
    max-width: 550px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
    color: white;
}

.pricing-card-premium h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.pricing-card-premium .price-tag {
    font-size: 5rem;
    font-weight: 800;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: 'Quicksand', sans-serif;
}

.pricing-card-premium .price-tag small {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 5px;
    color: #94a3b8;
}

.pricing-card-premium .price-info {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.benefit-list {
    text-align: left;
    max-width: 380px;
    margin: 0 auto 40px;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.benefit-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card-premium .cta-button {
    width: 100%;
    background: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    padding: 22px;
    font-size: 1.2rem;
}

.pricing-card-premium .cta-button:hover {
    background: #1d4ed8;
    transform: scale(1.02);
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    color: #64748b;
    font-size: 0.95rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.price-mockup {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--friendly-green);
    margin: 10px 0;
    font-family: 'Quicksand', sans-serif;
}

.price-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Guarantee */
.guarantee {
    text-align: center;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed #ddd;
}

.guarantee-box img {
    width: 150px;
}

.guarantee-text {
    text-align: left;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: #f5f5f5;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 50px 0;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-text {
        text-align: center;
    }
}