@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #4E4E4E;
  background-color: #FFFDF4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 35px;
  font-weight: 600;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 25px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.625rem;
}

li::marker {
  font-weight: 600;
}

ul li::marker {
  color: #7EA272;
}

ol li::marker {
  color: #D9A068;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

iframe {
  max-width: 100%;
  border: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

/* LABELS */
label {
  display: block;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #4E4E4E;
}

/* INPUTS + TEXTAREA */
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea,
select {
  width: 100%;
  padding: 0 24px;
  border: 1px solid #7EA272;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select {
  height: 58px;
}

textarea {
  min-height: 160px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 32px;
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #7EA272;
  background: #fff;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

input[type=checkbox]:checked::before,
input[type=radio]:checked::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #7EA272;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type=checkbox]:checked::before {
  content: "\f00c"; /* Font Awesome check */
  font-size: 12px;
}

input[type=radio] {
  border-radius: 50%;
}

/* Checked state with Font Awesome */
input[type=radio]:checked::before {
  content: "\f111"; /* fa-circle */
  font-size: 10px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #7EA272;
  box-shadow: 0 0 0 3px rgba(126, 162, 114, 0.15);
}

::placeholder {
  color: #999;
  opacity: 1;
}

input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

section {
  padding: 65px 0;
}
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-white-cream {
  color: #FFFDF4;
}

.text-cream {
  color: #FAEDCD;
}

.text-sand {
  color: #D9A068;
}

.text-sage-light {
  color: #BBC699;
}

.text-green {
  color: #7EA272;
}

.text-olive {
  color: #526B4A;
}

.text-gray {
  color: #4E4E4E;
}

.text-pale-green {
  color: #E9EDC9;
}

.text-shadow-soft {
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.hr {
  border: 0;
  height: 1px;
  background: #4E4E4E;
  opacity: 0.2;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .hr {
    margin: 20px 0;
  }
}

.hr--olive {
  background: #526B4A;
  opacity: 0.4;
}

.hr--sand {
  background: #D9A068;
  opacity: 0.6;
}

.hr--green {
  background: #7EA272;
  opacity: 0.6;
}

.page-hero + .has-global-padding {
  padding-top: 65px;
  padding-bottom: 65px;
}

.container {
  width: min(100% - 80px, 1126px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
  }
}

.site-main {
  padding: 0 50px 50px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .site-main {
    padding: 0 20px 20px;
  }
}

.page-content {
  padding: 80px 0;
}

.legal-block {
  margin-bottom: 60px;
  padding: 0;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block__title {
  font-size: 25px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  min-height: 42px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--cream {
  background: #FAEDCD;
  color: #4E4E4E;
}
.btn--cream:hover {
  background: #D9A068;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}

.btn--green {
  background: #7EA272;
  color: #fff;
}
.btn--green:hover {
  background: #526B4A;
  box-shadow: 0 8px 24px rgba(82, 107, 74, 0.2);
}

.btn--sand {
  background: #D9A068;
  color: #FFFFFF;
}
.btn--sand:hover {
  background: #c88f57;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}

.btn--olive {
  background: #526B4A;
  color: #FFFFFF;
}
.btn--olive:hover {
  background: #7EA272;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}

.btn--sand-outline {
  background: #FAEDCD;
  border-color: #D9A068;
  color: #4E4E4E;
}
.btn--sand-outline:hover {
  background: #D9A068;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}

.btn--green-outline {
  background: #E9EDC9;
  border-color: #7EA272;
  color: #4E4E4E;
}
.btn--green-outline:hover {
  background: #7EA272;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}

.btn--pale-green {
  background: #E9EDC9;
  color: #4E4E4E;
}
.btn--pale-green:hover {
  background: #7EA272;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}

.btn--circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 30px 20px;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card__header {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: default;
}
.card__header i {
  display: none;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.card__content {
  flex: 1;
  padding-top: 20px;
}
.card__content p:last-child {
  margin-bottom: 0;
}

.card__footer {
  margin-top: 30px;
}

.card--olive {
  background: #E9EDC9;
}
.card--olive .card__title,
.card--olive .card__header i {
  color: #526B4A;
}
.card--olive .card__content {
  color: #4E4E4E;
}

.card--sand {
  background: #D9A068;
}
.card--sand .card__title,
.card--sand .card__header i {
  color: #FAEDCD;
}
.card--sand .card__content {
  color: #FFFFFF;
}

.card--cream {
  background: #FAEDCD;
}
.card--cream .card__title,
.card--cream .card__header i {
  color: #D9A068;
}
.card--cream .card__content {
  color: #4E4E4E;
}

.card--white {
  background: #FFFFFF;
}
.card--white .card__title,
.card--white .card__header i {
  color: #7EA272;
}
.card--white .card__content {
  color: #4E4E4E;
}

.card--border {
  border: 1px solid rgba(78, 78, 78, 0.1);
}

.card--center {
  text-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .card__header i {
    display: block;
    transition: transform 0.3s ease;
  }
  .card__title {
    margin: 0;
  }
  .card__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .card.is-open .card__body {
    max-height: 500px;
  }
  .card.is-open .card__header i {
    transform: rotate(180deg);
  }
}
.feature-card {
  display: flex;
  gap: 20px;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid #D9A068;
  border-radius: 50%;
  box-shadow: 0 0 10px #F4E3B9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon img {
  width: 28px;
  height: 28px;
}

.feature-card__body {
  flex: 1;
}

.feature-card__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.feature-card p {
  margin: 0 0 16px;
  line-height: 1.5;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.25s ease;
}
.feature-card__link:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .feature-card {
    align-items: center;
    text-align: center;
  }
}
.feature-img {
  overflow: hidden;
  border-radius: 26px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border-radius: 26px;
  flex: 1;
  background: radial-gradient(circle at 25% 25%, #E9EDC9 0%, #7EA272 80%, #7EA272 100%);
  color: #4E4E4E;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.project-card__background,
.project-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.project-card__step {
  position: absolute;
  top: 30px;
  left: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.project-card__title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #E9EDC9;
  display: flex;
}

.project-card__title h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.project-card__title:before {
  height: 100%;
  width: 1px;
  margin: 0px 8px 20px 0;
  background-color: #E9EDC9;
}

.project-card__content {
  position: relative;
  width: 100%;
  padding-left: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: #FFFFFF;
}

.project-card__content p {
  margin: 0 0 24px;
}

.project-card__link {
  color: #E9EDC9;
  text-decoration: underline;
  font-weight: bold;
}

.project-card--sand {
  background: #D9A068;
}
.project-card--sand .project-card__title {
  color: #FAEDCD;
}

.project-card--olive {
  background: #526B4A;
}
.project-card--olive .project-card__title,
.project-card--olive .project-card__step {
  color: #FAEDCD;
}

.project-card--green {
  background: #7EA272;
}
.project-card--green .project-card__title {
  color: #FAEDCD;
}

.project-card--white {
  background: #FFFFFF;
}
.project-card--white .project-card__title,
.project-card--white .project-card__step {
  color: #D9A068;
}

.project-card:hover .project-card__background,
.project-card:hover .project-card__overlay {
  opacity: 1;
}
.project-card:hover .project-card__step {
  opacity: 0;
}
.project-card:hover .project-card__title {
  color: #E9EDC9;
  position: absolute;
  top: 30px;
  right: auto;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.project-card:hover .project-card__title:before {
  content: "";
}
.project-card:hover .project-card__title h3 {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1 0 auto;
}
.project-card:hover .project-card__content {
  opacity: 1;
  transform: translateY(0);
  color: #FFFFFF;
}
.project-card:hover .project-card__step {
  opacity: 0;
}

.site-header {
  padding: 35px 20px 0;
  margin-bottom: -35px;
  position: relative;
  z-index: 1000;
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  gap: 20px;
  max-width: 1126px;
  border-radius: 26px;
  background: #FFFFFF;
  margin: 0 auto;
  min-height: 68px;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.site-header__logo {
  max-width: 220px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}
.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50px;
}
.site-header__logo .mobile {
  display: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* MENU */
.site-header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

.site-header__menu li {
  margin: 0;
}

.site-header__menu a {
  text-decoration: none;
}

.site-header__menu a:hover,
.site-header__menu li.current_page_item > a {
  color: #7EA272;
}

.site-header__menu li.current_page_item > a {
  font-weight: 600;
}

.site-header__menu .sub-menu--level-1 {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  padding: 40px;
  border-radius: 0 0 26px 26px;
  list-style: none;
  margin: 0;
  display: none;
  flex-wrap: wrap;
  gap: 40px;
}

.site-header__menu li:hover .sub-menu--level-1 {
  display: flex;
}

.site-header__menu .sub-menu--level-1 > li > a {
  font-size: 25px;
  font-weight: 500;
  color: #526B4A;
}

.site-header__menu .sub-menu--deep {
  padding: 20px 0 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ACTIONS */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.site-header__actions .btn {
  min-height: 46px;
}

.site-header__lang .lang-switcher__toggle {
  display: none;
}
.site-header__lang .lang-switcher__dropdown,
.site-header__lang .lang-switcher__dropdown li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-header__search-wrapper {
  position: relative;
  padding-right: 46px;
  min-width: 46px;
  height: 46px;
}

.site-header__search {
  position: absolute;
  top: 0;
  right: 0;
}

.site-header__search-form {
  display: none;
  width: 100%;
}

.site-header__search-form.is-active {
  display: block;
}

.site-header__search-input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
}

.site-header__actions.search-active > * {
  display: none;
}

.site-header__actions.search-active .site-header__search-wrapper,
.site-header__actions.search-active .site-header__search-form {
  display: block;
  flex: 1;
}

.site-header__search-input {
  width: 100%;
}

/* BURGER */
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
}
.site-header__burger span {
  width: 20px;
  height: 3px;
  background: #526B4A;
  border-radius: 3px;
}

@media (max-width: 992px) {
  .site-header__burger {
    display: flex;
    position: relative;
    z-index: 11;
  }
  .site-header__logo,
  .site-header__actions {
    position: relative;
    z-index: 11;
  }
  .site-header__menu {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 100px 20px 40px;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  }
  .site-header__menu > li > a {
    font-size: 25px;
    font-weight: 500;
    color: #526B4A;
  }
  .site-header.is-open .site-header__container {
    border-radius: 26px 26px 0 0;
    box-shadow: none;
  }
  .site-header.is-open .site-header__menu {
    display: flex;
  }
  .site-header__menu .sub-menu {
    display: none;
  }
  .site-header__menu .menu-item.is-open > .sub-menu {
    display: flex;
  }
  .site-header__menu .sub-menu--level-1 {
    position: static;
    padding: 20px 0 0;
    flex-direction: column;
    gap: 20px;
  }
  .site-header__menu .sub-menu--deep {
    padding: 15px 0 0 20px;
  }
  .site-header__menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .site-header__menu > .menu-item-has-children > a::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    color: #D9A068;
    transition: transform 0.25s ease;
  }
  .site-header__menu .menu-item.is-open > a::after {
    transform: rotate(180deg);
  }
  .site-header__menu .sub-menu--level-1 {
    position: relative;
    flex-direction: column;
    gap: 20px;
  }
  .site-header__menu .sub-menu--level-1 > li > a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .site-header__logo {
    max-width: 40px;
  }
  .site-header__logo .desktop {
    display: none;
  }
  .site-header__logo .mobile {
    display: block;
  }
}
.footer {
  background: #7EA272;
  color: #FFFFFF;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---------- TOP ---------- */
.footer__top {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.footer__top .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  width: 250px;
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.footer__description {
  max-width: 450px;
}

.footer__description p {
  margin: 0 0 16px;
  line-height: 1.5;
}

/* menu split into 3 columns */
.footer__nav {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu--split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.footer__menu--single {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__menu li {
  margin: 0;
}

.footer__menu a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__menu a:hover {
  opacity: 0.7;
}

/* ---------- BOTTOM ---------- */
.footer__bottom {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.footer__bottom .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer__socials a {
  color: inherit;
  font-size: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FAEDCD;
  transition: opacity 0.2s ease;
}
.footer__socials a:hover {
  opacity: 0.7;
}

.footer__legal {
  display: flex;
  justify-content: flex-end;
}

.footer__legal ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal li {
  margin: 0;
}

.footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__legal a:hover {
  opacity: 0.7;
}

.footer a:focus-visible {
  outline: 2px solid #D9A068;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
  .footer__top .container {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__menu--split {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__menu--single {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #FAEDCD;
    border-bottom: 1px solid #FAEDCD;
    padding: 40px 0;
    align-items: center;
  }
  .footer__bottom .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__copyright {
    order: 3;
  }
  .footer__socials {
    order: 2;
  }
  .footer__legal {
    order: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hero-slider {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
}
.hero-slider .hero-slider__wrapper {
  margin: 0;
}

.hero-slider__slide {
  position: relative;
  height: 80vh;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px;
}

.hero-slider__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slider__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1126px;
  padding: 0 0 100px;
  gap: 100px;
}

.hero-slider__col {
  flex: 1;
}

.hero-slider__col--left {
  max-width: 60%;
  position: relative;
}

.hero-slider__col--right {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.hero-slider__title,
.hero-slider__slide h2 {
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0;
  color: #FFFFFF;
}

.hero-slider__text {
  font-weight: 500;
  color: #FFFFFF;
}

.hero-slider__col--left > *,
.hero-slider__text > * {
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-slider--has-blur .hero-slider__col--left::before,
.hero-slider--has-blur .hero-slider__col--right::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.hero-slider__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 10;
}

.hero-slider .slick-dots li {
  margin: 0;
  width: 16px;
  height: 16px;
}

.hero-slider .slick-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #FFFFFF;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-slider .slick-dots li:hover button {
  background: #BBC699;
}

.hero-slider .slick-dots .slick-active button {
  background: #BBC699;
  border-color: #BBC699;
}

.hero-slider .slick-dots li button:before {
  content: "";
}

@media (max-width: 1024px) {
  .hero-slider__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .hero-slider__col {
    max-width: 100%;
  }
  .hero-slider__col--left,
  .hero-slider__col--right .hero-slider__text {
    text-align: center;
    max-width: 80%;
    align-items: center;
    margin: 0 auto;
  }
  .hero-slider__col--left > *,
  .hero-slider__col--right .hero-slider__text > * {
    color: #4E4E4E !important;
    text-shadow: none !important;
  }
  .hero-slider__col--left span[style*="#faedcd"],
  .hero-slider__col--right .hero-slider__text span[style*="#faedcd"] {
    color: #D9A068 !important;
  }
  .hero-slider__col--left span[style*="#E9EDC9"],
  .hero-slider__col--right .hero-slider__text span[style*="#E9EDC9"] {
    color: #7EA272 !important;
  }
  .hero-slider .slick-dots button {
    border: 1px solid #526B4A;
  }
}
@media (max-width: 768px) {
  .hero-slider__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 60px;
    gap: 20px;
  }
  .hero-slider__slide {
    padding: 0;
    flex-direction: column;
    gap: 40px;
    height: auto;
  }
  .hero-slider__bg {
    position: static;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 26px;
  }
  .hero-slider .slick-dots {
    bottom: 20px;
  }
  .hero-slider__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.cta__wrap {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 26px;
  padding: 65px 0;
}

/* background image */
.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__media .mobile {
  display: none;
}

/* dark overlay for readability */
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta__text > * {
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.cta__text > :last-child {
  margin: 0;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta--left .cta__wrap {
  justify-content: flex-start;
}
.cta--left .cta__content {
  text-align: left;
}

.cta--right .cta__wrap {
  justify-content: flex-end;
}
.cta--right .cta__content {
  text-align: left;
}

.cta--center .cta__wrap {
  justify-content: center;
  text-align: center;
}
.cta--center .cta__content {
  align-items: center;
}
.cta--center .cta__actions {
  justify-content: center;
}

.cta--has-blur .cta__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  filter: blur(75px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta__wrap {
    padding: 40px 0;
    min-height: 0;
  }
  .cta__content {
    padding: 20px 40px;
  }
  .cta__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta__actions .btn {
    width: 100%;
  }
  .cta__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cta__media .mobile {
    display: block;
  }
  .cta__media .desktop {
    display: none;
  }
}
.accordion-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.accordion-section__title {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #4E4E4E;
}

.accordion {
  border-top: 1px solid #D9A068;
}

.accordion__item {
  border-bottom: 1px solid #D9A068;
}

.accordion__question {
  width: 100%;
  padding: 32px 0;
  position: relative;
  background: none;
  border: none;
  text-align: left;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 600;
  color: #526B4A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s ease;
}
.accordion__question:hover {
  color: #7EA272;
}
.accordion__question i {
  font-size: 24px;
  color: #D9A068;
  transition: transform 0.3s ease;
  margin-left: 24px;
}

.accordion__question:focus-visible {
  outline: 2px solid #D9A068;
  outline-offset: 4px;
}

.accordion__item.is-open .accordion__question i {
  transform: rotate(180deg);
}

.accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  padding-right: 48px;
}

.accordion__answer p {
  margin: 0;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .accordion-section__title {
    font-size: 24px;
  }
  .accordion__question {
    font-size: 20px;
    line-height: 1.4;
  }
  .accordion__answer {
    font-size: 16px;
    line-height: 1.7;
  }
}
.numbers-section__stats {
  padding: 30px;
  border-radius: 26px;
  background: url("../images/bg-decor-01.png") 90% 30px no-repeat, linear-gradient(135deg, #E9EDC9 0%, #CCD5AE 100%);
  background-size: 120px auto, cover;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.numbers-section__stats-title {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4E4E4E;
}

.numbers-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

.numbers-section__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.numbers-section__item strong {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: #7EA272;
}

.numbers-section__item span {
  color: #FFFFFF;
}

.numbers-section__grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 80px;
  align-items: center;
}

.numbers-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 200px;
  padding-top: 60px;
  position: relative;
}

.numbers-section__title {
  margin: 0 0 20px;
  max-width: 200px;
  color: #4E4E4E;
  left: 0;
  top: 0;
  position: absolute;
}

.numbers-section__title:after {
  content: "";
  width: 40px;
  height: 2px;
  margin-left: 10px;
  background: #7EA272;
  display: inline-block;
  vertical-align: middle;
}

.numbers-section__content p {
  margin: 0 0 1rem;
  color: #4E4E4E;
  line-height: 1.5;
  font-weight: 500;
}

.numbers-section__content a {
  color: #7EA272;
}

.numbers-section__content a:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .numbers-section__content {
    padding-left: 0;
  }
  .numbers-section__title {
    max-width: none;
  }
}
@media (max-width: 992px) {
  .numbers-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .numbers-section__content {
    order: 1;
    padding-left: 0;
  }
  .numbers-section__stats {
    max-width: none;
    order: 2;
  }
  .numbers-section__title {
    max-width: none;
  }
  .numbers-section__item {
    font-size: 15px;
  }
  .numbers-section__item strong {
    font-size: 30px;
  }
}
.logo-slider__header {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.logo-slider__wrapper {
  position: relative;
}

.logo-slider__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.logo-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  min-width: 250px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 26px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.logo-slider__item img {
  display: block;
  max-width: 100%;
  max-height: 80px;
  width: auto;
}

.logo-slider__items.slick-initialized {
  display: block;
}

.logo-slider__items.slick-initialized .slick-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 20px 0;
}

.logo-slider__items.slick-initialized .slick-slide {
  display: flex;
  height: auto;
}

.logo-slider__items.slick-initialized .logo-slider__item {
  width: 100%;
  min-width: auto;
}

.logo-slider__arrows {
  display: none;
}

.logo-slider.has-slider .logo-slider__arrows {
  display: flex;
}

.logo-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  padding: 10px;
  margin-top: -21px;
}
.logo-slider__arrow--prev {
  left: -40px;
}
.logo-slider__arrow--next {
  right: -40px;
}

@media (max-width: 768px) {
  .logo-slider__arrow--prev {
    left: 0;
  }
  .logo-slider__arrow--next {
    right: 0;
  }
}
.quote-card {
  position: relative;
  width: min(515px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 80px 80px 40px;
  border-radius: 50%;
  background: #FFFDF4;
  border: 1px solid #D9A068;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-card__mark {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 250px;
  line-height: 1;
  color: #526B4A;
}

.quote-card__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.quote-card__text {
  margin: 0;
  color: #526B4A;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
}

.quote-card__author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  line-height: 1.6;
  font-style: normal;
  color: #7EA272;
}

.quote-card__name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.quote-slider .slick-track {
  display: flex;
}

.quote-slider .slick-slide {
  display: flex;
  justify-content: center;
}

.quote-slider .slick-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 40px 0 0;
  list-style: none;
  z-index: 10;
}

.quote-slider .slick-dots li {
  margin: 0;
  width: 16px;
  height: 16px;
}

.quote-slider .slick-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #BBC699;
  border: 1px solid #BBC699;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.quote-slider .slick-dots li:hover button {
  background: #7EA272;
}

.quote-slider .slick-dots .slick-active button {
  background: #7EA272;
  border-color: #7EA272;
}

.quote-slider .slick-dots li button:before {
  content: "";
}

@media (max-width: 768px) {
  .quote-card__text {
    font-size: 18px;
  }
  .quote-card {
    border: 0;
    aspect-ratio: unset;
  }
  .quote-card__mark {
    top: -20px;
    left: -10px;
    font-size: 200px;
  }
}
.features-section__grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 4rem;
  align-items: stretch;
}

.features-section__image {
  overflow: hidden;
  border-radius: 26px;
}

.features-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}

.features-section__title > :last-child {
  margin: 0;
}

@media (max-width: 991px) {
  .features-section__grid {
    grid-template-columns: 1fr;
  }
  .features-section__content {
    padding: 0;
  }
  .features-section__image {
    aspect-ratio: 4/3;
  }
  .feature-card {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features-section__content {
    padding: 0;
    text-align: center;
  }
  .feature-card {
    align-items: center;
  }
}
.case-studies__header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.case-studies__description {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 26px;
  margin: 0 0 40px;
  text-decoration: none;
}

.case-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-card__placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  background: #E9EDC9;
  color: #526B4A;
  font-size: 25px;
  font-weight: 600;
  transition: opacity 0.4s ease;
}
.case-card__placeholder:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -15px;
  right: -33px;
  width: 315px;
  height: 312px;
  background: url(../images/bg-decor-01.svg) no-repeat;
}

.case-card__image:hover .case-card__placeholder {
  opacity: 0;
}
.case-card__image:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.case-card__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-card__title {
  margin: 0;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
}

.case-card__title a {
  text-decoration: none;
}

.case-card__text > :last-child {
  margin: 0;
}

@media (max-width: 768px) {
  .case-studies__grid {
    grid-template-columns: 1fr;
  }
  .case-card__placeholder {
    padding: 20px;
  }
  .case-studies__title {
    font-size: 35px;
  }
  .case-card__title {
    font-size: 24px;
  }
}
.expand-cards__grid {
  display: flex;
  gap: 20px;
  height: 400px;
}

.expand-card {
  flex: 1;
  overflow: hidden;
  transition: flex 0.45s ease, background-color 0.3s ease;
}

.expand-cards__grid:hover .expand-card {
  flex: 0 0 150px;
}

.expand-cards__grid:hover .expand-card:hover {
  flex: 1;
}

.expand-cards__grid:hover .project-card__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.expand-card__title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

.expand-card__body {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.expand-card:hover .expand-card__body {
  opacity: 1;
  transform: none;
}

.expand-card:hover .expand-card__body {
  transition-delay: 0.15s;
}

.expand-card:not(:hover) .expand-card__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.expand-cards .slick-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  z-index: 10;
}

.expand-cards .slick-dots li {
  margin: 0;
  width: 16px;
  height: 16px;
}

.expand-cards .slick-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #BBC699;
  border: 1px solid #BBC699;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.expand-cards .slick-dots li:hover button {
  background: #7EA272;
}

.expand-cards .slick-dots .slick-active button {
  background: #7EA272;
  border-color: #7EA272;
}

.expand-cards .slick-dots li button:before {
  content: "";
}

.expand-cards__grid.slick-slider {
  margin: 0 -50px;
}
.expand-cards__grid.slick-slider .expand-card {
  margin: 0 25px;
}

@media (max-width: 1199px) {
  .expand-cards .container {
    width: 100%;
  }
  .expand-cards__grid {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
  .expand-cards__grid:hover .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .expand-cards__grid:hover .project-card:hover .project-card__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}
@media (max-width: 992px) {
  .expand-cards__grid {
    flex-direction: column;
  }
  .expand-card {
    flex: initial !important;
    min-height: 400px;
  }
  .expand-card__body {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 768px) {
  .expand-card {
    min-height: 550px;
  }
  .expand-card .project-card__content {
    font-size: 14px;
  }
  .expand-cards__grid.slick-slider {
    margin: 0 -20px;
  }
  .expand-cards__grid.slick-slider .expand-card {
    margin: 0 10px;
  }
}
.video-text-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.video-text-section__grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 4rem;
  align-items: stretch;
}

.video-text-section__image {
  overflow: hidden;
  border-radius: 26px;
}

.video-text-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-text-section__video {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  height: 100%;
  min-height: 500px;
}

.video-text-section__video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-text-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 244, 0.95);
  color: #526B4A;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.video-text-section__play:hover {
  background: #D9A068;
  color: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.05);
}

.video-text-section__play i {
  font-size: 28px;
  margin-left: 4px;
}

.video-text-section__video.is-playing .video-text-section__play {
  opacity: 0;
  visibility: hidden;
}

.video-text-section__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-text-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}

.video-text-section__title {
  position: relative;
  max-width: 550px;
}

.video-text-section__title > :last-child {
  margin-bottom: 0;
}

.video-text-section__title:after {
  content: "";
  width: 100px;
  height: 2px;
  margin-left: 10px;
  background: #7EA272;
  display: inline-block;
  vertical-align: middle;
}

.video-text-section__content-wrap {
  padding-left: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video-text-section__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-text-section__text p {
  margin: 0;
}

.video-text-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.video-text-section--only-video .video-text-section__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .video-text-section--video-right .video-text-section__grid {
    grid-template-columns: 1fr 40%;
  }
  .video-text-section--video-right .video-text-section__content {
    order: 1;
  }
  .video-text-section--video-right .video-text-section__video {
    order: 2;
  }
  .video-text-section--video-right .video-text-section__content-wrap {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .video-text-section__grid {
    grid-template-columns: 1fr;
  }
  .video-text-section__content {
    padding: 0;
  }
  .video-text-section__image {
    aspect-ratio: 4/3;
  }
  .video-text-section__video {
    aspect-ratio: 4/3;
    min-height: 0;
  }
  .video-text-section__content-wrap {
    padding-left: 0;
  }
  .video-text-section__buttons {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .video-text-section__content {
    padding: 0;
    text-align: center;
  }
  .video-text-section__title {
    max-width: none;
  }
}
.img-text-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.img-text-section__content {
  padding: 40px 0;
}

.img-text-section__content-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.img-text-section__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-text-section__text p {
  margin: 0;
}

.img-text-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 992px) {
  .img-text-section--image-right .img-text-section__content {
    order: 1;
  }
  .img-text-section--image-right .img-text-section__image {
    order: 2;
  }
}
@media (max-width: 991px) {
  .img-text-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-text-section__image {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .img-text-section__content {
    padding: 0;
    text-align: center;
  }
  .img-text-section__content-wrap {
    padding-left: 0;
  }
  .img-text-section__buttons {
    justify-content: center;
  }
  .img-text-section__title {
    max-width: none;
  }
}
.benefits-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
}

.benefits-section__description {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.benefits-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .benefits-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .benefits-section__grid {
    grid-template-columns: 1fr;
  }
}
.why-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: center;
}

.why-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.why-section__title {
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.why-section__description {
  align-self: center;
  font-size: 18px;
  line-height: 1.5;
}
.why-section__description p {
  margin: 0;
}

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

.why-section__footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.why-section__image {
  overflow: hidden;
  border-radius: 26px;
}

.why-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .why-section__grid {
    grid-template-columns: 1fr;
  }
  .why-section__image {
    width: 100%;
    aspect-ratio: 4/3;
    order: -1;
  }
}
@media (max-width: 768px) {
  .why-section__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-section__title {
    font-size: 35px;
  }
  .why-section__cards {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 80px 20px;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 25% 25%, #E9EDC9 0%, #7EA272 80%, #7EA272 100%);
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-hero__content-wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero__title {
  color: #FFFFFF;
}
.page-hero__title > :last-child {
  margin: 0;
}

.page-hero__text {
  font-size: 18px;
  color: #FFFFFF;
}
.page-hero__text > :last-child {
  margin: 0;
}

.page-hero--space-between {
  align-items: flex-end;
}
.page-hero--space-between .page-hero__content-wrap {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  text-align: left;
  max-width: none;
  gap: 80px;
}
.page-hero--space-between .page-hero__title,
.page-hero--space-between .page-hero__text {
  flex: 1;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 220px;
    max-height: none;
  }
  .page-hero--space-between {
    align-items: center;
  }
  .page-hero--space-between .page-hero__content-wrap {
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .page-hero--space-between .page-hero__title {
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  }
}
.page-hero--404 {
  min-height: 650px;
  align-items: flex-end;
  background-size: cover;
}
.page-hero--404 .page-hero__title {
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.page-hero__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: 35px;
  }
  .page-hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
.solutions-overview__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
}

.solutions-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.solutions-overview .feature-card {
  position: relative;
}

.solutions-overview .feature-card:after {
  content: "";
  width: 1px;
  background: #D9A068;
  position: absolute;
  top: 70px;
  bottom: -26px;
  left: 27px;
}

.solutions-overview .feature-card:nth-last-child(-n+2):after {
  content: none;
}

@media (max-width: 991px) {
  .solutions-overview .feature-card:after {
    content: none;
  }
}
@media (max-width: 768px) {
  .solutions-overview__grid {
    grid-template-columns: 1fr;
  }
}
.expertise-section {
  position: relative;
}

.expertise-section:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: #E9EDC9;
  filter: blur(150px);
  pointer-events: none;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
}

.expertise-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
}

.expertise-section__description {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.expertise-section__grid {
  display: flex;
  gap: 20px;
}

.expertise-section .slick-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  z-index: 10;
}

.expertise-section .slick-dots li {
  margin: 0;
  width: 16px;
  height: 16px;
}

.expertise-section .slick-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #BBC699;
  border: 1px solid #BBC699;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.expertise-section .slick-dots li:hover button {
  background: #7EA272;
}

.expertise-section .slick-dots .slick-active button {
  background: #7EA272;
  border-color: #7EA272;
}

.expertise-section .slick-dots li button:before {
  content: "";
}

.expertise-section__grid.slick-slider {
  margin: 0 -20px;
}
.expertise-section__grid.slick-slider .project-card {
  margin: 0 10px;
}

@media (max-width: 1199px) {
  .expertise-section__grid {
    flex-direction: column;
  }
  .expertise-section:after {
    width: 300px;
    height: 300px;
  }
}
.steps-section__grid {
  display: flex;
  gap: 20px;
  height: 500px;
}

/* default */
.step-card {
  flex: 1;
  overflow: hidden;
  border-radius: 26px;
  display: flex;
  transition: flex 0.45s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: radial-gradient(circle at 25% 25%, #E9EDC9 0%, #7EA272 80%, #7EA272 100%);
}

/* shrink others */
.steps-section__grid:hover .step-card {
  flex: 0.8;
}

/* expand hovered */
.steps-section__grid .step-card:hover {
  flex: 2;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.steps-section__grid:hover .step-card:not(:hover) .step-card__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.steps-section__grid .step-card.is-active {
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.step-card__left {
  flex: 0 0 250px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step-card__left > * {
  margin: 0;
}

.step-card__title > :last-child {
  margin: 0;
}

.step-card__right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.step-card__number {
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  color: #7EA272;
}

/* reveal */
.step-card:hover .step-card__right {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.steps-section__grid--2 {
  height: 400px;
}
.steps-section__grid--2 .step-card__left {
  flex: 0 0 300px;
}

@media (max-width: 1199px) {
  .steps-section__grid {
    flex-direction: column;
    min-height: 0;
    height: auto;
  }
  .steps-section__grid--2 {
    height: auto;
  }
  .steps-section__grid--2 .step-card__left {
    flex: 1;
  }
  .steps-section__grid:hover .step-card:not(:hover) .step-card__title {
    writing-mode: horizontal-tb;
    transform: none;
  }
}
@media (max-width: 768px) {
  .steps-section__grid {
    flex-direction: column;
    min-height: 0;
    height: auto;
  }
  .steps-section__grid--2 {
    height: auto;
  }
  .steps-section__grid--2 .step-card__left {
    flex: 1;
  }
  .step-card {
    flex: none;
    display: flex;
    flex-direction: column;
    transition: all 300ms ease;
  }
  .step-card__left {
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding-right: 40px;
  }
  .step-card__left > * {
    margin: 0;
  }
  .step-card__left:after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    color: #7EA272;
    transition: transform 0.25s ease;
  }
  .is-active .step-card__left:after {
    transform: rotate(180deg);
  }
  .step-card__right {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    pointer-events: none;
    padding: 0 20px;
    transition: all 300ms ease;
  }
  .step-card.is-active .step-card__right {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding: 20px;
    pointer-events: auto;
  }
  .step-card__number {
    font-size: 35px;
  }
  .step-card__title h3 {
    font-size: 20px;
  }
}
.step-card.sage-light {
  background: linear-gradient(135deg, #E9EDC9 0%, #CCD5AE 100%);
}
.step-card.sage-light .step-card__left:after {
  color: #7EA272;
}

.step-card.olive {
  background: #526B4A;
}
.step-card.olive .step-card__left:after {
  color: #526B4A;
}

.step-card.cream {
  background: #FAEDCD;
}
.step-card.cream .step-card__number {
  color: #D9A068;
}
.step-card.cream .step-card__left:after {
  color: #D9A068;
}

.filters-section__header {
  margin: 0 auto 40px;
  max-width: 700px;
  text-align: center;
}

.filters-section__description {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.filters-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .filters-section__buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
  }
}
.stats-section__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.stats-section__heading {
  max-width: 300px;
  padding-top: 40px;
}

.stats-section__title {
  margin: 0;
  color: #4E4E4E;
  position: relative;
}

.stats-section__title:after {
  content: "";
  width: 40px;
  height: 2px;
  margin-left: 10px;
  background: #7EA272;
  display: inline-block;
  vertical-align: middle;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px;
  border-radius: 26px;
  background: linear-gradient(135deg, #E9EDC9 0%, #CCD5AE 100%);
}

.stats-card__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats-card__number {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  color: #7EA272;
}

.stats-card__label {
  font-weight: 500;
  color: #7EA272;
}

@media (max-width: 1199px) {
  .stats-section__grid {
    grid-template-columns: 1fr;
  }
  .stats-section__heading {
    text-align: center;
    max-width: none;
    padding-top: 0;
  }
}
@media (max-width: 1199px) {
  .stats-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.resources-section__header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.resources-section__description {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.resources-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.resource-card {
  display: flex;
  gap: 20px;
}

.resource-card__image {
  width: 40%;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.resource-card__content {
  flex: 1;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.resource-card__body > :last-child {
  margin: 0;
}

.resource-card__title {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}

.resource-card__text {
  margin: 0;
}

@media (max-width: 768px) {
  .resources-section__grid {
    grid-template-columns: 1fr;
  }
  .resource-card {
    flex-direction: column;
  }
  .resource-card__image {
    width: 100%;
    aspect-ratio: 1;
  }
  .resource-card__content {
    padding: 0;
    text-align: center;
  }
}
.contact-form-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
}

.contact-form-section__description {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-form-section__body {
  position: relative;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  padding: 50px;
}

.contact-form-section__body:before,
.contact-form-section__body:after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: #E9EDC9;
  filter: blur(150px);
  pointer-events: none;
}

.contact-form-section__body:before {
  top: -80px;
  left: -120px;
  width: 470px;
  height: 470px;
}

.contact-form-section__body:after {
  right: -60px;
  bottom: -40px;
  width: 600px;
  height: 600px;
}

.contact-form-section__body .cf7-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-form-section__body .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-section__body .cf7-field label {
  font-weight: bold;
}

.contact-form-section__body .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-section__body .wpcf7-list-item {
  margin: 0 20px 0 0;
}

.contact-form-section__body .wpcf7-list-item input[type=checkbox],
.contact-form-section__body .wpcf7-list-item input[type=radio] {
  margin-right: 10px;
}

.contact-form-section__body .wpcf7-list-item input[type=checkbox],
.contact-form-section__body .wpcf7-list-item input[type=radio],
.contact-form-section__body .wpcf7-list-item .wpcf7-list-item-label {
  vertical-align: middle;
}

.contact-form-section__body .cf7-submit p {
  margin: 0;
}

.contact-form-section__body .cf7-submit input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  min-height: 42px;
  cursor: pointer;
  text-decoration: none;
  background: #E9EDC9;
  border-color: #7EA272;
  color: #4E4E4E;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.contact-form-section__body .cf7-submit input[type=submit]:hover {
  background: #7EA272;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
  transform: translateY(-2px);
}

.contact-form-section__body .cf7-submit input[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-section--color-sand input[type=text],
.contact-form-section--color-sand input[type=email],
.contact-form-section--color-sand input[type=password],
.contact-form-section--color-sand input[type=tel],
.contact-form-section--color-sand textarea,
.contact-form-section--color-sand select {
  border: 1px solid #D9A068;
}
.contact-form-section--color-sand input:focus,
.contact-form-section--color-sand textarea:focus,
.contact-form-section--color-sand select:focus {
  border-color: #D9A068;
  box-shadow: 0 0 0 3px rgba(217, 160, 104, 0.15);
}
.contact-form-section--color-sand .contact-form-section__body:before,
.contact-form-section--color-sand .contact-form-section__body:after {
  background: #FAEDCD;
}
.contact-form-section--color-sand .contact-form-section__body .cf7-submit input[type=submit] {
  background: #D9A068;
  color: #FFFFFF;
  border-color: transparent;
}
.contact-form-section--color-sand .contact-form-section__body .cf7-submit input[type=submit]:hover {
  background: #c88f57;
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 78, 78, 0.08);
}
.contact-form-section--color-sand input[type=checkbox],
.contact-form-section--color-sand input[type=radio] {
  border: 1px solid #D9A068;
}
.contact-form-section--color-sand input[type=checkbox]:checked::before,
.contact-form-section--color-sand input[type=radio]:checked::before {
  color: #D9A068;
}

@media (max-width: 991px) {
  .contact-form-section__body .cf7-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-form-section__body {
    padding: 20px;
  }
  .contact-form-section__body .cf7-row {
    grid-template-columns: 1fr;
  }
}
.locations-section__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: stretch;
}

.locations-section__map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.locations-section__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.locations-section__text > :last-child {
  margin: 0;
}

.locations-section__companies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.location-card {
  display: flex;
  flex-direction: column;
}

.location-card__title {
  margin: 0;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 600;
}

.location-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.location-card__list li,
.location-card__list li > :last-child {
  margin: 0;
}

.location-card__list h4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.location-card__list a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 991px) {
  .locations-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .locations-section__map-placeholder {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .location-card__list {
    grid-template-columns: 1fr;
  }
}
.principles-section__header {
  margin: 0 auto 40px;
  max-width: 700px;
  text-align: center;
}

.principles-section__description {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.principles-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.principle-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 50px;
  border-radius: 26px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #FFFFFF;
  background: #E9EDC9;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
}

.principle-card--green {
  background: #5D714F;
}
.principle-card--green .principle-card__title {
  color: #FAEDCD;
}

.principle-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.principle-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: 0.4s ease;
}

.principle-card__content {
  position: relative;
  z-index: 2;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.principle-card__title {
  margin: 0;
  color: #7EA272;
}

.principle-card__text {
  margin: 0;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.principle-card:hover .principle-card__image {
  opacity: 1;
  transform: scale(1);
}

.principle-card:hover::before {
  opacity: 1;
}

.principle-card:hover .principle-card__text {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .principles-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .principle-card {
    padding: 20px;
    min-height: 300px;
  }
  .principle-card__content {
    max-width: none;
  }
}
.appeals-section__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.appeals-section__intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.appeals-section__title {
  margin: 0;
}

.appeals-section__text {
  margin: 0;
}

.steps-fade {
  position: relative;
}

.appeals-section__steps {
  height: 400px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow-y: auto;
  padding: 40px 40px 40px 0;
}

.steps-fade::before,
.steps-fade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  display: block;
  pointer-events: none;
  z-index: 2;
}

.steps-fade::before {
  top: 0;
  background: linear-gradient(to bottom, #FFFDF4 0%, rgba(255, 253, 244, 0) 100%);
}

.steps-fade::after {
  bottom: 0;
  background: linear-gradient(to top, #FFFDF4 0%, rgba(255, 253, 244, 0) 100%);
}

.appeals-section__steps::-webkit-scrollbar {
  width: 8px;
}

.appeals-section__steps::-webkit-scrollbar-track {
  background: #E9EDC9;
  border-radius: 999px;
}

.appeals-section__steps::-webkit-scrollbar-thumb {
  background: #5D714F;
  border-radius: 999px;
}

.appeals-section__steps {
  scrollbar-width: thin;
  scrollbar-color: #5D714F #E9EDC9;
}

.appeal-card {
  display: flex;
  gap: 40px;
  position: relative;
}

.appeal-card:after {
  content: "";
  width: 1px;
  background: #D9A068;
  position: absolute;
  top: 70px;
  bottom: -26px;
  left: 27px;
}

.appeal-card:last-child:after {
  content: none;
}

.appeal-card__number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid #D9A068;
  border-radius: 50%;
  box-shadow: 0 0 10px #F4E3B9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D9A068;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}

.appeal-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appeal-card__title {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
}

.appeal-card__suptitle {
  text-transform: uppercase;
  color: #7EA272;
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 1px;
}

.appeal-card__text {
  margin: 0;
}

@media (max-width: 991px) {
  .appeals-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .appeals-section__intro {
    gap: 20px;
    text-align: center;
  }
}
.circle-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.circle-section__content {
  display: flex;
  justify-content: center;
}

.circle-section__circle {
  padding: 75px;
  aspect-ratio: 1;
  border: 1px solid #D9A068;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-section__circle:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(244, 227, 185, 0.4);
  border-radius: 50%;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.circle-section__text {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
}

.circle-section__text > :last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .circle-section__circle {
    padding: 0;
    border: 0;
  }
}
.team-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

/* Cards */
.team-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 calc(100% - 40px);
}

.team-card__image {
  aspect-ratio: 1;
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-card__info > * {
  margin-bottom: 0;
}

.team-card__name {
  font-size: 25px;
  color: #526B4A;
}

.team-card__jobtitle {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #526B4A;
}

.team-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Horizontal scroll */
.team-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #5D714F #E9EDC9;
}

/* Custom scrollbar */
.team-scroll::-webkit-scrollbar {
  height: 8px;
}

.team-scroll::-webkit-scrollbar-track {
  background: #E9EDC9;
  border-radius: 999px;
}

.team-scroll::-webkit-scrollbar-thumb {
  background: #5D714F;
  border-radius: 999px;
}

/* Desktop: show 3 cards */
@media (min-width: 992px) {
  .team-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}
.post-slider__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.post-slider__wrapper {
  position: relative;
}

.post-slider__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.post-slider__item {
  flex: 1;
  max-width: 50%;
}

.post-slider__items.slick-initialized {
  display: block;
}

.post-slider__items.slick-initialized .slick-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 20px 0;
}

.post-slider__items.slick-initialized .slick-slide {
  display: flex;
  height: auto;
}

.post-slider__items.slick-initialized .post-slider__item {
  width: 100%;
  min-width: auto;
}

.post-slider__arrows {
  display: none;
}

.post-slider.has-slider .post-slider__arrows {
  display: flex;
}

.post-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  padding: 10px;
  margin-top: -21px;
}
.post-slider__arrow--prev {
  left: -60px;
}
.post-slider__arrow--next {
  right: -60px;
}

@media (max-width: 768px) {
  .post-slider__arrow--prev {
    left: 0;
  }
  .post-slider__arrow--next {
    right: 0;
  }
}
/* Cards */
.post-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 26px;
  text-decoration: none;
  background-color: #E9EDC9;
}

.post-card__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.post-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.post-card__placeholder {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  font-weight: 600;
  transition: opacity 0.4s ease;
}

.post-card__image:hover {
  opacity: 1;
}
.post-card__image:hover .post-card__placeholder {
  opacity: 0;
}
.post-card__image:hover:after {
  opacity: 1;
}
.post-card__image:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.post-card__step {
  font-size: 45px;
  margin-bottom: 50px;
}

.post-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card__info > * {
  margin-bottom: 0;
}

.post-card__title {
  font-size: 25px;
  color: #D9A068;
}

.post-card__title a {
  text-decoration: none;
}

.post-card__title a:hoevr {
  text-decoration: underline;
}

.post-card__add-info {
  display: flex;
  flex-direction: column;
}
.post-card__add-info > * {
  margin-bottom: 0;
}

.post-card__namefirma,
.post-card__projtitle {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D9A068;
}

.post-card__projtitle {
  font-weight: 500;
}

.post-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.post-card--pale-green .post-card__image {
  background-color: #E9EDC9;
}
.post-card--pale-green .post-card__placeholder {
  color: #7EA272;
}

.post-card--green .post-card__image {
  background-color: #7EA272;
}
.post-card--green .post-card__placeholder {
  color: #E9EDC9;
}

.post-card--cream .post-card__image {
  background-color: #FAEDCD;
}
.post-card--cream .post-card__placeholder {
  color: #D9A068;
}

.post-card--sand .post-card__image {
  background-color: #D9A068;
}
.post-card--sand .post-card__placeholder {
  color: #FFFFFF;
}

.badge-section__header {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.badge-section__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.badge-item {
  width: 300px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge-item__icon {
  width: 110px;
  height: 110px;
  padding: 20px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7EA272;
}
.badge-item__icon img {
  width: 100%;
  max-width: 50px;
  height: auto;
  display: block;
}

.badge-item__text > * {
  margin: 0 0 5px;
}

.badge-item--green .badge-item__icon {
  background: #7EA272;
}
.badge-item--green .badge-item__text h3 {
  color: #526B4A;
}

.badge-item--sand .badge-item__icon {
  background: #D9A068;
}
.badge-item--sand .badge-item__text h3 {
  color: #D9A068;
}

.badge-item--sage-light .badge-item__icon {
  background: #BBC699;
}
.badge-item--sage-light .badge-item__text h3 {
  color: #526B4A;
}

.badge-item--pale-green .badge-item__icon {
  background: #E9EDC9;
}
.badge-item--pale-green .badge-item__text h3 {
  color: #7EA272;
}

/*# sourceMappingURL=style.css.map */
