:root {
  color-scheme: light;
  --bg: #f8fafc;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #0ea5e9;
  --accent-2: #f97316;
  --accent-3: #a855f7;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.split-section {
  display: flex;
  flex-direction: column;
  padding: 64px 6vw;
  gap: 32px;
}

.split-section.reverse {
  flex-direction: column;
}

.split-section .split-content,
.split-section .split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-section .split-content {
  justify-content: center;
}

.split-section .split-media {
  align-items: center;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.85rem;
  width: fit-content;
}

.title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid #cbd5f5;
}

.btn.accent {
  background: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 10px 16px;
  border-radius: 16px;
  background: #f1f5f9;
  font-size: 0.9rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent-2);
}

.split-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-grid .row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #f1f5f9;
}

.highlight {
  background: #0f172a;
  color: #fff;
}

.highlight .subtitle {
  color: #e2e8f0;
}

.testimonial {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-family: inherit;
}

.service-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer {
  margin-top: auto;
  padding: 48px 6vw;
  background: #0f172a;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-3);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini {
  font-size: 0.85rem;
  color: var(--muted);
}

.section-alt {
  background: #f1f5f9;
}

.section-gradient {
  background: linear-gradient(120deg, #eff6ff, #fff7ed);
}

.split-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-check span {
  padding-left: 28px;
  position: relative;
}

.list-check span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: stretch;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split-grid {
    flex-direction: row;
  }

  .split-grid .row {
    flex: 1;
  }

  .split-feature {
    flex-direction: row;
  }
}
