html {
    scroll-behavior: smooth;
}

:root {
    --lp-green: #2d5a27;
    --lp-green-light: #4a7c3f;
    --lp-green-dark: #1a3a17;
    --lp-white: #ffffff;
    --lp-black: #22282B;
    --lp-gray: #f5f5f5;
    --lp-text: #333333;
}

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

body.landing-page {
    font-family: 'Manrope', sans-serif;
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.lp-container {
    width: 100%;
    padding: 0 clamp(1rem, -0.5777rem + 6.7314vw, 7.5rem);
}

/* =============================================
   HEADER
   ============================================= */

.lp-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background-color: #313B33;
    transition: background-color 0.3s ease, padding 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
}

.lp-header--front {
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.lp-header--front.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
a.lp-header__logo {
  display: flex;
}

.lp-header--front.scrolled {
    background-color: #313B33;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.lp-header .lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.lp-header__nav {
    display: flex;
    align-items: center;
}

.lp-header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-mob-header,
.lp-mob-lang {
    display: none;
}

.lp-header__menu li a {
    color: var(--lp-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    transition: opacity 0.3s ease;
}

.lp-header__menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #51B567;
    transition: width 0.3s ease;
}

.lp-header__menu li a:hover::after {
    width: 100%;
}

.lp-header__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-white);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.lp-header__lang img {
    width: 20px;
    height: 20px;
}

.lp-header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.lp-header__burger img {
    width: 24px;
    height: 24px;
}

/* =============================================
   HERO
   ============================================= */

.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

/* .lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
} */

.lp-hero .lp-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lp-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.lp-hero__badge {
    color: var(--lp-white);
    font-size: clamp(1.125rem, 1.0340rem + 0.3883vw, 1.5rem);
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
    margin-bottom: 24px;
      display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__badge::before,
.lp-hero__badge::after {
    content: '';
    display: inline-block;
    width: clamp(0.75rem, 0.7197rem + 0.1294vw, 0.875rem);
    height: clamp(0.75rem, 0.7197rem + 0.1294vw, 0.875rem);
    background-color: #51B567;
    border-radius: 50%;
    vertical-align: middle;
}

.lp-hero__badge::before {
    margin-right: 6px;
}

.lp-hero__badge::after {
    margin-left: 6px;
}

.lp-hero__title {
    color: var(--lp-white);
  font-size: clamp(1.75rem, 1.3859rem + 1.5534vw, 3.25rem);
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 24px;
}

.lp-hero__subtitle {
      color: #fff;
  font-size: clamp(1.125rem, 0.9430rem + 0.7767vw, 1.875rem);
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: clamp(1.875rem, 1.7233rem + 0.6472vw, 2.5rem);
}

.lp-hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lp-hero__btn--primary {
    background-color: #51B567;
    color: var(--lp-white);
    border: 1.5px solid #51B567;
}

.lp-hero__btn--primary:hover {
    background-color: transparent;
    color: var(--lp-white);
    border: 1.5px solid var(--lp-white);
}

.lp-hero__btn--outline {
    background: transparent;
    color: var(--lp-white);
    border: 1.5px solid var(--lp-white);
}

.lp-hero__btn--outline:hover {
    border-color: #51B567;
    background: #51B567;
    color: var(--lp-white) !important;
}

/* =============================================
   PLATFORM
   ============================================= */

.lp-platform {
    padding: clamp(3.75rem, 3.2039rem + 2.3301vw, 6rem) 0;
    background-color: var(--lp-gray);
}

.lp-platform__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: clamp(1.25rem, 0.4915rem + 3.2362vw, 4.375rem);
}

.lp-platform__title {
   font-size: clamp(1.75rem, 1.3252rem + 1.8123vw, 3.5rem);
  font-weight: 600;
  line-height: 110%;
  color: var(--lp-black);
  margin-bottom: 0;
}

.lp-platform__subtitle {
    font-size: clamp(1.125rem, 0.9580rem + 0.7125vw, 1.813rem);
    color: #667085;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 0;
}

.lp-platform__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.lp-platform__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-platform__card:nth-child(odd) {
    transform: translateY(0);
    transition: transform 0.1s linear;
}

.lp-platform__card:nth-child(even) {
    transform: translateY(40px);
    transition: transform 0.1s linear;
}

.lp-platform__img {
    border-radius:clamp(0.75rem, 0.5680rem + 0.7767vw, 1.5rem);
    overflow: hidden;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
}

.lp-platform__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lp-platform__card:hover .lp-platform__img img {
    transform: scale(1.05);
}

.lp-platform__info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.lp-platform__num {
    font-size: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
    font-weight: 600;
    color: var(--lp-black);
    line-height: 120%;
}

.lp-platform__name {
    font-size: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
    font-weight: 600;
    color: var(--lp-black);
    line-height: 120%;
    text-align: right;
    max-width: 170px;
}

/* =============================================
   FEATURES
   ============================================= */

