:root {
    --green-950: #0a2618;
    --green-900: #103621;
    --green-800: #17452d;
    --green-700: #21613c;
    --green-600: #2f7d4b;
    --green-500: #4a965f;
    --green-200: #bcd8bf;
    --green-100: #e5efe3;
    --lime: #b8d96f;
    --lime-light: #ddecba;
    --yellow: #f2b632;
    --yellow-dark: #d79813;
    --cream: #f7f4eb;
    --cream-dark: #ede8da;
    --white: #ffffff;
    --ink: #15241b;
    --muted: #647168;
    --line: #dce3da;
    --shadow-sm: 0 10px 30px rgba(12, 43, 25, .08);
    --shadow-lg: 0 30px 80px rgba(7, 34, 19, .16);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --font: "Manrope", sans-serif;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--lime);
    color: var(--green-950);
}

img {
    max-width: 100%;
}

a {
    color: var(--green-700);
    text-decoration: none;
}

a,
button {
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--green-950);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.12;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1240px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 0 0 8px 8px;
    background: var(--yellow);
    color: var(--green-950);
    font-weight: 800;
}

.skip-link:focus {
    top: 0;
}

.section {
    padding: 110px 0;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green-600);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: var(--lime);
}

.eyebrow--light span {
    display: none;
}

.display-heading {
    margin-bottom: 24px;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.lead-copy {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.8;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.section-heading p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading--split > div {
    max-width: 720px;
}

.section-heading--split > p {
    max-width: 410px;
    margin: 0 0 6px;
}

.btn {
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: .8rem;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 800;
}

.btn-lg {
    --bs-btn-padding-x: 1.7rem;
    --bs-btn-padding-y: 1rem;
    min-height: 58px;
    font-size: .94rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--green-700);
    --bs-btn-border-color: var(--green-700);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--green-800);
    --bs-btn-hover-border-color: var(--green-800);
    --bs-btn-active-bg: var(--green-900);
    --bs-btn-active-border-color: var(--green-900);
}

.btn-outline-primary {
    --bs-btn-color: var(--green-700);
    --bs-btn-border-color: var(--green-700);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--green-700);
    --bs-btn-hover-border-color: var(--green-700);
}

.btn-accent {
    background: var(--yellow);
    color: var(--green-950);
}

.btn-accent:hover {
    background: #ffc64a;
    color: var(--green-950);
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--green-700);
    font-size: .92rem;
    font-weight: 800;
}

.text-link:hover {
    color: var(--green-900);
    gap: 14px;
}

/* Header */

.utility-bar {
    position: relative;
    z-index: 1031;
    padding: 7px 0;
    background: var(--green-950);
    color: rgba(255, 255, 255, .76);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .025em;
}

.utility-bar i {
    margin-right: 7px;
    color: var(--lime);
}

.utility-bar a {
    color: var(--lime);
}

.site-header {
    position: sticky;
    z-index: 1030;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(220, 227, 218, .8);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 25px rgba(10, 38, 24, .08);
}

.site-header .navbar {
    min-height: 84px;
    padding: 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    width: 215px;
    height: auto;
}

.site-header .nav-link {
    position: relative;
    padding: 30px 16px !important;
    color: #304138;
    font-size: .86rem;
    font-weight: 700;
}

.site-header .nav-link::after {
    position: absolute;
    right: 16px;
    bottom: 22px;
    left: 16px;
    width: auto;
    height: 2px;
    margin: 0 !important;
    border: 0 !important;
    background: var(--green-600);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.site-header .nav-link.dropdown-toggle {
    padding-right: 27px !important;
}

.site-header .nav-link.dropdown-toggle::before {
    position: absolute;
    top: 35px;
    right: 12px;
    border: solid currentColor;
    border-width: 0 1.5px 1.5px 0;
    content: "";
    padding: 3px;
    transform: rotate(45deg);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--green-700);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-cta {
    white-space: nowrap;
}

.product-dropdown {
    width: 340px;
    margin-top: 0 !important;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.product-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px;
    border-radius: 10px;
    color: var(--ink);
    white-space: normal;
}

.product-dropdown .dropdown-item:hover {
    background: var(--green-100);
    color: var(--green-800);
}

.product-dropdown .dropdown-item > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 9px;
    background: var(--cream);
    color: var(--green-600);
}

