:root {
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-soft: #f0f5ec;
  --text: #1e2a1f;
  --muted: #5f6d60;
  --primary: #f26a0a;
  --primary-dark: #d85b06;
  --secondary: #2f7d32;
  --secondary-dark: #256728;
  --border: #d9e4d6;
  --shadow: 0 20px 60px rgba(24, 45, 26, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f6f8f4 0%, #edf5e8 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 247, 242, 0.88);
  border-bottom: 1px solid rgba(47, 125, 50, 0.08);
}

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

.brand-logo {
  width: 140px;
  height: auto;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}

.topbar-cta:hover {
  background: var(--secondary-dark);
}

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

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

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 125, 50, 0.10);
  color: var(--secondary-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--secondary);
}

.hero-text {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(242, 106, 10, 0.22);
}

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

.btn-secondary {
  background: #fff;
  color: var(--secondary-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #f9fcf8;
  transform: translateY(-1px);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 900;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 125, 50, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(100%, 320px);
  margin: 0 auto 24px;
}

.status-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid rgba(47, 125, 50, 0.12);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(47, 125, 50, 0.12);
}

.hero-card-text {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section-light {
  background: transparent;
}

.section-accent {
  background: linear-gradient(135deg, rgba(47, 125, 50, 0.08), rgba(242, 106, 10, 0.08));
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  background: var(--surface);
  border: 1px solid rgba(47, 125, 50, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.timeline-item {
  background: #fff;
  border: 1px solid rgba(47, 125, 50, 0.10);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.timeline-item strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  margin-bottom: 14px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 125, 50, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.contact-box p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(47, 125, 50, 0.08);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .timeline,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-box {
    display: grid;
  }

  .contact-actions {
    min-width: auto;
  }

}

@media (max-width: 640px) {
  .topbar-content {
    min-height: 72px;
  }

  .brand-logo {
    width: 110px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-card,
  .card,
  .timeline-item,
  .contact-box {
    padding: 22px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
