* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1e1f;
  --muted: #5f6b6f;
  --accent: #135dff;
  --accent-soft: #e6eeff;
  --sand: #f4f2ee;
  --steel: #e1e7ea;
  --charcoal: #101517;
  --highlight: #fff3d6;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 36px 6vw 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--charcoal);
  color: #f6f8f9;
}

.section.dark .lead {
  color: #d1d6d9;
}

.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--steel);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card.dark {
  background: #161b1d;
  border-color: #2c3336;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.badge {
  background: var(--highlight);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  width: fit-content;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d7dde1;
}

.image-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  background-color: #4a5660;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-band-one {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-band-two {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.band > * {
  position: relative;
  z-index: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.list li {
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--steel);
}

.list.dark li {
  background: #1e2426;
  border-color: #2c3336;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--steel);
  font-family: inherit;
}

.form button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #0f1315;
  color: #d6dadd;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d6dadd;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--steel);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  align-items: center;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--steel);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--accent-soft);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.two-col {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
