*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1b24;
  --muted: #4a5a68;
  --accent: #1f5b89;
  --accent-soft: #e6f0f8;
  --surface: #f6f4f1;
  --card: #ffffff;
  --line: #d7dde3;
  --shadow: 0 12px 40px rgba(15, 27, 36, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

main {
  flex: 1;
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section--light {
  background: var(--card);
}

.section--tint {
  background: var(--accent-soft);
}

.section--image {
  background-color: #101b25;
  color: #f4f6f8;
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section--image .inline-link {
  color: #f7e7b6;
}

.section--offset-left .section-inner {
  margin-left: 6vw;
}

.section--offset-right .section-inner {
  margin-right: 6vw;
}

.section-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.section-inner.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero {
  padding: 110px 6vw 90px;
  color: #fdfdfd;
  background: #0b1a24;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  max-width: 640px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.media {
  flex: 1;
  min-width: 260px;
  background: #dfe7ee;
  border-radius: 24px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px;
  flex: 1;
  min-width: 240px;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 16px;
  object-fit: cover;
  background: #e4e9ee;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 560px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  background: #0b1a24;
  color: #f6f6f6;
  padding: 50px 6vw;
}

.footer a {
  color: #f6f6f6;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.disclaimer {
  margin-top: 20px;
  color: #c8d2db;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-banner .button.secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.split-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-list div {
  flex: 1;
  min-width: 220px;
}

.notice {
  background: #fff3d8;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #f1dfb8;
}

.page-hero {
  padding: 70px 6vw 40px;
  background: #eef3f7;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.plain {
  max-width: 860px;
}
