* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2e;
  background: #f6f7f4;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: #0b4b58;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: #0b4b58;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: #e9efe7;
  padding: 16px 32px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  background: #0b4b58;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 32px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.panel-image {
  flex: 1 1 320px;
  background: #dfe6e2;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.panel-image.tall {
  min-height: 420px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #5f6f73;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
}

.lead {
  font-size: 18px;
  color: #2f3e42;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ghost {
  background: transparent;
  color: #0b4b58;
  border: 1px solid #0b4b58;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 30px rgba(15, 30, 34, 0.08);
}

.card-image {
  background: #e5ece7;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #0b4b58;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #f0f4ef;
  border-radius: 999px;
  font-size: 12px;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(15, 30, 34, 0.08);
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd7d2;
  font: inherit;
  background: #f9fbf9;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #0b4b58;
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta button {
  background: #fff;
  color: #0b4b58;
}

.footer {
  background: #102528;
  color: #e9efe7;
  padding: 32px;
}

.footer a {
  color: #e9efe7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal {
  font-size: 13px;
  color: #c9d2cc;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 30, 34, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: #5f6f73;
}

.note {
  background: #edf2f0;
  padding: 16px;
  border-radius: 16px;
}

.tight {
  margin: 0;
}
