* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #3b5cff;
  --accent-dark: #2b3fb2;
  --light: #f5f4f1;
  --warm: #efe8dc;
  --line: #e1ddd6;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

header {
  padding: 28px 6vw 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  padding: 40px 6vw 60px;
  background: linear-gradient(120deg, #f7f1e8 0%, #f9f6f2 55%, #ffffff 100%);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.section {
  padding: 56px 6vw;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--light);
}

.section.warm {
  background: var(--warm);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
}

h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.quote {
  font-size: 18px;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 40px 6vw;
  background: #111;
  color: #fff;
}

.footer a {
  color: #fff;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  width: min(360px, 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thin-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

@media (min-width: 900px) {
  h1 {
    font-size: 52px;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .form-actions {
    flex-direction: row;
  }
}
