:root {
  --bg: #0f0f0f;
  --card: #181818;
  --muted: #a7a5a1;
  --accent: #f4c16e;
  --accent-dark: #d99832;
  --text: #f5f2ec;
  --border: rgba(244, 193, 110, 0.25);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(244, 193, 110, 0.08), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

.hero {
  padding: 5rem 7vw 3rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 1rem 0 0.5rem;
}

.hero__subtitle {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #fff1c1);
  color: #111;
  box-shadow: 0 10px 30px rgba(244, 193, 110, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--border);
}

.btn.ghost:hover,
.btn.outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.btn.outline {
  border: 1px solid var(--accent);
}

.hero__metrics {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero__metrics span {
  display: block;
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 4rem 7vw;
}

.section__header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  margin: 0.25rem 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section__header p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.package,
.faq__grid article {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.card h3,
.package h3,
.faq__grid h3 {
  margin-top: 0;
}

.card ul,
.package ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.timeline article {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 193, 110, 0.15);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.packages .package {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.package .price {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0.3rem 0 0;
}

.package .btn {
  align-self: flex-start;
}

.guarantee .support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.guarantee .support div {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.faq__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer {
  padding: 2.5rem 7vw 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }
  .hero__cta {
    flex-direction: column;
  }
  .btn {
    text-align: center;
  }
}
