:root {
    --ink: #10241f;
    --muted: #5f706a;
    --green: #0b4a39;
    --green-2: #17634d;
    --mint: #e9f6ef;
    --cream: #fff6df;
    --paper: #f8faf5;
    --gold: #ffb000;
    --gold-dark: #c57900;
    --line: rgba(16, 36, 31, .12);
    --shadow: 0 24px 70px rgba(16, 36, 31, .15);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(255, 176, 0, .14), transparent 34rem), linear-gradient(180deg, #fbfdf8 0%, #f2f6ee 100%);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.6;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.top-strip {
    background: var(--green);
    color: white;
    font-size: .88rem;
}

.top-strip .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
}

.top-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 250, 245, .86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -.04em;
}

.brand-mark {
    width: 200px;
    height: 120px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--green);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #29433b;
    font-weight: 800;
    font-size: .94rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--mint);
    color: var(--green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: var(--green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 21px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--green);
    background: var(--gold);
    box-shadow: 0 15px 34px rgba(255, 176, 0, .32);
}

.btn-dark {
    color: white;
    background: var(--green);
    box-shadow: 0 15px 34px rgba(11, 74, 57, .24);
}

.btn-ghost {
    color: var(--green);
    background: white;
    border: 1px solid var(--line);
}

.btn-whatsapp {
    width: 100%;
    color: white;
    background: #25d366;
    box-shadow: 0 15px 34px rgba(37, 211, 102, .28);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 20px 0 56px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 12% -10% auto auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(11, 74, 57, .08);
    animation: float 6s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--green);
    background: var(--mint);
    font-size: .85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    line-height: 1.04;
    letter-spacing: -.055em;
}

h1 {
    margin: 0 0 20px;
    font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.4vw, 4.2rem);
}

h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.lead {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.23rem);
}

.hero-actions,
.split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-card {
    position: relative;
    padding: 18px;
    border-radius: 38px;
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow);
    animation: reveal .8s ease both;
}

.hero-video {
    width: 100%;
    aspect-ratio: 1.4;
    display: block;
    border-radius: 24px;
    background: var(--paper);
    object-fit: cover;
}

.hero-video-missing {
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 28px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed var(--line);
}

.hero-video-missing i {
    color: var(--gold-dark);
    font-size: 2rem;
}

.hero-video-missing span {
    font-weight: 800;
}

.floating-note {
    position: absolute;
    right: 2%;
    bottom: 7%;
    width: min(270px, 48%);
    padding: 18px;
    border-radius: 24px;
    color: white;
    background: rgba(11, 74, 57, .94);
    box-shadow: var(--shadow);
}

.floating-note strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.stat {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .72);
}

.stat strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.1rem;
    letter-spacing: -.04em;
}

.section {
    padding: 78px 0;
}

.compact-section {
    padding: 38px 0;
}

.section-alt {
    background: linear-gradient(135deg, rgba(11, 74, 57, .94), rgba(23, 99, 77, .96)), radial-gradient(circle at top right, rgba(255, 176, 0, .45), transparent 26rem);
    color: white;
}

.section-alt .lead,
.section-alt .card p,
.section-alt .list li {
    color: rgba(255, 255, 255, .78);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.section-head p {
    max-width: 560px;
    margin: 0;
    color: #fff;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 46px rgba(16, 36, 31, .08);
    transition: transform .24s ease, box-shadow .24s ease;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.section-alt .card {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
}

.icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--green);
    background: var(--gold);
    font-size: 1.35rem;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.corporate-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(233, 246, 239, .7));
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.corporate-tile {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 42px rgba(16, 36, 31, .08);
}

.corporate-tile>i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 17px;
    color: var(--green);
    background: linear-gradient(135deg, var(--gold), #ffe199);
    font-size: 1.35rem;
}

.corporate-tile p {
    margin: 0;
    color: var(--muted);
}

.corporate-panel {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(233, 246, 239, .86));
    box-shadow: 0 18px 46px rgba(16, 36, 31, .08);
}

.corporate-panel p {
    margin: 0;
    color: var(--muted);
}

.assurance-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--line);
    box-shadow: 0 18px 46px rgba(16, 36, 31, .08);
}

.assurance-strip div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    align-items: start;
    padding: 24px;
    background: rgba(255, 255, 255, .84);
}

.assurance-strip i {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--green);
    background: var(--mint);
    font-size: 1.15rem;
}

.assurance-strip strong {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.12rem;
    line-height: 1.15;
}

.assurance-strip span {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.45;
}

.split {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 48px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 1.08fr .92fr;
}

.feature-img {
    border-radius: 38px;
    box-shadow: var(--shadow);
}

