* {
  box-sizing: border-box;
}

:root {
  --ink: #15171d;
  --muted: #5b6270;
  --bg: #f6f4f1;
  --accent: #6f4cff;
  --accent-dark: #4d31c9;
  --sand: #ece7e1;
  --olive: #dfe6db;
  --rose: #f1e4ea;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  padding: 28px 6vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  padding: 20px 6vw 40px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: column;
}

.split-section.compact {
  padding: 28px 6vw;
}

.split-section.dense {
  padding: 32px 6vw;
}

.split-section.accent {
  background: var(--sand);
}

.split-section.olive {
  background: var(--olive);
}

.split-section.rose {
  background: var(--rose);
}

.split-section.dark {
  background: var(--ink);
  color: var(--white);
}

.split-content {
  flex: 1;
}

.split-media {
  flex: 1;
  position: relative;
}

.split-media .overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 10px 0 16px;
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.ghost {
  border-color: transparent;
  background: transparent;
  color: var(--accent);
  padding: 0;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover {
  color: var(--white);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #dedede;
  font-size: 0.85rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.stat {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--white);
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}

.service-item {
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item .price {
  font-weight: 700;
  color: var(--accent);
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
  margin-top: 12px;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #e4e4e4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d5d5;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 28px 6vw 40px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.simple-list li {
  list-style: square;
}

.content-block {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e4e4e4;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    padding: 40px 6vw 70px;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 220px;
  }
}
