* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #07070a;
  color: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(252, 99, 107, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(249, 115, 22, 0.14), transparent 50%),
    #07070a;
}

.page { position: relative; z-index: 1; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 8px 24px rgba(252, 99, 107, 0.25); }
.brand-name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-tag { font-size: 12px; color: #a1a1aa; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a:not(.btn) { font-size: 14px; color: #d4d4d8; padding: 8px 12px; border-radius: 999px; transition: 0.2s; }
.nav-links a:not(.btn):hover { color: #fff; background: rgba(255,255,255,0.06); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #fc636b, #f97316); color: #fff; box-shadow: 0 12px 32px rgba(252,99,107,0.35); }
.btn-ghost { background: rgba(255,255,255,0.06); color: #fafafa; border: 1px solid rgba(255,255,255,0.12); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 32px rgba(37,211,102,0.28); }

.icon-box {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(252, 99, 107, 0.14);
  border: 1px solid rgba(252, 99, 107, 0.22);
  color: #fda4af; margin-bottom: 16px;
}
.icon-box svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 20%, black 20%, transparent 78%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 540px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero h1 span { background: linear-gradient(135deg, #fda4af, #fdba74); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 1.05rem; color: #a1a1aa; max-width: 480px; margin-bottom: 12px; line-height: 1.7; }
.hero-price-line {
  font-size: 14px;
  color: #d4d4d8;
  margin-bottom: 24px;
}
.price-was-inline {
  color: #71717a;
  text-decoration: line-through;
  margin-right: 4px;
}
.price-now-inline {
  font-size: 1.15em;
  font-weight: 800;
  background: linear-gradient(135deg, #fda4af, #fdba74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fomo-line { font-size: 13px; color: #fbbf24; margin-bottom: 20px; max-width: 520px; }

.price-strip {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(252, 99, 107, 0.08);
  border: 1px solid rgba(252, 99, 107, 0.22);
  max-width: 420px;
}
.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 8px;
}
.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.price-row-compact { justify-content: center; margin-bottom: 6px; }
.price-row-cta { justify-content: center; margin: 12px 0 8px; }
.price-was {
  font-size: 1.1rem;
  color: #71717a;
  text-decoration: line-through;
}
.price-now {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fda4af, #fdba74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-row-compact .price-now { font-size: 1.6rem; }
.price-tag {
  font-size: 12px;
  font-weight: 700;
  color: #fda4af;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(252, 99, 107, 0.12);
  border: 1px solid rgba(252, 99, 107, 0.25);
}
.price-local {
  font-size: 13px;
  color: #a1a1aa;
  margin-top: 6px;
}

.hero-convert {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 99, 107, 0.35), transparent 68%);
  filter: blur(8px);
}
.hero-convert-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: rgba(12, 12, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}
.convert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  margin-bottom: 20px;
}
.convert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.convert-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.convert-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 8px;
}
.convert-after .convert-label { color: #fda4af; }
.convert-meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.convert-meter-fill {
  height: 100%;
  border-radius: 999px;
}
.convert-meter-fill.low { width: 18%; background: #71717a; }
.convert-meter-fill.full { width: 100%; background: linear-gradient(90deg, #fc636b, #f97316); }
.convert-side p {
  font-size: 11px;
  color: #71717a;
  margin-top: 8px;
  line-height: 1.4;
}
.convert-after p { color: #d4d4d8; }
.convert-arrow {
  font-size: 18px;
  color: #52525b;
  padding-top: 18px;
}
.convert-quote {
  font-size: 13px;
  color: #d4d4d8;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 2px solid rgba(252, 99, 107, 0.4);
}
.convert-note {
  margin-top: 10px;
  font-size: 11px;
  color: #71717a;
  text-align: center;
}

section { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.section-head p { color: #a1a1aa; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  padding: 28px 24px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s, border-color 0.2s;
}
.pillar:hover { transform: translateY(-3px); border-color: rgba(252,99,107,0.35); }
.pillar h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pillar p { color: #a1a1aa; font-size: 14px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review {
  padding: 22px; border-radius: 18px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
}
.review-stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: #d4d4d8; font-size: 14px; line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.review-meta { display: block; font-size: 11px; color: #71717a; font-style: normal; font-weight: 600; letter-spacing: 0.02em; }

.fomo-banner {
  padding: 18px 22px; border-radius: 16px; text-align: center;
  background: rgba(251, 191, 36, 0.08); border: 1px solid rgba(251, 191, 36, 0.22);
  color: #fde68a; font-size: 14px; max-width: 820px; margin: 0 auto 36px;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 24px; border-radius: 20px; background: rgba(12,12,15,0.65); border: 1px solid rgba(255,255,255,0.08); }
.step-num { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, #fc636b, #f97316); font-weight: 700; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }
.step p { color: #a1a1aa; font-size: 14px; }

.reseller-box {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start;
  padding: 36px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(252,99,107,0.12), rgba(249,115,22,0.08)), rgba(12,12,15,0.85);
  border: 1px solid rgba(252,99,107,0.22);
}
.reseller-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.reseller-tagline { color: #fda4af !important; font-size: 1.02rem !important; font-weight: 600; margin-bottom: 14px !important; }
.reseller-box p { color: #d4d4d8; margin-bottom: 16px; }
.check-list { display: grid; gap: 10px; margin-bottom: 22px; }
.check-list li { list-style: none; display: flex; gap: 10px; color: #e4e4e7; font-size: 14px; }
.check-list li::before { content: "✓"; color: #25d366; font-weight: 700; flex-shrink: 0; }

.reseller-stack { display: grid; gap: 12px; }
.reseller-card {
  padding: 18px 20px; border-radius: 16px;
  background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 14px; align-items: flex-start;
}
.reseller-card .icon-box { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; }
.reseller-card .icon-box svg { width: 20px; height: 20px; }
.reseller-card h4 { font-size: 14px; margin-bottom: 4px; color: #fafafa; }
.reseller-card p { font-size: 13px; color: #a1a1aa; line-height: 1.5; }

.cta { text-align: center; padding: 72px 0 88px; }
.cta-box {
  padding: 40px 32px; border-radius: 28px;
  background: rgba(12,12,15,0.82); border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 90px rgba(0,0,0,0.4);
}
.cta-box h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 10px; }
.cta-copy { color: #a1a1aa; max-width: 480px; margin: 0 auto 24px; font-size: 15px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn-block { width: 100%; }

.footer {
  padding: 28px 0 36px; border-top: 1px solid rgba(255,255,255,0.08);
  color: #71717a; font-size: 13px; text-align: center;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 10px; }
.footer-links a { color: #a1a1aa; transition: color 0.2s; }
.footer-links a:hover { color: #fda4af; }

.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff;
  box-shadow: 0 14px 36px rgba(37,211,102,0.4); transition: transform 0.15s;
}
.float-wa:hover { transform: scale(1.06); }

/* Policy page */
.legal-page { padding: 48px 0 80px; }
.legal-wrap {
  max-width: 780px; margin: 0 auto;
  padding: 36px; border-radius: 20px;
  background: rgba(12,12,15,0.82); border: 1px solid rgba(255,255,255,0.08);
}
.legal-wrap h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-wrap .legal-updated { color: #71717a; font-size: 13px; margin-bottom: 28px; }
.legal-wrap h2 { font-size: 1.15rem; margin: 28px 0 10px; color: #fda4af; }
.legal-wrap p, .legal-wrap li { color: #d4d4d8; font-size: 14px; margin-bottom: 10px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }

@media (max-width: 900px) {
  .hero-grid, .pillars, .reviews-grid, .steps, .reseller-box { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero-convert { min-height: 320px; margin-top: 12px; }
}