.list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.list li {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.list i {
    margin-top: 5px;
    color: var(--gold-dark);
}

.page-hero {
    padding: 30px 0;
    background: radial-gradient(circle at 12% 28%, rgba(255, 174, 0, 0.399), transparent 26rem), linear-gradient(135deg, #f8faf5, #05331a7f);
}

.page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
    gap: 42px;
    align-items: center;
}

.breadcrumb {
    color: var(--green);
    font-weight: 900;
    margin-bottom: 16px;
}

.page-hero-aside {
    display: grid;
    justify-items: center;
    gap: 22px;
    align-self: stretch;
    align-content: center;
}

.page-hero-aside img {
    width: min(100%, 420px);
    max-height: 320px;
    object-fit: contain;
    border-radius: 28px;
    filter: drop-shadow(0 24px 42px rgba(16, 36, 31, .16));
}

.page-hero-aside .btn {
    width: min(100%, 432px);
}

.pallets-hero .container {
    grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
}

.pallets-hero .page-hero-aside img {
    width: min(100%, 540px);
    max-height: 390px;
}

.pallets-hero .page-hero-aside .btn {
    width: min(100%, 540px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 20px;
    background: var(--mint);
}

.product-showcase {
    position: relative;
    padding-top: 44px;
    background: radial-gradient(circle at 12% 28%, rgba(255, 174, 0, 0.399), transparent 26rem), linear-gradient(135deg, #f8faf5, #05331a7f);
}

.carousel {
    position: relative;
    padding: 10px 0 42px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 36px;
    padding: 8px 2px;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 6px 18px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    scroll-snap-align: start;
    min-width: 0;
}

.product-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(16, 36, 31, .1);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 245, .88)), var(--paper);
    box-shadow: 0 20px 54px rgba(16, 36, 31, .11);
    transition: transform .24s ease, box-shadow .24s ease;
}

.product-slide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-photo-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(233, 246, 239, .95), rgba(255, 246, 223, .95)), repeating-linear-gradient(45deg, rgba(11, 74, 57, .05) 0 8px, transparent 8px 16px);
}

.product-photo-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(11, 74, 57, .08);
    border-radius: 18px;
    pointer-events: none;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    mix-blend-mode: multiply;
    transition: transform .55s ease;
}

.product-slide:hover img {
    transform: scale(1.06);
}

.pallet-gallery-section {
    padding-top: 16px;
}

.pallet-gallery-section .section-head p {
    color: var(--muted);
}

.pallet-detail-carousel .carousel-track {
    grid-auto-columns: calc((100% - 48px) / 3);
}

.pallet-detail-slide {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 46px rgba(16, 36, 31, .08);
    transition: transform .24s ease, box-shadow .24s ease;
}

.pallet-detail-slide:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.pallet-detail-slide img {
    width: 100%;
    aspect-ratio: 1.42;
    object-fit: cover;
    background: var(--mint);
}

.pallet-detail-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.pallet-detail-copy>span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--green);
    background: var(--mint);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pallet-detail-copy p {
    margin: 0;
    color: var(--muted);
}

.pallet-detail-copy .specs {
    margin-top: auto;
    padding-top: 18px;
}

.carousel-btn {
    position: absolute;
    top: calc(50% - 12px);
    z-index: 3;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    color: var(--green);
    background: var(--gold);
    box-shadow: 0 16px 34px rgba(16, 36, 31, .18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .2s ease, opacity .2s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: -12px;
}

.carousel-btn.next {
    right: -12px;
}

.carousel-dots {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 74, 57, .2);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.carousel-dot.is-active {
    width: 28px;
    background: var(--gold);
}

.clientele-section {
    background: radial-gradient(circle at 90% 15%, rgba(255, 176, 0, .2), transparent 24rem), linear-gradient(180deg, rgba(233, 246, 239, .75), rgba(248, 250, 245, .92));
}

.clientele-carousel .carousel-track {
    grid-auto-columns: calc((100% - 72px) / 4);
}

.client-card {
    min-height: 268px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 46px rgba(16, 36, 31, .08);
}

.client-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 22px;
    color: var(--green);
    background: linear-gradient(135deg, var(--gold), #ffe199);
    font-size: 1.45rem;
}

.client-card p {
    margin: 0;
    color: var(--muted);
}

.specs {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.specs span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .95rem;
}

.process {
    counter-reset: steps;
}

.process .card::before {
    counter-increment: steps;
    content: "0" counter(steps);
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(11, 74, 57, .12);
    font-family: "Space Grotesk", sans-serif;
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
}

.contact-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 26px;
}

.presence-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 42px;
    align-items: center;
}

.presence-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.presence-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, .08);
    font-weight: 900;
}

