@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

:root {
    --green: #198d20;
    --lime: #7dbc30;
    --ink: #333333;
    --muted: #666666;
    --line: #e4e4e4;
    --soft: #f2f2f2;
    --white: #ffffff;
    --max: 1720px;
    --gutter: clamp(20px, 5.3vw, 102px);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: auto;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: var(--white);
}

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

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

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
.site-footer h3 {
    font-family: "Anton", Impact, sans-serif;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

h1 {
    position: relative;
    display: inline-block;
    width: min(850px, 100%);
    max-width: 850px;
    color: var(--white);
    font-size: clamp(36px, 2.4vw, 46px);
    text-transform: none;
    overflow-wrap: break-word;
    transition: color 260ms ease, text-shadow 260ms ease, transform 260ms ease;
}

.hero h1 {
    background-image: linear-gradient(100deg, #ffffff 0%, #ffffff 35%, #b9ff75 50%, #ffffff 65%, #ffffff 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero h1::after {
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(125, 188, 48, 0.65);
    content: "";
    transition: width 360ms ease;
}

.hero h1:hover {
    color: transparent;
    background-position: 0 0;
    text-shadow: 0 10px 34px rgba(125, 188, 48, 0.28);
    transform: translateY(-3px);
}

.hero h1:hover::after {
    width: min(210px, 40%);
}

h2 {
    color: var(--ink);
    font-size: clamp(32px, 2.2vw, 42px);
    text-transform: capitalize;
    overflow-wrap: break-word;
}

h3 {
    font-size: 20px;
    line-height: 1.35;
}

.container {
    width: min(var(--max), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    color: var(--white);
}

.header-inner {
    display: grid;
    grid-template-columns: 126px 1fr 28px;
    align-items: center;
    min-height: 101px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    gap: 28px;
}

.brand img {
    width: 126px;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 2.05vw, 40px);
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a {
    position: relative;
    padding-block: 40px 36px;
    transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #b9ff75;
    text-shadow: 0 0 18px rgba(125, 188, 48, 0.34);
    transform: translateY(-1px);
}

.main-nav a.active::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    margin: auto;
    border-radius: 2px;
    background: var(--lime);
    content: "";
}

.search-link {
    position: relative;
    width: 26px;
    height: 26px;
    transition: color 180ms ease, transform 180ms ease;
}

.search-link:hover,
.search-link:focus-visible {
    color: #b9ff75;
    transform: scale(1.12) rotate(-4deg);
}

.search-link::before,
.search-link::after {
    position: absolute;
    content: "";
}

.search-link::before {
    inset: 3px 7px 7px 3px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-link::after {
    right: 3px;
    bottom: 3px;
    width: 9px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}

.nav-check,
.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    color: var(--white);
}

.hero-media {
    position: absolute;
    inset: 0;
    background: #202020;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.02));
    content: "";
}

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

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 900px;
    flex-direction: column;
    justify-content: center;
    padding-top: 86px;
}

.eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.hero-content > p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 28px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::before {
    position: absolute;
    inset: 0 auto 0 -55%;
    width: 42%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
    content: "";
    transform: skewX(-22deg);
    transition: left 420ms ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.btn:hover::before,
.btn:focus-visible::before {
    left: 116%;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary {
    color: var(--white);
    background: var(--lime);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-square:hover,
.btn-square:focus-visible,
.btn-wide:hover,
.btn-wide:focus-visible {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 18px 38px rgba(25, 141, 32, 0.28);
}

.btn-light {
    color: var(--ink);
    background: var(--white);
}

.btn-light:hover {
    color: var(--white);
    background: var(--lime);
}

.green-text {
    color: var(--green);
}

.green-text:hover {
    color: var(--white);
}

.btn-square {
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
}

.btn-wide {
    min-width: 363px;
    color: var(--white);
    background: var(--green);
}

.slide-indicator {
    position: absolute;
    left: 0;
    bottom: 68px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 20px;
}

.slide-indicator span {
    position: relative;
    width: 49px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.45);
}

.slide-indicator span::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 3px;
    border-radius: 3px;
    background: var(--white);
    content: "";
}

.section {
    padding-block: clamp(78px, 6.25vw, 120px);
}

.products-section {
    padding-top: 92px;
}

.products-section h2,
.cases-section h2,
.news-section h2 {
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.product-card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    color: var(--white);
    background: #dddddd;
}

.product-card img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 300ms ease;
}

.product-card::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
    content: "";
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-copy {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    min-height: 92px;
    padding: 0 67px 38px;
    border: 2px solid transparent;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    background: transparent;
    backdrop-filter: blur(0);
    transition: min-height 280ms ease, padding 280ms ease, border-color 280ms ease, background 280ms ease, backdrop-filter 280ms ease;
}

.product-copy h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 0;
    border-bottom: 1px solid transparent;
    font-size: 24px;
    transition: padding 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.product-copy h3::after {
    display: inline-grid;
    width: 30px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    content: "->";
    transition: color 280ms ease, background 280ms ease, transform 280ms ease;
}

.product-copy p {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: max-height 280ms ease, margin 280ms ease, opacity 240ms ease, transform 280ms ease;
}

.product-card:hover .product-copy,
.product-card:focus-within .product-copy {
    min-height: 174px;
    padding: 34px 67px 34px;
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.product-card:hover .product-copy h3,
.product-card:focus-within .product-copy h3 {
    padding-bottom: 21px;
    border-bottom-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

.product-card:hover .product-copy h3::after,
.product-card:focus-within .product-copy h3::after {
    color: var(--green);
    background: var(--white);
    transform: translateX(4px);
}

.product-card:hover .product-copy p,
.product-card:focus-within .product-copy p {
    max-height: 72px;
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
}

.round-more {
    display: grid;
    width: 152px;
    height: 46px;
    margin: 40px auto 0;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-size: 24px;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.round-more:hover,
.round-more:focus-visible {
    background: var(--lime);
    box-shadow: 0 16px 32px rgba(25, 141, 32, 0.24);
    transform: translateY(-3px);
}

.about-section {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    color: var(--white);
}

.about-bg,
.about-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-bg {
    object-fit: cover;
}

.about-overlay {
    background: linear-gradient(90deg, rgba(25, 141, 32, 0.9) 0%, rgba(25, 141, 32, 0.45) 52%, rgba(255, 255, 255, 0) 78%);
}

.about-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 900px;
    max-width: min(100%, var(--max));
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.section-kicker {
    position: relative;
    margin-bottom: 22px;
    padding-left: 26px;
    font-size: 20px;
    text-transform: capitalize;
}

.section-kicker::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 3px;
    background: var(--lime);
    content: "";
}

.about-content h2 {
    color: var(--white);
}

.about-content > p:not(.section-kicker) {
    max-width: 614px;
    margin-top: 30px;
    line-height: 1.75;
    text-transform: capitalize;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: clamp(28px, 3.2vw, 72px);
    margin-block: 56px 40px;
}

.stat-item {
    position: relative;
    min-width: 140px;
}

.stat-item:not(:last-child)::after {
    position: absolute;
    right: -34px;
    top: 12px;
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    content: "";
}

.stat-item strong {
    display: inline-block;
    margin-right: 8px;
    font-family: "Anton", Impact, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
}

.stat-item b {
    color: var(--white);
    font-size: 20px;
}

.stat-item span {
    display: block;
    max-width: 170px;
    margin-top: 18px;
    color: #e2e2e2;
}

.advantage-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.94fr) minmax(520px, 1.06fr);
    align-items: center;
    gap: clamp(54px, 5.2vw, 96px);
}

.advantage-copy p {
    max-width: 668px;
    margin-top: 28px;
    color: var(--muted);
}

.value-steps {
    position: relative;
    display: grid;
    gap: 22px;
    max-width: 430px;
    margin: 54px 0 28px;
    padding: 0;
    counter-reset: values;
    list-style: none;
}

.value-steps::before {
    position: absolute;
    left: 7px;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: #dddddd;
    content: "";
}

.value-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    color: #999999;
    cursor: pointer;
    font-size: 16px;
    transition: color 220ms ease, transform 220ms ease;
}

