@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1f2428;
  --muted: #5b646b;
  --sand: #f5f2ee;
  --snow: #ffffff;
  --pine: #2a3a3b;
  --gold: #b58a4a;
  --stone: #d8d2c7;
  --fog: #e6e2dd;
  --accent: #2b4c7e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #1c3557;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 8px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--fog);
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 32px 0 24px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 12px;
}

.hero-media {
  flex: 1 1 340px;
  position: relative;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: #c8d0d6;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.hero-badge {
  position: absolute;
  right: -10px;
  bottom: -18px;
  background: var(--snow);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.hero-badge p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.section {
  padding: 40px 0;
}

.section--offset {
  background: var(--snow);
  border-radius: 28px;
  margin-top: 30px;
  padding: 48px 48px 32px;
  position: relative;
  top: -30px;
}

.section--dark {
  background: var(--pine);
  color: var(--snow);
}

.section--dark a {
  color: #d2e4ff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 300px;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  background: #cfd6dc;
}

.inline-image img {
  width: 100%;
  height: 320px;
}

.section-bg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #cdd4d8;
}

.section-bg img {
  width: 100%;
  height: 360px;
}

.section-bg .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  color: var(--snow);
}

.floating-card {
  background: var(--snow);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.floating-card h3 {
  margin-top: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--snow);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callout {
  background: var(--fog);
  border-radius: 20px;
  padding: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-row--spaced {
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--snow);
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #1b3b61;
}

.btn.secondary {
  background: var(--gold);
  color: #2b2012;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #a27a3e;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--snow);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3ba;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--snow);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 32px 0 60px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--snow);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  max-width: 340px;
  z-index: 10;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-block {
  background: var(--snow);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e1dbd2;
}

.table-row span {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero-badge {
    position: static;
    margin-top: 12px;
  }

  .section--offset {
    padding: 32px 24px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
