:root {
  --green: #2f7d32;
  --deep: #153528;
  --dark: #1b2b24;
  --muted: #637268;
  --line: #dfe7df;
  --soft: #f5f8f2;
  --warm: #c89532;
  --steel: #eef2f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #fbfcfa;
}

a {
  color: inherit;
}

.topbar {
  background: var(--deep);
  color: #fff;
  font-size: 13px;
}

.topbar-inner,
.header-inner,
.section,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.topbar-inner {
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 53, 40, .06);
}

.header-inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

.logo {
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}

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

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--warm);
}

.hero {
  min-height: 560px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 41, 29, .92) 0%, rgba(18, 73, 45, .72) 46%, rgba(18, 73, 45, .15) 100%),
    url("frt-assets/hero-ai-export-20260623.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: 56px;
  line-height: 1.08;
}

.hero p {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #f7e2a4;
  font-size: 13px;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(21, 53, 40, .18);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--green);
  border-color: #cfe4ca;
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--deep);
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

.section h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  color: var(--deep);
}

.section-head p,
.lead {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.75;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(21, 53, 40, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #cddbcc;
  box-shadow: 0 18px 38px rgba(21, 53, 40, .12);
}

.card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--soft);
}

.card-body {
  padding: 20px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.card-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.card-meta strong {
  color: var(--deep);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8f1df;
  border: 1px solid #ead7a6;
  color: #7c5a17;
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(21, 53, 40, .05);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
}

.feature span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.stat-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(21, 53, 40, .12);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.process,
.info-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.process em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.process h3,
.info-box h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 18px;
}

.process p,
.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.buyer-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.buyer-table th,
.buyer-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.buyer-table th {
  width: 24%;
  color: var(--deep);
  background: var(--steel);
}

.buyer-table tr:last-child th,
.buyer-table tr:last-child td {
  border-bottom: 0;
}

.cta-band {
  background: var(--deep);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
}

.contact-box,
.form-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(21, 53, 40, .06);
}

.contact-box p {
  margin: 0 0 14px;
  line-height: 1.7;
}

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

.form-grid label {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.form-grid input,
.form-grid textarea {
  margin-top: 6px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  background: var(--deep);
  color: #fff;
}

.footer-inner {
  padding-top: 34px;
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.footer h3,
.footer p {
  margin: 0 0 12px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  text-decoration: none;
}

.copyright {
  background: #0f291f;
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 40px;
  }

  .grid,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .feature-list,
  .stat-grid,
  .process-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    gap: 8px;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .logo img {
    width: 230px;
  }

  .nav {
    gap: 14px;
    justify-content: flex-start;
  }

  .hero {
    min-height: 430px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .grid,
  .footer-inner,
  .feature-list,
  .form-grid,
  .stat-grid,
  .process-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    margin-top: 0;
    padding-top: 16px;
    background: var(--soft);
  }

  .buyer-table,
  .buyer-table tbody,
  .buyer-table tr,
  .buyer-table th,
  .buyer-table td {
    display: block;
    width: 100%;
  }

  .buyer-table th {
    border-bottom: 0;
  }
}
