
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
    --ink: #0C1B2E; --ink-mid: #1C3050; --slate: #445569;
    --muted: #7A8FA6; --border: #E4EBF0; --bg: #F7F9FB; --white: #FFFFFF;
    --green: #00B574; --green-dim: #009960; --green-pale: #E8F8F2;
    --gold: #C9A84C; --gold-pale: #FDF8EC;
    --shadow-sm: 0 4px 16px rgba(12,27,46,.07);
    --shadow-md: 0 12px 40px rgba(12,27,46,.11);
    --shadow-lg: 0 24px 64px rgba(12,27,46,.15);
}
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media(max-width:700px){ .container { padding: 0 20px; } }

/* ── HEADER ── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.logo-txt { font-weight: 800; font-size: 1.6rem; color: var(--ink); line-height: 1.15; }
.logo-txt span { color: var(--green); }
.nav-back { display: flex; align-items: center; gap: 8px; font-size: 1.6rem; font-weight: 600; color: var(--slate); text-decoration: none; padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--border); transition: all .2s; }
.nav-back:hover { border-color: var(--green); color: var(--green); }
.nav-cta { background: var(--ink); color: #fff; border: none; border-radius: 8px; padding: 9px 20px; font-family: inherit; font-size: 1.6rem; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; }
.nav-cta:hover { background: var(--green); }

/* ── HERO ── */
.pricing-hero { background: var(--ink); padding: 120px 0 80px; position: relative; overflow: hidden; text-align: center; }
.pricing-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 48px 48px; }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,181,116,.1) 0%, transparent 65%); left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.pricing-hero .container { position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,181,116,.12); border: 1px solid rgba(0,181,116,.2); border-radius: 100px; padding: 5px 16px; font-size: 1.6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.pricing-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 16px; }
.pricing-hero h1 em { font-style: italic; color: var(--green); }
.pricing-hero p { color: #4A6680; font-size:1.6rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }

/* Toggle */
.billing-toggle { display: inline-flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 6px; }
.toggle-opt { padding: 8px 20px; border-radius: 100px; font-size: 1.6rem; font-weight: 600; cursor: pointer; transition: all .2s; color: #4A6680; border: none; background: transparent; font-family: inherit; }
.toggle-opt.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.save-badge { background: var(--green); color: #fff; font-size: 1.6rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }

/* ── TABS ── */
.plan-tabs { display: flex; justify-content: center; gap: 8px; padding: 48px 0 0; flex-wrap: wrap; }
.plan-tab { padding: 10px 24px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); font-family: inherit; font-size: 1.6rem; font-weight: 600; color: var(--slate); cursor: pointer; transition: all .2s; }
.plan-tab:hover { border-color: var(--ink); color: var(--ink); }
.plan-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── PRICING SECTIONS ── */
.pricing-section { padding: 60px 0 80px; }
.pricing-section.alt { background: var(--bg); }

.section-label { display: inline-flex; align-items: center; gap: 9px; font-size: 1.6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.section-label::before { content: ''; width: 22px; height: 1.5px; background: var(--green); display: block; }
.section-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 3vw, 4.4rem); font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin-bottom: 8px; }
.section-d { color: var(--muted); font-size: 1.6rem; max-width: 480px; line-height: 1.7; margin-bottom: 48px; }

/* ── PLAN CARDS ── */
.plans-grid { display: grid; gap: 20px; }
.plans-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.plans-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.plans-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.plan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 24px; padding: 32px 28px; position: relative; transition: all .3s; display: flex; flex-direction: column; }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.plan-card.featured { background: var(--ink); border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan-card.enterprise { background: linear-gradient(135deg, var(--ink) 0%, #1C3A5E 100%); border: 2px solid var(--gold); box-shadow: 0 24px 64px rgba(201,168,76,.2); }

.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 1.6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.plan-badge.gold { background: linear-gradient(135deg, var(--gold) 0%, #E8C05A 100%); color: var(--ink); }

.plan-icon { font-size: 3rem; margin-bottom: 16px; }
.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.plan-card.featured .plan-name, .plan-card.enterprise .plan-name { color: #fff; }
.plan-desc { font-size: 1.6rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.plan-card.featured .plan-desc, .plan-card.enterprise .plan-desc { color: #4A6680; }

.plan-price-wrap { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-card.featured .plan-price-wrap, .plan-card.enterprise .plan-price-wrap { border-bottom-color: rgba(255,255,255,.1); }
.plan-trial { font-size: 1.6rem; font-weight: 700; color: var(--green); background: var(--green-pale); padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.plan-card.featured .plan-trial, .plan-card.enterprise .plan-trial { background: rgba(0,181,116,.15); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-currency { font-size: 2.2rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.plan-card.featured .plan-currency, .plan-card.enterprise .plan-currency { color: #CBD9E8; }
.plan-amount { font-family: 'Cormorant Garamond', serif; font-size: 4.2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.plan-card.featured .plan-amount, .plan-card.enterprise .plan-amount { color: #fff; }
.plan-period { font-size: 1.6rem; color: var(--muted); margin-left: 4px; }
.plan-card.featured .plan-period, .plan-card.enterprise .plan-period { color: #4A6680; }
.plan-original { font-size: 1.6rem; color: var(--muted); text-decoration: line-through; margin-top: 4px; }

.plan-features { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 1.6rem; color: var(--slate); }
.plan-card.featured .plan-feature, .plan-card.enterprise .plan-feature { color: #CBD9E8; }
.feat-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-pale); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-card.featured .feat-check, .plan-card.enterprise .feat-check { background: rgba(0,181,116,.2); }
.feat-cross { width: 18px; height: 18px; border-radius: 50%; background: var(--bg); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: .65rem; flex-shrink: 0; margin-top: 1px; }
.plan-card.featured .feat-cross { background: rgba(255,255,255,.05); }
.feat-text.muted { color: var(--muted); }
.plan-card.featured .feat-text.muted { color: #3A5568; }

.plan-btn { width: 100%; border: none; border-radius: 10px; padding: 13px; font-family: inherit; font-size: 1.6rem; font-weight: 700; cursor: pointer; transition: all .2s; text-align: center; text-decoration: none; display: block; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--slate); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dim); transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--green); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, #E8C05A 100%); color: var(--ink); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }

/* ── ENTERPRISE CARD — special full width ── */
.enterprise-wrap { margin-top: 24px; }
.enterprise-card { background: linear-gradient(135deg, var(--ink) 0%, #162840 100%); border: 2px solid var(--gold); border-radius: 28px; padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(201,168,76,.15); }
.enterprise-card::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%); pointer-events: none; }
.ent-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); border-radius: 100px; padding: 4px 14px; font-size: 1.6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.enterprise-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.enterprise-card h3 em { font-style: italic; color: var(--gold); }
.enterprise-card p { color: #4A6680; font-size: 1.6rem; line-height: 1.7; max-width: 560px; margin-bottom: 24px; }
.ent-features { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.ent-feat { display: flex; align-items: center; gap: 8px; font-size: 1.6rem; color: #CBD9E8; font-weight: 500; }
.ent-feat::before { content: '✓'; color: var(--gold); font-weight: 700; }
.ent-price-box { background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.2); border-radius: 20px; padding: 32px 36px; text-align: center; min-width: 220px; flex-shrink: 0; }
.ent-price-label { font-size: 1.6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.ent-price { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 700; color: #fff; line-height: 1; }
.ent-period { font-size: 1.6rem; color: #4A6680; margin-bottom: 8px; }
.ent-save { font-size: 1.6rem; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.ent-btn { background: linear-gradient(135deg, var(--gold) 0%, #E8C05A 100%); color: var(--ink); border: none; border-radius: 10px; padding: 13px 28px; font-family: inherit; font-size: .88rem; font-weight: 700; cursor: pointer; transition: all .2s; width: 100%; }
.ent-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.4); }
.ent-note { font-size: 1.6rem; color: #3A5568; margin-top: 10px; }

/* ── COMPARE TABLE ── */
.compare-sec { padding: 80px 0; background: var(--bg); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th { padding: 20px 16px; text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 700; color: var(--ink); background: var(--bg); border-bottom: 2px solid var(--border); }
.compare-table th:first-child { text-align: left; }
.compare-table th.featured-col { background: var(--ink); color: #fff; }
.compare-table th.enterprise-col { background: linear-gradient(135deg, var(--ink), #1C3A5E); color: var(--gold); }
.compare-table td { padding: 14px 16px; text-align: center; font-size: 1.6rem; color: var(--slate); border-bottom: 1px solid var(--border); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg); }
.compare-table td.featured-col { background: rgba(12,27,46,.02); }
.check-yes { color: var(--green); font-size: 2rem; font-weight: 700; }
.check-no { color: var(--border); font-size: 2rem; }
.check-gold { color: var(--gold); font-size: 2rem; font-weight: 700; }

/* ── FAQ ── */
.faq-sec { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px; cursor: pointer; transition: all .2s; }
.faq-item:hover { border-color: var(--green); }
.faq-q { font-weight: 700; font-size: 1.8rem; color: var(--ink); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-q::after { content: '+'; color: var(--green); font-size: 2.2rem; flex-shrink: 0; }
.faq-a { font-size: 1.6rem; color: var(--muted); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band { background: var(--green); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 24px 24px; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 3.5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.6rem; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--green); border: none; border-radius: 10px; padding: 14px 32px; font-family: inherit; font-size: 1.6rem; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); border-radius: 10px; padding: 14px 32px; font-family: inherit; font-size: 1.6rem; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-outline-white:hover { border-color: #fff; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 1.6rem; color: #2A3F56; }
.footer-bottom span { color: var(--green); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 1.6rem; color: #2A3F56; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--green); }

/* ── WHATSAPP ── */
.wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; border-radius: 100px; padding: 14px 22px 14px 16px; text-decoration: none; font-weight: 700; font-size: 1.6rem; box-shadow: 0 8px 32px rgba(37,211,102,.4); transition: all .25s; }
.wa-btn:hover { transform: translateY(-3px); }
.wa-ico { width: 30px; height: 30px; flex-shrink: 0; }
.wa-label { display: flex; flex-direction: column; color: #fff; }
.wa-sub { font-size: 1.6rem; font-weight: 400; opacity: .85; }

/* ── RESPONSIVE ── */
@media(max-width:960px){
    .plans-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .plans-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .enterprise-card { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .compare-table { font-size: 1.6rem; }
}
@media(max-width:600px){
    .plans-grid.cols-4, .plans-grid.cols-3, .plans-grid.cols-2 { grid-template-columns: 1fr; }
    .plan-card.featured { transform: none; }
    .compare-sec { overflow-x: auto; }
}
