* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --ink: #1f2428;
  --muted: #5c6368;
  --accent: #f4b400;
  --accent-dark: #d39100;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(20, 24, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  position: relative;
  z-index: 4;
}

.nav__brand {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.nav__links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover {
  border-bottom-color: var(--ink);
}

.hero {
  position: relative;
  padding: 120px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 24, 0.62);
  z-index: 0;
}

.hero__content,
.hero__cta {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #f9e27d;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 10px 0 12px;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #e9edf0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #1c1c1c;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section--light {
  background: var(--surface);
}

.section--soft {
  background: #f0eee8;
}

.section--dark {
  background: #1b2024;
  color: #f5f5f5;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0;
}

.section__lead {
  max-width: 720px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split__media,
.split__text {
  flex: 1;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card--dark {
  background: rgba(255, 255, 255, 0.08);
  color: #f9f9f9;
  box-shadow: none;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.14);
  color: #805b00;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 1rem;
}

.services-chooser {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e1e1e1;
  background: #faf9f6;
}

.service-option input {
  margin-top: 6px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f2428;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.sticky-cta span {
  font-size: 0.9rem;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #14181b;
  color: #e0e0e0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer__note {
  font-size: 0.82rem;
  color: #a7b0b7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner__actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #d5d5d5;
  background: #f7f7f7;
  font-weight: 600;
}

.cookie-banner__actions button:first-child {
  background: #1f2428;
  color: #ffffff;
  border-color: #1f2428;
}

.list-split {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline__step {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.notice {
  padding: 14px 18px;
  background: #fff4d1;
  border-radius: 14px;
  font-size: 0.95rem;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.text-link {
  text-decoration: underline;
}

@media (min-width: 780px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing__grid {
    flex-direction: row;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions {
    flex-direction: row;
  }

  .list-split {
    flex-direction: row;
  }
}
