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

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  position: relative;
}

.navbar {
  width: 100%;
  margin: 0;
  background: #fff;
  border: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  transition: padding 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #d9d9d9;
}

.utility-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  padding-bottom: 12px;
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, padding-bottom 0.28s ease;
}

.navbar.is-condensed {
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}

.navbar.is-condensed .utility-row {
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
  padding-bottom: 0;
  pointer-events: none;
}

.utility-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.lang-select {
  position: relative;
}

.lang-current {
  font: inherit;
  font-size: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 110px;
  background: #fff;
  border: 1px solid #dadada;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  transform-origin: top right;
  z-index: 10;
}

.lang-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #202020;
  font-size: 14px;
}

.lang-select:hover .lang-menu,
.lang-select:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  font-size: 16px;
  line-height: 1;
}

.main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

.brand {
  margin-left: 72px;
  padding-right: 48px;
  text-align: left;
}

.brand h1 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
}

.brand p {
  margin: 6px 0 0;
  font-size: 15px;
  color: #4a4a4a;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

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

.menu a {
  text-decoration: none;
  color: #202020;
  font-size: 17px;
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 10px;
}

.btn {
  text-decoration: none;
  border: 2px solid #000;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 19px;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn-light {
  background: #fff;
  color: #000;
}

.btn-light:hover {
  background: #000;
  color: #fff;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #fff;
  color: #000;
}

.banner {
  width: 100%;
  height: 100vh;
  margin-top: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background-image: url("images/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-left {
  background: rgba(248, 255, 252, 0.78);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.banner-left img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: 86%;
  object-fit: contain;
  object-position: center bottom;
}

.banner-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  padding-left: clamp(28px, 7vw, 120px);
  padding-top: 10vh;
}

.banner-right h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 7vw, 116px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  font-weight: 900;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.banner-right p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 1.3vw, 18px);
  line-height: 1.35;
  max-width: 420px;
}

.banner-mobile-image {
  display: none;
}

.section-two {
  background: #fff;
  padding: clamp(96px, 13vh, 170px) 0 clamp(64px, 9vh, 120px);
}

.section-two-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.section-two-media {
  position: relative;
  width: min(100%, 430px);
}

.section-two-bg {
  position: absolute;
  inset: 0;
  background: #3aa06d;
  transform: translate(-24px, 24px);
  z-index: 1;
}

.section-two-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.section-two-content h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  color: #101010;
}

.section-two-content p {
  margin: 20px 0 0;
  color: #3a3a3a;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.62;
  max-width: 760px;
}

.read-more {
  margin-top: 26px;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #111;
  border: 2px solid #111;
  padding: 12px 20px;
}

.section-features {
  background: #fff;
  padding: clamp(56px, 8vh, 110px) 0;
}

.section-features-inner {
  width: min(1020px, 82vw);
  margin: 0 auto 50px auto;
}

.section-features-inner h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.section-features-inner p {
  margin: 16px 0 0;
  color: #3f3f3f;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 860px;
}

.feature-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 4vw, 56px);
  row-gap: clamp(34px, 4.5vw, 64px);
}

.feature-card-wrap {
  position: relative;
}

.feature-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  background: #3aa06d;
  transform: translate(-14px, 14px);
  z-index: 1;
}

