* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --light: #f8fafc;
  --soft: #eef2f7;
  --accent: #0f766e;
  --accent-2: #0ea5e9;
  --warm: #fde68a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--warm);
  color: #7c2d12;
  font-size: 0.78rem;
}

.section {
  padding: 24px 6vw;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: #0f172a;
  color: #f8fafc;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background: #dbeafe;
  padding: 10px;
  border-radius: 18px;
}

.image-frame.alt {
  background: #d1fae5;
}

.image-frame.deep {
  background: #e2e8f0;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0c4a6e;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #1f2937;
}

.btn.light {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5f5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: #ecfeff;
  padding: 16px;
  border-radius: 14px;
  margin-top: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.form-wrap {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0ea5e9;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.4);
  z-index: 20;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 24px 6vw 80px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #bae6fd;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner button {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-banner .reject {
  background: #e2e8f0;
  color: #1f2937;
}

@media (max-width: 768px) {
  .nav {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}
