* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --soft: #f1f5f9;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --warm: #f8fafc;
  --highlight: #e2f2ff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 10px;
}

.nav {
  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.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-cta:hover {
  border-bottom-color: var(--accent);
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: var(--warm);
}

.section.accent {
  background: var(--highlight);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split .content,
.split .media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.story-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 160px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2e8f0;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
  width: 100%;
}

.footer {
  padding: 36px 0 50px;
  border-top: 1px solid #e2e8f0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
  display: none;
  gap: 12px;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    gap: 40px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 240px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }
}
