:root {
  --nav-h: 72px;
  --pad-x: 56px;
  --gap: 24px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --bg-dark: #0d0d0d;
  --bg-light: #f7f7f8;
  --ink: #111;
  --muted: #6b7280;
  --brand: #ffcc00;
  --brand-ink: #121212;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h)
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55
}

img,
svg {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.body_container {
  width: min(1200px, 100% - 2*var(--pad-x));
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 700;
  border: 0
}

.btn.ghost {
  background: #111;
  color: #fff;
  border: 1px solid #222
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #e5e7eb;
  font-size: .9rem
}

.pill--muted {
  background: #171717;
  color: #a3a3a3
}

/* HERO */
.hero {
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, #111, #0b0b0b);
  color: #fff
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 56px 0 28px
}

.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #a3a3a3;
  font-size: .95rem;
  margin-bottom: 6px
}

.hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 6px
}

.hero p {
  color: #d1d5db;
  max-width: 760px
}

/* GRID (services) */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin: 28px 0 56px
}

.card {
  grid-column: span 4;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px 16px 14px
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #0f172a;
  display: grid;
  place-items: center;
  margin-bottom: 10px
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: #fff
}

.card h3 {
  font-weight: 800;
  margin-bottom: 6px
}

.card p {
  color: var(--muted);
  margin-bottom: 10px
}

.bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
  padding: 0
}

.bullets li {
  background: #f3f4f6;
  color: #111;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .9rem
}

.note {
  background: #fff7cc;
  border: 1px solid #ffe27a;
  color: #693d00;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: .95rem
}

.cta {
  display: flex;
  gap: 8px;
  margin-top: 10px
}

/* Steps / Timeline */
.steps {
  background: var(--bg-light);
  padding: 40px 0;
  border-radius: 16px;
  margin-bottom: 56px
}

.steps h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin: 0 0 16px
}

.timeline {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0
}

.timeline li {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.step {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800
}

.timeline p {
  color: var(--muted);
  margin-top: 4px
}

.disclaimer {
  color: #6b7280;
  font-size: .95rem;
  margin-top: 14px
}

.steps__cta {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

/* FAQ */
.faq {
  margin-bottom: 64px
}

.faq h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin-bottom: 12px
}

.faq details {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: #fff
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none
}

.faq p {
  color: var(--muted);
  margin-top: 6px
}

/* FOOTER */
.footer {
  background: #0b0b0b;
  color: #9ca3af;
  padding: 18px 0;
  border-top: 1px solid #1f1f1f
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

/* Responsive */
@media (max-width:1024px) {
  :root {
    --pad-x: 28px
  }
}

@media (max-width:900px) {
  .card {
    grid-column: span 6
  }
}

@media (max-width:768px) {
  .nav__hamburger {
    display: block
  }

  .nav__links {
    position: absolute;
    top: var(--nav-h);
    right: 0;
    background: rgba(0, 0, 0, .95);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(240px, 90vw);
    padding: 14px;
    border-bottom-left-radius: 12px;
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transform-origin: top right;
    transform: translateY(-8px) scaleY(.98);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .18s ease;
  }

  .nav__checkbox:checked+.nav__hamburger+.nav__links {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width:520px) {
  .card {
    grid-column: span 12
  }
}

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