* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #5f5f6b;
  --accent: #7d3cff;
  --accent-dark: #5520c7;
  --peach: #f6e7df;
  --lavender: #ece8ff;
  --sand: #f5f0e8;
  --white: #ffffff;
  --shadow: 0 24px 50px rgba(16, 12, 60, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 0;
}

.top-bar .brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.top-bar .brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.split-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.split-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.split-nav .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw 40px;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--lavender);
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 6vw;
}

.section.alt {
  background: var(--sand);
  padding: 32px 6vw;
}

.section .asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-left: clamp(0px, 6vw, 60px);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stacked-cards .card {
  border-radius: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.list-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-line span {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid .service-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--lavender);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card strong {
  font-size: 1.1rem;
}

.price-tag {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--peach);
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ded8f0;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.footer {
  padding: 30px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #eceaf7;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: #e7e4f5;
  color: var(--ink);
}

.hero-image {
  position: relative;
}

.hero-image .badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(29, 29, 31, 0.85);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.side-panel {
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wide-card {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.hero-small {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-small h1 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}

@media (min-width: 900px) {
  .hero .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .section .asym-row,
  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-image,
  .hero-card,
  .offset-card,
  .side-panel,
  .wide-card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid .service-card {
    flex: 1 1 calc(50% - 12px);
  }
}
