:root {
  --bg: #edf2ec;
  --bg-soft: #f7faf4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #112018;
  --muted: #536255;
  --line: rgba(17, 32, 24, 0.12);
  --brand: #1d6f52;
  --brand-deep: #114e39;
  --accent: #ff8b2b;
  --accent-soft: rgba(255, 139, 43, 0.12);
  --shadow: 0 22px 60px rgba(17, 32, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(29, 111, 82, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 139, 43, 0.16), transparent 18%),
    linear-gradient(180deg, #fbfef9 0%, var(--bg) 38%, #f5f8f2 100%);
}

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

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

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 245, 0.74);
  border-bottom: 1px solid rgba(17, 32, 24, 0.08);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, var(--brand), #2e9870);
  box-shadow: 0 18px 28px rgba(17, 78, 57, 0.2);
}

.brand__name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand__tag {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: #fff;
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 1.3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 11px 15px;
  color: var(--muted);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
}

.site-nav__cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand), #2e9870);
  box-shadow: 0 14px 24px rgba(17, 78, 57, 0.18);
}

.hero,
.section {
  padding: 40px 0;
}

.hero {
  padding-top: 58px;
}

.hero__grid,
.section-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}

.hero__copy,
.hero__panel,
.feature-card,
.timeline-card,
.faq-card,
.contact-card,
.footer-card,
.metric-card,
.result-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__copy,
.hero__panel,
.contact-card,
.footer-card {
  position: relative;
  overflow: hidden;
}

.hero__copy {
  padding: 42px;
}

.hero__copy::after,
.contact-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 139, 43, 0.16), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(29, 111, 82, 0.1);
}

.eyebrow--light {
  color: #d9fff1;
  background: rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.02em;
}

.hero h1,
.section-title,
.flow-card h2 {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  max-width: 11ch;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

.section-title--light,
.section-copy--light {
  color: #eef8f2;
}

p,
.section-copy,
.faq-card p,
.metric-card span,
.result-card span,
.timeline-card p,
.flow-card p {
  color: var(--muted);
  line-height: 1.8;
}

.button-row,
.contact-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #2e9870);
  box-shadow: 0 18px 28px rgba(17, 78, 57, 0.24);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 32, 24, 0.12);
}

.hero__metrics,
.card-grid,
.result-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.hero__metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.metric-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.hero__panel {
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(17, 78, 57, 0.06), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.hero-stack {
  display: grid;
  gap: 18px;
  height: 100%;
}

.flow-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.flow-card--media img,
.feature-card__image,
.result-card__image,
.contact-card__image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.flow-card--media img {
  height: 152px;
  margin-bottom: 16px;
}

.flow-card--accent {
  background: linear-gradient(135deg, rgba(255, 139, 43, 0.12), rgba(255, 255, 255, 0.92));
}

.flow-card--dark {
  color: #edf8f2;
  background: linear-gradient(135deg, #123728, #19553d);
  border-color: rgba(255, 255, 255, 0.08);
}

.flow-card--dark p,
.flow-card--dark .flow-card__label,
.flow-card--dark h2 {
  color: inherit;
}

.flow-card__label,
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(17, 32, 24, 0.07);
}

.section--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head .section-copy {
  max-width: 44ch;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 24px;
}

.feature-card__image {
  height: 180px;
  margin-bottom: 18px;
  border: 1px solid rgba(17, 32, 24, 0.08);
}

.feature-card h3,
.faq-card h3 {
  margin: 18px 0 12px;
  font-size: 1.15rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card,
.faq-card,
.result-card {
  padding: 24px;
}

.timeline-card strong,
.result-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.04rem;
}

.section--contrast {
  color: #fff;
}

.section--contrast .section-split {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.18), transparent 24%),
    linear-gradient(135deg, #0f2c20, #174734 65%, #1d5c42);
  box-shadow: 0 24px 60px rgba(17, 32, 24, 0.2);
}

.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.result-card__image {
  height: 128px;
  margin-bottom: 16px;
}

.result-card span {
  color: rgba(239, 248, 243, 0.78);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card,
.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 14ch;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-card__image {
  width: min(280px, 100%);
  height: 280px;
  flex: 0 0 auto;
  border: 1px solid rgba(17, 32, 24, 0.08);
}

.site-footer {
  padding: 0 0 34px;
}

.footer-card p {
  margin: 10px 0 0;
  max-width: 52ch;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.footer-links a:hover {
  background: rgba(17, 32, 24, 0.05);
  color: var(--text);
}

@media (max-width: 980px) {
  .hero__grid,
  .section-split,
  .card-grid,
  .timeline,
  .result-grid,
  .faq-list,
  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .section-head,
  .contact-card,
  .footer-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header__row {
    min-height: 76px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .brand__tag {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 32, 24, 0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav__cta {
    width: 100%;
    text-align: center;
  }

  .hero,
  .section {
    padding: 30px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__copy,
  .hero__panel,
  .feature-card,
  .timeline-card,
  .faq-card,
  .result-card,
  .contact-card,
  .footer-card {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .section-title,
  .contact-card h2 {
    max-width: none;
  }

  .button,
  .button-row a,
  .contact-actions a {
    width: 100%;
  }
}
