:root {
    --navy: #073f85;
    --navy-deep: #042e68;
    --navy-dark: #032454;
    --green: #5fbd36;
    --green-dark: #3e9b27;
    --mint: #eaf7e4;
    --sky: #eaf7fb;
    --ink: #17314f;
    --muted: #64748b;
    --line: #dce9ec;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(3, 63, 133, 0.12);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

button, input, textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto; }

.section {
    position: relative;
    padding: 104px 0;
}

.section[id], footer[id] {
    scroll-margin-top: 88px;
}

.section-shell {
    position: relative;
    overflow: hidden;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1, h2 {
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(42px, 3vw, 68px);
}

.title-line {
    display: block;
    width: 74px;
    height: 5px;
    margin: 0 0 26px;
    border-radius: 99px;
    background: var(--green);
}

.title-line.centered {
    margin-inline: auto; }

.page-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader span {
    width: 54px;
    height: 54px;
    border: 4px solid #dceef3;
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(7, 63, 133, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 32px rgba(7, 63, 133, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    /* height: 88px; */
}

.brand {
    /* width: 188px; */
}

.brand img {
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: var(--navy-deep);
    font-size: 17px;
    font-weight: 800;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.language {
    display: flex;
    gap: 8px;
    margin-left: 34px;
    padding-left: 24px;
    border-left: 1px solid #d9e5ea;
}

.language button, .language a {
    /* padding: 4px; */
    font-size: 19px;
    line-height: 1;
    background: transparent;
    border: 0;
    /* filter: grayscale(0.65); */
    transition: transform 0.2s ease, filter 0.2s ease;
    max-width: 36px;
}

.language img {
    display: block;
    width: 35px;
    height: 25px;
    object-fit: cover;
    border-radius: 3px;
}

.language button.active, .language button:hover, .language a.active, .language a:hover {
    filter: none;
    /* transform: translateY(-2px); */
}

.language-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    margin-left: auto;
    background: var(--navy);
    border: 0;
    border-radius: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: 0.25s ease;
}

.menu-backdrop {
    display: none;
}

.section-rail {
    position: fixed;
    z-index: 800;
    top: 50%;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding: 17px 11px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(7,63,133,0.12);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(3,47,105,0.13);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
}

.section-rail-track {
    position: absolute;
    z-index: -1;
    top: 25px;
    bottom: 25px;
    left: 50%;
    width: 1px;
    background: #dbe7ec;
    transform: translateX(-50%);
    overflow: hidden;
}

.section-rail-track i {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--green), var(--navy));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.16s linear;
}

.section-rail a {
    position: relative;
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.section-rail a > i {
    display: block;
    width: 7px;
    height: 7px;
    background: #b4c5ce;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #a9bbc5;
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.section-rail a > span {
    position: absolute;
    top: 50%;
    right: 29px;
    padding: 7px 11px;
    color: #fff;
    background: var(--navy-deep);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(3,47,105,0.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translate(7px, -50%);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.section-rail a > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    background: var(--navy-deep);
    transform: translateY(-50%) rotate(45deg);
}

.section-rail a:hover > span, .section-rail a:focus-visible > span, .section-rail a.active > span {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.section-rail a.active > i {
    width: 12px;
    height: 12px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(95,189,54,0.16);
}

.hero {
    min-height: 780px;
    padding-top: 88px;
    background: radial-gradient(circle at 22% 45%, rgba(94, 189, 54, 0.08), transparent 28%), linear-gradient(120deg, #fff 0 48%, #f2fbfd 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 140px;
    left: -190px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(7, 63, 133, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 72px rgba(7, 63, 133, 0.018), 0 0 0 150px rgba(7, 63, 133, 0.012);
}

.hero-slides {
    position: relative;
    min-height: 692px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(42px, 0, 0) scale(0.985);
    transition: opacity 0.65s ease, transform 0.8s cubic-bezier(.22,1,.36,1), visibility 0.65s ease;
}

.hero-slide.is-active {
    position: relative;
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: none;
}

.hero-slide.is-leaving {
    visibility: visible;
    opacity: 0;
    transform: translate3d(-42px, 0, 0) scale(0.985);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    min-height: 650px;
}

.hero-grid > * {
    min-width: 0;
}

.hero-copy {
    padding-top: 32px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(62px, 7.7vw, 104px);
}

.hero h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(44px, 5.2vw, 66px);
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.hero h1 span, .hero h1 strong, .hero h2 span, .hero h2 strong {
    display: block;
}

.hero h1 span, .hero h1 strong {
    white-space: nowrap;
}

.hero h1 strong {
    color: var(--green);
    font-size: 0.69em;
}

.hero-standard {
    margin: 6px 0 22px;
    color: var(--ink);
    font-size: 29px;
    font-weight: 600;
}

.hero-lead {
    max-width: 450px;
    margin-bottom: 28px;
    color: #66788e;
    font-size: 18px;
    font-style: italic;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green), #7acb3e);
    box-shadow: 0 12px 28px rgba(95, 189, 54, 0.27);
}

.button-primary span {
    font-size: 19px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 500px;
    margin-top: 42px;
}

.hero-features div {
    display: grid;
    justify-items: center;
    gap: 9px;
    padding: 0 14px;
    text-align: center;
    border-right: 1px solid #e2ebef;
}

.hero-features div:last-child {
    border-right: 0;
}

.round-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    color: var(--navy);
    border: 1px solid #aebfc8;
    border-radius: 50%;
    font-size: 19px;
    font-weight: 800;
}

.hero-features small {
    color: #31455d;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}


.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 620px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 570px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(145deg, #dff5ef, #caeef8);
    box-shadow: inset 0 0 80px rgba(255,255,255,0.8), 0 28px 80px rgba(7,63,133,0.13);
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: 590px;
    border-radius: 50%;
    filter: saturate(1.07);
}

.orbit {
    position: absolute;
    border: 4px solid var(--green);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-28deg);
}

.orbit-one {
    z-index: 3;
    width: 600px;
    height: 600px;
}

.orbit-two {
    z-index: 1;
    width: 660px;
    height: 660px;
    border-width: 1px;
    border-color: rgba(7,63,133,0.2);
}

.hero-badge {
    position: absolute;
    z-index: 4;
    right: 8px;
    bottom: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #fff;
    background: rgba(4,46,104,0.94);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-badge b {
    color: #76d14c;
    font-size: 23px;
}

.hero-badge span {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.molecule {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 28px 12px 0 #75c9dd, 58px -5px 0 var(--navy), 77px 24px 0 #75c9dd;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

.molecule::before, .molecule::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 56px;
    height: 1px;
    background: #75c9dd;
    transform: rotate(14deg);
    transform-origin: left;
}

.molecule::after {
    width: 77px;
    transform: rotate(-7deg);
}

.molecule-one {
    top: 80px;
    left: 20px;
}

.molecule-two {
    right: -10px;
    top: 180px;
    transform: rotate(80deg);
    animation-delay: -1.7s;
}

@keyframes float {
    50% {
        translate: 0 -12px;
    }
}

.hero-wave {
    position: absolute;
    z-index: 1;
    right: -5%;
    bottom: -145px;
    width: 72%;
    height: 300px;
    background: var(--navy);
    border-radius: 55% 0 0 0;
    transform: rotate(-5deg);
}

/*.hero-wave::after { content: ""; position: absolute; top: -20px; left: -5%; width: 105%; height: 34px; background: var(--green); border-radius: 80% 0 0; }*/
.hero-slider-controls {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 9px 13px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(7,63,133,0.16);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(3,47,105,0.18);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.hero-slider-arrow {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0 0 2px;
    color: var(--navy);
    background: #edf5f7;
    border: 0;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    /*padding-bottom: 10px;*/
}

.hero-slider-arrow:hover, .hero-slider-arrow:focus-visible {
    color: #fff;
    background: var(--navy);
    outline: 0;
    transform: scale(1.08);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: #b5c8d2;
    border: 0;
    border-radius: 50%;
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-slider-dot:hover, .hero-slider-dot:focus-visible {
    background: var(--navy);
    outline: 0;
}

.hero-slider-dot.is-active {
    width: 26px;
    background: var(--green);
    border-radius: 99px;
}

.about {
    overflow: hidden;
    background: radial-gradient(circle at 20% 70%, rgba(94,189,54,0.05), transparent 25%), #fff;
}

.about::before {
    content: "CÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â HÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾OÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ";
    position: absolute;
    left: 5%;
    bottom: 8%;
    color: rgba(39,157,192,0.08);
    font-size: 86px;
    font-weight: 800;
    opacity: 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    gap: 54px;
}

.section-copy > p:not(.eyebrow) {
    color: #516579;
}

.check-list {
    display: grid;
    gap: 7px;
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: #243b54;
    font-size: 15px;
    font-weight: 700;
}

.check-list li::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 9px;
}

.about-visual {
    position: relative;
}

.about-visual > img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.origin-card {
    position: absolute;
    right: 30px;
    bottom: -30px;
    display: grid;
    grid-template-columns: minmax(245px, 34%) 1fr;
    width: calc(100% - 60px);
    color: var(--navy);
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(7,63,133,0.08);
    border-radius: 28px;
    box-shadow: 0 22px 52px rgba(3,47,105,0.23);
    overflow: hidden;
}

.origin-number {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    padding: 25px 28px;
    color: #fff;
    background: linear-gradient(135deg, #063f86, #052f6e);
    border-right: 4px solid var(--green);
}

.origin-number span {
    grid-row: 1 / 3;
    font-size: 31px;
}

.origin-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
}

.origin-icon i {
    font-size: 29px;
}

.origin-number b {
    color: #7ed44f;
    font-size: 39px;
    line-height: 1;
}

.origin-number small {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.origin-card p {
    align-self: center;
    margin: 0;
    padding: 28px 36px;
    color: #18417e;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.55;
}

.about .landing-richtext ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.about .landing-richtext li {
    position: relative;
    padding-left: 29px;
    color: #243b54;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.about .landing-richtext li::before {
    content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Â";
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.stats-wrap {
    padding: 40px 0 86px;
}

.stats-card {
    position: relative;
    min-height: 260px;
    color: #fff;
    background: var(--navy-dark);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stats-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: normal;
}

.stats-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 72%;
    background: linear-gradient(90deg, rgba(3,36,84,0.99) 0%, rgba(3,48,108,0.97) 82%, rgba(3,48,108,0) 100%);
}

.stats-overlay {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 68%;
    min-height: 260px;
    /* align-items: center; */
    padding: 25px 0px;
}

.stats-overlay article {
    min-height: 160px;
    padding: 0 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.16);
}

.stats-overlay article:last-child {
    border-right: 0;
}

.stat-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    color: #b4e7f7;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    font-size: 25px;
}

.stats-overlay b {
    display: block;
    color: #77d348;
    font-size: 26px;
    line-height: 1.25;
}

.stats-overlay h3 {
    margin: 3px 0 10px;
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
}

.stats-overlay p {
    margin: 0;
    color: #bfd5e9;
    font-size: 12px;
    line-height: 1.5;
}

.applications {
    background: linear-gradient(180deg, #f8faf9, #f2f6f4);
}

.applications-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 0.75fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.applications-intro {
    align-self: center;
    padding-right: 60px;
}

.applications-intro h3 {
    margin-bottom: 13px;
    color: var(--green-dark);
    font-size: 25px;
}

.applications-intro p {
    color: #617487;
}

.application-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(7,63,133,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(22,54,74,0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(7,63,133,0.14);
}

.application-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.application-card div {
    padding: 18px 16px 20px;
    text-align: center;
}

.application-card h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.application-card p {
    margin: 5px 0 0;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.application-card small {
    color: #758396;
    font-size: 14px;
}

.pharma {
    grid-column: 2 / 4;
}

.pharma img {
    height: 270px;
}

.food {
    grid-column: 1;
}

.cosmetic {
    grid-column: 2;
}

.industrial {
    grid-column: 3;
}

.quality {
    padding-bottom: 72px;
    background: linear-gradient(180deg, #fff 0, #f8fcfb 100%);
    overflow: hidden;
}

.quality-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 600px;
    background: linear-gradient(100deg, rgba(255,255,255,0), rgba(225,245,250,0.85));
    border-bottom-left-radius: 50%;
}

.quality-grid {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    min-height: 560px;
}

.quality-copy {
    position: relative;
    z-index: 2;
}

.quality-list {
    display: grid;
    gap: 7px;
    max-width: 440px;
    padding: 14px;
    background: rgba(255,255,255,0.66);
    border: 1px solid #e9f0ec;
    border-radius: 18px;
    box-shadow: 0 12px 42px rgba(7,63,133,0.05);
    backdrop-filter: blur(12px);
}

.quality-list article, .packaging-copy article {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
}

.quality-list article > span, .packaging-copy article > span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 41px;
    height: 41px;
    color: var(--green-dark);
    background: var(--mint);
    border: 1px solid #cfeac5;
    border-radius: 50%;
    font-size: 18px;
}

.quality-list h3, .packaging-copy h3 {
    margin: 0;
    color: #344b63;
    font-size: 15px;
}

.quality-list p, .packaging-copy article p {
    margin: 3px 0 0;
    color: #78899a;
    font-size: 12px;
}

.quality-visual {
    align-self: end;
}

.quality-visual img {
    width: 100%;
    max-height: 610px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 25px 30px rgba(7,63,133,0.11));
}

.certification-card {
    position: relative;
    z-index: 3;
    margin-top: 44px;
    padding: 32px 45px 25px;
    background: rgba(255,255,255,0.92);
    border: 1px solid #edf1eb;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(7,63,133,0.08);
    text-align: center;
}

.certification-card h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.certification-window {
    overflow: hidden;
}

.certification-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 12px;
}

.certification-track.is-carousel {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    transition: transform 0.65s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}

.certificate-trigger {
    display: grid;
    align-content: center;
    min-height: 128px;
    padding: 14px 10px 10px;
    color: var(--navy);
    background: #fff;
    border: 1px solid #e2e9e5;
    border-radius: 14px;
    cursor: zoom-in;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.certification-track.is-carousel .certificate-trigger {
    flex: 0 0 calc((100% - 72px) / 7);
    min-width: 0;
}

.certificate-trigger img {
    width: 100%;
    height: 74px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-trigger > span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.certificate-trigger:hover {
    border-color: #a8cf9b;
    box-shadow: 0 12px 28px rgba(7,63,133,0.09);
    transform: translateY(-4px);
}

.certificate-trigger:hover img {
    transform: scale(1.05);
}

.certification-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 17px;
}

.certification-arrow {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    padding: 0 0 2px;
    color: var(--navy);
    background: #f1f7f3;
    border: 1px solid #d6e8dc;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.certification-arrow:hover, .certification-arrow:focus-visible {
    color: #fff;
    background: var(--navy);
    outline: 0;
    transform: scale(1.08);
}

.certification-arrow:disabled {
    cursor: default;
    opacity: 0.42;
    transform: none;
}

.certification-status {
    min-width: 58px;
    color: #738394;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.certificate-lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(1,22,52,0.82);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.certificate-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-panel {
    /* width: min(1120px, 94vw); */
    /* padding: 30px; */
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}

.certificate-lightbox.open .lightbox-panel {
    transform: none;
}

.lightbox-panel img {
    /* width: 100%; */
    /* max-height: 80vh; */
    /* object-fit: contain; */
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0 0 4px;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    font-size: 31px;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--green);
    border-color: var(--green);
}

.lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0 0 5px;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    font-size: 37px;
    line-height: 1;
    transform: translateY(-50%);
}

.lightbox-nav:hover {
    background: var(--green);
    border-color: var(--green);
}

.lightbox-nav[hidden] {
    display: none;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.packaging {
    background: #fff;
}

.packaging-grid {
    display: grid;
    grid-template-columns: 37% 63%;
    align-items: center;
    gap: 30px;
}

.packaging-copy article {
    max-width: 390px;
    border-bottom: 1px solid #e7eeed;
}

.packaging-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.partner {
    padding-top: 84px;
    background: radial-gradient(circle at 78% 45%, #edf9fc 0, #f6fbfb 32%, #fff 68%);
    overflow: hidden;
}

.partner-grid {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    min-height: 600px;
}

.partner-copy {
    position: relative;
    z-index: 2;
}

.partner-description {
    max-width: 480px;
    color: #617386;
}

.partner-description > :first-child {
    margin-top: 0;
}

.partner-description > :last-child {
    margin-bottom: 0;
}

.progress-list {
    display: grid;
    gap: 18px;
    max-width: 440px;
    margin: 32px 0 30px;
}

.progress-item > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    color: #36506a;
    font-size: 13px;
    font-weight: 800;
}

.progress-item i {
    display: block;
    height: 7px;
    background: #e3ece9;
    border-radius: 99px;
    overflow: hidden;
}

.progress-item em {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--green), #78cc42);
    border-radius: inherit;
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
}

.partner-visual {
    position: relative;
    align-self: stretch;
}

.partner-visual::before {
    content: "";
    position: absolute;
    top: 7%;
    right: -8%;
    width: 570px;
    height: 570px;
    border: 1px dashed rgba(7,63,133,0.18);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.partner-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
}

.service-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 0;
    margin-top: 34px;
    padding: 20px 26px;
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(7,63,133,0.12);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(7,63,133,0.08);
}

.exclusive {
    grid-row: span 2;
    display: grid;
    align-content: center;
    justify-items: center;
    padding-right: 20px;
    border-right: 1px solid #e4ece9;
    text-align: center;
}

.exclusive small {
    display: block;
    color: #5c7087;
    font-size: 12px;
    font-weight: 700;
}

.exclusive strong {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 7px 0 4px;
    color: var(--green-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-style: italic;
    line-height: 1;
}

.exclusive strong i {
    font-size: 25px;
}

.exclusive span {
    display: block;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
}

.exclusive > :first-child {
    margin-top: 0;
}

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

.service-strip article {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-left: 1px solid #e4ece9;
}

.service-strip article:nth-of-type(n + 4) {
    border-top: 1px solid #e4ece9;
}

.service-strip article > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--green-dark);
    background: var(--mint);
    border-radius: 50%;
    font-size: 16px;
}

.service-strip p {
    margin: 0;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.site-footer {
    position: relative;
    padding: 88px 0 26px;
    color: #d9eaff;
    background: linear-gradient(135deg, #053c85, #032a63 65%, #022251);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, transparent, #000);
}

.footer-orb {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.footer-orb-one {
    right: -180px;
    bottom: -260px;
    width: 650px;
    height: 650px;
}

.footer-orb-two {
    left: -140px;
    top: -200px;
    width: 450px;
    height: 450px;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.1fr;
    gap: 0;
}

.footer-brand, .contact-info, .contact-form-wrap {
    min-width: 0;
}

.contact-info, .contact-form-wrap {
    padding-left: 46px;
    border-left: 1px solid rgba(255,255,255,0.22);
}

.contact-form-wrap {
    margin-left: 46px;
}

.footer-brand img {
    /* width: 250px; */
    margin-bottom: 20px;
}

.footer-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 0 20px;
    background: #55c8dd;
}

.footer-brand p {
    max-width: 320px;
    color: #bbd2eb;
    font-size: 13px;
}

.landing-richtext {
    color: inherit;
    font-size: 13px;
    line-height: 1.65;
}

.landing-richtext p {
    margin: 0 0 12px;
}

.landing-richtext ul {
    padding-left: 18px;
    margin: 0;
}

.landing-richtext a {
    color: inherit;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.contact-info p {
    margin: 0 0 12px;
    color: #bbd2eb;
    font-size: 13px;
    line-height: 1.65;
}

.contact-info b,
.contact-info strong {
    color: #7fd953;
    display:flex;
}
.contact-info strong img{
    margin-right:5px;
}
.contact-info a {
    color: inherit;
}

.contact-form-wrap form {
    display: grid;
    gap: 8px;
}

.contact-form-wrap label {
    position: relative;
}

.contact-form-wrap label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.contact-form-wrap .field-icon {
    position: absolute;
    z-index: 1;
    top: 25px;
    left: 15px;
    color: #5cbc36;
    font-size: 17px;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-form-wrap label:has(textarea) .field-icon {
    top: 19px;
    transform: none;
}

.contact-form-wrap input, .contact-form-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 46px;
    color: var(--ink);
    background: #fff;
    border: 2px solid transparent;
    border-radius: 9px;
    outline: none;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-wrap textarea {
    min-height: 116px;
    resize: vertical;
}

.contact-form-wrap input:focus, .contact-form-wrap textarea:focus {
    border-color: #7bd050;
    box-shadow: 0 0 0 4px rgba(123,208,80,0.16);
}

.contact-form-wrap .invalid {
    border-color: #ff4d57;
    background: #fff7f7;
    box-shadow: 0 0 0 4px rgba(255,77,87,0.14);
}

.contact-form-wrap .form-field.has-error .field-icon {
    color: #d9303e;
}

.field-error {
    display: block;
    min-height: 17px;
    padding: 2px 3px 0;
    color: #ffb8bd;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.submit-button {
    width: 100%;
    color: #fff;
    background: var(--green);
    border-radius: 9px;
}

.submit-button .submit-icon {
    font-size: 17px;
}

.submit-button:hover {
    background: #6bc83c;
    box-shadow: 0 13px 30px rgba(91,190,51,0.25);
}

.footer-bottom {
    position: relative;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.14);
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 17px;
}

.socials a {
    position: relative;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    font-size: 23px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.socials a img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.socials a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.25);
}

.socials a:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-3px);
}

.footer-bottom p {
    margin: 0;
    color: #d6e3f2;
    font-size: 15px;
}

.consultation {
    position: relative;
    padding: 70px 0 34px;
    background: linear-gradient(180deg, #fbfdff 0%, #edf4ff 100%);
    overflow: hidden;
}

.consultation::before {
    content: "";
    position: absolute;
    top: -105px;
    left: -5%;
    width: 110%;
    height: 190px;
    background: #fff;
    border-radius: 0 0 50% 50%;
    box-shadow: 0 16px 45px rgba(32,88,175,0.06);
    opacity: 0.72;
    opacity: 0;
}

.consultation::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(#7ca7ef 1px, transparent 1px);
    background-size: 15px 15px;
    mask-image: linear-gradient(120deg, #000 0%, transparent 23%, transparent 77%, #000 100%);
    opacity: 0;
}

.consultation-shape {
    position: absolute;
    border: 1px solid rgba(42,101,196,0.11);
    border-radius: 50%;
}

.consultation-shape-left {
    left: -210px;
    bottom: -275px;
    width: 540px;
    height: 540px;
    box-shadow: 0 0 0 68px rgba(42,101,196,0.025);
}

.consultation-shape-right {
    right: -180px;
    top: 65px;
    width: 410px;
    height: 410px;
    box-shadow: 0 0 0 54px rgba(42,101,196,0.025);
}

.consultation-inner {
    position: relative;
    z-index: 2;
}

.consultation-heading {
    margin-bottom: 34px;
    text-align: center;
}

.consultation-heading h2 {
    margin: 0;
    color: #173f9d;
    font-size: clamp(48px, 5.2vw, 76px);
    line-height: 1;
}

.consultation-title-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.consultation-title-mark i {
    display: block;
    width: 150px;
    height: 2px;
    background: #8aa9e8;
}

.consultation-title-mark b {
    display: block;
    width: 12px;
    height: 12px;
    background: #173f9d;
    border-radius: 50%;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px 16px;
}

.consultation-grid a {
    display: grid;
    align-content: center;
    min-width: 0;
    min-height: 132px;
    padding: 20px 18px 17px;
    color: #173f9d;
    background: rgba(255,255,255,0.88);
    border: 1px solid #8eaceb;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(24,71,155,0.06);
    text-align: center;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.consultation-grid a:hover {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 16px 34px rgba(7,63,133,0.2);
    transform: translateY(-4px);
}

.consultation-grid small {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding-bottom: 13px;
    border-bottom: 1px solid #a9c0ef;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.consultation-grid small b {
    margin-right: 4px;
}

.consultation-grid strong {
    margin-top: 13px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.consultation-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    align-items: center;
    min-height: 118px;
    padding: 15px 38px;
    color: #113f95;
    background: rgba(255,255,255,0.82);
    border: 1px solid #a5bff1;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(24,71,155,0.08);
    backdrop-filter: blur(8px);
    margin-top: 30px;
}

.consultation-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 0;
    padding: 10px 34px;
}

.consultation-divider {
    width: 1px;
    height: 68px;
    background: #7899db;
}

.consultation-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: #0a3e9e;
    font-size: 52px;
    line-height: 1;
}

.consultation-heart {
    font-size: 57px;
}

.consultation-hours .landing-richtext {
    font-size: inherit;
}

.consultation-hours p {
    margin: 0;
    color: #173f95;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.consultation-hours b {
    font-size: 21px;
}

.consultation-hours small {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.consultation-ready strong {
    color: #173f95;
    font-size: 20px;
    line-height: 1.35;
}

.back-to-top {
    position: fixed;
    z-index: 50;
    right: 24px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(95,189,54,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.toast {
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 360px;
    padding: 16px 20px;
    color: #fff;
    background: #073f85;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(3,36,84,0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.toast span {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--navy);
    background: #8bdd5b;
    border-radius: 50%;
    font-weight: 900;
}

.toast p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22,1,.36,1);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1050px) {
    .section-rail {
        display: none;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .language {
        margin-left: 20px;
        padding-left: 16px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-slides {
        min-height: 612px;
    }

    .hero-grid {
        min-height: 610px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-visual::before {
        width: 470px;
    }

    .hero-visual img {
        width: 490px;
    }

    .orbit-one {
        width: 510px;
        height: 510px;
    }

    .orbit-two {
        width: 560px;
        height: 560px;
    }

    .stats-overlay article {
        padding-inline: 12px; }

    .applications-intro {
        padding-right: 20px;
    }

    .certification-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .certification-track.is-carousel .certificate-trigger {
        flex-basis: calc((100% - 36px) / 4);
    }

    .service-strip {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .hidden-xs{display: none;}
    .footer-brand img{
        max-width: 130px;
        margin: 0 auto 1rem;
        text-align: center;
    }
    .section {
        padding: 78px 0;
    }

    .site-header {
        background: #fff;
        backdrop-filter: none;
    }

    .header-inner {
        height: auto;
    }

    .brand {
        /* width: 155px; */
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: block;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu-backdrop {
        position: fixed;
        z-index: 900;
        inset: 72px 0 0;
        display: block;
        padding: 0;
        background: rgba(3,29,67,0.46);
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(4px);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav {
        position: fixed;
        z-index: 950;
        top: 84px;
        right: 12px;
        bottom: 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: min(360px, calc(100vw - 24px));
        padding: 28px 26px 22px;
        margin: 0;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(7,63,133,0.1);
        border-radius: 24px;
        box-shadow: -18px 25px 60px rgba(3,40,89,0.25);
        overflow-y: auto;
        transform: translateX(calc(100% + 28px));
        transition: transform 0.34s cubic-bezier(.22,1,.36,1);
    }

    .main-nav::before {
        content: "Navigation";
        display: block;
        width: 100%;
        padding-bottom: 14px;
        color: #8ba0b4;
        border-bottom: 1px solid #e2ebef;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .main-nav.open {
        transform: none;
    }

    .main-nav > a {
        width: 100%;
        padding: 15px 0;
        color: var(--navy);
        border-bottom: 1px solid #e5eeef;
        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        font-weight: 800;
    }

    .main-nav > a::after {
        right: 0;
        bottom: 0;
        left: auto;
        height: 1px;
    }

    .language-desktop {
        display: none;
    }

    .main-nav .language-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        width: 100%;
        padding: 18px 0 0;
        margin: auto 0 0;
        border: 0;
    }

    .language-mobile .language-label {
        flex: 0 0 100%;
        color: #8ba0b4;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .language-mobile button,
    .language-mobile a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-width: 76px;
        padding: 9px 12px;
        color: var(--navy);
        background: #f4f8fa;
        border: 1px solid #dce8ed;
        border-radius: 12px;
        font-size: 17px;
    }

    .language-mobile button.active,
    .language-mobile a.active {
        background: var(--mint);
        border-color: #a9d998;
    }

    .language-mobile small {
        font-size: 10px;
        font-weight: 800;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-slides {
        min-height: 900px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 58px;
        text-align: center;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-lead {
        margin-inline: auto; }

    .hero-features {
        margin-inline: auto; }

    .hero-visual {
        min-height: 520px;
        margin-top: 20px;
    }

    .hero-visual::before {
        width: 440px;
    }

    .hero-visual img {
        width: 470px;
    }

    .orbit-one {
        width: 475px;
        height: 475px;
    }

    .orbit-two {
        width: 520px;
        height: 520px;
    }

    .hero-wave {
        bottom: -180px;
        width: 100%;
    }

    .hero-slider-controls {
        bottom: 24px;
    }

    .split-layout, .quality-grid, .packaging-grid, .partner-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        margin-top: 24px;
    }

    .about-visual > img {
        min-height: 480px;
    }

    .stats-overlay {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 25px;
    }

    .stats-card::after {
        width: 100%;
        background: rgba(3,36,84,0.9);
    }

    .stats-overlay article {
        padding: 20px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.13);
    }

    .stats-overlay article:nth-child(2n) {
        border-right: 0;
    }

    .stats-overlay article:last-child {
        grid-column: 1 / 3;
        border-bottom: 0;
    }

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

    .applications-intro {
        grid-column: 1 / 3;
    }

    .pharma {
        grid-column: 1 / 3;
    }

    .food {
        grid-column: 1;
    }

    .cosmetic {
        grid-column: 2;
    }

    .industrial {
        grid-column: 1 / 3;
    }

    .industrial img {
        height: 300px;
    }

    .quality-grid {
        min-height: auto;
    }

    .quality-visual {
        margin-top: 30px;
    }

    .certification-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .certification-track.is-carousel .certificate-trigger {
        flex-basis: calc((100% - 24px) / 3);
    }

    .packaging-visual {
        margin-top: 25px;
    }

    .partner-grid {
        min-height: auto;
    }

    .partner-visual {
        min-height: 540px;
    }

    .service-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .exclusive {
        grid-column: 1 / 3;
        grid-row: auto;
        padding: 10px 0 25px;
        border-right: 0;
        border-bottom: 1px solid #e4ece9;
    }

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

    .footer-brand {
        grid-column: 1 / 3;
    }

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

    .consultation-banner {
        padding: 14px 18px;
    }

    .consultation-panel {
        gap: 16px;
        padding: 10px 18px;
    }

    .consultation-icon {
        width: 52px;
        height: 52px;
        font-size: 43px;
    }

    .consultation-hours p,
    .consultation-ready strong {
        font-size: 16px;
    }

    .consultation-hours b {
        font-size: 17px;
    }

    .consultation-hours small {
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .back-to-top{
        bottom:80px;
    }
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 64px 0;
    }

    h2 {
        font-size: 28px;
    }

    .language-desktop {
        display: none;
    }

    .hero {
        min-height: 950px;
    }

    .hero-slides {
        min-height: 850px;
    }

    .hero-grid {
        padding-top: 48px;
    }

    .hero h1 {
        font-size: 57px;
    }

    .hero h1 span, .hero h1 strong, .hero h2 span, .hero h2 strong {
        white-space: normal;
    }

    .hero-standard {
        font-size: 22px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .hero-features div:nth-child(2) {
        border-right: 0;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-visual::before {
        width: 340px;
    }

    .hero-visual img {
        width: 350px;
    }

    .orbit-one {
        width: 360px;
        height: 360px;
    }

    .orbit-two {
        width: 390px;
        height: 390px;
    }

    .hero-badge {
        right: 0;
        bottom: 30px;
        padding: 11px 14px;
    }

    .hero-slider-controls {
        bottom: 18px;
        gap: 10px;
        padding: 7px 9px;
    }

    .hero-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 21px;
    }

    .molecule {
        display: none;
    }

    .split-layout {
        gap: 30px;
    }

    .about-visual > img {
        min-height: 390px;
    }

    .origin-card {
        position: relative;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        width: calc(100% - 20px);
        margin: -34px auto 0;
    }

    .origin-number {
        border-right: 0;
        border-bottom: 4px solid var(--green);
    }

    .stats-wrap {
        padding-bottom: 64px;
    }

    .stats-overlay {
        grid-template-columns: 1fr;
    }

    .stats-overlay article {
        border-right: 0;
    }

    .stats-overlay article:last-child {
        grid-column: auto;
    }

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

    .applications-intro, .pharma, .food, .cosmetic, .industrial {
        grid-column: 1;
    }

    .application-card img, .pharma img, .industrial img {
        height: 230px;
    }

    .quality-visual img {
        min-height: 400px;
        object-fit: cover;
    }

    .certification-card {
        padding: 25px 15px;
    }

    .certification-card h2 {
        font-size: 27px;
    }

    .certification-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .certification-track.is-carousel {
        gap: 9px;
    }

    .certification-track.is-carousel .certificate-trigger {
        flex-basis: calc((100% - 9px) / 2);
    }

    .certificate-trigger {
        min-height: 115px;
    }

    .certificate-trigger img {
        height: 65px;
        object-fit: contain;
    }

    .packaging-visual img {
        min-height: 280px;
    }

    .partner-visual {
        min-height: 400px;
    }

    .service-strip {
        grid-template-columns: 1fr;
        padding: 22px 16px;
    }

    .exclusive {
        grid-column: 1;
    }

    .service-strip article {
        border-top: 0;
        border-left: 0;
        border-bottom: 1px solid #edf1ef;
    }

    .service-strip article:last-child {
        border-bottom: 0;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .contact-info, .contact-form-wrap {
        padding-left: 0;
        border-left: 0;
    }

    .contact-form-wrap {
        margin-left: 0;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.22);
    }

    .site-footer {
        padding-top: 70px;
    }

    .certificate-lightbox {
        padding: 16px;
    }

    .lightbox-panel {
        padding: 16px;
        border-radius: 15px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
    }

    .consultation {
        padding: 46px 0 100px;
    }

    .consultation::before {
        top: -70px;
        height: 130px;
    }

    .consultation-heading {
        margin-bottom: 26px;
    }

    .consultation-heading h2 {
        font-size: 38px;
    }

    .consultation-title-mark {
        gap: 14px;
        margin-top: 16px;
    }

    .consultation-title-mark i {
        width: 74px;
    }

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

    .consultation-grid a {
        min-height: 112px;
        padding: 14px 10px 13px;
        border-radius: 12px;
    }

    .consultation-grid small {
        min-height: 42px;
        padding-bottom: 10px;
        font-size: 10px;
    }

    .consultation-grid strong {
        margin-top: 11px;
        font-size: 14px;
    }

    .consultation-banner {
        grid-template-columns: 1fr;
        padding: 10px 16px;
        border-radius: 15px;
    }

    .consultation-panel {
        justify-content: flex-start;
        gap: 18px;
        padding: 18px 8px;
    }

    .consultation-divider {
        width: 100%;
        height: 1px;
    }

    .consultation-icon {
        width: 48px;
        height: 48px;
        font-size: 40px;
    }

    .consultation-heart {
        font-size: 43px;
    }

    .consultation-hours p,
    .consultation-ready strong {
        font-size: 15px;
    }

    .consultation-hours b {
        font-size: 16px;
    }

    .consultation-hours small {
        font-size: 11px;
    }

    .toast {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}




/* Toolbar */
.scrollToTopMobile.scrollToTop { display: block !important; height: unset; position: unset; }
.modal-body .toolbar { display: block; position: relative; }
.toolbar {width: 100%;bottom: 0px;position: fixed;z-index: 500;left: 0px;display: none;-webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));-moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));-ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));-o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));}
.toolbar.is-active .list-phone { display: block; -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards; animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards; }
.toolbar .list-phone {position: absolute;bottom: 100%;left: 30px;opacity: 0;transform: scale(0);transform-origin: 50% 100%;display: none;}
.toolbar .list-phone a {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;background: #fff;max-width: 240px;padding: 10px 20px;margin: 10px 0;border-radius: 50px;padding-right: 30px;text-decoration: none;}
.toolbar .list-phone svg {max-width: 30px;max-height: 30px;}
.toolbar .list-phone span {display: block;width: calc(100% - 40px);color: var(--background-static);font-weight: 700;font-size: 18px;}
.toolbar .phone { position: relative; width: 50px; height: 50px; z-index: 99; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; margin: 0 0px -25px 30px; transition: transform .2s ease-in-out; }
.toolbar .phone a { color: #333; display: block; position: relative; }
.toolbar .phone a:before, .toolbar .phone a:after { position: absolute; content: ''; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(135deg); width: 30px; height: 3px; border-radius: 2rem; background-color: var(--color-main); opacity: 0; transition: opacity .2s ease-in-out; }
.toolbar .phone a:after { transform: translate(-50%, -50%) rotate(45deg); }
.toolbar .phone svg { max-width: 27px; max-height: 27px; display: block; position: relative; fill: var(--color-main); }
.toolbar.is-active .phone { transform: rotate(-180deg); }
.toolbar.is-active .phone svg { opacity: 0; }
.toolbar.is-active .phone a:before, .toolbar.is-active .phone a:after { opacity: 1; }
.toolbar ul { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 0px; margin: 0px; --size: 33px; -webkit-mask: radial-gradient(var(--size) at 55px 0px, #0000 99%, #fff 101%) 100%; background: #fff; padding: 10px 0; padding-left: 100px; border-radius: 10px 10px 0px 0px; }
.toolbar ul li { text-align: center; width: 25%; line-height: 1; }
.toolbar ul li a { display: block; width: 100%; font-size: 27px; color: #ffff; }
.toolbar ul li .icon { position: relative; margin: 0 auto; text-align: center; }
.toolbar ul li a span { display: none; font-weight: 400; font-size: 11px; margin-top: 5px; color: #333; text-transform: capitalize; }
.toolbar ul li a img, .toolbar ul li svg { max-height: 30px; fill: var(--color-main); width: 100%; }
.toolbar .phone svg { animation: tada 1.2s infinite; fill: var(--color-main); }
.tada { animation: tada 1.2s infinite; }
.lang-toolbar { display: flex; justify-content: center; align-items: center; }
.toolbar ul li.lang-toolbar a { display: inline-block; width: unset; margin: 0px 2px; font-size: unset; }
.toolbar ul li.lang-toolbar a img { height: 10% !important; }
.ex6 path { fill: none; stroke: var(--color-main); stroke-width: 0.5; stroke-dasharray: 1500; stroke-dashoffset: 1500; -webkit-animation: dash 5s ease forwards; animation: dash 5s ease forwards; }
@-webkit-keyframes dash {
to { fill: var(--color-main); stroke-dashoffset: 0; }
}
@keyframes dash {
to { fill: var(--color-main); stroke-dashoffset: 0; }
}
@keyframes tada {
0% { transform: scaleX(1) }
10%, 20% { transform: scale3d(.9, .9, .9) rotate(-3deg) }
30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
to { transform: scaleX(1) }
}
@keyframes quickShow {
0% { opacity: 0; transform: scale(0); }
100% { opacity: 1; transform: scale(1); }
}
@media(max-width:1001px) {
.toolbar { display: block; }
.scrollToTop, #messages-facebook { display: none !important; }
}

/* Landing mobile toolbar overrides */
.toolbar {
    z-index: 900;
    filter: drop-shadow(0 -6px 18px rgba(3, 36, 84, 0.22));
    transition: transform 0.3s ease;
}

body.hidden-toolbar .toolbar {
    transform: translateY(calc(100% + 34px));
}

body.show-toolbar .toolbar {
    transform: translateY(0);
}

.toolbar .list-phone {
    left: 24px;
}

.toolbar .list-phone a {
    gap: 12px;
    min-width: 220px;
    max-width: none;
    padding: 11px 22px;
    color: var(--navy);
    border: 1px solid rgba(7,63,133,0.12);
    box-shadow: 0 14px 32px rgba(3,36,84,0.18);
}

.toolbar .list-phone svg,
.toolbar .list-phone span {
    color: var(--navy);
    fill: var(--navy);
}

.toolbar .phone {
    width: 54px;
    height: 54px;
    margin: 0 0 -27px 27px;
    border: 2px solid rgba(7,63,133,0.1);
    box-shadow: 0 8px 20px rgba(3,36,84,0.2);
}

.toolbar .phone a::before,
.toolbar .phone a::after {
    background-color: var(--navy);
}

.toolbar .phone svg,
.toolbar ul li svg {
    fill: var(--navy);
}

.toolbar ul {
    --size: 36px;
    padding: 11px 4px 10px 96px;
    border-radius: 14px 14px 0 0;
    -webkit-mask: radial-gradient(var(--size) at 54px 0, transparent 99%, #fff 101%) 100%;
    mask: radial-gradient(var(--size) at 54px 0, transparent 99%, #fff 101%) 100%;
}

.toolbar .scrollToTopMobile.scrollToTop {
    display: block !important;
    cursor: pointer;
}

.toolbar .scrollToTopMobile.ex6 path {
    fill: none;
    stroke: var(--green-dark);
    stroke-width: 0.7;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: dashLandingToolbar 1.6s ease forwards;
}

@keyframes dashLandingToolbar {
    to { fill: var(--green-dark); stroke-dashoffset: 0; }
}


.partner .exclusive strong{
    display: block !important;
    text-align: center !important;
}