* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0b1f2a;
  --muted: #51616f;
  --accent: #1f7a6b;
  --accent-soft: #dff1ee;
  --sand: #f6f4ef;
  --night: #0f2a3a;
  --surface: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 42, 58, 0.08);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.hero {
  margin-top: 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1;
}

.media {
  border-radius: 20px;
  overflow: hidden;
  background: #d9e6e2;
  min-height: 280px;
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  margin-top: 60px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 42, 58, 0.08);
}

.card .card-media {
  width: 140px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #e6efe9;
}

.card .price {
  color: var(--ink);
  font-weight: 700;
  margin-top: 6px;
}

.bg-band {
  margin-top: 60px;
  background: var(--night);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
}

.bg-band p {
  color: #d6e2ea;
}

.bg-band .split {
  align-items: stretch;
}

.bg-band .media {
  min-height: 240px;
  background: #14364a;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 42, 58, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d7dd;
  font-size: 16px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: 80px;
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.legal {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(15, 42, 58, 0.2);
}

.sticky-cta:hover {
  background: #152f3b;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 42, 58, 0.18);
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 240px;
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 42, 58, 0.08);
}

.notice {
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 16px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