.product-dropdown strong {
    font-size: .82rem;
    letter-spacing: -.01em;
}

.product-dropdown small {
    display: block;
    margin-top: 1px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 500;
}

.product-dropdown .view-all {
    justify-content: space-between;
    color: var(--green-700);
    font-weight: 800;
}

.navbar-toggler {
    display: grid;
    width: 48px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 9px;
    background: var(--green-100);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(47, 125, 75, .18);
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-800);
}

.mobile-nav {
    --bs-offcanvas-width: min(390px, 92vw);
    background: var(--cream);
}

.mobile-nav .offcanvas-header {
    padding: 24px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav .offcanvas-body {
    padding: 20px 24px 32px;
}

.mobile-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--green-950);
    font-size: 1rem;
    font-weight: 800;
}

.mobile-nav__links i {
    color: var(--green-500);
    font-size: .75rem;
}

/* Home hero */

.home-hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    padding: 90px 0 110px;
    background:
        radial-gradient(circle at 12% 0%, rgba(184, 217, 111, .15), transparent 28%),
        linear-gradient(120deg, var(--green-950) 0%, #123f27 58%, #1d5936 100%);
}

.home-hero::before {
    position: absolute;
    right: -8vw;
    bottom: -36vw;
    width: 70vw;
    height: 70vw;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.home-hero::after {
    position: absolute;
    right: 7vw;
    bottom: -25vw;
    width: 52vw;
    height: 52vw;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    content: "";
}

.home-hero__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(3.2rem, 6.1vw, 6.4rem);
    letter-spacing: -.065em;
    line-height: .91;
}

.hero-copy h1 em {
    color: var(--lime);
    font-style: normal;
}

.hero-copy > p {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .75);
    font-size: 1.08rem;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-outline-light {
    --bs-btn-border-color: rgba(255, 255, 255, .35);
    --bs-btn-hover-color: var(--green-950);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin-top: 35px;
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 700;
}

.hero-proof div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-proof i {
    color: var(--lime);
}

.hero-visual {
    position: relative;
    margin-left: 20px;
    padding: 35px 0 45px 35px;
}

.hero-visual__frame {
    position: relative;
    overflow: hidden;
    height: 590px;
    border: 7px solid rgba(255, 255, 255, .07);
    border-radius: 4px 105px 4px 4px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .3);
}

.hero-visual__frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 28, 16, .45), transparent 48%);
    content: "";
}

.hero-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
}

.hero-float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 18px 50px rgba(5, 26, 14, .22);
    backdrop-filter: blur(14px);
}

.hero-float--top {
    top: 0;
    left: 0;
    max-width: 280px;
    gap: 13px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .94);
    color: var(--muted);
    font-size: .67rem;
    line-height: 1.45;
}

.hero-float--top strong {
    display: block;
    color: var(--green-950);
    font-size: .78rem;
}

.hero-float__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
}

.hero-float--bottom {
    right: -30px;
    bottom: 8px;
    gap: 13px;
    padding: 17px 21px;
    background: rgba(242, 182, 50, .96);
    color: rgba(10, 38, 24, .78);
    font-size: .66rem;
    font-weight: 700;
    line-height: 1.45;
}

.hero-float__number {
    color: var(--green-950);
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: 1;
}

.hero-scroll {
    position: absolute;
    z-index: 4;
    bottom: 28px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll:hover {
    color: var(--lime);
}

.trust-strip {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
    display: flex;
    min-height: 105px;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

.trust-strip__grid > div:last-child {
    border-right: 0;
}

.trust-strip__grid > div > span {
    color: var(--green-500);
    font-size: .66rem;
    font-weight: 800;
}

.trust-strip p {
    margin: 0;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.5;
}

.trust-strip strong {
    display: block;
    color: var(--green-950);
    font-size: .88rem;
}

/* Solution cards */

.solution-card {
    position: relative;
    display: flex;
    min-height: 390px;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
}

.solution-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-lg);
    color: var(--ink);
    transform: translateY(-8px);
}