.lp-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.lp-features__card {
    position: relative;
    aspect-ratio: 16 / 12.05;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-features__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.lp-features__label {
    position: relative;
    z-index: 1;
    color: var(--lp-white);
    font-size: clamp(1.875rem, 1.4806rem + 1.6828vw, 3.5rem);
    font-weight: 600;
    line-height: 110%;
    text-align: center;
}

/* =============================================
   MODEL
   ============================================= */

.lp-model {
    height: 300vh;
    position: relative;
    margin-bottom: 8px;
}

.lp-model__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.lp-model__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-model__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.lp-model__bg-img.active {
    opacity: 1;
}

.lp-model__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.lp-model__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(2.5rem, 1.7415rem + 3.2362vw, 5.625rem) clamp(1rem, 0.6359rem + 1.5534vw, 2.5rem) clamp(1rem, 0.4842rem + 2.2006vw, 3.125rem);
}

.lp-model__title {
      font-size: clamp(1.75rem, 1.3252rem + 1.8123vw, 3.5rem);
  font-weight: 600;
  color: var(--lp-white);
  margin-bottom: auto;
  line-height: 110%;

    margin-bottom: auto;
}

.lp-model__nav {
    position: absolute;
    left: clamp(1rem, 0.6359rem + 1.5534vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.lp-model__nav-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
}

.lp-model__nav-indicator {
    width: 3px;
    height: 32px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.25);
    transition: background-color 0.4s ease;
}

.lp-model__nav-indicator.active {
    background-color: #51B567;
}

.lp-model__nav-list {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
    margin-left: 16px;
}

.lp-model__nav-btn {
    background: none;
    border: none;
    color: var(--lp-white);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.lp-model__nav-btn:focus,
.lp-model__nav-btn:hover,
.lp-model__nav-btn:active {
    outline: none;
    background: none;
    color: var(--lp-white);
}

.lp-model__nav-btn.active,
.lp-model__nav-btn.active:hover,
.lp-model__nav-btn.active:focus {
    color: #51B567;
    background: none;
}

.lp-model__slides {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lp-model__slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.lp-model__slide.active {
    opacity: 1;
    pointer-events: auto;
}

.lp-model__arch {
    position: relative;
    width: 100%;
    height: 100%;
}

.lp-model__arch-items {
    position: absolute;
    inset: 0;
}

.lp-model__arch-items .lp-model__arch-item {
    position: absolute;
}

.lp-model__arch-items .lp-model__arch-item:nth-child(1) {
    top: 8%;
    right: 26%;
}

.lp-model__arch-items .lp-model__arch-item:nth-child(2) {
    top: 24%;
    right: 30%;
}

.lp-model__arch-items .lp-model__arch-item:nth-child(3) {
    top: 40%;
    right: 33%;
}

.lp-model__arch-items .lp-model__arch-item:nth-child(4) {
    top: 56%;
    right: 30%;
}

.lp-model__arch-items .lp-model__arch-item:nth-child(5) {
    top: 72%;
    right: 26%;
}

.lp-model__arch-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px) brightness(1.05);
    -webkit-backdrop-filter: blur(6px) brightness(1.05);
    border: none;
    border-radius: clamp(0.75rem, 0.6286rem + 0.5178vw, 1.25rem);
    padding: clamp(1.25rem, 1.0376rem + 0.9061vw, 2.125rem) clamp(1.875rem, 1.4199rem + 1.9417vw, 3.75rem);
    color: var(--lp-white);
    font-size: clamp(1.125rem, 0.9733rem + 0.6472vw, 1.75rem);
    font-weight: 500;
    line-height: 120%;
    white-space: nowrap;
    letter-spacing: -2px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03), 0 0 20px rgba(0, 0, 0, 0.15);
}

.lp-model__arch-hub {
    position: absolute;
    right: clamp(1rem, 0.6359rem + 1.5534vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(15.625rem, 13.3495rem + 9.7087vw, 25rem);
    height: clamp(15.625rem, 13.3495rem + 9.7087vw, 25rem);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px) brightness(1.05);
    -webkit-backdrop-filter: blur(6px) brightness(1.05);
    border: none;
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.03), 0 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-model__arch-hub span {
    color: var(--lp-white);
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
}

.lp-model__bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
     max-width: 90%;
    padding-left: 160px;
}

.lp-model__bubble {
    width: clamp(10rem, 8.1796rem + 7.7670vw, 17.5rem);
    height: clamp(10rem, 8.1796rem + 7.7670vw, 17.5rem);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px) brightness(1.05);
    -webkit-backdrop-filter: blur(6px) brightness(1.05);
    border: none;
    box-shadow:
        inset 0 0 60px rgba(255, 255, 255, 0.03),
        0 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lp-white);
    font-size: 34px;
    font-weight: 500;
    padding: 12px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.lp-model__bubble:hover {
    transform: scale(1.06);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.08),
        0 12px 40px rgba(0, 0, 0, 0.3);
}

.lp-model__bubble--accent {
    width: 160px;
    height: 160px;
    background: rgba(81, 181, 103, 0.06);
    font-size: 20px;
}

