/* Base */
:root {
  --ink: #1c2a1f;
  --forest: #254a2e;
  --moss: #4f7b4a;
  --sage: #a9c3a4;
  --sun: #f0c86a;
  --mist: #f4f6f1;
  --clay: #e6ddd2;
  --ocean: #3c6f7a;
  --shadow: rgba(27, 40, 30, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 12px;
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.85rem;
  color: var(--moss);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--sun);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 70px;
  position: relative;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.hero-image {
  align-self: flex-end;
  max-width: 520px;
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 30px 60px var(--shadow);
}

.hero-badge {
  position: absolute;
  top: -18px;
  left: -22px;
  background: var(--sun);
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 24px;
}

.cta-row.spaced-lg {
  margin-top: 28px;
}

.split.section-gap {
  margin-top: 40px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--forest);
  color: white;
}

.btn-secondary {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--clay);
}

.section.deep {
  background: var(--forest);
  color: white;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-block {
  background: white;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 25px 50px var(--shadow);
}

.offset-left {
  align-self: flex-start;
  max-width: 560px;
}

.offset-right {
  align-self: flex-end;
  max-width: 560px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: white;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px var(--shadow);
}

.card img {
  border-radius: 14px;
}

.price-tag {
  font-weight: 700;
  color: var(--forest);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

.inline-cta {
  color: var(--ocean);
  font-weight: 600;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: white;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 30px 60px var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c8d6c8;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: var(--forest);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(44, 61, 41, 0.25);
  z-index: 10;
}

.footer {
  padding: 50px 6vw 70px;
  background: #141d18;
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--forest);
  color: white;
}

.cookie-reject {
  background: var(--clay);
  color: var(--ink);
}

.page-header {
  padding: 50px 6vw 20px;
}

.page-header h1 {
  margin: 0 0 12px;
}

.simple-section {
  padding: 24px 6vw 60px;
  max-width: 960px;
}

.simple-section p {
  margin-bottom: 16px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}

.info-card {
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px var(--shadow);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card,
  .service-item,
  .stat {
    flex: 1;
  }

  .stats-row {
    flex-direction: row;
  }

  .form-section {
    flex-direction: row;
  }

  .form-column {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }
}
