* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5c6b73;
  --accent: #2a7d8c;
  --accent-dark: #1e5c66;
  --paper: #f7f6f2;
  --sand: #efe9df;
  --cloud: #e9eff1;
  --mist: #dde6e8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 32px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 20px 6vw 60px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-media {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--cloud);
  border-radius: 28px;
  padding: 20px;
}

.hero-media img {
  width: 100%;
  height: 360px;
  border-radius: 22px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section.muted {
  background: var(--sand);
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-wrap {
  background: var(--mist);
  border-radius: 22px;
  padding: 12px;
}

.image-wrap img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--cloud);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.floating-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--mist);
  font-size: 1rem;
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
}

footer {
  background: #10171b;
  color: #f5f5f5;
  padding: 40px 6vw;
}

footer a {
  color: #f5f5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d6dadd;
}

.sticky-rail {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-rail a {
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--mist);
  padding: 16px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tight {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-rail {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
