:root {
  --bg: #f7f2e9;
  --bg-deep: #efe6d9;
  --ink: #1b1c18;
  --muted: #4f554b;
  --brand: #1f6a44;
  --brand-dark: #145236;
  --accent: #c09a4d;
  --cream: #fbf8f2;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(23, 32, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, var(--bg) 45%, var(--bg-deep) 100%);
  line-height: 1.7;
}

.page {
  position: relative;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.15;
  z-index: 0;
}

.page::before {
  background: radial-gradient(circle, #9fc8ad 0%, transparent 70%);
  top: -140px;
  left: -120px;
}

.page::after {
  background: radial-gradient(circle, #e0c290 0%, transparent 70%);
  bottom: 120px;
  right: -140px;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 242, 233, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid rgba(31, 106, 68, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

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

.brand-logo {
  width: 140px;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  object-fit: contain;
  box-shadow: none;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.menu a:hover {
  color: var(--brand);
}

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 700;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  margin: 28px 0 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 106, 68, 0.22);
}

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

.btn.ghost {
  border-color: rgba(31, 106, 68, 0.3);
  color: var(--brand-dark);
}

.hero-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero-cards {
  display: grid;
  gap: 16px;
}

.card {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}

.section {
  padding: 56px 0;
}

.section.light {
  background: var(--cream);
}

.section.accent {
  background: linear-gradient(120deg, #f3eadb 0%, #f7f2e9 45%, #f0e4d2 100%);
}

h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 0;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 32px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.highlight,
.callout {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.highlight ul,
.panel ul,
.step-body ul {
  padding-left: 18px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  margin-top: 28px;
}

.flow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 106, 68, 0.6), rgba(192, 154, 77, 0.6), rgba(31, 106, 68, 0.6));
  opacity: 0.35;
  z-index: 0;
}

.flow-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 106, 68, 0.08);
  position: relative;
  z-index: 1;
}

.flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(31, 106, 68, 0.12);
  color: var(--brand-dark);
}

.flow-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.flow-step {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--muted);
}

.flow-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.flow-card ul {
  padding-left: 18px;
  margin: 10px 0 0;
}

.flow-card .note {
  margin-top: 10px;
}

.flow-card.step-2 .flow-icon {
  background: rgba(192, 154, 77, 0.2);
  color: #7a5a14;
}

.flow-card.step-3 .flow-icon {
  background: rgba(31, 106, 68, 0.16);
  color: #1f6a44;
}

.timeline {
  display: grid;
  gap: 24px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.step-no {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(31, 106, 68, 0.1);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step-body h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

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

.panel {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 18px;
}

.contact {
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.contact-card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  display: block;
}

.contact-card a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  padding: 36px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .btn {
    transition: none;
  }
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .split,
  .flow,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .flow::before {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-tag {
    display: none;
  }

  .card,
  .highlight,
  .panel,
  .step,
  .contact-card {
    border-radius: 16px;
  }

  .flow {
    gap: 18px;
  }

  .flow-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .flow-icon svg {
    width: 18px;
    height: 18px;
  }

  .flow-step {
    font-size: 11px;
  }
}
