:root {
    --primary-color: #2563EB; /* Bright Blue */
    --primary-hover: #1D4ED8;
    --secondary-color: #3B82F6; /* Lighter Blue */
    --accent-color: #FFC107; /* Yellow/Gold for accents and stars */
    --text-main: #1E293B;
    --text-light: #475569;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --shadow-soft: 0 10px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(37, 99, 235, 0.1);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --radius-lg: 16px;
    --radius-md: 12px;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 400px;
}

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

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #E0F2FE 0%, #FFFFFF 100%);
    padding: 80px 0 0 0;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-pricing {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.price-only {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #16A34A; /* Green for positive pricing feel */
    line-height: 1;
}

.price-delivery {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

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

.image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: white;
    box-shadow: var(--shadow-soft);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    display: block;
}

.wave-bottom {
    position: relative;
    bottom: -5px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

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

.wave-bottom .shape-fill {
    fill: #FFFFFF;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 20px;
    font-weight: 800;
}

.problem-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: #DBEAFE;
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

/* What's Inside */
.whats-inside {
    padding: 80px 0;
    background-color: #F0F9FF; /* Very light blue */
}

.features-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.check-icon {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.1rem;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.offer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 50px 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.offer-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.offer-box > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price-tag {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 15px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.security-text {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.offer-box .cta-button {
    background: #FFC107; /* Yellow CTA on Blue Background */
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.offer-box .cta-button:hover {
    background: #FFD54F;
    box-shadow: 0 15px 25px rgba(255, 193, 7, 0.4);
}

.guarantee {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 15px;
    background: rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 12px;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #DBEAFE;
    font-family: serif;
    line-height: 1;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background: white;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #F1F5F9;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-header.active::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-pricing {
        align-items: center;
    }
    
    .benefits-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .amount {
        font-size: 4rem;
    }
}
