* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #1d4ed8;
  --accent-strong: #0f3aa8;
  --sand: #f8fafc;
  --sun: #fbbf24;
  --deep: #0b1220;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 8%;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px dashed rgba(71, 85, 105, 0.4);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 60px 8% 40px;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: 280px;
}

.split-media {
  flex: 1;
  min-width: 280px;
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.secondary:hover {
  background: rgba(29, 78, 216, 0.1);
}

.section {
  padding: 60px 8%;
  background: #ffffff;
}

.section.alt {
  background: #f1f5f9;
}

.section.deep {
  background: var(--deep);
  color: #e2e8f0;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 520px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.service-option button {
  min-width: 120px;
}

.selected-service {
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  font-size: 14px;
  font-family: inherit;
}

.split-note {
  font-size: 14px;
  color: var(--muted);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.testimonial span {
  font-weight: 600;
  color: var(--accent);
}

.footer {
  margin-top: auto;
  padding: 40px 8%;
  background: #0f172a;
  color: #cbd5f5;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #cbd5f5;
  text-decoration: underline;
}

.disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: #94a3b8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: #1f2937;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.hidden {
  display: none;
}

.background-sunrise {
  background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.2)),
    url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-tiles {
  background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.2)),
    url("https://images.unsplash.com/photo-1780445392792-556e5609c5ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-field {
  background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.15)),
    url("https://images.unsplash.com/photo-1670519808728-335b1eb2ef52?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    max-width: none;
  }
}