.lp-model__caption {
    color: var(--lp-white);
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    bottom: 20px;
    right: 0;
}

.lp-model__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-left: 160px;
}

.lp-model__cards .lp-model__card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.lp-model__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
    color: var(--lp-white);
    box-shadow:
        inset 0 0 60px rgba(255, 255, 255, 0.05),
        0 0 30px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lp-model__card-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: clamp(1.25rem, 0.7949rem + 1.9417vw, 3.125rem);
}

.lp-model__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
}

.lp-model__card-list li {
    font-size: clamp(1rem, 0.9090rem + 0.3883vw, 1.375rem);
    font-weight: 500;
    line-height: 1.2;
}

/* =============================================
   IMPACT
   ============================================= */

.lp-impact {
    position: relative;
    padding-bottom: 120px;
    background-color: var(--lp-white);
}

.lp-impact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 69%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.lp-impact__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.lp-impact .lp-container {
    position: relative;
    z-index: 2;
}

.lp-impact__header {
    text-align: center;
    padding-top: clamp(3.125rem, 2.5182rem + 2.5890vw, 5.625rem);
    margin-bottom: clamp(1.75rem, 1.1129rem + 2.7184vw, 4.375rem);
}

.lp-impact__title {
    font-size: clamp(1.75rem, 1.3252rem + 1.8123vw, 3.5rem);
    font-weight: 600;
    line-height: 110%;
    color: var(--lp-white);

    margin-bottom: clamp(1.25rem, 0.9466rem + 1.2945vw, 2.5rem);
}

.lp-impact__subtitle {
    font-size: clamp(1.125rem, 1.0340rem + 0.3883vw, 1.5rem);
    color: var(--lp-white);
    line-height: 110%;
    font-weight: 600;
    margin-bottom: 0;
}
.lp-impact__header .lp-impact__subtitle:nth-child(2){
    margin-bottom: clamp(1.125rem, 0.9430rem + 0.7767vw, 1.875rem);
}

.lp-impact__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.lp-impact__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-impact__item {
    transform: none;
}

.lp-impact__label {
    font-size: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem);
    font-weight: 600;
    color: var(--lp-white);
    line-height: 120%;
}

.lp-impact__card {
    border-radius: clamp(0.75rem, 0.5680rem + 0.7767vw, 1.5rem);
    overflow: hidden;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
}

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


/* =============================================
   PARTNERS
   ============================================= */

.lp-partners {
    padding: clamp(3.125rem, 2.5182rem + 2.5890vw, 5.625rem) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 8px;
}

.lp-partners__header {
    text-align: center;
    margin-bottom: clamp(1.125rem, 0.9430rem + 0.7767vw, 1.875rem);
}

.lp-partners__title {
      font-size: clamp(1.75rem, 1.3252rem + 1.8123vw, 3.5rem);
  font-weight: 600;
  line-height: 110%;
  color: var(--lp-white);
  margin-bottom: clamp(1.25rem, 0.9466rem + 1.2945vw, 2.5rem);
}

.lp-partners__subtitle {
    font-size: clamp(1.125rem, 1.0340rem + 0.3883vw, 1.5rem);
  color: var(--lp-white);
  line-height: 110%;
  font-weight: 600;
  margin-bottom: 0;
}
.lp-partners__header .lp-partners__subtitle:nth-child(2){
    margin-bottom: clamp(1.125rem, 0.9430rem + 0.7767vw, 1.875rem);
}

.lp-partners__row {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: clamp(0.75rem, 0.6286rem + 0.5178vw, 1.25rem);
    padding: clamp(1.25rem, 0.7949rem + 1.9417vw, 3.125rem) clamp(1.25rem, 0.9466rem + 1.2945vw, 2.5rem) ;
    margin-bottom: clamp(1.25rem, 0.9466rem + 1.2945vw, 2.5rem);
}

.lp-partners__row:last-child {
    margin-bottom: 0;
}

.lp-partners__label {
    display: block;
    font-size: clamp(1.125rem, 0.8823rem + 1.0356vw, 2.125rem);
    font-weight: 600;
    line-height: 120%;
    color: var(--lp-white);
    margin-bottom: clamp(1.5rem, 1.2573rem + 1.0356vw, 2.5rem);
}

.lp-partners__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px clamp(1.063rem, -0.0443rem + 4.7244vw, 5.625rem);
    align-items: center;
}

.lp-partners__logos img {
    width: clamp(3.125rem, 2.0631rem + 4.5307vw, 7.5rem);
    height: clamp(3.125rem, 2.0631rem + 4.5307vw, 7.5rem);
    object-fit: contain;
    display: block;
}

/* =============================================
   SCALE
   ============================================= */

.lp-scale {
    position: relative;
    padding: clamp(3.125rem, 2.9733rem + 0.6472vw, 3.75rem) 0 clamp(1.875rem, 1.4199rem + 1.9417vw, 3.75rem);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lp-scale .lp-container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 40px;
}

