* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #151517;
  --muted: #4e4f55;
  --paper: #f7f4ef;
  --accent: #e24b3b;
  --accent-dark: #b53a2e;
  --sage: #2e5b4d;
  --sun: #f0b429;
  --cream: #fff9f1;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw 12px;
  position: relative;
  z-index: 3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 30px 7vw 70px;
  gap: 28px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: 22px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(226, 75, 59, 0.12);
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.hero-media {
  position: relative;
  align-self: flex-end;
  width: min(420px, 80vw);
  margin-left: auto;
  transform: translateX(4vw);
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(10, 10, 10, 0.2);
}

.section {
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.offset {
  background: var(--cream);
}

.section.slate {
  background: #101218;
  color: #f3f4f6;
}

.section.bg-rhythm {
  background-image: url("../img/rhythm-map.svg");
  background-size: cover;
  background-position: center;
}

.section.slate p,
.section.slate a {
  color: #d1d5db;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asym-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(18, 18, 22, 0.08);
}

.split-card.accent {
  background: var(--sage);
  color: #f1f5f4;
}

.split-card.accent a {
  color: #fdf6d5;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46, 91, 77, 0.12);
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 600;
}

.text-large {
  font-size: 1.2rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(15, 15, 20, 0.08);
}

.card img {
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1f2937;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.price-card strong {
  font-size: 1.4rem;
}

.highlight {
  background: #fff3d6;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.form-panel {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 46px rgba(20, 20, 22, 0.12);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(12, 12, 16, 0.16);
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  display: flex;
  justify-content: flex-end;
  padding: 0 7vw 30px;
  z-index: 2;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(226, 75, 59, 0.3);
}

.footer {
  margin-top: auto;
  padding: 40px 7vw 50px;
  background: #111217;
  color: #c9cbd1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #c9cbd1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111217;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #fff;
  color: #111217;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.08);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .section-grid {
    flex-direction: row;
  }

  .asym-wrap {
    flex-direction: row;
  }

  .split-card {
    flex: 1;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .stacked-cards,
  .pricing-wrap {
    flex-direction: row;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }
}
