*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a32;
  --muted: #5b6a74;
  --accent: #1b6f7a;
  --accent-soft: #d9eef0;
  --paper: #f7f5f2;
  --surface: #ffffff;
  --shadow: 0 20px 40px rgba(18, 32, 40, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 24px 6vw 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid rgba(31, 42, 50, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 20px 6vw 50px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 280px;
  position: relative;
}

.hero-media .media-shell {
  background: #dfe9eb;
  padding: 16px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: translateY(12px);
}

.hero-media img {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  background: #cfd9dd;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #162027;
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 42, 50, 0.3);
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: var(--surface);
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(24, 38, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  background: #e2e7ea;
}

.offset-panel {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid rgba(27, 111, 122, 0.35);
}

.form-shell {
  background: var(--surface);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 50, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 32px;
  background: #12191f;
  color: #e4ebef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e4ebef;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c9d4da;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ink);
  color: #fff;
}

.cookie-actions .reject {
  background: #e7ecef;
  color: var(--ink);
}

.media-block {
  flex: 1 1 280px;
  min-width: 260px;
  background: #dce6ea;
  padding: 14px;
  border-radius: 20px;
}

.media-block img {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  background: #d0d7db;
}

.bg-ledger {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-ledger .offset-panel {
  background: rgba(17, 27, 33, 0.75);
  color: #fff;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column .column {
  flex: 1 1 280px;
  min-width: 260px;
}

.quote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  padding: 24px 6vw 40px;
}

.hero-mini img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  background: #d7e0e4;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