.presence-list i {
    color: var(--gold);
}

.presence-map-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    box-shadow: var(--shadow);
}

.presence-map {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--mint);
}

.google-presence-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    user-select: none;
}

.map-marker {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(10, 38, 28, .22);
    font-size: .86rem;
    font-weight: 900;
    line-height: 1;
    transform: translate(-50%, -100%);
    pointer-events: none;
    white-space: nowrap;
}

.map-marker i {
    color: #d93025;
    font-size: 1.05rem;
}

.map-marker-haridwar {
    top: 30%;
    left: 53%;
}

.map-marker-noida {
    top: 37%;
    left: 51%;
}

.map-marker-indore {
    top: 65%;
    left: 46%;
}

.global-presence-map .map-marker-china {
    top: 29%;
    left: 70%;
}

.global-presence-map .map-marker-malaysia {
    top: 68%;
    left: 69%;
}

.global-presence-map .map-marker-dubai {
    top: 48%;
    left: 31%;
}

.global-presence-map .map-marker-indonesia {
    top: 78%;
    left: 78%;
}

.global-presence-map .map-marker-india {
    top: 51%;
    left: 49%;
}

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
    align-items: start;
}

.faq-aside {
    position: sticky;
    top: 128px;
}

.faq-aside .btn {
    width: 100%;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 38px rgba(16, 36, 31, .07);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: var(--ink);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--mint);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
    color: white;
    background: var(--green);
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
}

.form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    color: var(--ink);
    font: inherit;
}

.form textarea {
    min-height: 140px;
    resize: vertical;
}

.footer {
    padding: 54px 0 26px;
    color: rgba(255, 255, 255, .76);
    background: #082f25;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
}

.footer h3,
.footer h4 {
    color: white;
}

.footer a {
    display: block;
    margin: 8px 0;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, .08);
    font-size: .82rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    color: white;
    background: #25d366;
    box-shadow: 0 18px 42px rgba(18, 140, 80, .34);
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    background: #1fbd5a;
    box-shadow: 0 22px 50px rgba(18, 140, 80, .4);
}

.floating-whatsapp:focus-visible {
    outline: 3px solid rgba(255, 176, 0, .8);
    outline-offset: 4px;
}

.floating-whatsapp-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #25d366;
    background: white;
    font-size: 1.55rem;
}

.floating-whatsapp-text {
    white-space: nowrap;
}

[data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes float {
    50% {
        transform: translateY(22px) scale(1.03);
    }
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(24px) rotate(-1deg);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .top-strip .container {
        flex-direction: column;
        gap: 6px;
    }
    .menu-toggle {
        display: grid;
        place-items: center;
    }
    .nav-links {
        position: fixed;
        inset: 115px 20px auto;
        display: grid;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: white;
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: .22s ease;
    }
    .nav-links.open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-actions .btn {
        display: none;
    }
    .hero-grid,
    .split,
    .split.reverse,
    .page-hero .container,
    .contact-panel,
    .presence-grid,
    .faq-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .faq-aside {
        position: relative;
        top: auto;
    }
    .pallets-hero .container {
        grid-template-columns: 1fr;
    }
    .stats,
    .grid-4,
    .corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .assurance-strip,
    .corporate-panel {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .carousel-track,
    .clientele-carousel .carousel-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
    .pallet-detail-carousel .carousel-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 26px, 1180px);
    }
    .nav {
        min-height: 82px;
    }
    .brand {
        font-size: 1.35rem;
        gap: 10px;
    }
    .brand-mark {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }
    .hero {
        padding-top: 48px;
    }
    h1 {
        font-size: clamp(2.8rem, 16vw, 4.2rem);
    }
    .grid-3,
    .grid-4,
    .stats,
    .corporate-grid {
        grid-template-columns: 1fr;
    }
    .corporate-panel {
        padding: 24px;
    }
    .assurance-strip div {
        grid-template-columns: 1fr;
    }
    .assurance-strip i {
        grid-row: auto;
    }
    .presence-map {
        min-height: 390px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .carousel-track,
    .clientele-carousel .carousel-track {
        grid-auto-columns: 82%;
    }
    .pallet-detail-carousel .carousel-track {
        grid-auto-columns: 86%;
    }
    .product-slide {
        min-height: 328px;
    }
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    .carousel-btn.prev {
        left: 6px;
    }
    .carousel-btn.next {
        right: 6px;
    }
    .section-head {
        display: block;
    }
    .floating-note {
        position: static;
        width: auto;
        margin-top: 16px;
    }
    .hero-card {
        padding: 12px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        padding: 6px 14px 6px 6px;
        font-size: .92rem;
    }
    .floating-whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 1.45rem;
    }
}