.solution-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 18px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 1.5rem;
}

.solution-card__content {
    position: relative;
    z-index: 2;
}

.solution-card__content > span {
    display: block;
    margin-bottom: 12px;
    color: var(--green-600);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.solution-card h3 {
    margin-bottom: 13px;
    font-size: 1.55rem;
}

.solution-card p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .86rem;
}

.solution-card b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: .77rem;
}

.solution-card--image {
    border: 0;
    color: var(--white);
}

.solution-card--image > img,
.solution-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.solution-card--image > img {
    object-fit: cover;
    transition: transform .6s ease;
}

.solution-card--image:hover > img {
    transform: scale(1.05);
}

.solution-card__shade {
    background: linear-gradient(to top, rgba(6, 29, 16, .94), rgba(6, 29, 16, .08) 75%);
}

.solution-card--image h3,
.solution-card--image p,
.solution-card--image b {
    color: var(--white);
}

.solution-card--image .solution-card__content > span {
    color: var(--lime);
}

/* Product cards */

.product-card {
    overflow: hidden;
    border-radius: var(--radius) !important;
    background: var(--white);
    box-shadow: 0 1px 0 var(--line);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-card__media {
    position: relative;
    display: grid;
    height: 285px;
    overflow: hidden;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(247, 244, 235, .9), rgba(231, 239, 229, .75)),
        var(--cream);
}

.product-card__media::after {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(47, 125, 75, .14);
    border-radius: 50%;
    content: "";
}

.product-card__media img {
    position: relative;
    z-index: 1;
    width: 86%;
    height: 86%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .5s ease;
}

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

.product-card__category {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    padding: 6px 10px;
    border: 1px solid rgba(23, 69, 45, .08);
    border-radius: 100px;
    background: rgba(255, 255, 255, .88);
    color: var(--green-700);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.product-card__fallback {
    position: relative;
    z-index: 1;
    display: grid;
    width: 118px;
    height: 118px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 3rem;
}

.product-card .card-body {
    min-height: 240px;
    padding: 25px 26px 27px;
}

.product-card__model {
    margin-bottom: 7px;
    color: var(--green-500);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 12px;
}

.product-card h3 a {
    color: var(--green-950);
}

.product-card p {
    color: var(--muted);
    font-size: .79rem;
    line-height: 1.65;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: .75rem;
    font-weight: 800;
}

.product-card:hover .product-card__link {
    gap: 12px;
}

/* One pass */

.one-pass-visual {
    position: relative;
    min-height: 670px;
    margin-right: 35px;
}

.one-pass-visual::before {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 60%;
    height: 45%;
    border-radius: 0 var(--radius-lg) 0 0;
    background: var(--lime);
    content: "";
}

.one-pass-visual > img {
    position: absolute;
    z-index: 1;
    inset: 35px 0 0;
    width: 100%;
    height: calc(100% - 35px);
    border-radius: 4px var(--radius-lg) 4px 4px;
    object-fit: cover;
}

.one-pass-visual__badge {
    position: absolute;
    z-index: 2;
    right: -35px;
    bottom: 35px;
    display: flex;
    max-width: 270px;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px 0 0 12px;
    background: var(--green-900);
    color: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-lg);
    font-size: .69rem;
    line-height: 1.5;
}

.one-pass-visual__badge i {
    color: var(--lime);
    font-size: 1.6rem;
}

.one-pass-visual__badge strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
}

.process-list {
    margin: 35px 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.process-list li > span {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    font-size: .65rem;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.process-list p {
    color: var(--muted);
    font-size: .77rem;
}

/* Why */

.why-section {
    padding-top: 0;
}

.why-panel {
    overflow: hidden;
    padding: 75px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 10%, rgba(184, 217, 111, .13), transparent 30%),
        var(--green-950);
}

.why-panel h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.why-panel .col-lg-5 > p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.why-grid article {
    position: relative;
    min-height: 225px;
    padding: 29px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.why-grid article > span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(255, 255, 255, .32);
    font-size: .6rem;
    font-weight: 800;
}

.why-grid i {
    margin-bottom: 28px;
    color: var(--lime);
    font-size: 1.55rem;
}

.why-grid h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.12rem;
}