.lp-scale__header {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.lp-scale__quote {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: flex-start;
}

.lp-scale__map {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
}

.lp-scale__title {
    font-size: clamp(1.75rem, 1.3252rem + 1.8123vw, 3.5rem);
    font-weight: 600;
    line-height: 110%;
    color: var(--lp-white);
    margin-bottom: clamp(1.25rem, 1.0983rem + 0.6472vw, 1.875rem);
}

.lp-scale__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-scale__list li {
    font-size: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
    font-weight: 500;
    color: var(--lp-white);
    line-height: normal;
}

.lp-scale__quote {
    font-size: clamp(1rem, 0.7876rem + 0.9061vw, 1.875rem);
    color: var(--lp-white);
    line-height: 130%;
    text-align: right;
    margin-bottom: 0;
}

.lp-scale__map {
    display: flex;
    justify-content: center;
}

.lp-scale__map svg {
    width: 100%;
    height: auto;
    display: block;
}

.lp-map__region {
    transition: fill 0.3s ease;
    cursor: pointer;
}

.lp-map__region:hover {
    fill: #51C66B;
    stroke: none;
}

/* =============================================
   ABOUT
   ============================================= */

.lp-about {
    padding: clamp(3.75rem, 3.2rem + 2.3vw, 6rem) 0;
    background-color: var(--lp-white);
}

.lp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.lp-about__title {
    font-size: clamp(1.75rem, 1.2949rem + 1.9417vw, 3.625rem);
    font-weight: 600;
    line-height: 110%;
    color: var(--lp-black);
    margin-bottom: 16px;
}

.lp-about__text {
    font-size: clamp(1rem, 0.8483rem + 0.6472vw, 1.625rem);
    color: var(--lp-text);
    line-height: 140%;
    margin-bottom: clamp(1.25rem, 0.7949rem + 1.9417vw, 3.125rem);
    max-width: 640px;
}

.lp-about__badge {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #2B4230;
    color: var(--lp-white);
    padding: 16px 24px;
    border-radius: clamp(0.75rem, 0.6286rem + 0.5178vw, 1.25rem);
    font-size: clamp(0.813rem, 0.6463rem + 0.7115vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.lp-about__img {
    display: flex;
    justify-content: flex-end;
}

.lp-about__img img {
    width: 100%;
    border-radius: clamp(1.25rem, 0.9466rem + 1.2945vw, 2.5rem);
    display: block;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
}

/* =============================================
   CTA
   ============================================= */

.lp-cta {
    position: relative;
    padding: clamp(4rem, 3rem + 4vw, 8rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.lp-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.lp-cta .lp-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.lp-cta__box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: clamp(2.5rem, 2rem + 2vw, 4rem) clamp(2rem, 1.5rem + 3vw, 5rem);
    text-align: center;
    max-width: 943px;
    width: 100%;
}

.lp-cta__box .lp-hero__badge {
    margin-bottom: 24px;
}

.lp-cta__title {
    font-size: clamp(1.5rem, 1.1966rem + 1.2945vw, 2.75rem);
    font-weight: 700;
    line-height: 130%;
    color: var(--lp-white);

    margin-bottom: clamp(1.875rem, 1.7233rem + 0.6472vw, 2.5rem);
}

.lp-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lp-cta__btn--primary {
    background-color: #51B567;
    color: var(--lp-white);
    border: 1.5px solid #51B567;
}

.lp-cta__btn--primary:hover {
    background-color: transparent;
    color: var(--lp-white);
    border-color: var(--lp-white);
}

.lp-cta__btn--outline {
    background: transparent;
    color: var(--lp-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.lp-cta__btn--outline:hover {
    background-color: #51B567;
    color: var(--lp-white);
    border-color: #51B567;
}

.lp-cta__btn--dark {
    background-color: #2B4230;
    color: var(--lp-white);
    border: 1.5px solid #2B4230;
}

.lp-cta__btn--dark:hover {
    background-color: transparent;
    color: var(--lp-white);
    border-color: var(--lp-white);
}

/* =============================================
   FOOTER
   ============================================= */

.lp-footer {
    background-color: #313B33;
    color: var(--lp-white);
}

.lp-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(1.875rem, 0.5097rem + 5.8252vw, 7.5rem) 0 clamp(1.25rem, 0.1881rem + 4.5307vw, 5.625rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-footer__logo {
    display: flex;
    flex-shrink: 0;
}

.lp-footer__logo img {
    height: clamp(5rem, 4.3932rem + 2.5890vw, 7.5rem);
    width: clamp(5rem, 4.3932rem + 2.5890vw, 7.5rem);
    object-fit: contain;
    display: block;
}

.lp-footer__info {
    display: flex;
    align-items: flex-start;
    gap: 44px;
    flex: 1;
    justify-content: center;
}

.lp-footer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-footer__heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    color: var(--lp-white);
    text-transform: uppercase;
}

.lp-footer__text {
    font-size: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
    font-weight: 500;
    color: var(--lp-white);
    text-decoration: none;
    line-height: 120%;
}

a.lp-footer__text:hover {
    opacity: 1;
}

.lp-footer__socials {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.lp-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.375rem, 2.2233rem + 0.6472vw, 3rem);
    height: clamp(2.375rem, 2.2233rem + 0.6472vw, 3rem);
    border-radius: 50%;
    border: 1px solid var(--lp-white);
    background: transparent;
    transition: background-color 0.3s ease;
}

.lp-footer__social:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.lp-footer__social img {
    width: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
    height: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
}

.lp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.lp-footer__copy {
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-white);
    margin-bottom: 0;
}

.lp-footer__memo {
    font-size: 18px;
    font-weight: 700;
    color: #51C66B;
    line-height: 120%;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.lp-footer__memo:hover {
    opacity: 0.8;
}

.lp-footer__policy {
    font-size: 16px;
    color: var(--lp-white);
    font-weight: 500;
    text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #51C66B!important;
}

.lp-footer__policy:hover {
    opacity: 1;
}

/* =============================================
   MODAL
   ============================================= */

.lp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-modal.active {
    opacity: 1;
    visibility: visible;
}

.lp-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.lp-modal__content {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 48px;
    z-index: 1;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    background: url('/wp-content/uploads/2026/05/bg_form.webp') center/cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
}

.lp-modal.active .lp-modal__content {
    transform: translateY(0);
}

.lp-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

.lp-modal__close:hover {
    opacity: 0.7;
}

.lp-modal__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-white);
    margin-bottom: 32px;
}


.lp-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-modal__field .wpcf7-form-control-wrap {
    display: block;
}

.lp-modal__form input[type="text"],
.lp-modal__form input[type="email"],
.lp-modal__form input[type="tel"],
.lp-modal__form select,
.lp-modal__form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff !important;
    font-size: 16px;
    font-family: inherit;
    line-height: 170%;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}

.lp-modal__form textarea {
    resize: none;
    min-height: auto;
    height: 62.2px;
    overflow: hidden;
}

.lp-modal__form input::placeholder,
.lp-modal__form select,
.lp-modal__form textarea::placeholder {
    color: #fff;
}

.lp-modal__form select option {
    background: #1a1a1a;
    color: #fff;
}

.lp-modal__form input:focus,
.lp-modal__form select:focus,
.lp-modal__form textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(153, 153, 153, 0.8) !important;
}

.lp-modal__form input:-webkit-autofill,
.lp-modal__form input:-webkit-autofill:hover,
.lp-modal__form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(30, 30, 30, 0.95) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.lp-modal__form .wpcf7-not-valid {
    border-color: #e74c3c !important;
}

.lp-modal__form .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.lp-modal__field--full {
    grid-column: 1 / -1;
}

.lp-modal__consent {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.lp-modal__consent .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
}

.lp-modal__consent .wpcf7-acceptance {
    display: flex;
    align-items: center;
}

.lp-modal__consent .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
}

