:root {
    --brand-primary: #25D366;
    --brand-dark: #075E54;
    --brand-deep: #128C7E;
    --ink: #0b141a;
    --ink-soft: #4a5568;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
    scroll-behavior: smooth;
}

.text-brand { color: var(--brand-primary) !important; }
.bg-brand { background: var(--brand-primary) !important; }
.btn-brand {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    font-weight: 600;
}
.btn-brand:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.btn-outline-brand {
    border: 1.5px solid var(--brand-primary);
    color: var(--brand-dark);
    font-weight: 600;
}
.btn-outline-brand:hover { background: var(--brand-primary); color: #fff; }

/* ---- Navbar ---- */
.home-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.home-navbar .nav-link {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
}
.home-navbar .nav-link:hover { color: var(--brand-dark); }

/* ---- Hero ---- */
.hero-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 211, 102, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 85% 10%, rgba(7, 94, 84, 0.08) 0%, transparent 45%),
        #fbfdfc;
    padding: 6rem 0 4rem;
}
.hero-badge {
    background: rgba(37, 211, 102, 0.12);
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero-visual {
    background: linear-gradient(145deg, #0b141a 0%, #111b21 55%, var(--brand-dark) 100%);
    border-radius: 28px;
    box-shadow: 0 30px 60px -20px rgba(7, 94, 84, 0.35);
    padding: 2.5rem;
}

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section-alt { background: #f8fafc; }
.section-eyebrow {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section-title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* ---- Feature cards ---- */
.feature-card {
    background: #fff;
    border: 1px solid #eef1f0;
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -24px rgba(11, 20, 26, 0.25);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ---- Steps ---- */
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- Pricing ---- */
.pricing-card {
    background: #fff;
    border: 1.5px solid #eef1f0;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card.featured {
    border-color: var(--brand-primary);
    box-shadow: 0 24px 48px -28px rgba(37, 211, 102, 0.45);
    position: relative;
}
.pricing-card .price-amount {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}
.pricing-feature-list { list-style: none; padding: 0; margin: 0; }
.pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.pricing-feature-list i { color: var(--brand-primary); margin-top: 0.15rem; }

/* ---- FAQ ---- */
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #eef1f0;
    background: transparent;
}
.faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    padding: 1.25rem 0.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--brand-dark); }
.faq-accordion .accordion-button::after { filter: hue-rotate(70deg) saturate(3); }
.faq-accordion .accordion-body { color: var(--ink-soft); padding: 0 0.5rem 1.25rem; }

/* ---- Contact ---- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- Footer ---- */
.home-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
}
.home-footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.home-footer a:hover { color: #fff; }
.home-footer h6 { color: #fff; font-weight: 700; }

@media (max-width: 767px) {
    .hero-section { padding: 3rem 0 2.5rem; text-align: center; }
    .section { padding: 3.5rem 0; }
}
