@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
  line-height: 1.3;
}

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

header {
  height: 100vh;
  background-color: #123524;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
header .main-content .hero-pill {
  display: inline-block;
  border: 1px solid rgba(133, 169, 71, 0.5);
  color: #85a947;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
header .main-content .highlight-primary {
  color: #85a947;
}
header .main-content .highlight-secondary {
  color: #fff;
}
header .main-content .main-title {
  font-size: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
header .main-content .main-title span:nth-child(1),
header .main-content .main-title span:nth-child(2),
header .main-content .main-title span:nth-child(3) {
  display: block;
}
header .main-content .main-title span:nth-child(1) {
  font-size: 6rem;
  font-weight: 800;
}
header .main-content .main-title span:nth-child(2),
header .main-content .main-title span:nth-child(3) {
  font-weight: 600;
  white-space: nowrap;
}
header .main-content .main-title span:nth-child(3) {
  line-height: 0.75;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(133, 169, 71, 0.75);
}
header .main-content .sub-title {
  border-top: rgba(133, 169, 71, 0.25) 1px solid;
  border-bottom: rgba(133, 169, 71, 0.25) 1px solid;
  padding: 0.7rem 0;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
header .main-content .header-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
header .main-content .header-btns .btn {
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
header .main-content .header-btns .btn.btn-primary {
  background-color: #85a947;
  color: #fff;
}
header .main-content .header-btns .btn.btn-primary:hover {
  background-color: #123524;
  border: 1px solid rgba(245, 245, 245, 0.3);
}
header .main-content .header-btns .btn.btn-ghost {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
header .main-content .header-btns .btn.btn-ghost:hover {
  border-color: #85a947;
  color: #85a947;
}
header .main-content .hero-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.7rem;
}
header .main-content .hero-sectors span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #85a947;
  border: 1px solid rgba(133, 169, 71, 0.5);
  border-radius: 999px;
  padding: 0.35rem 1rem;
}
header .main-content .hero-proof {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
header .main-content .hero-proof strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.section-header {
  text-align: center;
  margin-bottom: 5.5rem;
}
.section-header .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #85a947;
  margin-bottom: 1rem;
}
.section-header .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #123524;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header .section-sub {
  font-size: 1rem;
  color: rgba(18, 53, 36, 0.55);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}

.section-logos {
  background-color: #fff;
  border-bottom: 1px solid rgba(18, 53, 36, 0.06);
  padding: 2.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.section-logos .logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 53, 36, 0.35);
  white-space: nowrap;
}
.section-logos .logos-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.section-logos .logos-grid .logo-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(18, 53, 36, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.first-section {
  background-color: #f5f5f5;
  padding: 6rem 6rem;
}
.first-section .cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.first-section .card {
  flex: 0 0 calc(50% - 0.75rem);
  background-color: #fff;
  border: 1px solid rgba(18, 53, 36, 0.08);
  border-left: 3px solid #85a947;
  box-shadow: 0 2px 8px rgba(18, 53, 36, 0.04);
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.first-section .card:hover {
  box-shadow: 0 6px 24px rgba(18, 53, 36, 0.3);
  border-left-color: #123524;
}
.first-section .card .card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #123524;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.first-section .card .card-description {
  font-size: 0.92rem;
  color: rgba(18, 53, 36, 0.6);
  line-height: 1.65;
  flex: 1;
}
.first-section .card .card-footer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #85a947;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-steps {
  background-color: #fff;
  padding: 7rem 12rem;
}
.section-steps .steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.section-steps .steps-grid .step {
  flex: 0 0 calc(50% - 2.5rem);
}
.section-steps .step {
  flex: 1;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(133, 169, 71, 0.3);
}
.section-steps .step .step-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(133, 169, 71, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.section-steps .step .step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #123524;
  margin-bottom: 0.75rem;
}
.section-steps .step .step-desc {
  font-size: 0.92rem;
  color: rgba(18, 53, 36, 0.6);
  line-height: 1.7;
}

.section-testimonials {
  background-color: #123524;
  padding: 6rem 6rem;
}
.section-testimonials .section-header .section-tag {
  color: #85a947;
}
.section-testimonials .section-header .section-title {
  color: #fff;
}
.section-testimonials .testimonials-grid {
  display: flex;
  gap: 2rem;
}
.section-testimonials .testimonial {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.section-testimonials .testimonial .testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-style: italic;
}
.section-testimonials .testimonial .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
.section-testimonials .testimonial .testimonial-author .author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.section-testimonials .testimonial .testimonial-author .author-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.section-pricing {
  background-color: #f5f5f5;
  padding: 6rem 6rem;
}
.section-pricing .pricing-grid {
  display: flex;
  gap: 0;
  align-items: center;
}
.section-pricing .pricing-card {
  flex: 1;
  background-color: #fff;
  border: 1px solid rgba(18, 53, 36, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transform: scale(0.93);
  opacity: 0.7;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, box-shadow 0.35s ease, border 0.3s ease, border-color 0.3s ease;
}
.section-pricing .pricing-card:first-child {
  border-radius: 8px 0 0 8px;
  border-right: none;
}
.section-pricing .pricing-card:last-child {
  border-radius: 0 8px 8px 0;
  border-left: none;
}
.section-pricing .pricing-card .pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(18, 53, 36, 0.5);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}
.section-pricing .pricing-card--featured {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  border-radius: 8px;
  border: 1px solid #85a947;
  box-shadow: 0 20px 60px rgba(18, 53, 36, 0.18);
  padding: 5rem 2.5rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, box-shadow 0.35s ease;
}
.section-pricing .pricing-card--featured .pricing-badge {
  background-color: #85a947;
  opacity: 1;
}
.section-pricing .pricing-card .pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: #123524;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-pricing .pricing-card .pricing-price {
  font-size: 1rem;
  font-weight: 700;
  color: #123524;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-pricing .pricing-card .pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.section-pricing .pricing-card .pricing-features li {
  font-size: 0.9rem;
  color: rgba(18, 53, 36, 0.65);
  padding-left: 1.2rem;
  position: relative;
}
.section-pricing .pricing-card .pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #85a947;
  font-weight: 700;
}
.section-pricing .pricing-card .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.25s ease;
}
.section-pricing .pricing-card .btn.btn-primary {
  background-color: #85a947;
  color: #fff;
}
.section-pricing .pricing-card .btn.btn-primary:hover {
  background-color: #123524;
}
.section-pricing .pricing-card .btn.btn-ghost {
  border: 1px solid rgba(18, 53, 36, 0.25);
  color: #123524;
}
.section-pricing .pricing-card .btn.btn-ghost:hover {
  border-color: #123524;
  color: #123524;
}
.section-pricing .pricing-grid[data-hovered] .pricing-card--featured {
  transform: scale(0.96);
  opacity: 0.85;
  box-shadow: none;
}
.section-pricing .pricing-grid[data-hovered=left] .pricing-card:first-child {
  transform: scale(0.99);
  opacity: 1;
  border: 1px solid rgba(133, 169, 71, 0.5);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(18, 53, 36, 0.12);
}
.section-pricing .pricing-grid[data-hovered=left] .pricing-card:first-child .pricing-badge {
  opacity: 1;
}
.section-pricing .pricing-grid[data-hovered=left] .pricing-card:last-child {
  opacity: 0.4;
  border: 1px solid transparent;
}
.section-pricing .pricing-grid[data-hovered=right] .pricing-card:last-child {
  transform: scale(0.99);
  opacity: 1;
  border: 1px solid rgba(133, 169, 71, 0.5);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(18, 53, 36, 0.12);
}
.section-pricing .pricing-grid[data-hovered=right] .pricing-card:last-child .pricing-badge {
  opacity: 1;
}
.section-pricing .pricing-grid[data-hovered=right] .pricing-card:first-child {
  opacity: 0.4;
  border: 1px solid transparent;
}

