* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --light: #f8fafc;
  --accent: #0ea5a6;
  --accent-dark: #0f766e;
  --border: #e2e8f0;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6%;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav__badge {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero {
  padding: 48px 6% 36px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split__media {
  background: #eef2f6;
  padding: 12px;
  border-radius: 20px;
}

.media-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.section {
  padding: 40px 6%;
}

.section--tint {
  background: var(--light);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  color: #ffffff;
  background: var(--accent-dark);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.btn:focus,
.btn:hover {
  background: #0b5e57;
}

.btn.secondary:focus,
.btn.secondary:hover {
  background: rgba(15, 118, 110, 0.08);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 166, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.background-panel {
  background: #0f172a;
  color: #f8fafc;
  border-radius: 20px;
  padding: 26px;
}

.background-panel a {
  color: #fbbf24;
}

.cta-panel {
  background-image: url("https://images.unsplash.com/photo-1547394765-185e1e68f34e?w=1400&q=80");
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: #ffffff;
}

.cta-panel__inner {
  background: rgba(15, 23, 42, 0.75);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 28px 6%;
  border-top: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-hero {
  background: #f1f5f9;
  border-radius: 18px;
  padding: 20px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.image-frame {
  background: #e2e8f0;
  border-radius: 16px;
  padding: 12px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