.why-grid p {
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    line-height: 1.65;
}

/* Spotlight */

.spotlight-media {
    position: relative;
    display: grid;
    min-height: 550px;
    overflow: hidden;
    place-items: center;
    border-radius: var(--radius-lg);
    background: var(--cream);
}

.spotlight-media::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: var(--green-100);
    content: "";
}

.spotlight-media img {
    position: relative;
    z-index: 1;
    width: 90%;
    height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.spotlight-media__label {
    position: absolute;
    z-index: 2;
    top: 25px;
    right: 25px;
    padding: 8px 12px;
    border-radius: 50px;
    background: var(--white);
    color: var(--green-700);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.spotlight-stats {
    display: flex;
    gap: 0;
    margin: 35px 0;
}

.spotlight-stats > div {
    min-width: 130px;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.spotlight-stats > div:first-child {
    padding-left: 0;
}

.spotlight-stats > div:last-child {
    border-right: 0;
}

.spotlight-stats strong {
    display: block;
    color: var(--green-800);
    font-size: 1.55rem;
    letter-spacing: -.05em;
}

.spotlight-stats span {
    color: var(--muted);
    font-size: .64rem;
    font-weight: 600;
}

/* Inner hero */

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 55px 0 90px;
    background:
        radial-gradient(circle at 86% 20%, rgba(184, 217, 111, .16), transparent 30%),
        var(--green-950);
}

.inner-hero::after {
    position: absolute;
    right: -100px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, .35);
    --bs-breadcrumb-item-active-color: var(--lime);
    margin-bottom: 65px;
    font-size: .7rem;
    font-weight: 700;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
    color: var(--white);
}

.inner-hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(3.1rem, 6vw, 6rem);
    letter-spacing: -.06em;
    line-height: .98;
}

.inner-hero .col-lg-5 > p,
.inner-hero .col-lg-4 > p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 1.02rem;
}

/* About */

.about-media {
    position: relative;
    min-height: 640px;
    margin-right: 35px;
}

.about-media > img {
    width: 100%;
    height: 640px;
    border-radius: var(--radius-lg) 4px var(--radius-lg) 4px;
    object-fit: cover;
}

.about-media__note {
    position: absolute;
    right: -35px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 24px;
    border-radius: 12px 0 0 12px;
    background: var(--yellow);
    color: rgba(10, 38, 24, .72);
    box-shadow: var(--shadow-lg);
    font-size: .7rem;
    line-height: 1.5;
}

.about-media__note i {
    color: var(--green-900);
    font-size: 1.45rem;
}

.about-media__note strong {
    color: var(--green-950);
}

.about-principles {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.about-principles > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 19px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.about-principles i {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
}

.about-principles span {
    color: var(--muted);
    font-size: .72rem;
}

.about-principles strong {
    display: block;
    color: var(--green-950);
    font-size: .88rem;
}

.development-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.development-track::before {
    position: absolute;
    top: 76px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: var(--green-200);
    content: "";
}

.development-track article {
    position: relative;
    z-index: 1;
    padding: 25px;
    text-align: center;
}

.development-track article > span {
    display: block;
    margin-bottom: 17px;
    color: var(--green-500);
    font-size: .62rem;
    font-weight: 800;
}

.development-track__icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    place-items: center;
    border: 8px solid var(--cream);
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 0 0 1px var(--green-200);
    font-size: 1.25rem;
}

.development-track h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.development-track p {
    color: var(--muted);
    font-size: .76rem;
}

.values-list {
    border-top: 1px solid var(--line);
}

.values-list article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 27px 0;
    border-bottom: 1px solid var(--line);
}

.values-list article > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green-600);
    font-size: .65rem;
    font-weight: 800;
}

.values-list h3 {
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.values-list p {
    color: var(--muted);
    font-size: .82rem;
}

.about-vision {
    padding-top: 0;
}

.about-vision__panel {
    padding: 70px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 5%, rgba(184, 217, 111, .16), transparent 32%),
        var(--green-900);
}