.feature-card {
  position: relative;
  z-index: 2;
  min-height: 0;
  background: #f2f2f2;
  color: #1f1f1f;
  padding: 14px 16px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.feature-link:hover {
  transform: scale(1.02);
}

.section-support {
  width: 100%;
  position: relative;
  background: url("images/section2.png"), url("images/section_banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: clamp(640px, 84vh, 980px);
  padding: clamp(96px, 15vh, 200px) 0 clamp(86px, 12vh, 160px);
}

.section-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.section-support-inner {
  width: min(1040px, 86vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-support-inner h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.support-grid {
  margin-top: clamp(56px, 8vh, 110px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
}

.support-card-wrap {
  position: relative;
}

.support-card-bg {
  position: absolute;
  top: 14px;
  left: -14px;
  width: 100%;
  height: 100%;
  background: #3AA06D;
  z-index: 1;
}

.support-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: #1f1f1f;
  background: #f2f2f2;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 22px 20px;
  min-height: 260px;
  box-shadow: 0 14px 30px rgba(20, 52, 28, 0.12);
  z-index: 2;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.support-card h4 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-card h4 i {
  color: #3AA06D;
  font-size: 22px;
}

.support-card p {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a3a;
}

.support-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-card:hover {
  background: #ebebeb;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 36px rgba(20, 52, 28, 0.18);
}

.section-newsletter {
  width: 100%;
  background: #f1f1f1;
  margin-top: 0;
  padding: clamp(56px, 8vh, 90px) 0;
}

.section-newsletter-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section-newsletter-inner h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.section-newsletter-inner p {
  margin: 16px 0 0;
  color: #3f3f3f;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 840px;
}

.newsletter-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.newsletter-fields {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.newsletter-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 600;
}

.newsletter-fields input {
  height: 48px;
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 0 12px;
  font-size: 16px;
}

.newsletter-checkbox {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f2f2f;
  font-size: 15px;
}

.newsletter-submit {
  margin-top: 18px;
  display: block;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
}

.section-news {
  background: #fff;
  padding: clamp(48px, 8vh, 110px) 0 clamp(70px, 9vh, 120px);
}

.section-news-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section-news-inner h3 {
  margin: 0;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.news-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.news-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  padding: 10px;
  border-radius: 0;
  background: transparent;
  transition: none;
}

.news-link h4 {
  transition: color 0.2s ease;
}

.news-link:hover img {
  transform: translateY(-2px) scale(1.02);
}

.news-link:hover h4 {
  color: #2f7d5a;
}

.news-link:hover {
  background: #f1f8f4;
  box-shadow: none;
  transform: none;
}

.news-tags {
  margin: 14px 0 0;
  color: #39775a;
  font-size: 13px;
  line-height: 1.3;
}

.news-date {
  margin: 8px 0 0;
  color: #7b7b7b;
  font-size: 13px;
  line-height: 1.3;
}

.news-card h4 {
  margin: 10px 0 0;
  color: #151515;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
}

.news-more {
  margin: 48px auto 0;
  display: table;
  text-decoration: none;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.55) 9%, rgba(255, 255, 255, 0.22) 18%),
    #688d1b url("images/footer.png") center 62%/cover no-repeat;
  min-height: clamp(520px, 70vh, 860px);
  padding: clamp(72px, 12vh, 150px) 0 18px;
}

.site-footer-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding-top: clamp(40px, 6vh, 78px);
}

.footer-brand h3 {
  margin: 0;
  padding-bottom: 8px;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.1;
  color: #1b1b1b;
  font-weight: 800;
}

.footer-brand p {
  margin: 0;
  padding-bottom: 6px;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #2f2f2f;
}

.footer-social {
  margin-top: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #303030;
  border: 1px solid #303030;
  font-size: 16px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.25);
}

.footer-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 230px));
  justify-content: start;
  column-gap: 20px;
  row-gap: 24px;
}

.footer-col h4 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1f1f1f;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 4px;
  padding-bottom: 2px;
}

.footer-copy {
  margin: 34px 0 0;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .navbar {
    width: 100%;
    margin: 0;
  }

  .main-row {
    flex-direction: column;
    gap: 18px;
  }

  .brand {
    margin-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
  }

  .banner {
    width: 100vw;
    grid-template-columns: 1fr;
  }

  .banner-left {
    display: none;
  }

  .banner-right {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-left: clamp(20px, 6vw, 40px);
    padding-right: clamp(20px, 6vw, 40px);
    padding-top: clamp(158px, 24vh, 250px);
    padding-bottom: clamp(220px, 36vh, 320px);
  }

  .banner-right h2 {
    font-size: clamp(44px, 12vw, 76px);
  }

  .banner-right p {
    font-size: clamp(15px, 3.8vw, 22px);
  }

  .banner-mobile-image {
    display: block;
    position: absolute;
    left: clamp(20px, 6vw, 40px);
    bottom: 0;
    width: min(84vw, 430px);
    max-width: 100%;
    height: auto;
    margin-top: 0;
  }

  .section-two-inner {
    grid-template-columns: 1fr;
  }

  .section-two-media {
    margin: 0 auto;
  }

  .section-two-bg {
    transform: translate(-14px, 14px);
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}
