
:root{
  --green:#1f7a4d;
  --gold:#f4c430;
  --ink:#0f172a;
  --muted:#5b6476;
  --bg:#ffffff;
  --alt:#f6faf7;
  --card:#ffffff;
  --border:rgba(15, 23, 42, 0.08);
  --shadow:0 10px 30px rgba(15, 23, 42, 0.10);
  --radius:18px;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif; color:var(--ink); background:var(--bg); }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1140px, calc(100% - 40px)); margin:0 auto; }

/* Topbar */
.topbar{ position:sticky; top:0; z-index:20; background:rgba(255,255,255,0.85); backdrop-filter:saturate(160%) blur(10px); border-bottom:1px solid var(--border); }
.topbar-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px; }
.brand-mini{ font-weight:800; letter-spacing:-0.02em; display:flex; align-items:center; gap:10px; }
.brand-mini .dot{ width:10px; height:10px; border-radius:100px; background:linear-gradient(135deg, var(--green), var(--gold)); display:inline-block; }
.topbar-actions{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.link{ font-weight:600; color:rgba(15,23,42,0.78); padding:8px 10px; border-radius:12px; }
.link:hover{ background:rgba(31,122,77,0.08); }

/* Hero */
.hero{ background:
  radial-gradient(1200px 500px at 20% 20%, rgba(244,196,48,0.22), transparent 60%),
  radial-gradient(900px 500px at 80% 15%, rgba(31,122,77,0.18), transparent 60%),
  linear-gradient(180deg, #ffffff 0%, #f7fbf8 70%, #ffffff 100%);
  padding:64px 0 40px;
}
.hero-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:30px; align-items:center; }
.hero h1{ font-size: clamp(34px, 4vw, 54px); line-height:1.02; margin:0 0 16px; letter-spacing:-0.03em; }
.lead{ font-size:18px; line-height:1.6; color:rgba(15,23,42,0.80); margin:0 0 20px; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px; }
.trust-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.pill{ font-size:13px; color:rgba(15,23,42,0.78); background:rgba(15,23,42,0.05); border:1px solid rgba(15,23,42,0.07); padding:8px 10px; border-radius:999px; }

.hero-art{ position:relative; }
.hero-art img{ width:100%; border-radius:var(--radius); box-shadow:var(--shadow); border:1px solid var(--border); background:#fff; }
.hero-card{ position:absolute; right:-10px; bottom:-14px; width:min(320px, 86%); background:var(--card); border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow); padding:16px 16px 10px; }
.hero-card-title{ font-weight:800; margin-bottom:8px; }
.hero-card ul{ margin:0; padding-left:18px; color:rgba(15,23,42,0.82); }

/* Sections */
.section{ padding:66px 0; }
.section.alt{ background:var(--alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-head h2{ font-size: clamp(26px, 3vw, 36px); margin:0 0 10px; letter-spacing:-0.02em; }
.section-head p{ margin:0; color:rgba(15,23,42,0.72); line-height:1.6; max-width: 720px; }

.cards3{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-top:22px; }
.card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); box-shadow: 0 8px 22px rgba(15,23,42,0.06); padding:18px; }
.card h3{ margin:0 0 8px; letter-spacing:-0.01em; }
.card p{ margin:0; color:rgba(15,23,42,0.70); line-height:1.6; }

/* Steps */
.steps{ display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; margin-top:22px; }
.step{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:18px; box-shadow: 0 8px 22px rgba(15,23,42,0.06);
  opacity:0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease;
}
.step.visible{ opacity:1; transform: translateY(0); }
.step-num{ width:34px; height:34px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(31,122,77,0.18), rgba(244,196,48,0.25));
  font-weight:800; margin-bottom:10px; border:1px solid rgba(15,23,42,0.08);
}
.step h3{ margin:0 0 8px; }
.step p{ margin:0; color:rgba(15,23,42,0.70); line-height:1.6; }
.mini-cta{ display:inline-block; margin-top:10px; font-weight:700; color:rgba(31,122,77,1); }