.about-vision__panel h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.about-vision__panel p {
    color: rgba(255, 255, 255, .65);
}

/* Product catalogue */

.products-hero h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
}

.catalogue-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 45px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.catalogue-toolbar__title span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .68rem;
}

.catalogue-toolbar__title strong {
    color: var(--green-900);
    font-size: .9rem;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.product-filters button {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    color: var(--muted);
    font-family: inherit;
    font-size: .68rem;
    font-weight: 800;
}

.product-filters button:hover,
.product-filters button.active {
    border-color: var(--green-700);
    background: var(--green-700);
    color: var(--white);
}

.product-grid__item {
    transition: opacity .25s ease, transform .25s ease;
}

.product-grid__item.is-filtered-out {
    display: none;
}

.product-empty {
    margin: 40px 0 0;
    padding: 25px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--muted);
    text-align: center;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.selection-grid article {
    min-height: 215px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.selection-grid i {
    margin-bottom: 30px;
    color: var(--green-600);
    font-size: 1.45rem;
}

.selection-grid h3 {
    font-size: 1.05rem;
}

.selection-grid p {
    color: var(--muted);
    font-size: .75rem;
}

/* Product detail */

.product-detail-hero {
    position: relative;
    padding: 42px 0 0;
    background:
        radial-gradient(circle at 85% 5%, rgba(184, 217, 111, .2), transparent 24%),
        linear-gradient(to bottom, var(--cream) 0%, #fff 100%);
}

.product-detail-hero .breadcrumb {
    --bs-breadcrumb-divider-color: #a7b0a9;
    --bs-breadcrumb-item-active-color: var(--green-600);
    margin-bottom: 50px;
}

.product-detail-hero .breadcrumb a {
    color: var(--muted);
}

.product-detail-copy__category,
.product-detail-copy__model {
    display: inline-block;
    margin: 0 7px 18px 0;
    padding: 7px 11px;
    border-radius: 100px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-detail-copy__category {
    background: var(--green-100);
    color: var(--green-700);
}

.product-detail-copy__model {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--muted);
}

.product-detail-copy h1 {
    margin-bottom: 25px;
    font-size: clamp(3rem, 5.4vw, 5.3rem);
    letter-spacing: -.06em;
}

.product-detail-copy > p {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.03rem;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail-media {
    position: relative;
    display: grid;
    min-height: 560px;
    overflow: hidden;
    place-items: center;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .7), transparent),
        var(--green-100);
}

.product-detail-media::before {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 290px;
    height: 290px;
    border: 1px solid rgba(23, 69, 45, .14);
    border-radius: 50%;
    content: "";
}

.product-detail-media img {
    position: relative;
    z-index: 1;
    width: 91%;
    height: 89%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-detail-media__mark {
    position: absolute;
    right: 26px;
    bottom: 20px;
    color: rgba(23, 69, 45, .32);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-detail-media__fallback {
    display: grid;
    place-items: center;
    color: var(--green-600);
}

.product-detail-media__fallback i {
    margin-bottom: 20px;
    font-size: 6rem;
}

.product-detail-media__fallback span {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-highlight-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    margin-bottom: -52px;
    border-radius: var(--radius);
    background: var(--green-900);
    box-shadow: var(--shadow-lg);
}

.product-highlight-bar > div {
    display: flex;
    min-height: 104px;
    align-items: center;
    gap: 13px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.product-highlight-bar > div:last-child {
    border-right: 0;
}

.product-highlight-bar span {
    color: var(--lime);
    font-size: .6rem;
    font-weight: 800;
}

.product-highlight-bar strong {
    color: var(--white);
    font-size: .77rem;
    line-height: 1.45;
}

.product-overview {
    padding-top: 155px;
}

.product-overview h2,
.specifications-section h2 {
    margin-bottom: 30px;
    font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.feature-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-check-list li {
    display: flex;
    min-height: 86px;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #435149;
    font-size: .76rem;
    line-height: 1.55;
}

.feature-check-list i {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    font-size: .65rem;
}

.advantage-panel {
    height: 100%;
    padding: 42px;
    border-radius: var(--radius-lg);
    background: var(--green-900);
}

.advantage-panel h2 {
    color: var(--white);
}

.advantage-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.advantage-panel li {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 17px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.advantage-panel li > span {
    color: var(--lime);
    font-size: .62rem;
    font-weight: 800;
}

.advantage-panel p {
    color: rgba(255, 255, 255, .72);
    font-size: .79rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 240px;
    gap: 15px;
}

.product-gallery__item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: var(--white);
}

.product-gallery__item--main {
    grid-row: span 2;
}

.product-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .5s ease;
}

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

.product-gallery__item > span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 100px;
    background: rgba(16, 54, 33, .9);
    color: var(--white);
    font-size: .58rem;
    font-weight: 800;
}

.spec-intro {
    position: sticky;
    top: 125px;
}

.spec-intro p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .83rem;
}

.spec-table-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.spec-table {
    margin: 0;
}

.spec-table th,
.spec-table td {
    padding: 17px 22px;
    border-color: var(--line);
    font-size: .79rem;
    vertical-align: middle;
}

.spec-table th {
    width: 42%;
    background: var(--cream);
    color: var(--green-900);
    font-weight: 800;
}

.spec-table td {
    color: #4f5c54;
}

.image-lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    padding: 50px;
    place-items: center;
    background: rgba(4, 20, 11, .93);
    backdrop-filter: blur(10px);
}

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

.image-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    border-radius: 14px;
    background: var(--white);
}

.image-lightbox__close {
    position: absolute;
    top: 25px;
    right: 25px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

/* Contact */

.contact-form-card {
    padding: 45px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-form-card > h2,
.contact-details-card > h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.contact-form-card > p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: .78rem;
}

.form-label {
    margin-bottom: 7px;
    color: var(--green-900);
    font-size: .72rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background-color: #fcfcfa;
    color: var(--ink);
    font-size: .79rem;
}

textarea.form-control {
    min-height: 135px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(47, 125, 75, .12);
}

.form-control::placeholder {
    color: #9ca49e;
}

.form-note {
    color: var(--muted);
    font-size: .65rem;
}

.form-note i {
    margin-right: 5px;
    color: var(--green-600);
}

.form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    display: flex;
    gap: 13px;
    margin-bottom: 28px;
    border: 0;
    border-radius: 12px;
    font-size: .75rem;
}

.alert > i {
    margin-top: 3px;
    font-size: 1.1rem;
}

.contact-details-card {
    position: sticky;
    top: 125px;
    padding: 45px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 5%, rgba(184, 217, 111, .15), transparent 27%),
        var(--green-900);
}

