* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #1d4ed8;
  --accent-soft: #e0e7ff;
  --surface: #f8fafc;
  --panel: #ffffff;
  --warm: #f5f0ea;
  --cool: #eef2f7;
  --line: #e2e8f0;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  padding: 28px 6vw 10px;
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 70px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 340px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 260px;
  background-color: #dbeafe;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero {
  background: var(--cool);
}

.hero .text h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.hero .text p {
  font-size: 1.1rem;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 30px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 6px;
}

.band {
  background: var(--warm);
}

.band.alt {
  background: var(--surface);
}

.inline-note {
  padding: 14px 18px;
  background: #f1f5f9;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.testimonial {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.form-panel {
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: #bae6fd;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-block {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
