:root {
  --bg: #f5f2ea;
  --bg-soft: #f0ebdf;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #173d1f;
  --muted: #5d6f5b;
  --line: rgba(23, 61, 31, 0.12);
  --green: #245d1f;
  --green-strong: #173d1f;
  --gold: #c07b17;
  --gold-soft: #e8c78c;
  --shadow: 0 18px 50px rgba(23, 61, 31, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(36, 93, 31, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(192, 123, 23, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f3ea 0%, #f2ede1 100%);
  line-height: 1.5;
}

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

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

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

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.38), rgba(255,255,255,0.12));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 234, 0.86);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-logo,
.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.nav-cta:hover {
  color: #fff;
  background: var(--green-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--green-strong);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 24px;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.quote-box,
.founders-box,
.contact-form {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 93, 31, 0.18), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(36, 93, 31, 0.08);
  margin-bottom: 20px;
  border: 1px solid rgba(36, 93, 31, 0.1);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: -0.05em;
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-lead,
.section-head p,
.card p,
.feature-list li,
.faq-item p,
.contact-copy p,
.contact-points span,
.founders-box p,
.site-footer p {
  color: var(--muted);
}

.hero-lead {
  font-size: 18px;
  max-width: 720px;
  margin: 20px 0 24px;
}

.hero-highlight {
  display: inline-block;
  font-size: 26px;
  line-height: 1.2;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(36, 93, 31, 0.08), rgba(192, 123, 23, 0.1));
  border: 1px solid rgba(36, 93, 31, 0.1);
}

.hero-highlight strong {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2a6b24 0%, #1f521a 100%);
}

.btn-secondary {
  color: var(--green-strong);
  background: rgba(255,255,255,0.58);
  border-color: rgba(36, 93, 31, 0.14);
}

.btn-full {
  width: 100%;
}

.hero-panel {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.metric-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:24px;
  min-height:160px;
}

.metric-value{
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 900;
  line-height: .9;
}

.metric-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.section-head {
  margin-bottom: 28px;
  max-width: 860px;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 17px;
}

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

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

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

.card {
  padding: 30px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.score-card {
  background: linear-gradient(180deg, rgba(255, 245, 228, 0.96), rgba(255,255,255,0.74));
}

.motor-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.pillar {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(36, 93, 31, 0.1);
}

.pillar p {
  margin: 0;
}

.quote-box {
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(36, 93, 31, 0.1), rgba(192, 123, 23, 0.08));
}

.quote-box p {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--green-strong);
}

.roi-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(36, 93, 31, 0.08), rgba(255,255,255,0.52));
  border: 1px solid rgba(36, 93, 31, 0.1);
  box-shadow: var(--shadow);
}

.roi-item {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(36, 93, 31, 0.1);
}

.roi-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.roi-item strong {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.founders-box {
  padding: 42px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 245, 228, 0.9), rgba(255,255,255,0.72));
}

.founders-box p {
  max-width: 760px;
  margin: 14px auto 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(36, 93, 31, 0.1);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
}

.section-contact {
  background: linear-gradient(180deg, rgba(36, 93, 31, 0.06), rgba(255,255,255,0.1));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-points div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(36, 93, 31, 0.1);
}

.contact-points strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form {
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 93, 31, 0.14);
  background: rgba(255,255,255,0.88);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(192, 123, 23, 0.24);
  border-color: rgba(192, 123, 23, 0.35);
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.footer-brand p {
  margin: 6px 0 0;
}

.back-top {
  color: var(--green);
  font-weight: 700;
}

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

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1024px) {
  .hero-grid,
  .motor-layout,
  .contact-grid,
  .grid-3,
  .roi-banner,
  .pillars {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(247, 243, 234, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .quote-box,
  .founders-box,
  .contact-form {
    padding: 24px;
  }

  .header-inner,
  .footer-inner {
    flex-wrap: wrap;
  }

  .brand-logo,
  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .hero-highlight {
    font-size: 22px;
  }
}


.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid rgba(255,255,255,.08);
}

.form-alert-success {
  background: rgba(102, 166, 91, .14);
  color: #dff2da;
  border-color: rgba(102, 166, 91, .32);
}

.form-alert-error {
  background: rgba(188, 83, 83, .14);
  color: #ffd8d8;
  border-color: rgba(188, 83, 83, .32);
}