.lp-modal__consent label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.lp-modal__consent input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    accent-color: #51B567;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.lp-modal__consent input[type="checkbox"]:checked {
    background: #51B567;
    border-color: #51B567;
}

.lp-modal__consent input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.lp-modal__consent a {
    color: #51B567 !important;
    text-decoration: underline;
}

.lp-modal__submit {
    grid-column: 1 / 2;
}

.lp-modal__form input[type="submit"] {
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.3s ease;
    pointer-events: none;
}

.wpcf7-spinner {
    display: none;
}

.lp-modal__form.form-valid input[type="submit"] {
    background: #51B567;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
}

.lp-modal__form.form-valid input[type="submit"]:hover {
    background: #45a05a;
}

.lp-modal__form .wpcf7-response-output {
    border-color: #51B567 !important;
    color: var(--lp-white);
    margin: 16px 0 0;
    padding: 12px 20px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .lp-modal__content {
        padding: 32px 20px;
        max-width: calc(100% - 32px);
    }

    .lp-modal__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .lp-modal__grid {
        grid-template-columns: 1fr;
    }

    .lp-modal__submit {
        grid-column: 1;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .lp-partners {
        padding-bottom: 30px;
    }
    .lp-platform__title,
    .lp-platform__subtitle {
  max-width: 80%;
  margin-right: auto;
}
    .lp-hero__buttons {
        gap: 20px;
    }
    .lp-hero__btn {
  width: 100%;
  justify-content: center;
}
    a.lp-header__logo {
  height: 46px;
  width: 46px;
}
.lp-header {
    padding: 7px 0;
}
    .lp-header__nav,
    .lp-header__lang {
        display: none;
    }

    .lp-header__nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-color: var(--lp-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 16px 20px;
        z-index: 1001;
    }

    .lp-header__nav.active .lp-header__menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: flex-start;
    }

    .lp-header__nav.active .lp-header__menu li {
        width: 100%;
        border-bottom: 1px solid #B7B7B7;
        padding: 12px 0;
    }

    .lp-header__nav.active .lp-header__menu li a {
        color: var(--lp-black);
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    }

    .lp-header__nav.active .lp-header__menu li a::after {
        display: none;
    }

    .lp-mob-header {
        display: none;
    }

    .lp-header__nav.active .lp-mob-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 7px 20px;
    }

    .lp-mob-header__logo img {
        height: 46px;
        width: 46px;
    }

    .lp-mob-header__close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
    right: 16px;
    top: 17px;
    }

    .lp-mob-header__close img {
        width: 24px;
        height: 24px;
    }

    .lp-mob-lang {
        display: none;
    }

    .lp-header__nav.active .lp-mob-lang {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--lp-black);
        font-size: 20px;
        font-weight: 700;
        margin-top: 20px;
        text-decoration: none;
    }

    .lp-mob-lang img {
        width: 20px;
        height: 20px;
    }

    .lp-header__burger {
        display: flex;
    }

    .lp-platform__header {
        flex-direction: column;
        gap: 12px;
    }

    .lp-platform__subtitle {
        max-width: 100%;
    }

    .lp-platform__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-platform__card {
        width: 75%;
    }

    .lp-platform__card:nth-child(even) {
        margin-left: auto;
        transform: none;
    }

    .lp-features__grid {
        grid-template-columns: 1fr;
    }

    .lp-features__card {
        aspect-ratio: 16 / 11.4;
    }

    .lp-model__nav {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .lp-model__nav-list {
        display: none;
    }

    .lp-model__arch {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 0;
        padding: 0 40px;
    }

    .lp-model__arch-items {
        position: static;
        display: contents;
    }

    .lp-model__arch-items .lp-model__arch-item {
        position: static !important;
        transform: none !important;
        margin-bottom: 10px;
    }

    .lp-model__arch-items .lp-model__arch-item:nth-child(1) {
        order: 1;
        align-self: flex-start;
    }

    .lp-model__arch-items .lp-model__arch-item:nth-child(2) {
        order: 2;
        align-self: flex-end;
    }

    .lp-model__arch-hub {
        position: static;
        transform: none;
        width: 250px;
        height: 250px;
        margin: 30px 0;
        order: 3;
    }

    .lp-model__arch-items .lp-model__arch-item:nth-child(3) {
        order: 4;
        align-self: flex-start;
    }

    .lp-model__arch-items .lp-model__arch-item:nth-child(4) {
        order: 5;
        align-self: flex-end;
    }

    .lp-model__arch-items .lp-model__arch-item:nth-child(5) {
        order: 6;
        align-self: flex-start;
    }

    .lp-model__bubbles {
        padding-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .lp-model__bubble {
        width: 160px;
        height: 160px;
        font-size: 20px;
    }
    .lp-model__nav-indicator {
        height: 48px;
        width: 4px;
    }

    .lp-model__cards {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 16px;
        width: 90%;
        margin: 0 auto;
    }

    .lp-model__cards .lp-model__card {
        width: 100%;
        padding: 20px;
    }
    .lp-model__card-title {
        font-size: 26px;
        font-weight: 600;
        line-height: 120%;
    }

    .lp-model__cards .lp-model__card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .lp-scale .lp-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .lp-scale__header {
        order: 1;
    }

    .lp-scale__map {
        order: 2;
    }

    .lp-scale__quote {
        order: 3;
        text-align: left;
        max-width: 100%;
    }

    .lp-about__grid {
        grid-template-columns: 1fr;
    }

    .lp-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .lp-footer__top {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        gap: 24px;
        padding: 20px 0;
    }

    .lp-footer__info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .lp-footer__col {
        align-items: flex-start;
    width: 100%;
    }

    .lp-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: flex-start;
    }

    .lp-impact__bg {
        height: 100%;
    }

    .lp-impact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lp-impact__item:nth-child(odd) {
        grid-column: 1;
    }

    .lp-impact__item:nth-child(even) {
        grid-column: 2;
        transform: translateY(50%);
    }

    .lp-impact__item:last-child {
        grid-column: 1;
        max-width: 100%;
        margin: 0;
        transform: none;
    }

    .lp-impact {
        padding-bottom: 40px;
        margin-bottom: 8px;
    }

    .lp-404__wrap {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
        padding: 40px 0;
    }

    .lp-404__content {
        align-items: center;
    }

    .lp-404__btn {
        width: 100%;
        justify-content: center;
    }
}

