:root {
  --ink: #1e2430;
  --muted: #5b6578;
  --paper: #f5f2ee;
  --accent: #1a6aa6;
  --accent-dark: #155685;
  --warm: #f7d7b5;
  --cool: #d7e6f5;
  --card: #ffffff;
  --line: #e2e6ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fcfbf9;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 10px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  background: var(--cool);
  padding: 54px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 320px;
  height: 320px;
  background: var(--warm);
  border-radius: 50%;
  opacity: 0.5;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.hero-title {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  margin-bottom: 16px;
}

.hero-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(23, 39, 63, 0.1);
}

.hero-card ul {
  padding-left: 20px;
}

.primary-btn,
.secondary-btn,
.outline-btn {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.secondary-btn {
  background: var(--warm);
  color: var(--ink);
}

.outline-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 260px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.media-frame {
  border-radius: 16px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-1 { background: #d4dee8; }
.bg-2 { background: #d8d2c8; }
.bg-3 { background: #dbe3ea; }
.bg-4 { background: #d9e0ec; }
.bg-5 { background: #e2d7cf; }
.bg-6 { background: #d9e4d9; }
.bg-7 { background: #d6dee6; }
.bg-8 { background: #1b2b3c; }
.bg-9 { background: #d4dce5; }
.bg-10 { background: #e4d8d0; }
.bg-11 { background: #d2dde7; }
.bg-12 { background: #d6e1ec; }
.bg-13 { background: #d7dde5; }
.bg-14 { background: #dde4ed; }
.bg-15 { background: #d7e0ea; }
.bg-16 { background: #dce2ec; }
.bg-17 { background: #d8e0ea; }
.bg-18 { background: #d7e1ea; }

.band {
  background: #0f1d2d;
  color: #fff;
  padding: 60px 0;
}

.band .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-panel {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8;
  box-shadow: 0 14px 26px rgba(26, 106, 166, 0.25);
}

footer {
  background: #121826;
  color: #d4d8e2;
  padding: 40px 0 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.9rem;
  color: #b2b7c2;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 48px 0 60px;
  background: var(--cool);
}

.notice {
  background: var(--warm);
  padding: 18px;
  border-radius: 14px;
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }
}