.value-steps li::before {
    position: absolute;
    left: 4px;
    top: 50%;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d6d6d6;
    content: "";
    transform: translateY(-50%);
}

.value-steps b {
    display: grid;
    width: 38px;
    height: 34px;
    margin-left: 26px;
    place-items: center;
    border-radius: 6px;
    color: #999999;
    background: #e7e7e7;
    font-size: 16px;
    line-height: 1;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.value-steps span {
    min-width: 0;
    transition: color 220ms ease, font-size 220ms ease;
}

.value-steps li:hover,
.value-steps li:focus-within {
    transform: translateX(4px);
}

.value-steps li:hover::before,
.value-steps li:focus-within::before {
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--lime);
}

.value-steps li:hover b,
.value-steps li:focus-within b {
    color: var(--white);
    background: var(--lime);
    transform: translateX(2px);
}

.value-steps li:hover span,
.value-steps li:focus-within span {
    color: var(--lime);
    font-size: 20px;
}

.advantage-quote {
    margin-top: 28px;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 0.7;
}

.advantage-copy .advantage-detail {
    max-width: 420px;
    margin-top: 18px;
    margin-bottom: 36px;
    color: var(--muted);
    line-height: 1.55;
    text-transform: capitalize;
}

.advantage-media {
    position: relative;
    min-height: 700px;
    isolation: isolate;
}

