* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2331;
  --muted: #5c667a;
  --accent: #2f5aa8;
  --accent-dark: #23437b;
  --surface: #f4f6f9;
  --surface-strong: #e3e8f2;
  --line: #d4d9e3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--surface);
}

.section.strong {
  background: var(--surface-strong);
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1;
}

.tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 12px;
}

.headline {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.subhead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.btn-ghost {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.img-wrap {
  background: #d9dde3;
  border-radius: 16px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 20px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

footer {
  padding: 40px 0;
  background: #0f1521;
  color: #ffffff;
}

footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-block {
  flex: 1;
  min-width: 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-legal .overlay {
  background: rgba(15, 21, 33, 0.68);
  color: #ffffff;
  padding: 48px;
  border-radius: 18px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }
}
