:root {
  --bg: #f4f6f2;
  --bg-elev: #ffffff;
  --bg-soft: #e7ece4;
  --text: #1a251d;
  --muted: #4a5b4f;
  --line: #c9d4c7;
  --brand: #0f7a50;
  --brand-strong: #0b5a3b;
  --accent: #c86b2f;
  --accent-soft: #f6e8dc;
  --shadow: 0 10px 30px rgba(9, 24, 15, 0.09);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 90% -5%, rgba(15, 122, 80, 0.08), transparent 75%),
    radial-gradient(900px 500px at -10% 15%, rgba(200, 107, 47, 0.1), transparent 75%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.6;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}

.bg-orb-a {
  width: 320px;
  height: 320px;
  background: rgba(15, 122, 80, 0.17);
  top: -80px;
  left: -60px;
}

.bg-orb-b {
  width: 260px;
  height: 260px;
  background: rgba(200, 107, 47, 0.18);
  right: -40px;
  bottom: 12%;
  animation-delay: -5s;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 24px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(244, 246, 242, 0.78);
  border-bottom: 1px solid rgba(201, 212, 199, 0.7);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 3px rgba(15, 122, 80, 0.15);
}

.brand-text {
  font-size: 1.04rem;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 90, 59, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 90, 59, 0.3);
}

.btn-small {
  padding: 0.6rem 0.95rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.hero {
  padding: 5.4rem 0 3.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.8rem;
  align-items: start;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  border: 1px solid rgba(15, 122, 80, 0.28);
  background: rgba(15, 122, 80, 0.07);
  color: var(--brand-strong);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  line-height: 1.16;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  max-width: 16ch;
}

.hero-copy {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.1vw + 0.65rem, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
}

.hero-ctas {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.trust-strip li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.hero-panel {
  background: linear-gradient(145deg, #ffffff, #f5f8f4);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.panel-head p {
  margin: 0;
  font-weight: 800;
}

.panel-head span {
  background: var(--accent-soft);
  color: #824923;
  border: 1px solid rgba(130, 73, 35, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  background: #fff;
}

.metric + .metric {
  margin-top: 0.7rem;
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-value {
  margin: 0.25rem 0 0;
  font-weight: 700;
}

.section {
  padding: 2.3rem 0 4.2rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(231, 236, 228, 0.55), rgba(231, 236, 228, 0));
}

.section-head {
  margin-bottom: 1.3rem;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.85rem);
  max-width: 22ch;
}

.steps-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.step-card,
.audience-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover,
.audience-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(8, 23, 13, 0.12);
}

.step-no {
  margin: 0 0 0.4rem;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
}

.step-card h3,
.audience-card h3,
.feature-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.step-card p,
.audience-card p,
.feature-card p,
.muted {
  margin: 0.58rem 0 0;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.cards-stack {
  display: grid;
  gap: 0.9rem;
}

.section-contact {
  padding-bottom: 4.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.contact-points {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  font: inherit;
  color: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15, 122, 80, 0.24);
  border-color: var(--brand);
}

.contact-form button {
  margin-top: 1rem;
  width: 100%;
}

.bot-field {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(201, 212, 199, 0.9);
  background: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
}

.footer-copy {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: auto;
    padding: 0.8rem 0;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    gap: 0.8rem;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .trust-strip,
  .steps-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-small,
  .lang-btn {
    min-height: 44px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