.lp-404 {
    padding: 80px 0;
    font-family: 'Manrope', sans-serif;
}

.lp-404__wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lp-404__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-404__title {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: #51B567;
    margin: 0 0 16px;
}

.lp-404__text {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    color: #6B7280;
    margin: 0 0 32px;
}

.lp-404 .lp-cta__btn {
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(81, 181, 103, 0.35);
}

.lp-404 .lp-cta__btn:hover,
.lp-404 .lp-cta__btn:focus,
.lp-404 .lp-cta__btn:active {
    background-color: #51B567;
    color: var(--lp-white) !important;
    border-color: #51B567;
    text-decoration: none;
}

.lp-404__image {
    flex: 1;
}

.lp-404__image img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
}

.lp-scale__map {
    position: relative;
}

.lp-map-tooltip {
    position: absolute;
    background: rgba(22, 44, 27, 0.95);
    border: 1px solid #4a7c59;
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    max-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lp-map-tooltip.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lp-map-tooltip__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #BCD5C2;
    border-bottom: 1px solid rgba(188, 213, 194, 0.3);
    padding-bottom: 8px;
}

.lp-map-tooltip__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-map-tooltip__list li {
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.lp-map-tooltip__list li:last-child {
    border-bottom: none;
}

.lp-map__region[data-region] {
    cursor: pointer;
    transition: fill 0.3s ease, filter 0.3s ease;
}

.lp-map__region[data-region]:hover {
    filter: brightness(1.4);
}

@media (max-width: 768px) {
    .lp-map-tooltip.active {
        pointer-events: auto;
    }
    .lp-map-tooltip {
        max-width: 280px;
        max-height: 300px;
        font-size: 12px;
    }
    .lp-map-tooltip__title {
        font-size: 14px;
    }
    .lp-map-tooltip__list li {
        font-size: 11px;
    }
}

/* =============================================
   PROJECTS
   ============================================= */

.lp-projects {
    padding: clamp(3.75rem, 3.2rem + 2.3vw, 6rem) 0;
    background-color: var(--lp-gray);
}

.lp-projects__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 1.5rem + 2vw, 4rem);
}

