:root {
    --primary: #009c79;
    /* Emerald Green */
    --primary-dark: #0076bb;
    /* Navy Blue */
    --secondary: #1e293b;
    /* Dark Navy */
    --accent: #38bdf8;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #f1f5f9;
    --emerald-light: #ecfdf5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.5;
}

header {
    background: var(--white);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    text-decoration: none;
}

.phone-top {
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.hero-content li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-content li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
}

.quote-card {
    background: var(--white);
    color: var(--secondary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-card h2 {
    color: var(--primary-dark);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.toggle-group {
    display: flex;
    gap: 1rem;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    background: var(--white);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.submit-btn {
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
}

/* Trust Bar */
.trust-bar {
    padding: 2rem 10%;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.trust-bar p {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

/* Stats Section */
.stats {
    padding: 3rem 10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 10%;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-weight: 700;
    font-style: normal;
}

/* Why Bundle */
.why-bundle {
    padding: 5rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-bundle img {
    width: 100%;
    border-radius: 12px;
}

.benefit-list {
    list-style: none;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
    padding: 5rem 10%;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

/* Footer */
footer {
    padding: 4rem 10%;
    text-align: center;
    background: var(--white);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--primary-dark);
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 900px) {

    .hero,
    .why-bundle,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }
}