*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: #07090f;
    color: #f0f4ff;
    overflow-x: hidden;
    line-height: 1.5;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 480px) { .container { padding: 0 1.25rem; } }

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.i { flex-shrink: 0; display: inline-block; vertical-align: middle; }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: #fff; border: none; border-radius: .85rem;
    padding: .82rem 1.75rem; font-family: inherit;
    font-size: .97rem; font-weight: 700; cursor: pointer;
    text-decoration: none; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 28px rgba(59,130,246,.35);
    white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(59,130,246,.45); color: #fff; }

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
    color: #e0e7ff; border-radius: .85rem;
    padding: .82rem 1.75rem; font-family: inherit;
    font-size: .97rem; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: background .2s, color .2s;
    white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ── Nav ── */
nav.topnav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(7,9,15,.92); border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    padding: .65rem 0;
}
nav.topnav .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: .75rem; min-height: 44px;
}
.nav-logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; flex-shrink: 0; z-index: 102; }
.nav-logo img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.nav-logo span { font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: -.01em; }

.nav-links-desktop {
    display: none; align-items: center; gap: .15rem;
}
@media (min-width: 900px) {
    .nav-links-desktop { display: flex; }
}
.nav-links-desktop a {
    color: rgba(255,255,255,.65); font-weight: 500; font-size: .88rem;
    text-decoration: none; padding: .4rem .75rem; border-radius: .6rem;
    transition: color .2s, background .2s;
}
.nav-links-desktop a:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav-actions {
    display: flex; align-items: center; gap: .5rem; flex-shrink: 0;
}
@media (min-width: 480px) { .nav-actions { gap: .75rem; } }

.nav-link-text {
    color: rgba(255,255,255,.65); font-weight: 500; font-size: .85rem;
    text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-link-text:hover { color: #fff; }
@media (max-width: 479px) {
    .nav-link-text { display: none; }
}

.nav-actions .btn-primary,
.nav-actions .btn-secondary {
    padding: .55rem .9rem; font-size: .8rem;
}
@media (min-width: 480px) {
    .nav-actions .btn-primary,
    .nav-actions .btn-secondary { padding: .6rem 1.15rem; font-size: .88rem; }
}

.nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0; border: none; border-radius: .65rem;
    background: rgba(255,255,255,.08); color: #fff; cursor: pointer;
    transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.14); }
.nav-toggle .i-close { display: none !important; }
.nav-toggle[aria-expanded="true"] .i-menu { display: none !important; }
.nav-toggle[aria-expanded="true"] .i-close { display: inline-block !important; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-drawer {
    position: fixed; inset: 0; z-index: 101; pointer-events: none; visibility: hidden;
}
.nav-drawer.is-open { pointer-events: auto; visibility: visible; }
.nav-drawer-backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,.55);
    opacity: 0; transition: opacity .25s;
}
.nav-drawer.is-open .nav-drawer-backdrop { opacity: 1; }
.nav-drawer-panel {
    position: absolute; top: 0; right: 0; width: min(300px, 88vw); height: 100%;
    background: #0d111c; border-left: 1px solid rgba(255,255,255,.1);
    padding: 5rem 1.25rem 1.5rem;
    display: flex; flex-direction: column; gap: .35rem;
    transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-panel a {
    color: rgba(255,255,255,.85); font-weight: 600; font-size: 1rem;
    text-decoration: none; padding: .85rem 1rem; border-radius: .75rem;
    transition: background .2s;
}
.nav-drawer-panel a:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-drawer-divider {
    height: 1px; background: rgba(255,255,255,.08); margin: .5rem 0;
}
.nav-drawer-cta { margin-top: .75rem; }
.nav-drawer-cta .btn-primary { width: 100%; }

body.nav-open { overflow: hidden; }

/* ── WhatsApp ── */
.wa-float {
    position: fixed; bottom: 1.25rem; right: 1rem; z-index: 99;
    width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
    background: #25d366; box-shadow: 0 6px 20px rgba(37,211,102,.5);
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s, box-shadow .2s; text-decoration: none;
}
@media (min-width: 480px) {
    .wa-float { bottom: 2rem; right: 1.5rem; width: 58px; height: 58px; }
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,.6); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
    display: none;
}
@media (min-width: 768px) {
    .wa-tooltip {
        display: block; position: fixed; bottom: 2rem; right: 5.5rem; z-index: 98;
        background: #fff; color: #1a2648; border-radius: .75rem;
        padding: .55rem 1rem; font-size: .82rem; font-weight: 600;
        box-shadow: 0 4px 16px rgba(0,0,0,.18); white-space: nowrap;
        opacity: 0; pointer-events: none; transition: opacity .2s;
    }
    .wa-float:hover ~ .wa-tooltip { opacity: 1; }
}