.lp-projects__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 1rem + 2vw, 3.75rem);
    align-items: center;
}

.lp-projects__card--reverse {
    direction: rtl;
}

.lp-projects__card--reverse > * {
    direction: ltr;
}

.lp-projects__img {
    border-radius: clamp(0.75rem, 0.57rem + 0.78vw, 1.5rem);
    overflow: hidden;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.25);
}

.lp-projects__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 11;
    transition: transform 0.4s ease;
}

.lp-projects__card:hover .lp-projects__img img {
    transform: scale(1.03);
}

.lp-projects__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-projects__title {
    font-size: clamp(1.75rem, 1.33rem + 1.81vw, 3.5rem);
    font-weight: 600;
    line-height: 110%;
    color: var(--lp-black);
}

.lp-projects__text {
    font-size: clamp(1rem, 0.85rem + 0.65vw, 1.625rem);
    color: var(--lp-text);
    line-height: 150%;
    margin-bottom: 8px;
}

.lp-projects__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #51B567;
    color: var(--lp-white);
    border: 1.5px solid #51B567;
    align-self: flex-start;
}

.lp-projects__btn:hover {
    background-color: transparent;
    color: var(--lp-black);
    border-color: var(--lp-black);
}

.lp-projects__btn--dark {
    background-color: #2B4230;
    border-color: #2B4230;
}

.lp-projects__btn--dark:hover {
    background-color: transparent;
    color: var(--lp-black);
    border-color: var(--lp-black);
}

.lp-projects__btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.lp-projects__btn:hover img {
    filter: brightness(0);
}

/* =============================================
   NEWS
   ============================================= */

.lp-news {
    padding: clamp(3.75rem, 3.2rem + 2.3vw, 6rem) 0;
    background-color: var(--lp-white);
}

.lp-news__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.lp-news__title {
    font-size: clamp(1.75rem, 1.33rem + 1.81vw, 3.5rem);
    font-weight: 600;
    line-height: 110%;
    color: var(--lp-black);
}

.lp-news__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #51B567;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.lp-news__all:hover {
    opacity: 0.7;
}

.lp-news__all img {
    width: 18px;
    height: 18px;
}

.lp-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 24px;
}

.lp-news__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--lp-text);
    border-radius: clamp(0.75rem, 0.57rem + 0.78vw, 1.5rem);
    overflow: hidden;
    background: var(--lp-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-news__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.lp-news__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.lp-news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lp-news__card:hover .lp-news__thumb img {
    transform: scale(1.05);
}

.lp-news__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c3f 100%);
}

.lp-news__meta {
    padding: 16px 20px 0;
}

.lp-news__meta time {
    font-size: 14px;
    font-weight: 500;
    color: #667085;
}

.lp-news__card-title {
    font-size: clamp(1.125rem, 1rem + 0.39vw, 1.375rem);
    font-weight: 600;
    line-height: 130%;
    color: var(--lp-black);
    padding: 8px 20px 0;
    margin: 0;
}

.lp-news__excerpt {
    font-size: 15px;
    color: #667085;
    line-height: 150%;
    padding: 8px 20px 20px;
    margin: 0;
}

/* =============================================
   RESPONSIVE - PROJECTS & NEWS
   ============================================= */

