
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green:       #4cd080;
    --green-dark:  #3ea060;
    --green-dim:   #3a9d63;
    --green-pale:  #f0fdf4;
    --green-soft:  #e6f9f0;
    --red-soft:    #fff1f0;
    --red-accent:  #ff4d4f;
    --text-dark:   #1a202c;
    --text-mid:    #4a5568;
    --text-light:  #718096;
    --bg:          #f7fafc;
    --white:       #ffffff;
    --shadow-sm:   0 2px 8px rgba(0,0,0,.05);
    --shadow-md:   0 6px 24px rgba(0,0,0,.09);
    --shadow-lg:   0 16px 48px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

/* ───── HELPERS ───── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

.btn {
    display: inline-block;
    padding: .875rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
}
.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(76,208,128,.35);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,208,128,.4); }
.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white {
    background: #fff;
    color: var(--green-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-xl { padding: 1.125rem 2.5rem; font-size: 1.125rem; border-radius: 12px; }

/* ───── SCROLL ANIMATION ───── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
    NAV
═══════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; list-style: none; gap: 2.25rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
@media (max-width: 960px) { .nav-cta-btn { display: none !important; } }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }

.nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 899;
}

/* ═══════════════════════════════════════
    1. HOOK / HERO
═══════════════════════════════════════ */
.hero {
    padding: 136px 1.5rem 80px;
    background: linear-gradient(160deg, #fff 0%, var(--green-soft) 100%);
    position: relative; overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute; bottom: -40%; right: -8%;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(76,208,128,.14) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; border: 1px solid rgba(76,208,128,.3);
    padding: .45rem 1rem; border-radius: 50px;
    font-size: .8rem; font-weight: 700; color: var(--green-dim);
    text-transform: uppercase; letter-spacing: .07em;
    margin-bottom: 1.25rem; box-shadow: var(--shadow-sm);
}
.eyebrow-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 {
    font-size: 3rem; font-weight: 800; line-height: 1.18;
    color: var(--text-dark); margin-bottom: 1.25rem;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--green), var(--green-dim));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.175rem; color: var(--text-mid);
    line-height: 1.75; margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

/* hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-wrap {
    position: relative; width: 260px;
    filter: drop-shadow(0 28px 56px rgba(0,0,0,.16));
}
.phone-shell {
    width: 260px; height: 520px;
    background: #fff; border-radius: 38px; padding: 10px;
    position: relative;
}
.phone-shell-img {
    width: 260px; height: 520px;
    object-fit: cover; border-radius: 38px;
    display: block;
}
.phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 30px; overflow: hidden;
    display: flex; flex-direction: column; padding: 1.75rem 1.25rem;
    position: relative;
}
.phone-screen::before {
    content: ''; position: absolute; top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 3px;
    background: rgba(255,255,255,.3); border-radius: 2px;
}
.ps-greeting { color: rgba(255,255,255,.85); font-size: .8rem; margin-top: 1.75rem; }
.ps-hi { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.ps-balance-label { color: rgba(255,255,255,.75); font-size: .75rem; }
.ps-balance { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.ps-row { display: flex; gap: .625rem; margin-bottom: .625rem; }
.ps-card {
    flex: 1; background: rgba(255,255,255,.18); border-radius: 10px;
    padding: .75rem; color: #fff;
}
.ps-card-label { font-size: .65rem; opacity: .8; margin-bottom: .2rem; }
.ps-card-val { font-size: .9rem; font-weight: 700; }

.phone-badge {
    position: absolute; background: #fff;
    border-radius: 12px; padding: .75rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: .6rem;
    white-space: nowrap;
}
.phone-badge-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dim));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.phone-badge-text { font-size: .78rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.phone-badge-sub { font-size: .68rem; color: var(--text-light); }
.phone-badge-1 { top: 8%; right: -22%; animation: float 3.2s ease-in-out infinite; }
.phone-badge-2 { bottom: 14%; left: -22%; animation: float 3.2s ease-in-out .9s infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ═══════════════════════════════════════
    SECTION LABEL
═══════════════════════════════════════ */
.sec-label {
    display: inline-block;
    font-size: .75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    padding: .35rem .9rem; border-radius: 50px;
    margin-bottom: .875rem;
}
.sec-label-red   { background: var(--red-soft);    color: var(--red-accent); }
.sec-label-green { background: rgba(76,208,128,.12); color: var(--green-dim); }

