* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1d1b18;
  --muted: #6b625a;
  --accent: #a4452d;
  --accent-dark: #7a2f1c;
  --card: #ffffff;
  --line: #e3ded7;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 7vw 16px;
  background: #f2eee9;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.section {
  padding: 52px 7vw;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: #fffaf5;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  flex: 1;
}

.split-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1e6dc;
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.headline {
  font-size: 2rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  padding: 16px;
  background: #fff;
  border-left: 4px solid var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.list strong {
  color: var(--ink);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.footer {
  padding: 40px 7vw;
  background: #f2eee9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .metrics {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }
}
