:root {
  --primary: #0f4f25;
  --primary-dark: #0a3a1b;
  --secondary: #2d8b47;
  --accent: #e1b72f;
  --bg: #f7faf7;
  --white: #ffffff;
  --text: #16311f;
  --muted: #5d6e63;
  --border: #d7e4d7;
  --soft: #eef6ef;
  --success: #2d8b47;
  --shadow: 0 18px 45px rgba(15, 79, 37, 0.14);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
}

h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
}

h3 {
  font-size: 23px;
  font-weight: 850;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: #4e6256;
  font-size: 19px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(15, 79, 37, 0.24);
}

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

.btn-outline {
  border-color: rgba(15, 79, 37, 0.25);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(215, 228, 215, 0.95);
  background: rgba(247, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
  position: relative;
}

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

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.brand-subtitle {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #355042;
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.22s ease;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--primary);
  font-size: 23px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 80px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.hero::before {
  top: 70px;
  right: -110px;
  width: 360px;
  height: 360px;
  background: var(--accent);
  opacity: 0.20;
}

.hero::after {
  bottom: -110px;
  left: -110px;
  width: 330px;
  height: 330px;
  background: var(--secondary);
  opacity: 0.16;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 79, 37, 0.08);
}

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

.hero-card {
  border-radius: 34px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  border-radius: 26px;
  background: linear-gradient(145deg, #f3faef, #ffffff 45%, #f7fbf6);
  padding: 26px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-card {
  border: 1px solid rgba(215, 228, 215, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  box-shadow: 0 8px 18px rgba(15, 79, 37, 0.06);
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: #587060;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.trust-box {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  border-radius: 24px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 9px 20px rgba(15, 79, 37, 0.08);
}

.icon-box {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 23px;
  font-weight: 900;
}

.trust-box h3 {
  font-size: 20px;
  margin-bottom: 7px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.section-center {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading-left {
  max-width: 780px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
  box-shadow: 0 10px 25px rgba(15, 79, 37, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 79, 37, 0.13);
}

.card .icon-box {
  margin-bottom: 22px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
}

.card h3 {
  margin-bottom: 13px;
}

.capacity-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 52px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
  box-shadow: 0 8px 18px rgba(15, 79, 37, 0.06);
}

.check-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(45, 139, 71, 0.12);
  color: var(--success);
  font-size: 14px;
  font-weight: 900;
}

.check-item p {
  color: #3f5848;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.capacity-panel {
  border-radius: 32px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.panel-icon {
  font-size: 38px;
}

.capacity-panel h3 {
  margin: 14px 0 24px;
  color: var(--white);
  font-size: 32px;
}

.metric {
  margin-top: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  padding: 22px;
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg);
  padding: 26px;
}

.process-card .step {
  color: rgba(15, 79, 37, 0.18);
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.process-card h3 {
  margin: 20px 0 12px;
  font-size: 20px;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 52px;
  align-items: start;
}

.customer-card {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow);
}

.customer-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.customer-list {
  display: grid;
  gap: 13px;
}

.customer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: var(--bg);
  padding: 15px;
  color: #385343;
  font-weight: 800;
  list-style: none;
}

.brand-vision {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: var(--white);
}

.brand-vision p {
  color: rgba(255, 255, 255, 0.86);
}

.brand-vision .eyebrow {
  color: #f2d46b;
}

.vision-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.vision-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.vision-tag {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.credibility-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.credibility-left,
.credibility-right {
  padding: 44px;
}

.credibility-left h2 {
  margin-top: 24px;
}

.credibility-right {
  background: #f3f8f3;
}

.credibility-right h3 {
  margin-bottom: 24px;
}

.contact-panel {
  border-radius: 34px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 46px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 46px;
  align-items: start;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-panel .eyebrow {
  color: #f1d26a;
}

.contact-card {
  border-radius: 28px;
  background: var(--white);
  padding: 30px;
  color: var(--text);
}

.contact-row {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-row p,
.contact-row a {
  color: var(--muted);
}

.contact-row a:hover {
  color: var(--primary);
}

.contact-icon {
  width: 42px;
  height: 42px;
  font-size: 18px;
}

.contact-btn {
  width: 100%;
  margin-top: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 79, 37, 0.24);
  transition: transform 0.22s ease, background 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--primary);
}

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
  background: #f3f8f3;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

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

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

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

  .menu-btn {
    display: block;
  }

  .nav-menu.mobile-open {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-menu.mobile-open a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-menu.mobile-open a:hover {
    background: var(--soft);
  }

  .hero-grid,
  .split,
  .capacity-grid,
  .market-grid,
  .vision-grid,
  .credibility-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .hero {
    padding: 70px 0 60px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .stats-grid,
  .card-grid-3,
  .check-grid,
  .process-grid,
  .vision-tags {
    grid-template-columns: 1fr;
  }

  .hero-card-inner,
  .capacity-panel,
  .customer-card,
  .contact-panel,
  .credibility-left,
  .credibility-right {
    padding: 24px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
