* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #19161c;
  --muted: #5a5363;
  --paper: #f7f5f2;
  --accent: #6a42ff;
  --accent-dark: #3c1fd1;
  --warm: #f2e7ff;
  --cool: #e7f3ff;
  --shadow: 0 18px 40px rgba(28, 20, 40, 0.12);
  --radius: 22px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 24px 6vw 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.hero {
  padding: 32px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 20% 0 0 45%;
  background: var(--warm);
  border-radius: 40px 0 0 40px;
  z-index: -1;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-visual {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 6vw;
}

.section--offset {
  background: var(--paper);
  margin: 0 0 50px;
  border-radius: 40px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cool);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service {
  padding: 18px;
  border: 1px solid #e1dbe7;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #d9d2e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.banner.show {
  display: flex;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  top: 35%;
  right: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  font-weight: 600;
  z-index: 30;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #131018;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d2c7ff;
}

.page-header {
  padding: 40px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.accent-block {
  background: var(--cool);
  padding: 22px;
  border-radius: var(--radius);
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-top {
    max-width: 520px;
  }

  .hero-visual {
    max-width: 48%;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .service {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-shell {
    max-width: 520px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-row {
    flex-direction: row;
  }

  .sticky-cta {
    display: inline-flex;
  }
}
