* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #f8cc23;
  --green: #3bc77b;
  --orange: #f86011;
  --blue: #307fe2;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #777;
  --bg-light: #f4f4f6;
  --white: #fff;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  background: var(--white);
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Preview banner */
.preview-banner {
  background: #fff3cd;
  border-bottom: 1px solid #ffe58a;
  color: #664d03;
  padding: 8px 20px;
  text-align: center;
  font-size: 13px;
}

/* Nav */
nav.site-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 100;
  padding: 0 24px;
}
nav.site-nav .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 24px;
}
.brand-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--dark);
  font-weight: 700; font-size: 17px;
}
.brand-link .mark {
  width: 32px; height: 32px; background: var(--orange); color: #fff;
  border-radius: 7px; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
nav.site-nav .links {
  display: flex; align-items: center; gap: 20px; font-size: 15px;
}
nav.site-nav .links a { color: var(--text); font-weight: 500; }
nav.site-nav .links a.active { color: var(--orange); font-weight: 700; }
nav.site-nav .cta,
nav.site-nav .links a.cta {
  color: #fff; background: var(--orange);
  padding: 9px 18px; border-radius: 6px; font-weight: 700; font-size: 14px;
  border: 2px solid var(--orange);
}
nav.site-nav .cta:hover,
nav.site-nav .links a.cta:hover { background: #d94f06; border-color: #d94f06; text-decoration: none; color: #fff; }
nav.site-nav .cta-secondary,
nav.site-nav .links a.cta-secondary {
  color: var(--dark); font-weight: 700;
  padding: 8px 20px; border: 2px solid var(--dark); border-radius: 6px;
  font-size: 14px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
nav.site-nav .cta-secondary:hover,
nav.site-nav .links a.cta-secondary:hover { background: var(--dark); color: #fff; }
nav.site-nav .links .dropdown { position: relative; }
nav.site-nav .links .dropdown > a::after {
  content: ""; display: inline-block; margin-left: 6px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; vertical-align: middle;
  transition: transform 0.15s;
}
nav.site-nav .links .dropdown:hover > a::after,
nav.site-nav .links .dropdown:focus-within > a::after { transform: rotate(180deg); }
nav.site-nav .links .dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: #fff; border: 1px solid #eee; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  padding: 8px 0; min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
nav.site-nav .links .dropdown:hover .dropdown-menu,
nav.site-nav .links .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
nav.site-nav .links .dropdown-menu a {
  display: block; padding: 10px 20px; white-space: nowrap;
  color: var(--text); font-weight: 500; font-size: 15px;
}
nav.site-nav .links .dropdown-menu a:hover { background: var(--bg-light); color: var(--orange); }
@media (max-width: 768px) {
  nav.site-nav .links { display: none; }
}

/* WhatsApp floating button */
.wa-floating-btn {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(248,96,17,0.15);
  cursor: pointer; z-index: 9999; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.wa-floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37,211,102,0.55), 0 0 0 6px rgba(248,96,17,0.12);
}
.wa-floating-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: wa-pulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-floating-btn svg { width: 30px; height: 30px; display: block; }
@media (max-width: 640px) {
  .wa-floating-btn { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-floating-btn svg { width: 28px; height: 28px; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  color: #fff;
  padding: 70px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -120px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(248,204,35,0.15) 0%, rgba(248,204,35,0) 65%);
  border-radius: 50%;
}
.hero .container {
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 1;
}
.hero .eyebrow {
  color: var(--yellow); font-weight: 700; font-size: 12px;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.hero h1 {
  font-size: 44px; font-weight: 700; line-height: 1.1;
  letter-spacing: -1.2px; margin-bottom: 18px;
}
.hero h1 .y { color: var(--yellow); }
.hero .lead {
  font-size: 19px; color: #d0d0d8; max-width: 720px; line-height: 1.5; margin-bottom: 28px;
}
.hero .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 22px;
  border-radius: 7px; font-weight: 700; text-decoration: none; font-size: 15px;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d94f06; text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); padding: 10px 20px; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .hero .lead { font-size: 16px; }
  .hero { padding: 48px 20px 60px; }
}

/* Sections */
section {
  padding: 70px 24px;
}
section.alt { background: var(--bg-light); }
section .container { max-width: 1000px; margin: 0 auto; }
section h2 {
  font-size: 30px; font-weight: 700; letter-spacing: -0.6px;
  margin-bottom: 12px; color: var(--dark);
}
section h2 + .sub {
  font-size: 17px; color: var(--text-light); max-width: 720px;
  margin-bottom: 32px;
}
section h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
section p { margin-bottom: 14px; }
section p:last-child { margin-bottom: 0; }
section ul { margin: 0 0 14px 20px; }
section ul li { margin-bottom: 6px; }

/* Cards grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: 9px;
  background: rgba(248,96,17,0.12); color: var(--orange);
  font-weight: 800; font-size: 15px; letter-spacing: -0.2px;
  margin-bottom: 12px; white-space: nowrap;
}
.card .ico.single { padding: 0; width: 40px; font-size: 18px; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.step .body > b:first-child { display: block; margin-bottom: 3px; color: var(--dark); font-size: 16px; }
.step .body b { color: var(--dark); }
.step .body { color: var(--text-light); line-height: 1.5; }

/* USP list */
.usps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.usp { display: flex; align-items: flex-start; gap: 10px; }
.usp .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.usp b { color: var(--dark); }

/* Pricing */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .prices { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 22px; text-align: center;
}
.price-card.hi { border: 2px solid var(--orange); }
.price-card h3 { font-size: 18px; margin-bottom: 6px; }
.price-card .p { font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: -1px; }
.price-card .p small { font-size: 14px; font-weight: 500; color: var(--text-light); }
.price-card .meta { color: var(--text-light); font-size: 13px; margin: 6px 0 16px; }
.price-card .btn { width: 100%; padding: 10px 0; font-size: 14px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid #eee; border-radius: 10px;
  padding: 16px 20px; margin-bottom: 10px;
}
.faq details[open] { border-color: var(--orange); }
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--dark); font-size: 16px;
  list-style: none; display: flex; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--orange); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--text); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #d94f06 100%);
  color: #fff; padding: 60px 24px; text-align: center;
}
.cta-band h2 { color: #fff; font-size: 32px; margin-bottom: 10px; }
.cta-band p { font-size: 17px; margin-bottom: 22px; opacity: 0.95; }
.cta-band .btn {
  background: #fff; color: var(--orange); font-weight: 800;
}
.cta-band .btn:hover { background: #f4f4f6; }

/* Footer */
footer {
  background: var(--dark); color: #bbb; padding: 40px 24px 30px; font-size: 14px;
}
footer .container {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between;
}
footer h4 { color: #fff; font-size: 13px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 6px; }
footer a { color: #bbb; }
footer a:hover { color: #fff; text-decoration: none; }
footer .legal {
  max-width: 1000px; margin: 24px auto 0; border-top: 1px solid #333; padding-top: 18px;
  text-align: center; font-size: 12px; color: #888;
}

/* Utility */
.yellow { color: var(--yellow); }
.orange { color: var(--orange); }
.pill {
  display: inline-block; padding: 4px 10px; background: var(--bg-light);
  border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text);
}

/* Tracker / mock-UI */
.mock {
  background: #fff; border-radius: 12px; padding: 18px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 460px;
}
.mock .track-step { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.mock .num {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; flex-shrink: 0;
}
.mock .num.done { background: #e8f5e9; color: #2e7d32; }
.mock .num.active { background: var(--orange); color: #fff; }
.mock .num.wait { background: #f4f4f6; color: #999; }
.mock .lbl { font-weight: 700; font-size: 13px; color: var(--dark); }
.mock .sub { display: block; font-size: 11px; color: #777; font-weight: 400; }
.mock.waiting .lbl { color: #999; }

.hero-split {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; } }
