* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5c5c6a;
  --accent: #7b2cff;
  --accent-dark: #4f1ab3;
  --sand: #f7f2ee;
  --mist: #eef1f6;
  --peach: #fde9df;
  --shadow: 0 24px 40px rgba(21, 16, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 6vw 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50px;
  width: 220px;
  height: 220px;
  background: var(--peach);
  border-radius: 42% 58% 66% 34%;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.ghost-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mist);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: var(--mist);
}

.section.offset {
  margin-top: -30px;
  background: var(--sand);
  border-radius: 40px 40px 0 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 20, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  background: var(--peach);
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 150px;
  font-weight: 600;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 20, 40, 0.08);
  color: var(--muted);
}

.sticky-cta {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  position: sticky;
  top: 20px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack img {
  border-radius: 18px;
  flex: 1;
  min-width: 180px;
}

.footer {
  padding: 40px 6vw 50px;
  background: #111017;
  color: #f4f4f8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #f4f4f8;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--mist);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(20, 20, 50, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dedee6;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #111017;
  color: #f4f4f8;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #3b3a45;
  color: #fff;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }
}