.main-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: min(720px, 64%);
    height: 690px;
    min-height: 0;
    object-fit: cover;
    transition: opacity 260ms ease, transform 420ms ease;
}

.floating-photo {
    position: absolute;
    left: 0;
    bottom: 112px;
    width: min(344px, 30%);
    height: 296px;
    min-height: 0;
    object-fit: cover;
    background: #f5f5f5;
    mix-blend-mode: multiply;
    transition: opacity 260ms ease, transform 420ms ease;
}

.advantage-media.is-switching .main-photo,
.advantage-media.is-switching .floating-photo {
    opacity: 0.2;
    transform: translateY(10px) scale(0.985);
}

.advantage-arrows {
    position: absolute;
    right: 0;
    bottom: 90px;
    display: flex;
    gap: 20px;
}

.advantage-arrows button {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    color: #a5a5a5;
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.advantage-arrows button:hover {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
    box-shadow: 0 12px 26px rgba(25, 141, 32, 0.22);
    transform: translateY(-2px);
}

.advantage-arrows button:last-child {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.62fr 1fr;
    gap: 46px;
    align-items: end;
    margin-bottom: 34px;
}

.section-heading p {
    max-width: 880px;
    color: var(--muted);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.industry-card {
    position: relative;
    overflow: hidden;
    background: var(--soft);
    color: var(--white);
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    aspect-ratio: 1.84 / 1;
    object-fit: cover;
    transition: filter 320ms ease, transform 420ms ease;
}

.industry-card::after {
    position: absolute;
    inset: 0;
    background: rgba(51, 51, 51, 0);
    content: "";
    transition: background 320ms ease;
}

.industry-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 22px 24px;
    transform: translateY(calc(100% - 54px));
    transition: transform 320ms ease;
}

.industry-card h3 {
    font-size: 16px;
    font-weight: 700;
    transition: color 260ms ease;
}

.industry-card p {
    display: -webkit-box;
    margin-top: 12px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.industry-card.is-active img,
.industry-card:hover img,
.industry-card:focus-within img {
    filter: grayscale(0.35) brightness(0.72);
    transform: scale(1.045);
}

.industry-card.is-active::after,
.industry-card:hover::after,
.industry-card:focus-within::after {
    background: rgba(51, 51, 51, 0.42);
}

.industry-card.is-active .industry-copy,
.industry-card:hover .industry-copy,
.industry-card:focus-within .industry-copy {
    transform: translateY(0);
}

.industry-card.is-active h3,
.industry-card:hover h3,
.industry-card:focus-within h3 {
    color: var(--white);
}

.global-section {
    position: relative;
    padding-block: 118px 112px;
    color: var(--white);
    background: #333333;
    overflow: hidden;
}

.global-layout {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    align-items: center;
    gap: clamp(72px, 7vw, 136px);
    min-height: 560px;
}

.global-copy h2 {
    color: var(--white);
    max-width: 400px;
}

.global-copy p {
    margin-block: 26px 34px;
    max-width: 360px;
    color: #dfdfdf;
    line-height: 1.62;
}

.map-panel {
    position: relative;
    min-height: 520px;
}

.world-map-svg {
    display: block;
    width: 100%;
    height: 520px;
    opacity: 0.96;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.16));
}

