* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101317;
  --muted: #5b6470;
  --accent: #ff7a59;
  --accent-dark: #e15c3e;
  --cool: #0d1d3c;
  --soft: #f4f6f9;
  --warm: #fff2eb;
  --card: #ffffff;
  --border: #e2e7ee;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, 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: 18px;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 68px 6vw;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.hero {
  padding-top: 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-row.spaced {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 19, 23, 0.08);
}

.card p {
  margin-bottom: 12px;
}

.highlight {
  color: var(--ink);
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img:last-child {
  align-self: flex-end;
  width: 82%;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 18px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: #ffffff;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.testimonial span {
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.4rem;
  color: var(--cool);
  font-weight: 700;
  margin-bottom: 10px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 40px rgba(13, 29, 60, 0.1);
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 24px;
  border-radius: 20px;
  background: var(--cool);
  color: #ffffff;
}

.sticky-cta p {
  color: #d8deea;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.footer {
  padding: 36px 6vw;
  background: #0f172a;
  color: #e2e7ee;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #e2e7ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: none;
  z-index: 20;
  box-shadow: 0 18px 40px rgba(16, 19, 23, 0.18);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--soft);
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .card-row,
  .pricing-grid,
  .stat-row {
    flex-direction: row;
  }

  .card,
  .testimonial,
  .stat,
  .pricing-grid .card {
    flex: 1;
  }

  .form-shell {
    max-width: 480px;
  }

  .cookie-banner {
    left: auto;
    max-width: 420px;
  }
}
