/* Base */
:root {
  --ink: #1b1b1b;
  --muted: #5d6470;
  --accent: #0b6b5b;
  --accent-2: #b85b2d;
  --soft: #f4f1ed;
  --light: #ffffff;
  --dark: #0f1b1a;
  --shadow: 0 18px 40px rgba(15, 27, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 42px 0 20px;
}

.hero .headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  margin: 0;
}

.hero .subline {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual .badge {
  position: absolute;
  bottom: -12px;
  right: 12px;
  background: var(--light);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost {
  background: rgba(11, 107, 91, 0.08);
  color: var(--accent);
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--dark);
  color: #f5f6f7;
}

.section.tight {
  padding: 50px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1.4px;
  color: var(--accent);
}

.highlight {
  background: #fff7f0;
  border-left: 4px solid var(--accent-2);
  padding: 18px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-item .dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #ece7e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--accent-2);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8d4ce;
  font-size: 0.95rem;
  font-family: inherit;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 600;
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer {
  padding: 40px 0 60px;
  background: #f0eeeb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
}

.page-hero {
  padding: 60px 0 20px;
}

.grid-lite {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 107, 91, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > div {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-stack {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .grid-lite {
    flex-direction: row;
  }
}
