* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f2a;
  --muted: #5b6473;
  --accent: #2e5bff;
  --accent-dark: #2142b8;
  --surface: #f5f6f9;
  --surface-2: #eef1f6;
  --surface-3: #fff6ef;
  --line: #d9dde6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.section {
  padding: 70px 6vw;
}

.section--soft {
  background: var(--surface);
}

.section--tint {
  background: var(--surface-2);
}

.section--warm {
  background: var(--surface-3);
}

.section--image {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='600'><rect width='1200' height='600' fill='%23f0f3ff'/><circle cx='860' cy='260' r='220' fill='%232e5bff'/><circle cx='280' cy='420' r='160' fill='%23ffb26f'/></svg>");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split--reverse {
  flex-direction: column;
}

.split-content {
  flex: 1;
  min-width: 280px;
}

.split-visual {
  flex: 1;
  min-width: 280px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
}

.button--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  background: #ffffff;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-cta {
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  box-shadow: 0 16px 30px rgba(24, 35, 68, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 28px;
  border: 1px solid var(--line);
}

.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.stat {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 140px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
}

@media (min-width: 900px) {
  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}
