:root {
  --ink: #101828;
  --muted: #536173;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --line: #e2e8f0;
  --night: #07111f;
  --night-2: #101b2c;
  --yellow: #ffcc32;
  --yellow-2: #f6a800;
  --whatsapp: #19a866;
  --blue: #2563eb;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(16, 24, 40, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 78px 0; }
.section-soft { background: var(--soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #7c5200;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 6px rgba(25, 168, 102, .14);
}
h1, h2, h3 { letter-spacing: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .96;
  font-weight: 950;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.05;
  font-weight: 950;
}
h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 900;
}
p { color: var(--muted); line-height: 1.65; }
.lead {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 22px);
}
.highlight { color: #b87500; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, #ffe27a, var(--yellow));
  box-shadow: 0 18px 38px rgba(255, 204, 50, .24);
}
.btn-dark {
  color: #fff;
  background: var(--night);
}
.btn-white {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  backdrop-filter: blur(16px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 950;
}
.logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #111827;
  background: var(--yellow);
  font-weight: 950;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #475569;
  font-size: 14px;
  font-weight: 850;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 204, 50, .22), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(25, 168, 102, .14), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 44px;
  align-items: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}
.visual {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, .84), rgba(7, 17, 31, .96)),
    radial-gradient(circle at 20% 30%, rgba(255, 204, 50, .2), transparent 28%);
  box-shadow: var(--shadow);
}
.road {
  position: absolute;
  inset: auto -40px -80px -40px;
  height: 210px;
  transform: rotate(-8deg);
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(255,255,255,.18) 45% 48%, transparent 48% 52%, rgba(255,255,255,.18) 52% 55%, transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.0));
}
.call-card {
  position: relative;
  z-index: 1;
  width: min(310px, 100%);
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  color: white;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.call-screen {
  display: grid;
  gap: 14px;
  min-height: 170px;
}
.caller {
  font-size: 26px;
  font-weight: 950;
}
.call-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
}
.call-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
.reject { background: #ef4444; }
.accept { background: var(--whatsapp); }
.wa-card {
  position: relative;
  z-index: 2;
  width: min(410px, 96%);
  margin: 38px 0 0 auto;
  padding: 20px;
  border-radius: 18px;
  background: #e9ffe9;
  border: 1px solid rgba(25,168,102,.22);
  box-shadow: 0 20px 52px rgba(25, 168, 102, .18);
  transform: rotate(-2deg);
}
.wa-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #12633e;
  font-weight: 950;
  margin-bottom: 12px;
}
.wa-card dl {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px 10px;
  font-size: 15px;
}
.wa-card dt { color: #12633e; font-weight: 900; }
.wa-card dd { color: #172033; }
.card-grid, .steps, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card, .step, .faq, .price-card, .form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16,24,40,.06);
}
.card, .step, .faq { padding: 24px; }
.step-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: #111827;
  background: var(--yellow);
  font-weight: 950;
}
.example {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 28px;
  align-items: center;
}
.example-shot {
  min-height: 410px;
  border-radius: 24px;
  padding: 26px;
  color: white;
  background:
    linear-gradient(180deg, rgba(7,17,31,.2), rgba(7,17,31,.82)),
    linear-gradient(135deg, #202c3f, #050b14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #111827;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.price-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.price-card {
  padding: 30px;
}
.pricing-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.featured-plan {
  border-color: rgba(25, 168, 102, .34);
  box-shadow: 0 26px 70px rgba(25, 168, 102, .12);
}
.quota-note {
  grid-column: 1 / -1;
  margin-top: -2px;
  font-size: 13px;
  font-weight: 800;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0;
}
.price strong { font-size: 58px; font-weight: 950; }
.features {
  display: grid;
  gap: 11px;
  margin: 20px 0 24px;
  list-style: none;
}
.features li {
  display: flex;
  gap: 9px;
  color: #334155;
  line-height: 1.45;
}
.tick {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--whatsapp);
  font-size: 13px;
  font-weight: 900;
}
.form-card {
  padding: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field.full { grid-column: 1 / -1; }
label {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}
input, select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, .btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .22);
  outline-offset: 2px;
}
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius);
  color: #12633e;
  background: #dcfce7;
  font-weight: 850;
}
.form-status.error {
  color: #991b1b;
  background: #fee2e2;
}
.faq-grid { grid-template-columns: repeat(2, 1fr); }
details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}
details p { margin-top: 12px; }
footer {
  padding: 42px 0 88px;
  color: #94a3b8;
  background: var(--night);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}
.sticky-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.9);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.sticky-mobile .btn { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .hero-grid, .example, .price-layout { grid-template-columns: 1fr; }
  .visual { min-height: 500px; }
  .nav-links { display: none; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .card-grid, .steps, .faq-grid, .form-grid, .pricing-duo { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  h1 { font-size: clamp(40px, 14vw, 56px); }
  .lead { font-size: 17px; }
  .wa-card dl { grid-template-columns: 1fr; }
  .wa-card { transform: none; }
  .btn { width: 100%; white-space: normal; text-align: center; }
  .sticky-mobile { display: block; }
  .price strong { font-size: 48px; }
}