.pin {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid rgba(125, 188, 48, 0.24);
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 8px rgba(125, 188, 48, 0.1), 0 0 28px rgba(125, 188, 48, 0.85);
}

.pin::after {
    position: absolute;
    left: 18px;
    top: 50%;
    color: #dfdfdf;
    content: "Country";
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    transform: translateY(-50%);
}

.pin-1 { left: 18%; top: 39%; }
.pin-2 { left: 38%; top: 31%; }
.pin-3 { left: 49%; top: 49%; }
.pin-4 { left: 61%; top: 43%; }
.pin-5 { left: 78%; top: 56%; }

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 48px;
    transition: opacity 220ms ease, transform 260ms ease;
}

.case-grid.is-switching {
    opacity: 0.35;
    transform: translateY(10px);
}

.case-card {
    position: relative;
    padding-bottom: 52px;
}

.case-card img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
}

.case-card h3 {
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 0;
    display: grid;
    min-height: 80px;
    place-items: center;
    border-radius: 53px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.case-arrows {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 44px;
}

.case-arrows button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    color: #a5a5a5;
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.case-arrows button:hover {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
    box-shadow: 0 12px 26px rgba(25, 141, 32, 0.22);
    transform: translateY(-2px);
}

.case-arrows button:last-child {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

.news-section {
    background: var(--soft);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
    margin-top: 52px;
}

.news-card img {
    width: 100%;
    aspect-ratio: 1.8 / 1;
    border-radius: 20px;
    object-fit: cover;
}

.news-card time {
    display: block;
    margin-top: 24px;
    color: var(--lime);
}

.news-card h3 {
    min-height: 82px;
    margin-top: 12px;
    color: var(--ink);
    font-weight: 700;
}

.news-card p {
    display: -webkit-box;
    margin-top: 14px;
    overflow: hidden;
    color: var(--muted);
    line-height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 36px;
    margin-top: 26px;
    border-radius: 8px;
    color: #999999;
    background: #e6e6e6;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.read.active,
.read:hover,
.read:focus-visible {
    color: var(--white);
    background: var(--green);
}

.read:hover,
.read:focus-visible {
    box-shadow: 0 12px 24px rgba(25, 141, 32, 0.24);
    transform: translateY(-2px);
}

.news-section .btn-wide {
    display: flex;
    width: max-content;
    margin: 70px auto 0;
}

.contact-band {
    position: relative;
    padding: 136px 0 74px;
    background: linear-gradient(180deg, var(--soft) 0 42%, #252525 42% 100%);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.07fr);
    min-height: 643px;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    object-fit: cover;
}

.contact-form-wrap {
    padding: clamp(42px, 4.7vw, 84px) clamp(36px, 4.8vw, 90px);
    border-radius: 0 30px 30px 0;
    background: var(--white);
}

.contact-form-wrap p {
    margin-block: 28px 36px;
    color: var(--muted);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 15px;
}

.quote-form label {
    position: relative;
}

.quote-form span {
    position: absolute;
    left: 16px;
    top: 15px;
    color: var(--muted);
    pointer-events: none;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    min-height: 59px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 22px 16px 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.3);
}

.quote-form textarea {
    min-height: 118px;
    resize: vertical;
}

.quote-form .full {
    grid-column: 1 / -1;
}

.quote-form button {
    width: 271px;
    margin-top: 8px;
}

.site-footer {
    color: var(--white);
    background: #333333;
}

.subscribe-row {
    display: grid;
    grid-template-columns: 1fr 530px;
    align-items: center;
    gap: 40px;
    padding: 70px 0 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.subscribe-row h2,
.site-footer h3 {
    color: var(--white);
}

.subscribe-row form {
    display: grid;
    grid-template-columns: 1fr 78px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    overflow: hidden;
}

.subscribe-row input {
    min-width: 0;
    border: 0;
    padding: 0 22px;
    color: var(--white);
    background: transparent;
}

.subscribe-row button {
    border: 0;
    border-radius: 23px;
    color: var(--white);
    background: var(--lime);
    cursor: pointer;
    font-size: 24px;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.subscribe-row button:hover,
.subscribe-row button:focus-visible {
    background: var(--green);
    box-shadow: 0 12px 28px rgba(25, 141, 32, 0.28);
    transform: translateX(2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 1.2fr);
    gap: 70px;
    padding-block: 68px 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-grid h3 {
    margin-bottom: 28px;
    font-size: 30px;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid a {
    transition: color 180ms ease, transform 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: #b9ff75;
    transform: translateX(5px);
}

.footer-grid address {
    font-style: normal;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 26px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.preview-scroll-mode {
    height: 100vh;
    overflow: hidden !important;
}

.preview-page-shift {
    min-height: 100vh;
    transition: transform 420ms ease;
    will-change: transform;
}

.preview-scroll-tools {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 9999;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.preview-scroll-tools button {
    width: 58px;
    height: 38px;
    border: 0;
    border-radius: 19px;
    color: var(--white);
    background: rgba(25, 141, 32, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-size: 13px;
}

.preview-scroll-tools button:first-child {
    color: var(--green);
    background: rgba(255, 255, 255, 0.95);
}

.js .reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 720ms ease, transform 720ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js .reveal-item.reveal-left {
    transform: translateX(-36px);
}

.js .reveal-item.reveal-right {
    transform: translateX(36px);
}

.js .reveal-item.reveal-zoom {
    transform: translateY(24px) scale(0.96);
}

.js .reveal-item.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.js .hero h1.reveal-item.is-visible {
    animation: hero-title-enter 900ms ease both;
}

.js .hero h1.reveal-item.is-visible::after {
    animation: hero-title-line 900ms 220ms ease both;
}

.js .product-card img,
.js .industry-card img,
.js .case-card img,
.js .news-card img,
.js .main-photo,
.js .floating-photo,
.js .contact-photo img {
    transition: transform 900ms ease;
}

.js .advantage-media .main-photo,
.js .advantage-media .floating-photo {
    transition: opacity 260ms ease, transform 420ms ease;
}

.js .is-visible.product-card img,
.js .is-visible.industry-card img,
.js .is-visible.case-card img,
.js .is-visible.news-card img,
.js .is-visible .main-photo,
.js .is-visible .floating-photo,
.js .is-visible.contact-photo img {
    transform: scale(1.015);
}

@keyframes hero-title-enter {
    0% {
        filter: blur(8px);
        letter-spacing: 0.08em;
        opacity: 0;
        text-shadow: 0 0 0 rgba(125, 188, 48, 0);
        transform: translateX(-38px) translateY(16px);
    }

    62% {
        filter: blur(0);
        letter-spacing: 0.025em;
        opacity: 1;
        text-shadow: 0 0 30px rgba(125, 188, 48, 0.3);
    }

    100% {
        filter: blur(0);
        letter-spacing: 0.02em;
        opacity: 1;
        text-shadow: 0 0 0 rgba(125, 188, 48, 0);
        transform: translateX(0) translateY(0);
    }
}

@keyframes hero-title-line {
    0% {
        width: 0;
        opacity: 0;
    }

    55% {
        width: min(210px, 40%);
        opacity: 1;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal-item {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1280px) {
    .header-inner {
        grid-template-columns: 126px auto 28px;
    }

    .main-nav {
        gap: 18px;
        font-size: 14px;
    }

    .product-copy {
        padding-inline: 34px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 60px;
    }

    .stat-item::after {
        display: none;
    }

    .advantage-layout,
    .global-layout,
    .contact-card {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-media {
        min-height: 600px;
    }

    .main-photo {
        width: 68%;
        height: 590px;
    }

    .floating-photo {
        bottom: 96px;
    }

    .news-grid {
        gap: 28px;
    }
}

@media (max-width: 980px) {
    :root {
        --gutter: 24px;
    }

    .site-header {
        position: absolute;
    }

    .header-inner {
        grid-template-columns: 126px 1fr 42px;
        min-height: 82px;
    }

    .search-link {
        display: none;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.65);
        border-radius: 50%;
        cursor: pointer;
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        content: "";
    }

    .nav-toggle span {
        position: relative;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
        position: absolute;
        left: 0;
    }

    .nav-toggle span::before {
        top: -6px;
    }

    .nav-toggle span::after {
        top: 6px;
    }

    .main-nav {
        position: absolute;
        left: var(--gutter);
        right: var(--gutter);
        top: 88px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        border-radius: 8px;
        color: var(--ink);
        background: var(--white);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .main-nav a {
        padding: 13px 16px;
    }

    .main-nav a.active::after {
        display: none;
    }

    .nav-check:checked ~ .main-nav {
        display: flex;
    }

    .hero,
    .hero-content {
        min-height: 760px;
    }

    .product-grid,
    .industry-grid,
    .case-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-layout,
    .global-layout,
    .contact-card,
    .section-heading,
    .subscribe-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .advantage-media {
        min-height: 620px;
    }

    .main-photo {
        width: 72%;
        height: 560px;
    }

    .global-layout {
        gap: 40px;
    }

    .contact-photo img,
    .contact-form-wrap {
        border-radius: 30px;
    }

    .contact-form-wrap {
        margin-top: -34px;
    }
}

@media (max-width: 640px) {
    :root {
        --gutter: 18px;
    }

    body {
        font-size: 15px;
    }

    .hero,
    .hero-content {
        min-height: 680px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 124px;
        min-width: 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.18;
    }

    h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .hero-media img {
        object-position: 58% center;
    }

    .button-row {
        gap: 12px;
    }

    .btn {
        width: 100%;
        min-height: 48px;
    }

    .slide-indicator {
        bottom: 42px;
    }

    .product-grid,
    .industry-grid,
    .case-grid,
    .news-grid,
    .quote-form,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .product-card img {
        min-height: 340px;
    }

    .product-copy {
        min-height: 150px;
        padding: 24px;
    }

    .about-section,
    .about-content {
        min-height: auto;
    }

    .about-content {
        padding-block: 84px;
    }

    .about-overlay {
        background: linear-gradient(90deg, rgba(25, 141, 32, 0.92), rgba(25, 141, 32, 0.72));
    }

    .stat-item strong {
        font-size: 44px;
    }

    .advantage-media {
        min-height: 430px;
    }

    .main-photo {
        width: 100%;
        height: 360px;
        min-height: 0;
    }

    .floating-photo {
        width: 58%;
        height: 180px;
        min-height: 0;
        bottom: 0;
        border: 8px solid var(--white);
    }

    .value-steps {
        margin-top: 36px;
    }

    .value-steps li {
        grid-template-columns: 72px minmax(0, 1fr);
        font-size: 14px;
    }

    .value-steps li:hover span,
    .value-steps li:focus-within span {
        font-size: 17px;
    }

    .advantage-arrows {
        right: 12px;
        bottom: 18px;
    }

    .map-panel,
    .world-map-svg {
        min-height: 300px;
        height: 300px;
    }

    .case-card h3 {
        left: 8%;
        right: 8%;
        min-height: 68px;
        font-size: 17px;
    }

    .news-card h3 {
        min-height: auto;
    }

    .news-section .btn-wide,
    .btn-wide,
    .quote-form button {
        width: 100%;
        min-width: 0;
    }

    .contact-band {
        padding-top: 72px;
    }

    .contact-card {
        min-height: 0;
    }

    .contact-photo img {
        min-height: 300px;
    }

    .contact-form-wrap {
        padding: 34px 24px;
    }

    .subscribe-row form {
        grid-template-columns: 1fr 62px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