.section-cta-inline {
  background-color: #123524;
  padding: 2.5rem 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.section-cta-inline p {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.section-cta-inline .cta-inline-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.section-cta-inline .btn-primary {
  white-space: nowrap;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #85a947;
  color: #fff;
  transition: background-color 0.25s ease;
}
.section-cta-inline .btn-primary:hover {
  background-color: rgb(110.39, 140.27, 58.93);
}
.section-cta-inline .link-secondary {
  white-space: nowrap;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}
.section-cta-inline .link-secondary:hover {
  border-color: #85a947;
  color: #85a947;
}

.pricing-reassurance {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #85a947;
  text-transform: uppercase;
}

.section-cta {
  background-color: #123524;
  padding: 6rem 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.section-cta .cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.section-cta .cta-reassurance {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.section-cta .cta-reassurance li {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 1rem;
  position: relative;
}
.section-cta .cta-reassurance li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}
.section-cta .cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 60rem;
}
.section-cta .btn.btn-primary {
  background-color: #fff;
  color: #123524;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: opacity 0.25s ease;
}
.section-cta .btn.btn-primary:hover {
  opacity: 0.9;
}

footer {
  background-color: #123524;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}
footer .footer-brand .footer-logo span {
  color: #85a947;
}
footer .footer-brand p {
  font-size: 0.95rem;
  font-weight: 300;
}
footer .footer-nav {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(133, 169, 71, 0.2);
  padding-top: 2rem;
}
footer .footer-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
footer .footer-nav a:hover {
  color: #85a947;
}
footer .footer-copy {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(133, 169, 71, 0.1);
  padding-top: 1.5rem;
}/*# sourceMappingURL=main.css.map */