@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
    --blue: #003d6e;
    --blue-deep: #062e50;
    --green: #009645;
    --green-bright: #10ad62;
    --ink: #10283a;
    --muted: #5e7180;
    --cream: #f4f7f5;
    --white: #fff;
    --line: #dbe5e3;
    --radius: 22px;
    --shadow: 0 22px 60px rgba(0, 49, 84, 0.13);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a,
body,
button {
    font-family: DM Sans, Arial, sans-serif;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
}
a,
button {
    color: inherit;
}
.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    background: var(--blue);
    color: #fff;
    padding: 12px 18px;
    z-index: 1000;
    border-radius: 8px;
}
.skip-link:focus {
    top: 12px;
}
:focus-visible {
    outline: 3px solid #f6bd34;
    outline-offset: 3px;
}
.header {
    height: 84px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 61, 110, 0.08);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand img {
    width: 190px;
    height: auto;
}
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
}
.nav > a:not(.button) {
    position: relative;
}
.nav > a:not(.button):after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--green);
    transition: 0.25s;
}
.nav > a:not(.button):hover:after {
    right: 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--blue);
    margin: 5px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid var(--green);
    box-shadow: 0 12px 24px rgba(0, 150, 69, 0.18);
    transition:
            transform 0.25s,
            box-shadow 0.25s,
            background 0.25s;
}
.button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.button:hover {
    transform: translateY(-2px);
    background: #007e3b;
    box-shadow: 0 16px 32px rgba(0, 150, 69, 0.25);
}
.button-small {
    min-height: 42px;
    padding: 10px 18px;
}
.hero {
    background: linear-gradient(135deg, #f7faf9, #edf5f2);
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(0, 150, 69, 0.12);
    border-radius: 50%;
    left: -260px;
    top: 80px;
    box-shadow:
            0 0 0 80px rgba(0, 150, 69, 0.025),
            0 0 0 160px rgba(0, 61, 110, 0.02);
}
.hero-grid {
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    grid-gap: 72px;
    gap: 72px;
    padding-top: 54px;
    padding-bottom: 54px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--green);
    margin: 0 0 18px;
}
.eyebrow span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--green);
    vertical-align: middle;
    margin-right: 9px;
}
.final-cta h2,
.hero h1,
.section h2 {
    font-family: Manrope, sans-serif;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0;
    color: var(--blue);
}
.hero h1 {
    font-size: clamp(43px, 5.25vw, 72px);
    max-width: 700px;
}
.hero h1 em {
    color: var(--green);
    font-style: normal;
    position: relative;
}
.hero h1 em:after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -2px;
    height: 8px;
    border-bottom: 3px solid rgba(0, 150, 69, 0.35);
    border-radius: 50%;
}
.hero-text {
    font-size: 18px;
    color: var(--muted);
    max-width: 590px;
    margin: 28px 0;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.text-link {
    font-weight: 700;
    color: var(--blue);
    border-bottom: 1px solid rgba(0, 61, 110, 0.4);
    padding-bottom: 2px;
}
.text-link:hover {
    color: var(--green);
}
.hero-points {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #526b77;
}
.hero-points span {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #d9efe2;
    color: var(--green);
    margin-right: 5px;
}
.hero-visual {
    position: relative;
    padding: 15px 16px 30px 50px;
}
.hero-image-wrap {
    height: 580px;
    border-radius: 180px 22px 22px 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.hero-image-wrap:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            transparent 65%,
            rgba(0, 32, 56, 0.25)
    );
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icon-box svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linejoin: round;
    stroke-linecap: round;
}
.hero-stamp {
    position: absolute;
    right: -18px;
    top: 50px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: var(--blue);
    border: 5px solid #edf5f2;
    color: #fff;
    text-align: center;
    display: grid;
    place-content: center;
    font-size: 8px;
    line-height: 1.25;
    letter-spacing: 0.1em;
    transform: rotate(7deg);
}
.hero-stamp strong {
    font-size: 20px;
    letter-spacing: 0;
}
.trust-strip {
    background: var(--blue);
    color: #fff;
    padding: 24px 0;
    overflow: hidden;
}
.marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
            90deg,
            transparent,
            #000 8%,
            #000 92%,
            transparent
    );
    mask-image: linear-gradient(
            90deg,
            transparent,
            #000 8%,
            #000 92%,
            transparent
    );
}
.segments {
    width: max-content;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    animation: marquee 30s linear infinite;
}
.segment-set,
.segments {
    display: flex;
    align-items: center;
}
.segment-set {
    gap: 28px;
    padding-right: 28px;
    white-space: nowrap;
}
.segments i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-bright);
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}
.section {
    padding: 110px 0;
}
.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 52px;
}
.faq h2,
.process h2,
.product-intro h2,
.section-heading h2,
.technology h2 {
    font-size: clamp(34px, 4vw, 52px);
}
.section-heading > p:last-child {
    color: var(--muted);
    font-size: 17px;
    max-width: 640px;
    margin: 19px auto 0;
}
.benefits {
    background: #fff;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 18px;
    gap: 18px;
}
.benefit-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 25px;
    position: relative;
    transition: 0.3s;
    background: #fff;
}
.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(0, 61, 110, 0.09);
    border-color: transparent;
}
.card-number {
    position: absolute;
    right: 22px;
    top: 22px;
    color: #afc3c4;
    font-size: 11px;
    font-weight: 700;
}
.icon-box {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--green);
    background: #eaf7f0;
    margin-bottom: 27px;
}
.benefit-card h3 {
    font-family: Manrope;
    color: var(--blue);
    font-size: 19px;
    margin: 0 0 12px;
}
.benefit-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}
.process {
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.process:after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025);
}
.process-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    grid-gap: 110px;
    gap: 110px;
    position: relative;
    z-index: 1;
}
.eyebrow.light {
    color: #62d391;
}
.final-cta h2,
.process h2,
.product-intro h2 {
    color: #fff;
}
.process-intro > p:not(.eyebrow),
.product-intro > p:not(.eyebrow) {
    color: #bad0de;
    font-size: 16px;
    margin: 22px 0 30px;
}
.button-light {
    background: #fff;
    color: var(--blue);
    border-color: #fff;
    box-shadow: none;
}
.button-light:hover {
    background: #eaf7f0;
    color: var(--blue);
}
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.steps li {
    display: flex;
    gap: 28px;
    padding: 0 0 34px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.steps li:last-child {
    margin-bottom: 0;
}
.steps li > span {
    color: #53c984;
    font-family: Manrope;
    font-size: 13px;
    font-weight: 800;
}
.steps h3 {
    font-family: Manrope;
    font-size: 23px;
    margin: 0 0 7px;
}
.steps p {
    color: #b8ccd9;
    margin: 0;
    font-size: 15px;
}
.portfolio {
    background: #f5f8f7;
}
.section-heading.split {
    max-width: none;
    text-align: left;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    grid-gap: 90px;
    gap: 90px;
}
.section-heading.split > p:last-child {
    margin: 0;
    color: var(--muted);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 260px;
    grid-gap: 16px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ddd;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gallery-item.item-2,
.gallery-item.item-6 {
    background: #e8eeec;
}
.gallery-item.item-7 {
    background: #191d1c;
}
.gallery-item.item-2:before,
.gallery-item.item-6:before {
    content: "";
    position: absolute;
    inset: -18px;
    background-position: 50%;
    background-size: cover;
    filter: blur(15px) saturate(0.9);
    opacity: 0.72;
    transform: scale(1.08);
    pointer-events: none;
}
.gallery-item.item-2:before {
    background-image:
            linear-gradient(
                    rgba(0, 61, 110, 0.08),
                    rgba(0, 61, 110, 0.08)
            ),
            url("imgs/jim_store.jpeg");
}
.gallery-item.item-6:before {
    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.08),
                    rgba(255, 255, 255, 0.08)
            ),
            url("imgs/lovely.jpeg");
}
.gallery-item.item-2 img,
.gallery-item.item-6 img,
.gallery-item.item-7 img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    animation: none;
}
.gallery-item.item-2 img,
.gallery-item.item-6 img {
    width: calc(100% - 22px);
    height: calc(100% - 14px);
    margin: 7px 11px;
    border-radius: 13px;
    box-shadow: 0 8px 24px rgba(0, 28, 48, 0.14);
}
.gallery-item.item-2:hover img,
.gallery-item.item-6:hover img,
.gallery-item.item-7:hover img {
    transform: none;
}
.gallery-item:hover img {
    transform: scale(1.035);
}
.item-1 {
    grid-column: span 5;
    grid-row: span 2;
}
.item-2 {
    grid-column: span 4;
}
.item-3,
.item-4 {
    grid-column: span 3;
}
.item-5 {
    grid-column: span 4;
}
.item-6,
.item-7 {
    grid-column: span 6;
}
.center-action {
    text-align: center;
    margin-top: 42px;
}
.button-outline {
    background: transparent;
    color: var(--blue);
    border-color: #b6caca;
    box-shadow: none;
}
.button-outline:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.technology {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbfa, #edf5f3);
}
.technology:before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 150, 69, 0.13);
    border-radius: 50%;
    right: -230px;
    top: -250px;
    box-shadow:
            0 0 0 70px rgba(0, 61, 110, 0.035),
            0 0 0 140px rgba(0, 150, 69, 0.025);
    pointer-events: none;
}
.technology > .container {
    position: relative;
    z-index: 1;
}
.technology-head {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-gap: 90px;
    gap: 90px;
    align-items: end;
    margin-bottom: 54px;
}
.technology-head h2 {
    max-width: 650px;
    margin-top: 16px;
}
.technology-intro > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 570px;
}
.technology-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 150, 69, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 35px rgba(0, 61, 110, 0.06);
}
.technology-highlight span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.technology-highlight strong {
    font-size: 15px;
    color: var(--blue);
}
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 18px;
    gap: 18px;
}
.equipment-card {
    display: grid;
    grid-template-columns: 44% 1fr;
    min-height: 225px;
    overflow: hidden;
    border: 1px solid rgba(0, 61, 110, 0.09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(0, 45, 73, 0.07);
    transition:
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.45s,
            border-color 0.45s;
}
.equipment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 150, 69, 0.24);
    box-shadow: 0 24px 58px rgba(0, 45, 73, 0.13);
}
.equipment-image {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 18px;
    background: linear-gradient(145deg, #fff, #eef4f2);
    overflow: hidden;
}
.equipment-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            120deg,
            transparent 35%,
            rgba(255, 255, 255, 0.65) 50%,
            transparent 65%
    );
    transform: translateX(-130%);
    transition: transform 0.8s;
}
.equipment-card:hover .equipment-image:after {
    transform: translateX(130%);
}
.equipment-image img {
    width: 100%;
    height: 100%;
    max-height: 190px;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.equipment-card:hover .equipment-image img {
    transform: scale(1.045);
}
.equipment-image span {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.equipment-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}
.equipment-copy h3 {
    font-size: 21px;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 12px;
}
.equipment-copy p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}
.products {
    background: #073451;
    color: #fff;
}
.product-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-gap: 100px;
    gap: 100px;
}
.product-intro {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    align-self: start;
}
.product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.product-list div {
    display: flex;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 10px;
}
.product-list div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.product-list span {
    font-size: 10px;
    color: #58cc8a;
}
.product-list strong {
    font-family: Manrope;
    font-size: 16px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    grid-gap: 110px;
    gap: 110px;
}
.faq-intro p:not(.eyebrow) {
    color: var(--muted);
    margin: 20px 0;
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: 0;
    padding: 23px 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.faq-item button b {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf5f2;
    color: var(--green);
    font-size: 20px;
    font-weight: 400;
    transition: 0.3s;
}
.faq-item.active button b {
    transform: rotate(45deg);
    background: var(--green);
    color: #fff;
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s;
}
.faq-answer p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}
.faq-item.active .faq-answer p {
    padding-bottom: 24px;
}
.final-cta {
    padding: 20px 0 100px;
}
.cta-card {
    background: linear-gradient(115deg, var(--blue), #075b78);
    color: #fff;
    border-radius: 26px;
    padding: 60px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}
.cta-card:after {
    content: "";
    position: absolute;
    right: -90px;
    top: -120px;
    width: 330px;
    height: 330px;
    border: 55px solid rgba(0, 150, 69, 0.25);
    border-radius: 50%;
}
.cta-card > a,
.cta-card > div {
    position: relative;
    z-index: 1;
}
.cta-card h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    max-width: 650px;
}
.cta-card p:not(.eyebrow) {
    color: #c7d9e2;
    max-width: 650px;
}
.cta-card > a {
    flex: 0 0 auto;
}
footer {
    background: #f1f5f4;
    padding: 64px 0 22px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 70px;
    gap: 70px;
    padding-bottom: 45px;
}
.footer-brand img {
    width: 190px;
}
.footer-brand p {
    max-width: 310px;
    color: var(--muted);
    font-size: 14px;
}
footer h2 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue);
    margin: 5px 0 16px;
}
footer a {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin: 6px 0;
}
footer a:hover {
    color: var(--green);
}
.footer-icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}
.footer-icon-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
}
.footer-bottom {
    border-top: 1px solid #d8e3e0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #7c8d96;
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #20ba5a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 90;
    transition: 0.25s;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
}
.whatsapp-float svg {
    width: 31px;
    fill: #fff;
}
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
            opacity 0.65s var(--delay, 0s),
            transform 0.65s var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.header {
    animation: header-arrive 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.brand img {
    transition:
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.45s;
}
.brand:hover img {
    transform: scale(1.025);
    filter: drop-shadow(0 7px 10px rgba(0, 61, 110, 0.15));
}
.hero-copy .eyebrow {
    animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.hero-copy h1 {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}
.hero-copy .hero-text {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}
.hero-copy .hero-actions {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}
.hero-image-wrap {
    animation: visual-reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.hero-image-wrap img {
    animation: hero-breathe 12s ease-in-out infinite alternate;
}
.hero-stamp {
    animation: stamp-float 4.8s ease-in-out infinite;
}
.button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.button:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -2px auto -2px -45%;
    width: 34%;
    background: linear-gradient(
            100deg,
            transparent,
            rgba(255, 255, 255, 0.36),
            transparent
    );
    transform: skewX(-18deg);
    transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:hover:before {
    left: 115%;
}
.benefit-card:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(
            circle at 25% 0,
            rgba(0, 150, 69, 0.09),
            transparent 42%
    );
    opacity: 0;
    transition: opacity 0.4s;
}
.benefit-card:hover:after {
    opacity: 1;
}
.benefit-card:hover .icon-box {
    transform: rotate(-5deg) scale(1.08);
}
.icon-box {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.steps li.visible > span {
    animation: step-pulse 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.steps li {
    transition:
            border-color 0.35s,
            transform 0.35s;
}
.steps li:hover {
    transform: translateX(7px);
    border-color: rgba(98, 211, 145, 0.45);
}
.gallery-item:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
            120deg,
            transparent 35%,
            rgba(255, 255, 255, 0.14) 50%,
            transparent 65%
    );
    transform: translateX(-120%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover:after {
    transform: translateX(120%);
}
.gallery-item:hover img {
    filter: saturate(1.06) contrast(1.03);
}
.products:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(
                    circle at 15% 40%,
                    rgba(0, 150, 69, 0.14),
                    transparent 27%
            ),
            radial-gradient(
                    circle at 88% 70%,
                    rgba(72, 152, 186, 0.09),
                    transparent 25%
            );
    animation: ambient-drift 12s ease-in-out infinite alternate;
}
.products {
    position: relative;
    overflow: hidden;
}
.products > .container {
    position: relative;
    z-index: 1;
}
.product-list div {
    transition:
            background 0.35s,
            padding-left 0.35s;
}
.product-list div:hover {
    background: rgba(255, 255, 255, 0.035);
    padding-left: 18px;
}
.product-list div:hover span {
    color: #fff;
}
.product-list span {
    transition: color 0.3s;
}
.faq-item button span {
    transition:
            color 0.3s,
            transform 0.3s;
}
.faq-item button:hover span {
    color: var(--green);
    transform: translateX(4px);
}
.faq-item button:hover b {
    box-shadow: 0 0 0 7px rgba(0, 150, 69, 0.07);
}
.cta-card:before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    left: -110px;
    bottom: -145px;
    background: rgba(22, 189, 99, 0.22);
    filter: blur(2px);
    animation: cta-orbit 8s ease-in-out infinite alternate;
}
.cta-card.visible {
    animation: cta-lift 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.whatsapp-float:after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(32, 186, 90, 0.42);
    border-radius: 50%;
    animation: whatsapp-ring 2.5s ease-out infinite;
}
.footer-brand img {
    transition: transform 0.45s;
}
.footer-brand:hover img {
    transform: translateY(-3px);
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

@keyframes header-arrive {
    0% {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes hero-rise {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes visual-reveal {
    0% {
        opacity: 0;
        transform: translateX(34px) scale(0.97);
        -webkit-clip-path: inset(
                0 0 100% 0 round 180px 22px 22px 22px
        );
        clip-path: inset(0 0 100% 0 round 180px 22px 22px 22px);
    }
    to {
        opacity: 1;
        transform: none;
        -webkit-clip-path: inset(0 round 180px 22px 22px 22px);
        clip-path: inset(0 round 180px 22px 22px 22px);
    }
}
@keyframes hero-breathe {
    0% {
        transform: scale(1.01);
    }
    to {
        transform: scale(1.055);
    }
}
@keyframes stamp-float {
    0%,
    to {
        transform: rotate(7deg) translateY(0);
    }
    50% {
        transform: rotate(4deg) translateY(-8px);
    }
}
@keyframes step-pulse {
    0% {
        opacity: 0;
        transform: scale(0.65);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes ambient-drift {
    0% {
        transform: translate3d(-1%, 0, 0) scale(1);
    }
    to {
        transform: translate3d(1.5%, -1%, 0) scale(1.06);
    }
}
@keyframes cta-orbit {
    0% {
        transform: translate(0) scale(1);
    }
    to {
        transform: translate(48px, -28px) scale(1.18);
    }
}
@keyframes cta-lift {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes whatsapp-ring {
    0% {
        opacity: 0.75;
        transform: scale(0.78);
    }
    70%,
    to {
        opacity: 0;
        transform: scale(1.25);
    }
}
@media (min-width: 981px) {
    .hero {
        background-color: #fff;
        background-image:
                linear-gradient(
                        90deg,
                        #fff,
                        #fff 36%,
                        rgba(255, 255, 255, 0.98) 44%,
                        rgba(255, 255, 255, 0.82) 51%,
                        rgba(255, 255, 255, 0.35) 58%,
                        rgba(255, 255, 255, 0.08) 65%,
                        rgba(255, 255, 255, 0) 70%
                ),
                url("imgs/sacolas.jpeg");
        background-repeat: no-repeat;
        background-position: 50%, 100%;
        background-size: 100% 100%, auto 88%;
    }
    .hero:before {
        display: none;
    }
    .hero-grid {
        min-height: clamp(520px, 37vw, 620px);
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .hero-visual {
        visibility: hidden;
        pointer-events: none;
    }
    .hero-copy {
        position: relative;
        z-index: 2;
    }
}
@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }
    .nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 22px 24px 28px;
        box-shadow: 0 18px 30px rgba(0, 40, 70, 0.1);
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .nav.open {
        display: flex;
    }
    .nav .button {
        margin-top: 4px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 70px;
    }
    .hero-copy {
        text-align: center;
    }
    .hero-copy > * {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions,
    .hero-points {
        justify-content: center;
    }
    .hero-visual {
        max-width: 620px;
        width: 100%;
        margin: auto;
    }
    .hero-image-wrap {
        height: 620px;
    }
    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-grid,
    .process-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .product-intro {
        position: static;
    }
    .process-intro {
        max-width: 650px;
    }
    .section-heading.split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery {
        grid-auto-rows: 230px;
    }
    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6,
    .item-7 {
        grid-column: span 6;
    }
    .technology-head {
        gap: 24px;
    }
    .equipment-grid,
    .technology-head {
        grid-template-columns: 1fr;
    }
    .equipment-card {
        min-height: 210px;
    }
    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    :after,
    :before {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .segments {
        animation: none;
    }
    .cta-card.visible,
    .hero-copy .eyebrow,
    .hero-copy .hero-actions,
    .hero-copy .hero-text,
    .hero-copy h1,
    .hero-image-wrap,
    .hero-image-wrap img,
    .hero-stamp {
        animation: none !important;
    }
}