*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --text: #1f2421;
  --muted: #5d6460;
  --accent: #0f6b6e;
  --accent-strong: #0b4e50;
  --surface: #ffffff;
  --surface-alt: #eef2f0;
  --border: #d8ddd9;
  --shadow: 0 20px 40px rgba(15, 30, 23, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--surface-alt);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6% 48px;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #dfe6e2;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 420px;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(15, 30, 23, 0) 0%, rgba(15, 30, 23, 0.7) 100%);
  color: #fff;
}

.hero-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-lead {
  margin: 0;
  max-width: 720px;
}

.section {
  padding: 48px 6%;
}

.section.alt {
  background: var(--surface-alt);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe6e2;
  box-shadow: var(--shadow);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #dfe6e2;
}

.tag {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.secondary {
  background: #fff;
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.inline-link {
  color: var(--accent-strong);
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 14px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: var(--accent-strong);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  max-width: 240px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.lead-form {
  display: flex;
  flex-direction: column;
}

.lead-form label {
  display: block;
  font-weight: 600;
  margin: 14px 0 6px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #fff;
}

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #121816;
  color: #f5f7f6;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: inherit;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfd6d3;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1f2421;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions .btn {
  border-color: #fff;
  color: #fff;
}

.cookie-actions .btn.primary {
  background: #fff;
  color: #1f2421;
}

.legal-hero {
  padding: 40px 6% 20px;
}

.legal-hero img {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  background: #dfe6e2;
}

.legal-content {
  padding: 20px 6% 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-box {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 0.85rem;
  color: var(--muted);
}

.no-script {
  padding: 12px;
  background: #f2e7e7;
  border-radius: 12px;
  color: #6c2c2c;
  margin-top: 12px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media img {
    height: 320px;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