.sec-title {
    font-size: 2.25rem; font-weight: 800;
    color: var(--text-dark); line-height: 1.22;
    margin-bottom: .875rem;
}
.sec-desc {
    font-size: 1.1rem; color: var(--text-mid); line-height: 1.75;
    max-width: 640px;
}
.sec-desc.center { margin: 0 auto; }

/* ═══════════════════════════════════════
    2. MASALAH — Problem
═══════════════════════════════════════ */
.section-problem {
    padding: 6rem 1.5rem;
    background: var(--bg);
}
.problem-header { text-align: center; margin-bottom: 3.5rem; }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.prob-card {
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(255,77,79,.15);
    padding: 2rem;
    transition: all .3s;
}
.prob-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(255,77,79,.4); }
.prob-num {
    font-size: 2.5rem; font-weight: 800;
    color: rgba(255,77,79,.15); line-height: 1;
    margin-bottom: .5rem;
}
.prob-icon {
    width: 36px; height: 36px; margin-bottom: .875rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--red-accent);
}
.prob-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.prob-card p  { font-size: .95rem; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════════════════════════
    3. FRUSTRASI — Emotional amplifier
═══════════════════════════════════════ */
.section-frustration {
    padding: 6rem 1.5rem;
    background: linear-gradient(160deg, #1a202c 0%, #2d3748 100%);
    position: relative; overflow: hidden;
}
.section-frustration::before {
    content: ''; position: absolute;
    top: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,77,79,.08) 0%, transparent 70%);
    border-radius: 50%;
}
.frust-inner {
    position: relative; z-index: 2;
    max-width: 820px; margin: 0 auto; text-align: center;
}
.frust-quote {
    font-size: 1.6rem; font-weight: 700;
    color: #fff; line-height: 1.5;
    margin-bottom: 2rem;
}
.frust-quote span { color: var(--green); }
.frust-body {
    font-size: 1.1rem; color: rgba(255,255,255,.72);
    line-height: 1.8; margin-bottom: 2.5rem;
}
.frust-body strong { color: rgba(255,255,255,.92); }
.frust-pains {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
}
.pain-tag {
    background: rgba(255,77,79,.15);
    border: 1px solid rgba(255,77,79,.3);
    color: #ff7875;
    padding: .5rem 1.1rem;
    border-radius: 50px;
    font-size: .875rem; font-weight: 600;
}