@media (max-width: 768px) {
    .lp-projects__card {
        grid-template-columns: 1fr;
    }

    .lp-projects__card--reverse {
        direction: ltr;
    }

    .lp-projects__btn {
        align-self: stretch;
        justify-content: center;
    }

    .lp-news__grid {
        grid-template-columns: 1fr;
    }

    .lp-news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =============================================
   SINGLE PROJECT / ARCHIVE
   ============================================= */

.lp-single-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.lp-single-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-single-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.lp-single-hero .lp-container {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(2rem, 1.5rem + 2vw, 4rem);
}

.lp-single-hero__title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    line-height: 120%;
    color: var(--lp-white);
}

.lp-single-content {
    padding: clamp(2.5rem, 2rem + 2vw, 5rem) 0;
}

.lp-single-content__body {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
    line-height: 170%;
    color: var(--lp-text);
}

.lp-single-content__body h2,
.lp-single-content__body h3 {
    color: var(--lp-black);
    margin: 1.5em 0 0.5em;
}

.lp-single-content__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5em 0;
}

.lp-single-content__body p {
    margin-bottom: 1em;
}

.lp-single-content__back {
    max-width: 800px;
    margin: 2rem auto 0;
}

.lp-archive-hero {
    background-color: #313B33;
    padding: clamp(6rem, 5rem + 3vw, 9rem) 0 clamp(2rem, 1.5rem + 2vw, 3rem);
}

.lp-archive-hero__title {
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--lp-white);
}

.lp-archive-grid {
    padding: clamp(2.5rem, 2rem + 2vw, 5rem) 0;
}

.lp-our-projects {
    background-color: var(--lp-gray);
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* =============================================
   SINGLE POST META & NAV
   ============================================= */

.lp-single-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lp-single-hero__meta time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
}

.lp-single-hero__cat {
    background: rgba(255, 255, 255, 0.15);
    color: var(--lp-white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.lp-single-hero__bg-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3a17 0%, #2d5a27 50%, #4a7c3f 100%);
}

.lp-single-content__nav {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
}

.lp-single-nav__link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    max-width: 45%;
}

.lp-single-nav__link:hover {
    opacity: 0.7;
}

.lp-single-nav__link--next {
    text-align: right;
    margin-left: auto;
}

.lp-single-nav__label {
    font-size: 13px;
    font-weight: 600;
    color: #51B567;
    text-transform: uppercase;
}

.lp-single-nav__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-black);
    line-height: 140%;
}

@media (max-width: 768px) {
    .lp-single-content__nav {
        flex-direction: column;
    }
    .lp-single-nav__link {
        max-width: 100%;
    }
    .lp-single-nav__link--next {
        text-align: left;
    }
}

.lp-single-content__back {
    text-align: center;
}

.lp-single-content__back .lp-projects__btn {
    align-self: center;
}

/* =============================================
   TABS
   ============================================= */

.lp-tabs {
    margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.lp-tabs__nav {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--lp-white);
    border: 1.5px solid #e0e0e0;
    border-radius: 100px;
    padding: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lp-tabs__nav::-webkit-scrollbar {
    display: none;
}

.lp-tabs__btn {
    flex-shrink: 0;
    padding: 12px 28px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}

.lp-tabs__btn:hover {
    color: #51B567;
}

.lp-tabs__btn.active {
    background: #51B567;
    color: var(--lp-white);
}

.lp-news__tag {
    background: rgba(81, 181, 103, 0.12);
    color: #51B567;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.lp-news__card.hidden {
    display: none;
}

@media (max-width: 768px) {
    .lp-tabs__btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* =============================================
   DIRECTIONS
   ============================================= */

.lp-directions {
    padding: clamp(3.75rem, 3.2rem + 2.3vw, 6rem) 0;
    background-color: var(--lp-white);
}

.lp-directions__title {
    font-size: clamp(1.75rem, 1.33rem + 1.81vw, 3.5rem);
    font-weight: 600;
    line-height: 110%;
    color: var(--lp-black);
    margin-bottom: 12px;
}

.lp-directions__subtitle {
    font-size: clamp(1rem, 0.85rem + 0.65vw, 1.5rem);
    color: #667085;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.lp-directions__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.lp-directions__card {
    width: calc(33.333% - 14px);
    border-radius: clamp(0.75rem, 0.57rem + 0.78vw, 1.5rem);
    overflow: hidden;
    background: var(--lp-gray);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lp-directions__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.lp-directions__card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.lp-directions__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.lp-directions__card-num {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    font-weight: 700;
    color: var(--lp-white);
    line-height: 1;
    opacity: 0.6;
}

.lp-directions__card-body {
    padding: 20px 20px 28px;
}

.lp-directions__card-title {
    font-size: clamp(1.125rem, 1rem + 0.39vw, 1.5rem);
    font-weight: 700;
    line-height: 130%;
    color: var(--lp-black);
    margin-bottom: 8px;
}

.lp-directions__card-text {
    font-size: 15px;
    color: #667085;
    line-height: 150%;
    margin: 0;
}

@media (max-width: 768px) {
    .lp-directions__card {
        width: 100%;
    }
}
