* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1a24;
  --muted: #526273;
  --accent: #1c6b5e;
  --accent-dark: #11453d;
  --bg: #f7f6f2;
  --soft: #eef2f0;
  --highlight: #f7e7d4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  padding: 24px 6vw 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 96px;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.section-text {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.highlight {
  background: var(--soft);
  padding: 28px;
  border-radius: 16px;
}

.panel.accent {
  background: var(--highlight);
  padding: 28px;
  border-radius: 16px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d5d9df;
  font-size: 12px;
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(15, 26, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 30px rgba(15, 26, 36, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d9df;
  font-size: 15px;
}

footer {
  padding: 48px 6vw;
  background: #0f1a24;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #fff;
}

.legal-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.legal-grid .panel {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.22);
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(15, 26, 36, 0.18);
  padding: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-banner button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
}

.cookie-banner button.secondary {
  background: transparent;
  color: var(--accent);
}

.hero {
  background: linear-gradient(130deg, #f7e7d4 0%, #eef2f0 60%, #ffffff 100%);
}

.divider {
  height: 1px;
  background: rgba(15, 26, 36, 0.12);
  margin: 16px 0;
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
