:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5d6470;
  --accent: #2b6b5e;
  --accent-2: #d9785f;
  --soft: #f4f1ec;
  --warm: #fff5e6;
  --cool: #eef4f3;
  --shadow: 0 12px 32px rgba(31, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfbfa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.main-header {
  padding: 24px 0 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 50;
}

.hero {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--cool);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 12px 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: white;
}

.btn.secondary {
  background: white;
  border-color: var(--accent);
  color: var(--accent);
}

.hero-media {
  align-self: flex-end;
  width: min(440px, 90%);
  transform: translateX(8%);
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.offset-band {
  background: var(--soft);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.offset-card {
  background: white;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-top: -40px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.panel {
  flex: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  background: white;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #e2e5e9;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.card img {
  width: 72px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.quote {
  font-style: italic;
  padding: 18px 20px;
  background: var(--warm);
  border-radius: 20px;
}

.form-wrapper {
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d5dbe0;
  font-size: 1rem;
}

.footer {
  background: #1c1e21;
  color: #e7eaee;
  padding: 48px 0;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 60;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: white;
  color: var(--accent);
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: white;
}

.badge-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.badge {
  background: white;
  padding: 14px 16px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-2);
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .asym-row {
    flex-direction: row;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .badge-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .badge {
    flex: 1 1 calc(33% - 14px);
  }
}

@media (min-width: 1020px) {
  .card {
    flex: 1 1 calc(33% - 18px);
  }
}
