* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --dark: #1c1c1c;
  --accent: #2f5bff;
  --accent-soft: #e3eaff;
  --warm: #f2d7c2;
  --muted: #6a6a6a;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7%;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  font-weight: 600;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 7%;
}

.split-section.alt {
  background: var(--white);
}

.split-section.warm {
  background: var(--warm);
}

.split-section.dark {
  background: var(--dark);
  color: var(--white);
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  line-height: 1.2;
  margin-bottom: 14px;
}

.split-text h1 {
  font-size: 2.3rem;
}

.split-text h2 {
  font-size: 1.9rem;
}

.split-text p {
  font-size: 1.05rem;
  color: inherit;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.outline {
  border: 1px solid currentColor;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: rgba(255, 255, 255, 0.1);
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d3ce;
  font-size: 1rem;
  width: 100%;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(47, 91, 255, 0.4);
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 32px 7%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.section-note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-inner.reverse {
    flex-direction: row-reverse;
  }

  .split-text {
    flex: 1;
    padding-right: 30px;
  }

  .split-media {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }
}
