* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f4f2ef;
  --ink: #1d2329;
  --muted: #4c5a66;
  --accent: #1f6f78;
  --accent-2: #d1a86a;
  --soft: #ffffff;
  --panel: #e8e3da;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
  max-width: 240px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.hero {
  padding: 28px 0 60px;
}

.hero .headline {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-card {
  background: var(--soft);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #1a6168;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 54px 0;
}

.section-heading {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
}

.image-frame {
  background: #d3dbe0;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.wide {
  min-height: 280px;
}

.metrics {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.metric {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
  flex: 1 1 180px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: #3b424a url("https://images.unsplash.com/photo-1764447673838-c69482b6b041?w=1400&q=80") center/cover no-repeat;
  border-radius: 22px;
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 31, 38, 0.55);
}

.highlight-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.form-wrap {
  background: var(--soft);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c5c9cf;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 28px 0 36px;
  background: #11181f;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #c9d0d7;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta button {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-visible {
  display: flex;
}

.two-col {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.note-box {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d7dde4;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.status {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 900px) {
  .split,
  .two-col {
    flex-direction: column;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