.contact-details-card h2 {
    color: var(--white);
}

.contact-details-card > p {
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
}

.contact-detail-list {
    margin-top: 35px;
}

.contact-detail-list > a,
.contact-detail-list > div {
    display: grid;
    grid-template-columns: 48px 1fr 18px;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: var(--white);
}

.contact-detail-list > div {
    grid-template-columns: 48px 1fr;
}

.contact-detail-list > a > span,
.contact-detail-list > div > span {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--lime);
}

.contact-detail-list small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .5);
    font-size: .61rem;
}

.contact-detail-list strong {
    display: block;
    color: var(--white);
    font-size: .77rem;
    font-weight: 700;
    word-break: break-word;
}

.contact-detail-list > a > i {
    color: rgba(255, 255, 255, .45);
    font-size: .68rem;
}

.contact-hours {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 28px;
    padding: 17px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: var(--lime);
}

.contact-hours p {
    color: rgba(255, 255, 255, .6);
    font-size: .66rem;
}

.contact-hours strong {
    display: block;
    color: var(--white);
    font-size: .75rem;
}

.contact-hours span {
    display: block;
}

.map-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    background: var(--cream);
}

.map-section iframe {
    display: block;
    border: 0;
    filter: saturate(.65) contrast(1.05);
}

.map-card {
    position: absolute;
    top: 50%;
    left: max(30px, calc((100vw - 1240px) / 2));
    width: min(370px, calc(100% - 60px));
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%);
}