/* ── Hero ── */
.hero {
    min-height: 100svh; min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 5.5rem 1rem 4rem; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 7rem 1.25rem 5rem; } }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59,130,246,.22) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 70%, rgba(251,191,36,.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.35);
    border-radius: 999px; padding: .35rem .85rem;
    font-size: .72rem; font-weight: 700; color: #93c5fd;
    letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.25rem;
}
@media (min-width: 480px) { .hero-badge { font-size: .8rem; margin-bottom: 1.5rem; } }
.hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 4.2rem); font-weight: 900;
    line-height: 1.1; letter-spacing: -.03em;
    margin-bottom: 1.1rem; max-width: 820px; padding: 0 .25rem;
}
.hero p.lead {
    font-size: clamp(.95rem, 2.5vw, 1.22rem); color: rgba(224,231,255,.72);
    max-width: 620px; line-height: 1.65; margin-bottom: 2rem; padding: 0 .25rem;
}
.hero-actions {
    display: flex; flex-direction: column; gap: .75rem;
    width: 100%; max-width: 320px;
}
@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row; flex-wrap: wrap; justify-content: center;
        max-width: none; width: auto; gap: 1rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: auto; }
}
.hero-actions .btn-primary,
.hero-actions .btn-secondary { width: 100%; }
.hero-logo {
    width: 72px; height: 72px; border-radius: 18px; object-fit: cover;
    border: 2px solid rgba(255,255,255,.15);
    box-shadow: 0 20px 60px rgba(59,130,246,.25); margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
    .hero-logo { width: 90px; height: 90px; border-radius: 22px; margin-bottom: 2rem; }
}
.hero-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem;
    width: 100%; max-width: 420px; margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 600px) {
    .hero-stats {
        display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
        max-width: none;
    }
}
@media (min-width: 768px) { .hero-stats { margin-top: 4rem; padding-top: 2.5rem; gap: 2.5rem; } }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.65rem; font-weight: 900; color: #fff; display: block; line-height: 1; }
@media (min-width: 480px) { .hero-stat .num { font-size: 2rem; } }
.hero-stat .lbl { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .3rem; font-weight: 500; display: block; }
@media (min-width: 480px) { .hero-stat .lbl { font-size: .78rem; } }

/* ── Sections ── */
section { padding: 3.5rem 0; }
@media (min-width: 768px) { section { padding: 5.5rem 0; } }
.section-label {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .75rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #60a5fa; margin-bottom: .9rem;
}
.section-title {
    font-size: clamp(1.45rem, 5vw, 2.6rem); font-weight: 800;
    line-height: 1.15; letter-spacing: -.025em; margin-bottom: 1rem;
}
.section-subtitle { color: rgba(224,231,255,.6); font-size: clamp(.95rem, 2vw, 1.05rem); line-height: 1.7; max-width: 580px; }
.section-center { text-align: center; }
.section-center .section-label { justify-content: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

.two-col {
    display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
@media (min-width: 900px) {
    .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}

/* ── Features ── */
.features-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem;
}
@media (min-width: 540px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
}
@media (min-width: 900px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
}
.feature-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 1.15rem; padding: 1.4rem 1.25rem;
    transition: border-color .25s, transform .25s, background .25s;
}
@media (min-width: 768px) { .feature-card { padding: 1.6rem 1.5rem; } }
@media (hover: hover) {
    .feature-card:hover { border-color: rgba(96,165,250,.35); background: rgba(255,255,255,.065); transform: translateY(-3px); }
}
.feature-icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.feature-card p { font-size: .86rem; color: rgba(224,231,255,.6); line-height: 1.65; }

/* ── Steps ── */
.steps-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem;
    counter-reset: step;
}
@media (min-width: 540px) { .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; } }
.step-card {
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.1rem; padding: 1.4rem 1.2rem; position: relative; counter-increment: step;
}
.step-card::before {
    content: counter(step); position: absolute; top: 1rem; right: 1rem;
    font-size: 2.2rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(124,58,237,.25));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; padding-right: 2rem; }
.step-card p { font-size: .84rem; color: rgba(224,231,255,.6); line-height: 1.6; }

/* ── Benefits ── */
.benefits-grid {
    display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 0;
}
@media (min-width: 540px) { .benefits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.benefit-item {
    display: flex; align-items: flex-start; gap: .75rem;
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07);
    border-radius: .9rem; padding: 1rem 1.1rem;
}
.benefit-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    flex-shrink: 0; margin-top: .42rem;
}
.benefit-item p { font-size: .88rem; color: rgba(224,231,255,.75); line-height: 1.55; }

