:root {
  --bg: #070707;
  --panel: #0f0f0f;
  --accent: #f5a600;
  --muted: #cbd5e1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100dvh;
}
/* Enable smooth scrolling when jumping to anchors */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  background: var(--bg);
  color: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 24px 12px;
  overflow-y: auto;
}

.hero {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(180deg, var(--panel), #0b0b0b);
  border-radius: 6px;
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
.hero .logo {
  font-size: 34px;
  margin-bottom: 8px;
}
.hero h1 {
  margin: 6px 0 6px;
  font-size: 20px;
  letter-spacing: 1px;
}
.lead {
  color: var(--white);
  font-weight: 600;
  margin: 6px 0;
}
.sub {
  color: var(--muted);
  margin: 8px 0;
  font-size: 14px;
}
.meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}
.cta {
  display: inline-block;
  margin-top: 14px;
  background: var(--accent);
  color: #000;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

/* WhatsApp-specific styling */
.cta.whatsapp {
  background: #25d366; /* WhatsApp green */
  color: #fff !important;
}
.cta.whatsapp:hover {
  opacity: 0.95;
}
.cta.whatsapp.large {
  padding: 14px 22px;
  font-size: 15px;
}

.page {
  max-width: 420px;
  width: 100%;
  margin-top: 16px;
}
.band {
  background: var(--accent);
  color: #000;
  padding: 10px 16px;
  border-radius: 3px;
  margin: 12px 0;
  text-align: center;
}
.band h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}
.panel {
  background: transparent;
  color: var(--white);
  padding: 18px 12px;
  border-radius: 3px;
}
.panel.dark {
  background: #0b0b0b;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.checklist li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 15px;
}
.checklist .tick {
  color: var(--accent);
  margin-right: 10px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}
.services {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.services li {
  padding: 8px 0;
  color: var(--muted);
}

.contact .large {
  display: inline-block;
  margin-top: 12px;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  opacity: 0.95;
}
.footer {
  color: var(--muted);
  font-size: 13px;
  padding: 16px 6px;
  text-align: center;
}
.panel.contact a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.panel.contact a:hover {
  opacity: 0.9;
  text-decoration: underline;
}
.privacy-short {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 900px) {
  body {
    align-items: center;
  }
  .hero {
    margin-top: 0;
  }
  .page {
    margin-top: 20px;
  }
}
