* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f1a1c;
  --muted: #4b5a63;
  --accent: #ff6b2c;
  --accent-dark: #d8511f;
  --light: #f5f7f8;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(15, 26, 28, 0.12);
  --radius: 22px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 0 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--accent);
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 107, 44, 0.4);
  padding-bottom: 2px;
}

.layered {
  position: relative;
  background: var(--light);
}

.layered::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 26, 28, 0.08);
  pointer-events: none;
}

.panel {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border-radius: 18px;
  background: var(--surface);
  padding: 18px;
  border: 1px solid rgba(15, 26, 28, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.badge {
  background: rgba(255, 107, 44, 0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  width: fit-content;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 26, 28, 0.2);
  font-size: 0.95rem;
  width: 100%;
}

.form small {
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  z-index: 3;
}

.sticky-cta a {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(15, 26, 28, 0.08);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (min-width: 900px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    margin: 0;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