/* ═══════════════════════════════════════
    4. HARAPAN — Hope
═══════════════════════════════════════ */
.section-hope {
    padding: 6rem 1.5rem;
    background: linear-gradient(160deg, var(--green-pale) 0%, var(--green-soft) 100%);
}
.hope-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hope-tagline {
    font-size: 2rem; font-weight: 800;
    color: var(--text-dark); line-height: 1.35;
    margin-bottom: 1.25rem;
}
.hope-tagline em {
    font-style: normal; color: var(--green-dark);
    border-bottom: 3px solid var(--green);
}
.hope-body {
    font-size: 1.125rem; color: var(--text-mid);
    line-height: 1.8; margin-bottom: 2.5rem;
}
.hope-checklist {
    list-style: none;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; text-align: left; margin-bottom: 2.5rem;
}
.hope-checklist li {
    display: flex; align-items: flex-start; gap: .75rem;
    background: #fff; border-radius: 12px;
    padding: 1.125rem 1.25rem;
    box-shadow: var(--shadow-sm);
    font-size: .975rem; color: var(--text-dark); font-weight: 500;
}
.hope-check {
    width: 22px; height: 22px; flex-shrink: 0;
    background: var(--green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .65rem; font-weight: 800;
    margin-top: .1rem;
}

/* ═══════════════════════════════════════
    5. SOLUSI — Solution + Features
═══════════════════════════════════════ */
.section-solution {
    padding: 6rem 1.5rem;
    background: #fff;
}
.solution-header { text-align: center; margin-bottom: 4rem; }
.solution-intro {
    font-size: 1.125rem; color: var(--text-mid);
    line-height: 1.75; max-width: 640px; margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.feat-card {
    background: var(--bg); border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 2px solid transparent;
    transition: all .3s;
    position: relative; overflow: hidden;
}
.feat-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-dim));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.feat-card:hover { background: #fff; border-color: rgba(76,208,128,.35); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--green), var(--green-dim));
    border-radius: 13px; display: flex; align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(76,208,128,.25);
}
.feat-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .625rem; }
.feat-card p  { font-size: .925rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
.feat-tagline {
    font-size: .82rem; font-weight: 700;
    color: var(--green-dim);
    background: rgba(76,208,128,.1);
    border-left: 3px solid var(--green);
    padding: .4rem .75rem;
    border-radius: 0 6px 6px 0;
}

/* ═══════════════════════════════════════
    DIVIDER CTA
═══════════════════════════════════════ */
.divider-cta {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 3.5rem 1.5rem;
    text-align: center; position: relative; overflow: hidden;
}
.divider-cta::before {
    content: '';
    position: absolute; top: -60%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    border-radius: 50%;
}
.divider-cta-inner { position: relative; z-index: 2; }
.divider-cta h3 { font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.divider-cta p  { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════
    7. AMAN — Safety & Trust
═══════════════════════════════════════ */
.section-trust {
    padding: 6rem 1.5rem;
    background: linear-gradient(160deg, #1a202c 0%, #2d3748 100%);
    position: relative; overflow: hidden;
}
.section-trust::before {
    content: '';
    position: absolute; bottom: -30%; right: -8%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(76,208,128,.1) 0%, transparent 68%);
    border-radius: 50%;
}
.trust-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.trust-content .sec-title { color: #fff; }
.trust-content .sec-desc  { color: rgba(255,255,255,.7); }
.trust-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.trust-list li {
    display: flex; align-items: flex-start; gap: .875rem;
    color: rgba(255,255,255,.85); font-size: .975rem; line-height: 1.6;
}
.trust-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(76,208,128,.2); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-right { display: flex; flex-direction: column; gap: 1.25rem; }
.trust-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: 1.5rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: all .3s;
}
.trust-card:hover { background: rgba(255,255,255,.12); }
.trust-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(76,208,128,.25); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
}
.trust-card-icon svg { width: 22px; height: 22px; }
.feat-icon svg { width: 24px; height: 24px; stroke: #fff; }
.prob-icon svg { width: 28px; height: 28px; }
.trust-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.trust-card p  { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* FAQ */
.faq-wrap { margin-top: 2rem; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.faq-q {
    width: 100%; background: none; border: none;
    text-align: left; cursor: pointer;
    padding: 1.25rem 0;
    color: rgba(255,255,255,.88); font-size: 1rem; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; font-family: inherit;
}
.faq-q::after {
    content: '+'; font-size: 1.4rem; font-weight: 700;
    color: var(--green); flex-shrink: 0;
    transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
}
.faq-a-inner {
    padding-bottom: 1.25rem;
    color: rgba(255,255,255,.62); font-size: .95rem; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ═══════════════════════════════════════
    8. CTA — Final
═══════════════════════════════════════ */
.section-cta {
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute; top: -50%; left: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    border-radius: 50%;
}
.section-cta::after {
    content: '';
    position: absolute; bottom: -40%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,0,0,.12) 0%, transparent 68%);
    border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.2); color: #fff;
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; padding: .4rem 1rem;
    border-radius: 50px; margin-bottom: 1.25rem;
}
.cta-h { font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1.22; margin-bottom: 1rem; }
.cta-sub { font-size: 1.15rem; color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: 2.25rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-guarantees {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 1.5rem;
}
.cta-guar {
    display: flex; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.88); font-size: .875rem; font-weight: 500;
}
.cta-guar-icon { font-size: 1.1rem; }

/* ═══════════════════════════════════════
    FOOTER
═══════════════════════════════════════ */
.footer {
    background: #111827;
    color: rgba(255,255,255,.7);
}
.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-logo { height: 32px; }
.footer-contacts {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.footer-contact-link {
    color: rgba(255,255,255,.55);
    font-size: .875rem;
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-link:hover { color: var(--green); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.5rem; text-align: center;
    font-size: .825rem; color: rgba(255,255,255,.45);
}

@media (max-width: 600px) {
    .footer-main-row { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .footer-contacts { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

/* ═══════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero-cta { justify-content: center; }
    .hero-visual { display: none; }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .trust-inner { grid-template-columns: 1fr; gap: 3rem; }
    .phone-badge-1, .phone-badge-2 { display: none; }
    .hope-checklist { grid-template-columns: 1fr; }
    /* Pricing — tablet & mobile: single column, full width */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .pricing-card.featured { transform: none; }
    .section-pricing { padding: 80px 1.5rem; }
}

@media (max-width: 640px) {
    /* Hero */
    .hero { padding: 100px 1.25rem 52px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-sub { font-size: 1rem; }
    .hero-eyebrow { font-size: .72rem; text-align: center; white-space: normal; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    /* Section paddings */
    .section-problem    { padding: 4rem 1.25rem; }
    .section-frustration { padding: 4rem 1.25rem; }
    .section-hope       { padding: 4rem 1.25rem; }
    .section-solution   { padding: 4rem 1.25rem; }
    .section-trust      { padding: 4rem 1.25rem; }
    .section-cta        { padding: 4.5rem 1.25rem; }

    /* Typography */
    .frust-quote  { font-size: 1.25rem; }
    .frust-body   { font-size: 1rem; }
    .hope-body    { font-size: 1rem; }
    .solution-intro { font-size: 1rem; }
    .sec-title    { font-size: 1.7rem; }
    .hope-tagline { font-size: 1.45rem; }
    .cta-h        { font-size: 1.85rem; }
    .cta-sub      { font-size: 1rem; }

    /* CTA buttons full width */
    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btns .btn { width: 100%; justify-content: center; }

    /* Grid */
    .problem-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }

    /* Pricing — horizontal scroll */
    .section-pricing { padding: 4rem 0; }
    .section-pricing > .container > div:first-child { padding: 0 1.25rem; }
    .pricing-scroll-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 1rem 1.25rem 1.5rem;
        margin-top: 2rem;
        cursor: grab;
    }
    .pricing-scroll-wrap:active { cursor: grabbing; }
    .pricing-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        width: max-content;
        margin-top: 0;
    }
    .pricing-card {
        width: 82vw;
        max-width: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 1.75rem 1.5rem 1.5rem;
    }
    .pricing-card.featured { transform: none; margin-top: 0; }
    .pricing-price { font-size: 2rem; }
    .pricing-features li { font-size: .9rem; }
    .pricing-note {
        display: flex;
        flex-direction: column;
        gap: .4rem;
        align-items: center;
        padding: 0 1.25rem;
    }
    .pricing-note .dot { display: none; }
}

/* ═══════════════════════════════════════
    PRICING
═══════════════════════════════════════ */
.section-pricing {
    padding: 100px 0;
    background: #fff;
}
.section-pricing .sec-title { color: var(--text-dark); }
.section-pricing .sec-desc  { color: var(--text-mid); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem 2rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(76,208,128,.22);
    transform: translateY(-8px);
    position: relative;
}

.pricing-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.pricing-coming-soon {
    position: absolute;
    top: 14px; right: -28px;
    background: var(--text-mid);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .3rem 2.5rem;
    transform: rotate(45deg);
}

.pricing-tier {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: .5rem;
}
.pricing-card.featured .pricing-tier { color: var(--green-dark); }

.pricing-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}
.pricing-period {
    font-size: .875rem;
    color: var(--text-light);
    margin-top: .2rem;
    margin-bottom: .75rem;
}
.pricing-desc {
    font-size: .9rem;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}
.pricing-divider {
    height: 1px;
    background: rgba(0,0,0,.08);
    margin: 0 0 1.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}
.pricing-features li {
    font-size: .925rem;
    color: var(--text-mid);
    padding: .4rem 0;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem;
}
.pricing-features li.no {
    color: var(--text-light);
    text-decoration: none;
}
.pricing-features li.no::before {
    content: '✗';
    color: #cbd5e0;
}

.pricing-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    margin-top: 2.5rem;
    font-size: .875rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
    WA FLOATING BUTTON
═══════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: .75rem 1.25rem .75rem .9rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    font-weight: 700;
    font-size: .9rem;
    transition: transform .25s ease, box-shadow .25s ease, opacity .3s ease;
}
.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.wa-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}
@media (max-width: 480px) {
    .wa-float { padding: .85rem; border-radius: 50%; }
    .wa-float-label { display: none; }
}