* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5a5a62;
  --accent: #5f37ff;
  --accent-soft: #efeaff;
  --sand: #f6f4f1;
  --mist: #f2f4ff;
  --card: #ffffff;
  --outline: #e2e2ea;
  --shadow: 0 18px 40px rgba(18, 18, 30, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 10px;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 60px;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border-color: var(--outline);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  padding: 22px;
  background: var(--mist);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-visual .caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.section {
  padding: 60px 6vw;
}

.section.asym {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.section-note {
  color: var(--muted);
  max-width: 560px;
}

.layered {
  background: var(--sand);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 180px;
  height: 180px;
  background: var(--accent-soft);
  border-radius: 50%;
  z-index: 0;
}

.layered .layer-content {
  position: relative;
  z-index: 1;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.offset-card.alt {
  margin-left: 18px;
  background: var(--mist);
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--outline);
  border-radius: 20px;
  background: #fff;
}

.service-item strong {
  font-size: 1.05rem;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-panel {
  background: var(--mist);
  padding: 20px;
  border-radius: 24px;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--outline);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--outline);
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 50px 6vw 70px;
  background: #0f0f12;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer a {
  color: #d8d8df;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.hero-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-inline .pill {
  background: var(--mist);
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .split-row > * {
    flex: 1;
  }

  .section.asym {
    flex-direction: row;
  }

  .section.asym > * {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid > * {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > * {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > * {
    flex: 1;
  }
}
