/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: #2d4f20;
  background: #ffffff;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn--dark {
  background: #2d4f20;
  color: #ffffff;
}

.btn--white {
  background: #ffffff;
  color: #2d4f20;
}

.btn--large {
  padding: 24px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
}

/* Labels */
.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #4f6348;
}

/* ===== NAV ===== */
.nav {
  background: #a0f1bd;
  padding: 0 40px;
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 101px;
  padding: 0 40px;
}

.nav__logo img {
  height: 25px;
  width: auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  color: #2d4f20;
}

/* ===== HERO ===== */
.hero {
  background: #a0f1bd;
  padding: 0 40px 0;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 80px 0 100px;
}

.hero__text {
  flex: 1;
  max-width: 691px;
}

.hero__title {
  font-size: 80px;
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 24px;
  color: #2d4f20;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #2d4f20;
  margin-bottom: 40px;
}

.hero__image {
  flex-shrink: 0;
  width: 429px;
}

.hero__image img {
  width: 100%;
  height: auto;
}

/* ===== SERVICES ===== */
.services {
  background: #f9f9f9;
}

.services__intro {
  padding: 100px 40px;
}

.services__intro-content {
  max-width: 1200px;
  margin: 0 auto;
}

.services__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2d4f20;
  margin-bottom: 24px;
}

.services__title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: #2d4f20;
  margin-bottom: 24px;
  max-width: 857px;
}

.services__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #2d4f20;
  margin-bottom: 32px;
}

/* Service Cards */
.service-card {
  padding: 0 40px;
  margin-bottom: 5px;
}

.service-card__inner {
  max-width: 1040px;
  margin: 0 auto;
  background: #d2f8dc;
  border-radius: 24px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 40px;
  gap: 40px;
}

.service-card--reverse .service-card__inner {
  flex-direction: row-reverse;
}

.service-card__image {
  flex-shrink: 0;
  width: 393px;
  border-radius: 16px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.service-card__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  color: #2d4f20;
  margin-bottom: 16px;
}

.service-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #2d4f20;
}

.service-card__labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: #f9f9f9;
  padding: 100px 40px;
}

.testimonial__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial__heading {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: #2d4f20;
  margin-bottom: 60px;
}

.testimonial__content {
  display: flex;
  gap: 40px;
}

.testimonial__tabs {
  width: 310px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.testimonial__tab {
  padding: 24px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial__tab--active {
  background: #2e4f21;
}

.testimonial__tab-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial__tab-role {
  font-size: 18px;
  font-weight: 400;
  color: #4f6348;
}

.testimonial__tab--active .testimonial__tab-role {
  color: #ffffff;
}

.testimonial__tab-location {
  font-size: 12px;
  font-weight: 500;
  color: #4f6348;
}

.testimonial__tab--active .testimonial__tab-location {
  color: #d4e4cf;
}

.testimonial__quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial__quote-text {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  color: #2d4f20;
}

.testimonial__byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial__avatar {
  width: 46px;
  height: 48px;
  border-radius: 50%;
  background: #d2f8dc;
  flex-shrink: 0;
}

.testimonial__author {
  font-size: 16px;
  font-weight: 400;
  color: #2d4f20;
}

/* ===== IMAGE BREAK ===== */
.image-break {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BENEFITS ===== */
.benefits {
  background: #ffffff;
  padding: 100px 40px;
}

.benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__header {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
}

.benefits__header-left,
.benefits__header-right {
  flex: 1;
}

.benefits__title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: #2d4f20;
}

.benefits__header-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #2d4f20;
  padding-top: 8px;
}

.benefits__columns {
  display: flex;
  gap: 20px;
}

.benefits__column {
  flex: 1;
}

.benefits__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
}

.benefits__column-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  color: #2d4f20;
  margin-bottom: 16px;
}

.benefits__column-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #2d4f20;
  margin-bottom: 16px;
}

.benefits__column-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #2d4f20;
}

/* ===== CTA ===== */
.cta {
  background: #ffffff;
  padding: 0 40px 100px;
}

.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
}

.cta__card {
  flex: 1;
  background: #2e4f21;
  padding: 60px;
  display: flex;
  align-items: center;
}

.cta__card-content {
  max-width: 470px;
}

.cta__card-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 32px;
}

.cta__image {
  flex: 1;
  min-height: 375px;
}

.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== EXPERTS ===== */
.experts {
  background: #f9f9f9;
  padding: 120px 40px;
  text-align: center;
}

.experts__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experts__title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: #2d4f20;
  margin-bottom: 48px;
}

/* ===== FOOTER ===== */
.footer {
  background: #2e4f21;
  padding: 60px 40px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
}

.footer__left {
  flex: 1;
}

.footer__logo {
  height: 20px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #d4e4cf;
}

.footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 282px;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__link {
  font-size: 12px;
  font-weight: 500;
  color: #d4e4cf;
}

.footer__copyright {
  font-size: 12px;
  font-weight: 500;
  color: #d4e4cf;
}
