* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1f2430;
  --muted: #5b6475;
  --primary: #1a4d8f;
  --accent: #c9973c;
  --light: #f4f6fa;
  --dark: #0f1b2d;
  --card: #ffffff;
  --border: #e1e6f0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 6vw 24px;
  background: linear-gradient(120deg, #f7f4ee 0%, #e6eefb 100%);
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--primary);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: #2b2110;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 42px 6vw;
  border-bottom: 1px solid var(--border);
}

.split-section.reverse {
  background: var(--light);
}

.split-section .split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.split-section p {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 27, 45, 0.08);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.inline-link {
  color: var(--primary);
  font-weight: 600;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  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 {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: var(--dark);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.footer {
  margin-top: auto;
  background: var(--dark);
  color: #d7deea;
  padding: 30px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #d7deea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 14px;
  z-index: 20;
  box-shadow: 0 18px 30px rgba(15, 27, 45, 0.12);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 860px) {
  .hero .hero-grid,
  .split-section .split,
  .two-column {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-text,
  .split-section .split > div,
  .two-column > div {
    flex: 1;
  }

  .split-section.reverse .split {
    flex-direction: row-reverse;
  }

  .cookie-banner.visible {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
