* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101214;
  --muted: #58606a;
  --accent: #2962ff;
  --accent-dark: #1d43a8;
  --surface: #f4f5f7;
  --surface-strong: #e8ebf2;
  --outline: #d5d8de;
  --sand: #f7f2ec;
  --night: #0f172a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: var(--surface-strong);
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 32px 6vw 20px;
  border-bottom: 1px solid var(--outline);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.page {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.media {
  background-color: var(--surface-strong);
  padding: 16px;
  border-radius: 18px;
}

.media img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.hero {
  background: var(--sand);
  padding: 50px 6vw;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--outline);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-panel {
  background: var(--night);
  color: #ffffff;
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-section {
  background-color: #1f2937;
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 48px;
  border-radius: 22px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--outline);
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

footer {
  background: var(--surface-strong);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--outline);
  background: #ffffff;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.notice {
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.divider {
  height: 1px;
  background: var(--outline);
}

@media (max-width: 900px) {
  .disclosure {
    text-align: left;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