.map-card > span {
    display: block;
    margin-bottom: 6px;
    color: var(--green-600);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.map-card > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--green-950);
}

.map-card p {
    color: var(--muted);
    font-size: .75rem;
}

.map-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: .7rem;
    font-weight: 800;
}

/* 404 */

.error-section {
    display: grid;
    min-height: 680px;
    padding: 90px 0;
    place-items: center;
    background: var(--cream);
}

.error-panel {
    max-width: 750px;
    margin: auto;
    text-align: center;
}

.error-panel__code {
    margin-bottom: -35px;
    color: var(--green-100);
    font-size: clamp(8rem, 22vw, 16rem);
    font-weight: 800;
    letter-spacing: -.11em;
    line-height: .8;
}

.error-panel h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.error-panel p {
    margin-bottom: 30px;
    color: var(--muted);
}

/* Footer */

.pre-footer {
    position: relative;
    z-index: 2;
    margin-bottom: -1px;
    padding: 0 0 70px;
    background: var(--white);
}

.section--soft + .pre-footer {
    background: var(--cream);
}

.pre-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 12%, rgba(184, 217, 111, .16), transparent 30%),
        var(--green-800);
}

.pre-footer h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.pre-footer p {
    color: rgba(255, 255, 255, .65);
}

.pre-footer .btn {
    flex: 0 0 auto;
}

.site-footer {
    padding: 80px 0 0;
    background: var(--green-950);
    color: rgba(255, 255, 255, .65);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 24px;
    padding: 13px 16px;
    border-radius: 9px;
    background: var(--white);
}

.footer-brand img {
    display: block;
    width: 210px;
    height: auto;
}

.footer-intro {
    max-width: 355px;
    font-size: .78rem;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 26px;
}

.social-links a {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: rgba(255, 255, 255, .65);
}

.social-links a:hover {
    border-color: var(--lime);
    background: var(--lime);
    color: var(--green-950);
    transform: translateY(-2px);
}

.footer-heading {
    margin: 7px 0 22px;
    color: var(--white);
    font-size: .82rem;
    letter-spacing: .04em;
}

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

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, .58);
    font-size: .75rem;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-contact {
    margin: 0;
    font-style: normal;
}

.footer-contact > a,
.footer-contact > p {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    line-height: 1.55;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--lime);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .4);
    font-size: .63rem;
}

.back-to-top {
    position: fixed;
    z-index: 1010;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green-950);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Reveal */

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */

@media (max-width: 1199.98px) {
    .site-header .nav-link {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .site-header .nav-link.dropdown-toggle {
        padding-right: 24px !important;
    }

    .header-cta {
        padding-right: 14px;
        padding-left: 14px;
        font-size: .78rem;
    }

    .hero-copy h1 {
        font-size: 4.8rem;
    }

    .hero-visual__frame {
        height: 520px;
    }

    .solution-card {
        min-height: 340px;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 85px 0;
    }

    .site-header .navbar {
        min-height: 76px;
    }

    .home-hero {
        padding: 75px 0 100px;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-copy h1 {
        font-size: clamp(3.7rem, 10vw, 6rem);
    }

    .hero-visual {
        max-width: 720px;
        margin: 10px auto 0;
    }

    .hero-visual__frame {
        height: 580px;
    }

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

    .trust-strip__grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-strip__grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .one-pass-visual {
        min-height: 600px;
        margin: 0 20px 20px 0;
    }

    .why-panel {
        padding: 55px;
    }

    .why-grid {
        margin-top: 15px;
    }

    .spotlight-media {
        min-height: 500px;
    }

    .inner-hero {
        padding-bottom: 75px;
    }

    .inner-hero .col-lg-5 > p,
    .inner-hero .col-lg-4 > p {
        max-width: 680px;
    }

    .about-media {
        max-width: 720px;
        margin-right: 20px;
    }

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

    .development-track::before {
        display: none;
    }

    .catalogue-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-filters {
        justify-content: flex-start;
    }

    .product-detail-copy {
        padding-bottom: 10px;
    }

    .product-highlight-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-highlight-bar > div:nth-child(2) {
        border-right: 0;
    }

    .product-highlight-bar > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .spec-intro,
    .contact-details-card {
        position: static;
    }

    .pre-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .section {
        padding: 70px 0;
    }

    .utility-bar {
        font-size: .65rem;
    }

    .navbar-brand img {
        width: 180px;
    }

    .home-hero {
        min-height: auto;
        padding-top: 60px;
    }

    .hero-copy h1 {
        font-size: clamp(3.2rem, 16vw, 5.1rem);
    }

    .hero-visual {
        padding-left: 18px;
    }

    .hero-visual__frame {
        height: 480px;
        border-radius: 4px 70px 4px 4px;
    }

    .hero-float--bottom {
        right: 0;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 2.45rem;
    }

    .solution-card {
        min-height: 310px;
    }

    .product-card__media {
        height: 270px;
    }

    .one-pass-visual {
        min-height: 500px;
    }

    .why-panel {
        padding: 38px 25px;
        border-radius: 24px;
    }

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

    .why-grid article {
        min-height: 190px;
    }

    .spotlight-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .spotlight-stats > div {
        min-width: 0;
        padding: 0 12px;
    }

    .spotlight-media {
        min-height: 420px;
    }

    .breadcrumb {
        margin-bottom: 45px;
    }

    .inner-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .about-media,
    .about-media > img {
        min-height: 520px;
        height: 520px;
    }

    .about-vision__panel {
        padding: 42px 28px;
    }

    .development-track {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .development-track article {
        padding: 20px 30px 30px;
        border-bottom: 1px solid var(--line);
    }

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

    .selection-grid article {
        min-height: 190px;
    }

    .product-detail-hero .breadcrumb {
        margin-bottom: 35px;
    }

    .product-detail-media {
        min-height: 460px;
    }

    .product-highlight-bar {
        margin-top: 45px;
    }

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

    .product-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 290px;
    }

    .product-gallery__item--main {
        grid-row: auto;
    }

    .spec-table th,
    .spec-table td {
        padding: 14px 15px;
    }

    .contact-form-card,
    .contact-details-card {
        padding: 32px 25px;
    }

    .map-section {
        padding-top: 300px;
    }

    .map-card {
        top: 30px;
        right: 20px;
        left: 20px;
        width: auto;
        transform: none;
    }

    .pre-footer {
        padding-bottom: 45px;
    }

    .pre-footer__inner {
        padding: 40px 28px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 45px;
    }
}

@media (max-width: 575.98px) {
    .hero-actions .btn,
    .product-detail-actions .btn {
        width: 100%;
    }

    .hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .hero-visual__frame {
        height: 390px;
    }

    .hero-float--top {
        max-width: 245px;
    }

    .hero-float--bottom {
        padding: 13px 16px;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid > div {
        min-height: 85px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .one-pass-visual {
        min-height: 430px;
    }

    .one-pass-visual__badge {
        right: -15px;
        bottom: 20px;
    }

    .spotlight-stats strong {
        font-size: 1.2rem;
    }

    .about-media,
    .about-media > img {
        min-height: 440px;
        height: 440px;
    }

    .about-media__note {
        right: -15px;
        bottom: 25px;
    }

    .catalogue-toolbar {
        gap: 20px;
    }

    .product-filters {
        overflow-x: auto;
        width: 100%;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .product-filters button {
        flex: 0 0 auto;
    }

    .product-detail-media {
        min-height: 360px;
    }

    .product-highlight-bar {
        grid-template-columns: 1fr;
    }

    .product-highlight-bar > div {
        min-height: 80px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .product-highlight-bar > div:last-child {
        border-bottom: 0;
    }

    .product-overview {
        padding-top: 130px;
    }

    .advantage-panel {
        padding: 32px 24px;
    }

    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
    }

    .spec-table th {
        padding-bottom: 5px;
        border-bottom: 0;
    }

    .spec-table td {
        padding-top: 5px;
    }

    .image-lightbox {
        padding: 18px;
    }

    .contact-form-card > h2,
    .contact-details-card > h2 {
        font-size: 2.15rem;
    }
}
