* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f2a;
  --muted: #5b6373;
  --accent: #2f6f7e;
  --accent-soft: #d9ecf0;
  --sand: #f4f2ee;
  --stone: #ece7e1;
  --night: #0f1b2b;
  --sun: #f7f1e6;
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-ad {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  padding: 30px 0 60px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-card {
  background: var(--sand);
  padding: 36px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card h1 {
  font-size: 2.3rem;
  margin: 0;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #f5f5f5;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #19243a;
  color: #f5f5f5;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
  display: flex;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list span {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  width: fit-content;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8d0db;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.2);
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.15);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer {
  background: var(--sun);
  padding: 50px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  color: var(--muted);
  font-size: 0.85rem;
}

.page-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.banner {
  background: var(--stone);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.banner .media-frame {
  min-height: 200px;
  flex: 1 1 280px;
}

.banner-text {
  flex: 1 1 260px;
}

.ref-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice {
  background: var(--accent-soft);
  padding: 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.hero-image-block {
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.bg-hero {
  background-color: #dbe4ea;
}

.bg-1 {
  background-color: #d9e2e8;
}

.bg-2 {
  background-color: #e8e2d9;
}

.bg-3 {
  background-color: #202c42;
}

.bg-4 {
  background-color: #233248;
}

.bg-5 {
  background-color: #1f2b41;
}

.bg-6 {
  background-color: #1d2a3b;
}

.bg-7 {
  background-color: #24344c;
}

.bg-8 {
  background-color: #e0e6ef;
}

.bg-9 {
  background-color: #efe7dc;
}

.bg-10 {
  background-color: #e2e6eb;
}