/* ── Countries ── */
.countries-section {
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.countries-grid {
    display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.5rem;
}
@media (min-width: 768px) { .countries-grid { gap: .65rem; margin-top: 2rem; } }
.country-tag {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px; padding: .38rem .85rem; font-size: .8rem; font-weight: 600;
    color: rgba(224,231,255,.8);
}
@media (min-width: 480px) { .country-tag { font-size: .85rem; padding: .4rem 1rem; } }

/* ── Plans ── */
.plans-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem;
    max-width: 360px; margin-left: auto; margin-right: auto;
}
@media (min-width: 700px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr); max-width: none;
        margin-top: 3rem;
    }
}
.plan-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
    border-radius: 1.2rem; padding: 1.6rem 1.4rem; position: relative;
    text-align: center; transition: border-color .2s, transform .2s;
}
@media (hover: hover) {
    .plan-card:hover { border-color: rgba(96,165,250,.3); transform: translateY(-2px); }
}
.plan-card.featured { border-color: rgba(96,165,250,.4); background: rgba(59,130,246,.07); }
.plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #7c3aed); color: #fff;
    font-size: .68rem; font-weight: 800; border-radius: 999px;
    padding: .25rem .75rem; letter-spacing: .06em; text-transform: uppercase;
}
.plan-name { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.plan-price { font-size: 2rem; font-weight: 900; margin-bottom: .3rem; }
@media (min-width: 480px) { .plan-price { font-size: 2.2rem; } }
.plan-price small { font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.5); }
.plan-desc { font-size: .82rem; color: rgba(224,231,255,.55); margin-bottom: 1.1rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; }
.plan-features li {
    font-size: .85rem; color: rgba(224,231,255,.7);
    padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
    display: flex; align-items: flex-start; gap: .5rem;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: #60a5fa; font-weight: 800; flex-shrink: 0; }
.plan-card .btn-primary,
.plan-card .btn-secondary { width: 100%; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 768px) { .faq-list { margin-top: 2.5rem; gap: .85rem; } }
.faq-item {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem; overflow: hidden;
}
.faq-question {
    width: 100%; background: none; border: none; color: #f0f4ff;
    font-family: inherit; font-size: .95rem; font-weight: 600;
    text-align: left; padding: 1rem 1.1rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: .75rem;
    transition: background .2s;
}
@media (min-width: 480px) { .faq-question { font-size: 1rem; padding: 1.2rem 1.4rem; } }
.faq-question:hover { background: rgba(255,255,255,.04); }
.faq-icon { flex-shrink: 0; transition: transform .25s; color: #60a5fa; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
    padding: 0 1.1rem; font-size: .9rem; color: rgba(224,231,255,.7); line-height: 1.7;
}
@media (min-width: 480px) { .faq-answer { padding: 0 1.4rem; font-size: .92rem; } }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.1rem; }
@media (min-width: 480px) { .faq-item.open .faq-answer { padding-bottom: 1.2rem; } }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CTA ── */
.cta-section {
    text-align: center; padding: 4rem 1rem;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(59,130,246,.12) 0%, transparent 70%);
}
@media (min-width: 768px) { .cta-section { padding: 6rem 1.25rem; } }
.cta-section h2 { font-size: clamp(1.55rem, 5vw, 3rem); font-weight: 900; margin-bottom: 1rem; line-height: 1.12; }
.cta-section p {
    color: rgba(224,231,255,.65); margin-bottom: 2rem;
    font-size: clamp(.95rem, 2vw, 1.05rem); line-height: 1.6;
}
.cta-logo {
    width: 64px; height: 64px; border-radius: 16px; object-fit: cover;
    margin-bottom: 1.25rem; border: 2px solid rgba(255,255,255,.12);
}
@media (min-width: 480px) { .cta-logo { width: 72px; height: 72px; border-radius: 18px; margin-bottom: 1.5rem; } }
.cta-section .hero-actions { margin: 0 auto; }

/* ── Footer ── */
footer { border-top: 1px solid rgba(255,255,255,.07); padding: 2rem 0 2.5rem; text-align: center; }
footer p { color: rgba(255,255,255,.3); font-size: .8rem; line-height: 1.5; }
.footer-brand {
    display: flex; align-items: center; justify-content: center;
    gap: .65rem; margin-bottom: .75rem;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; object-fit: cover; }
.footer-brand span { font-weight: 700; color: rgba(255,255,255,.5); font-size: .9rem; }
.footer-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem .5rem;
    margin-top: .5rem;
}
.footer-links a {
    color: rgba(255,255,255,.35); font-size: .82rem; text-decoration: none;
}
.footer-links a:hover { color: rgba(255,255,255,.6); }
.footer-sep { color: rgba(255,255,255,.2); }

.bg-muted { background: rgba(255,255,255,.015); }
