:root {
  --green-dark: #123c24;
  --green: #2d7a44;
  --green-light: #a8e0b4;
  --gray-dark: #1f1f1f;
  --gray: #4f5b4e;
  --bg: #f4f8f2;
  --white: #fff;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--gray-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea {
  font-family: inherit;
}

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

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

.container {
  width: min(1200px, 100% - 2.5rem);
  margin: 0 auto;
}

.narrow {
  width: min(800px, 100% - 2.5rem);
}

section {
  padding: 4rem 0;
}

.home-group {
  display: flex;
  flex-direction: column;
}

.alt-bg {
  background: var(--white);
}

.card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(45, 122, 68, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(244, 248, 242, 0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: clamp(48px, 10vw, 60px);
  width: auto;
  background: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  color: var(--gray);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-dark);
}

.hero {
  padding-top: 6rem;
  background: radial-gradient(circle at top right, rgba(45, 122, 68, 0.2), transparent 40%),
    var(--bg);
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--green);
  margin-bottom: 1rem;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.hero-cta .cta-subtext {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

.hero-stats ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-stats strong {
  font-size: 1.8rem;
  color: var(--green);
  display: block;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}

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

.steps {
  display: grid;
  gap: 1.25rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  color: var(--green);
}

.benefit-list {
  list-style: none;
  padding-left: 1.5rem;
}

.benefit-list li {
  margin-bottom: 1rem;
  position: relative;
  color: var(--gray);
}

.benefit-list li::before {
  content: "•";
  position: absolute;
  left: -1.5rem;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.industries-grid,
.team-grid,
.traction-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 3px solid rgba(16, 56, 34, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.role {
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.cta-bottom {
  background: linear-gradient(135deg, var(--green-dark), #0e2416);
  color: var(--white);
  text-align: center;
}

.cta-bottom p {
  max-width: 680px;
  margin: 0.5rem auto 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(120deg, rgba(18, 60, 36, 0.08), rgba(45, 122, 68, 0.05));
  border: 1px solid rgba(18, 60, 36, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-label {
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.info-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--green-dark);
}

.copy-btn {
  margin-top: 0.6rem;
  border: none;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--gray);
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.4rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(18, 60, 36, 0.15);
  padding: 0.85rem 1rem;
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green-light);
  border-color: transparent;
}

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

.news-card {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.news-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.news-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.news-slide {
  min-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.news-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

.news-slide video {
  width: 100%;
  max-height: 240px;
  border-radius: 1rem;
  display: block;
  background: #000;
}

.news-slide-stat {
  background: linear-gradient(135deg, rgba(18, 60, 36, 0.85), rgba(44, 124, 77, 0.9));
  color: var(--white);
}

.news-slide-content {
  text-align: center;
}

.stat-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16, 56, 34, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.news-nav.prev {
  left: 0.75rem;
}

.news-nav.next {
  right: 0.75rem;
}

.news-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}

.news-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.news-dots button.active {
  background: var(--green-light);
}

.news-content h3 {
  margin-top: 0;
  color: var(--green-dark);
}

.news-content p {
  color: var(--gray);
}

.news-content ul {
  margin: 1rem 0;
  padding-left: 1.4rem;
  color: var(--gray);
}

.news-content li {
  margin-bottom: 0.7rem;
}

.news-separator {
  text-align: center;
  letter-spacing: 0.4em;
  color: var(--gray);
}

footer {
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  background: #08150c;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.25rem;
    flex-direction: column;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: none;
  }

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
  }

  .contact-form button {
    width: fit-content;
  }

  .contact-grid {
    grid-template-columns: minmax(260px, 1fr) 1.2fr;
    align-items: start;
  }
}
