* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1113;
  --bg-soft: #171a1f;
  --bg-accent: #1f232b;
  --text: #f5f6f7;
  --muted: #c3c7cc;
  --accent: #f6b73c;
  --accent-dark: #c78512;
  --line: #2b313a;
  --card: #14171c;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.95rem;
}

.disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 90px 6vw 70px;
  min-height: 72vh;
  overflow: hidden;
}

.hero .img-wrap {
  position: absolute;
  inset: 0;
  background: #20262f;
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.25;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(246, 183, 60, 0.1);
}

.section {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .media {
  flex: 1 1 320px;
}

.img-wrap {
  width: 100%;
  background: #252b36;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.price {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.highlight {
  background: var(--bg-accent);
  border-radius: 26px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
}

.form-wrap {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f1216;
  color: var(--text);
}

.service-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-choice {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

.service-choice.active {
  border-color: var(--accent);
  color: var(--accent);
}

.service-choice:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.footer {
  padding: 50px 6vw 70px;
  border-top: 1px solid var(--line);
  background: #0c0d10;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(246, 183, 60, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 60px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero .img-wrap {
  max-height: 320px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    padding-top: 110px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