.feature-split{ display:grid; grid-template-columns: 1fr 0.9fr; gap:20px; margin-top:26px; align-items:center; }
.checklist{ margin:12px 0 0; padding-left:0; list-style:none; display:grid; gap:10px; }
.checklist li{ padding-left:28px; position:relative; color:rgba(15,23,42,0.78); line-height:1.55; }
.checklist li::before{ content:"✓"; position:absolute; left:0; top:0; color:var(--green); font-weight:900; }
.feature-right img{ width:100%; border-radius:var(--radius); border:1px solid var(--border); box-shadow:var(--shadow); background:#fff; }

/* Pricing */
.pricing{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-top:22px; }
.price-card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:20px; box-shadow: 0 8px 22px rgba(15,23,42,0.06); }
.price-card.featured{ border-color: rgba(31,122,77,0.35); box-shadow: 0 20px 45px rgba(31,122,77,0.18); transform: translateY(-4px); }
.badge{ display:inline-block; font-size:12px; padding:6px 10px; border-radius:999px; background:rgba(31,122,77,0.10); border:1px solid rgba(31,122,77,0.20); color:rgba(31,122,77,1); font-weight:800; }
.price-card h3{ margin:12px 0 4px; font-size:26px; letter-spacing:-0.02em; }
.muted{ color:rgba(15,23,42,0.62); }
.price-card ul{ margin:12px 0 0; padding-left:18px; color:rgba(15,23,42,0.76); }
.price-card li{ margin: 6px 0; }

.faq details{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding:14px 16px;
  margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:900}
.faq p{margin:10px 0 0;color:var(--muted)}
.quotes{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.quote{
  margin:0;
  border-radius: var(--radius);
  padding:18px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.5);
}
.quote blockquote{margin:0 0 10px;font-weight:700;line-height:30px;}
.quote figcaption{color:var(--muted);font-size:.95rem}




/* Table */
.table-wrap{ overflow:auto; border:1px solid var(--border); border-radius:var(--radius); background:#fff; box-shadow: 0 10px 26px rgba(15,23,42,0.06); margin-top:20px; }
table{ width:100%; border-collapse:collapse; min-width: 720px; }
th, td{ text-align:left; padding:14px 16px; border-bottom:1px solid rgba(15,23,42,0.06); }
thead th{ background:rgba(15,23,42,0.03); font-weight:900; }
tbody tr:hover td{ background:rgba(31,122,77,0.04); }
.levels-note{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:20px; margin-top:22px; align-items:center; }
.levels-note img{ width:100%; border-radius:var(--radius); border:1px solid var(--border); box-shadow:var(--shadow); background:#fff; }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:16px; margin-top:22px; }
.contact-card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:20px; box-shadow: 0 8px 22px rgba(15,23,42,0.06); }
label{ display:block; font-size:13px; font-weight:800; margin:12px 0 6px; color:rgba(15,23,42,0.75); }
input, textarea{ width:100%; padding:12px 12px; border-radius:14px; border:1px solid rgba(15,23,42,0.12); outline:none; font-size:15px; }
input:focus, textarea:focus{ border-color: rgba(31,122,77,0.45); box-shadow: 0 0 0 4px rgba(31,122,77,0.12); }
.form-status{ margin-top:12px; font-weight:800; }
.divider{ height:1px; background:rgba(15,23,42,0.08); margin:18px 0; }
.small{ font-size:12px; }

/* Buttons */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:999px; padding:10px 14px; font-weight:900; border:1px solid transparent; cursor:pointer; }
.btn-lg{ padding:12px 18px; font-size:16px; }
.btn-primary{ background:linear-gradient(135deg, var(--gold), #ffd976); color:#171717; border-color: rgba(15,23,42,0.10); box-shadow: 0 10px 22px rgba(244,196,48,0.22); }
.btn-primary:hover{ filter:brightness(0.98); transform: translateY(-1px); }
.btn-ghost{ background:#fff; border-color: rgba(15,23,42,0.10); color:rgba(15,23,42,0.85); }
.btn-ghost:hover{ background: rgba(15,23,42,0.03); }

/* Footer */
.footer{ padding:38px 0; border-top:1px solid var(--border); background:#fff; }
.footer-inner{ display:flex; align-items:flex-start; justify-content:space-between; gap:16px; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a{ color:rgba(15,23,42,0.70); font-weight:700; }
.footer-links a:hover{ color:rgba(31,122,77,1); }

/* WhatsApp floating */
.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:50;
  background:#25d366; color:#fff; border-radius:999px;
  padding:12px 14px; display:flex; align-items:center; gap:10px;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
  border: 1px solid rgba(255,255,255,0.25);
}
.whatsapp-float:hover{ filter:brightness(0.98); transform: translateY(-1px); }
.wa-icon{ font-size:18px; }
.wa-text{ font-weight:900; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-card{ position:static; width:100%; margin-top:12px; }
  .cards3{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .feature-split{ grid-template-columns:1fr; }
  .pricing{ grid-template-columns:1fr; }
  .levels-note{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .topbar-actions{ gap:6px; }
}

.section.alt {
    background: radial-gradient(1200px 500px at 20% 20%, rgba(244,196,48,0.22), transparent 60%),
  radial-gradient(900px 500px at 80% 15%, rgba(31,122,77,0.18), transparent 60%),
  linear-gradient(180deg, #ffffff 0%, #f7fbf8 70%, #ffffff 100%)
  }
