* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e24;
  --muted: #5b6675;
  --accent: #6a4de6;
  --accent-dark: #4a33b8;
  --sand: #f6f3ef;
  --mist: #eef1f6;
  --night: #11141a;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(17, 20, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.subheadline {
  font-size: 1.1rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.85rem;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section.light {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #ffffff;
}

.section.dark .subheadline,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.dark .metric {
  background: #1b1f28;
  color: #ffffff;
  box-shadow: none;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.form-wrapper {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8dde7;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6vw;
  background: #0f1116;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(106, 77, 230, 0.3);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #ffffff;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--mist);
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .metrics {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .columns {
    flex-direction: row;
  }

  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
