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

:root {
    --green-deep: #0B5E3A;
    --green-mid: #137547;
    --green-bright: #1A9E60;
    --green-light: #D6F0E4;
    --gold: #C9882A;
    --gold-light: #FFF3DC;
    --text-dark: #0E1B14;
    --text-mid: #3A4A41;
    --text-muted: #6B7B72;
    --bg: #F7FAF8;
    --white: #FFFFFF;
    --border: #D4E4DA;
    --radius: 12px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.2;
}

/* ======= TOPBAR ======= */
.topbar {
    background: var(--green-deep);
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 8px 20px;
    letter-spacing: 0.02em;
}
.topbar strong { color: #FFD98E; }

/* ======= NAV ======= */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--green-deep);
}
.logo span { color: var(--gold); }
.nav-cta {
    background: var(--green-bright);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ======= HERO ======= */
.hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, #0D7A4A 60%, #1A9E60 100%);
    color: #fff;
    padding: 70px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-badge::before { content: "✦"; color: #FFD98E; }
.hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero h1 em {
    font-style: normal;
    color: #FFD98E;
}
.hero p {
    font-size: 18px;
    opacity: 0.88;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.pill {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
}
.pill::before { margin-right: 6px; }
.pill-check::before { content: "✓"; color: #7FFFC4; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 4px 20px rgba(201,136,42,0.35);
}
.btn-primary:hover { background: #b5751e; transform: translateY(-2px); }
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* ======= FORM CARD (hero) ======= */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.18);
}
.form-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 6px;
}
.form-card .sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 5px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green-bright); }
.form-group input::placeholder { color: #AAB8B2; }

.btn-submit {
    width: 100%;
    background: var(--green-bright);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 6px;
    box-shadow: 0 4px 16px rgba(26,158,96,0.35);
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
.form-trust {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ======= TRUST BAR ======= */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 5%;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
}
.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ======= SECTION SHARED ======= */
section { padding: 72px 5%; }
.section-label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
}
.section-head { margin-bottom: 48px; }

/* ======= CARDS GRID ======= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.card-icon {
    font-size: 34px;
    margin-bottom: 14px;
    display: block;
}
.card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 8px;
}
.card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.card .tag {
    display: inline-block;
    margin-top: 14px;
    background: var(--green-light);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

/* ======= HOW IT WORKS ======= */
.steps { background: var(--green-deep); color: #fff; }
.steps .section-title { color: #fff; }
.steps .section-sub { color: rgba(255,255,255,0.7); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 48px;
    position: relative;
}
.step {
    padding: 0 24px 0 0;
    position: relative;
}
.step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -6px;
    top: 16px;
    font-size: 24px;
    color: rgba(255,255,255,0.3);
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
}
.step h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}
.step p { font-size: 14px; opacity: 0.75; }

/* ======= TESTIMONIALS ======= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}
.stars { color: #F5A623; font-size: 18px; margin-bottom: 12px; }
.testimonial blockquote {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--green-deep);
}
.author-info strong { font-size: 14px; font-weight: 600; display: block; }
.author-info span { font-size: 12px; color: var(--text-muted); }

/* ======= FAQ ======= */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-q .chevron { font-size: 18px; transition: transform 0.25s; color: var(--green-bright); }
.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .chevron { transform: rotate(180deg); }

/* ======= FINAL CTA ======= */
.final-cta {
    background: linear-gradient(135deg, var(--green-deep), #0F7A4B);
    color: #fff;
    text-align: center;
    padding: 60px 5%;
}
.final-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 42px;
}
.final-cta p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 30px 5%;
    font-size: 13px;
    line-height: 1.8;
}
footer strong { color: rgba(255,255,255,0.85); }

/* ======= SUCCESS ======= */
.success-msg {
    display: none;
    background: var(--green-light);
    border: 1.5px solid var(--green-bright);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.success-msg h4 {
    font-family: 'Sora', sans-serif;
    color: var(--green-deep);
    font-size: 17px;
    margin-bottom: 6px;
}
.success-msg p { font-size: 14px; color: var(--green-mid); }

/* ======= WHATSAPP FLOAT ======= */
.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 200;
    transition: 0.2s;
}
.wpp-float:hover { transform: scale(1.1); }

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    .hero {
    grid-template-columns: 1fr;
    padding: 48px 5% 56px;
    gap: 40px;
    }
    .trust-bar { gap: 20px; }
    .step:not(:last-child)::after { display: none; }
    .steps-grid { gap: 28px; }
}