* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6c7b;
  --accent: #ff8a3d;
  --accent-dark: #d66b20;
  --surface: #ffffff;
  --surface-alt: #f6f2ee;
  --surface-contrast: #eef4f7;
  --shadow: 0 20px 40px rgba(18, 28, 45, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
}

.hero {
  padding: 40px 0 72px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media-block {
  flex: 1;
  position: relative;
}

.media-layer {
  position: absolute;
  inset: auto -24px -24px auto;
  width: 55%;
  height: 55%;
  background: rgba(255, 138, 61, 0.16);
  border-radius: 28px;
  z-index: -1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(31, 41, 51, 0.15);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.dark {
  background: var(--surface-contrast);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 51, 0.2);
  font-size: 1rem;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.highlight {
  background: rgba(255, 138, 61, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
  display: inline-flex;
  align-self: flex-start;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.split-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.note {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
