* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1f2e;
  --muted: #55606d;
  --primary: #1f5678;
  --accent: #f2b34d;
  --surface: #f5f7fa;
  --surface-strong: #e7eef5;
  --line: #d2dbe4;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 5%;
  background: #ffffff;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 28px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(15, 31, 46, 0.15);
}

.page {
  padding: 48px 5% 80px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 0;
}

.panel {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
}

.panel strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-bottom: 16px;
  line-height: 1.2;
}

.panel p {
  margin-bottom: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 600;
  background: #ffffff;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #cfd8e2;
  min-height: 320px;
}

.image-short {
  min-height: 160px;
}

.image-tall {
  min-height: 420px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.card img {
  border-radius: 12px;
}

.card h3 {
  margin: 14px 0 8px;
}

.price {
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.form-card label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  font-family: inherit;
}

.form-card button {
  background: var(--accent);
  border: none;
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  background: var(--surface-strong);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 5%;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  margin-top: 12px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 900px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 360px;
  box-shadow: 0 12px 26px rgba(15, 31, 46, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--primary);
  color: #ffffff;
}

.cookie-reject {
  background: var(--surface-strong);
  color: var(--ink);
}

.notice {
  padding: 14px 18px;
  background: var(--surface-strong);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
