@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1c1f2a;
  --muted: #5a6478;
  --accent: #2f6fed;
  --accent-dark: #1c4fb5;
  --peach: #f6ede7;
  --sand: #f2f5fb;
  --stone: #e7ecf6;
  --leaf: #e8f3ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 16px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.6px;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--white);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: var(--accent);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section--tint {
  background: var(--sand);
}

.section--peach {
  background: var(--peach);
}

.section--leaf {
  background: var(--leaf);
}

.section--bg-media {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section--bg-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 36, 0.6);
}

.section--bg-media > * {
  position: relative;
  z-index: 1;
}

.section--bg-media .lead,
.section--bg-media .section-title {
  color: var(--white);
}

.section-title {
  font-size: 34px;
  margin: 0 0 18px;
  max-width: 720px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 28px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 360px;
  min-width: 280px;
}

.hero-visual {
  flex: 1 1 340px;
  min-width: 260px;
  position: relative;
}

.media-frame {
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  padding: 10px;
}

.media-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  right: 12%;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(28, 31, 42, 0.12);
  max-width: 240px;
  font-size: 14px;
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: var(--accent);
  color: var(--white);
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 280px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  position: relative;
  box-shadow: 0 18px 36px rgba(28, 31, 42, 0.08);
}

.offset-card:nth-child(2n) {
  transform: translateY(18px);
}

.offset-card h3 {
  margin-top: 0;
}

.card-image {
  background: #e3e7f5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-weight: 600;
}

.split-asym {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.split-asym > div {
  flex: 1 1 320px;
}

.highlight {
  background: var(--white);
  border-left: 6px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(28, 31, 42, 0.08);
}

.stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 28px rgba(28, 31, 42, 0.08);
}

.stat strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.form-shell {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(28, 31, 42, 0.12);
  position: relative;
}

.form-shell::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 18px;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: var(--peach);
  z-index: -1;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7ea;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-cta:hover,
.inline-cta:focus {
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(28, 31, 42, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.footer {
  padding: 50px 6vw 80px;
  background: #121622;
  color: #e7ecf6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer a {
  color: inherit;
  opacity: 0.8;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #b4bdd0;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(28, 31, 42, 0.2);
  display: none;
  gap: 12px;
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 14px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.cookie-actions button.reject {
  background: transparent;
  color: var(--accent-dark);
}

.cookie-actions button.reject:hover,
.cookie-actions button.reject:focus {
  background: var(--accent);
  color: var(--white);
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.overlap {
  margin-top: -50px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 18px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.two-column {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 320px;
}

.note {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #d7deef;
}

@media (max-width: 720px) {
  .hero-card {
    position: static;
    margin-top: 16px;
  }
  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
