* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141315;
  --muted: #5b5a60;
  --accent: #4c3a8c;
  --accent-2: #f0b35e;
  --soft: #f6f3ef;
  --soft-2: #ece7f2;
  --line: #dad5e2;
}

body {
  font-family: "Inter", "Segoe UI", 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;
  flex-direction: column;
  padding: 24px 7vw 16px;
  gap: 16px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.secondary {
  background: transparent;
  color: var(--accent);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(76, 58, 140, 0.18);
}

.section {
  display: flex;
  flex-direction: column;
  padding: 64px 7vw;
  gap: 32px;
}

.section.soft {
  background: var(--soft);
}

.section.soft-2 {
  background: var(--soft-2);
}

.section.border-top {
  border-top: 1px solid var(--line);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.1;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(20, 19, 21, 0.05);
}

.card strong {
  font-size: 1.05rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(76, 58, 140, 0.1);
  font-size: 0.85rem;
}

.quote {
  padding: 18px 22px;
  border-left: 4px solid var(--accent-2);
  background: #fff8ec;
  border-radius: 14px;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #ffffff;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-2);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #4a2f03;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(240, 179, 94, 0.35);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 7vw;
  background: #111015;
  color: #f5f3fb;
}

.footer a {
  color: #f5f3fb;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 16px 30px rgba(20, 19, 21, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.highlight {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(240, 179, 94, 0.18);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-visual {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
