*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1d1d1f;
  --muted: #5a5d63;
  --accent: #7a4ff2;
  --accent-dark: #4b2fb3;
  --soft: #f4f1ff;
  --warm: #fff3ea;
  --leaf: #dff4e6;
  --line: #e2e4ea;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(24, 26, 33, 0.12);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfbfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-panel {
  margin: 2.5rem 6vw 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.nav-panel::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--soft);
  z-index: -1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--accent);
}

.section {
  padding: 4.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.section--soft {
  background: var(--soft);
}

.section--warm {
  background: var(--warm);
}

.section--leaf {
  background: var(--leaf);
}

.section--tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-copy {
  max-width: 540px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  max-width: 560px;
  margin-left: auto;
  background: var(--paper);
  padding: 1.5rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-1.8deg);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button--dark {
  background: var(--accent-dark);
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offset-card {
  background: var(--paper);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.offset-card--lift {
  margin-left: auto;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat strong {
  font-size: 1.6rem;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-stack .image-frame {
  background: var(--paper);
  padding: 1rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.timeline-item {
  background: var(--paper);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card img {
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-tag {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 2rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer {
  margin-top: auto;
  background: #101114;
  color: #f6f6f9;
  padding: 3rem 6vw;
}

.footer a {
  color: #f6f6f9;
  text-decoration: none;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #0f0f12;
  color: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions button {
  flex: 1;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #fff;
  color: #0f0f12;
}

.cookie-actions .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hero-cta-inline {
  font-weight: 600;
  text-decoration: underline;
  color: var(--accent-dark);
}

.cta-card {
  background: var(--paper);
  padding: 1.6rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  margin-bottom: 0.6rem;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--paper);
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.map-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .nav-panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .offset-grid {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .split-stack {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat {
    flex: 1;
    min-width: 220px;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
