/* =====================================================
   ROOT
===================================================== */

:root {
    --black: #101110;
    --dark: #171917;
    --dark-2: #202320;
    --dark-3: #292d29;

    --cream: #f3f0e8;
    --white: #ffffff;

    --yellow: #d6a928;
    --yellow-light: #e4bd4b;

    --gray: #8b9089;
    --border: rgba(255, 255, 255, 0.12);

    --font-main: 'DM Sans', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1240px, 90%);
    margin: auto;
}


/* =====================================================
   LOADER - MEDIUM BIG SIZE + SAME ANIMATION STYLE
===================================================== */

.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    width: 470px;
    height: 470px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* LOADER IMAGE */
.loader img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    animation:
        loaderLogoFloat 2.2s ease-in-out infinite,
        loaderLogoPulse 1.8s ease-in-out infinite;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.18));
}

/* INNER GOLDEN ROTATING RING */
.loader-inner::before {
    content: "";
    position: absolute;
    width: 392px;
    height: 392px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(214, 169, 40, 0.22);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: loaderRing 1.8s linear infinite;
}

/* OUTER DASHED REVERSE ROTATING RING */
.loader-inner::after {
    content: "";
    position: absolute;
    width: 438px;
    height: 438px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(16, 17, 16, 0.16);
    border-radius: 50%;
    animation: loaderRingReverse 6s linear infinite;
}

.loader img,
.loader-line {
    position: relative;
    z-index: 2;
}

/* LOADING LINE */
.loader-line {
    position: absolute;
    width: 300px;
    height: 7px;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    background: #e3e3df;
    overflow: hidden;
    border-radius: 30px;
    z-index: 3;
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--yellow), #f0c94e);
    animation: loading 1.2s infinite ease-in-out;
    border-radius: 30px;
}

/* SAME ANIMATIONS - SCALED PROPORTIONALLY */
@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

@keyframes loaderRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loaderRingReverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes loaderLogoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.04);
    }
}

@keyframes loaderLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.18));
    }
    50% {
        filter: drop-shadow(0 42px 58px rgba(214, 169, 40, 0.35));
    }
}

@media (max-width: 768px) {
    .loader-inner {
        transform: scale(0.78);
    }
}

@media (max-width: 480px) {
    .product-details-description {
        font-size: 12px;
        line-height: 1.65;
        padding: 14px 15px;
        margin-bottom: 22px;
    }

    .product-youtube {
        margin-top: 22px;
    }

    .product-youtube-link {
        padding: 12px;
        gap: 10px;
    }

    .product-youtube-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .product-youtube-text strong {
        font-size: 11px;
    }

    .loader-inner {
        transform: scale(0.62);
    }
}

/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(243, 240, 232, 0.97);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}


/* TOP STRIP */

.top-strip {
    background: var(--black);
    color: #bfc3bd;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.top-strip-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 13px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow: 0 0 12px var(--yellow);
}

.top-right a {
    transition: 0.3s;
}

.top-right a:hover {
    color: var(--yellow);
}

.top-divider {
    width: 1px;
    height: 14px;

    background: #484b48;
}


/* NAVBAR */

.navbar {
    height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;

    gap: 14px;
}

.brand-logo {
    width: 66px;
    height: 66px;

    border-radius: 50%;

    background: white;

    padding: 5px;

    border: 1px solid rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-family: var(--font-heading);

    font-size: 24px;
    font-weight: 600;

    letter-spacing: 2px;
    line-height: 1;
}

.brand-text span {
    margin-top: 6px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 4px;

    color: #747871;
}


/* NAV */

.nav-links {
    display: flex;
    align-items: center;

    gap: 34px;
}

.nav-link {
    position: relative;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    padding: 10px 0;

    transition: 0.3s;
}

.nav-link::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    bottom: 0;
    left: 0;

    background: var(--yellow);

    transition: 0.3s;
}

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

.nav-link:hover {
    color: var(--yellow);
}

.nav-contact {
    background: var(--black);
    color: white;

    padding: 15px 22px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    display: flex;
    align-items: center;

    gap: 14px;

    transition: 0.3s;
}

.nav-contact span {
    font-size: 18px;
    color: var(--yellow);
}

.nav-contact:hover {
    background: var(--yellow);
    color: var(--black);
}


/* MENU BUTTON */

.menu-btn {
    display: none;

    width: 48px;
    height: 48px;

    border: none;

    background: var(--black);

    padding: 12px;

    flex-direction: column;
    justify-content: center;

    gap: 5px;
}

.menu-btn span {
    width: 100%;
    height: 2px;

    background: white;

    transition: 0.3s;
}

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

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 760px;

    background: var(--black);

    color: white;

    position: relative;

    overflow: hidden;
}


/* GRID */

.hero-grid-lines {
    position: absolute;
    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);

    background-size: 80px 80px;
}


/* NOISE */

.hero-noise {
    position: absolute;
    inset: 0;

    opacity: 0.04;

    background-image:
        radial-gradient(circle at 20% 30%, white 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, white 1px, transparent 1px);

    background-size: 6px 6px;
}


/* BIG TEXT */

.hero-bg-text {
    position: absolute;

    right: -30px;
    top: 50%;

    transform: translateY(-50%);

    font-family: var(--font-heading);

    font-size: clamp(250px, 35vw, 650px);

    font-weight: 700;

    line-height: 0.7;

    color: rgba(255, 255, 255, 0.025);

    pointer-events: none;

    letter-spacing: -15px;
}


/* HERO CONTAINER */

.hero-container {
    min-height: 760px;

    display: grid;

    grid-template-columns: 1fr 1.05fr;

    align-items: center;

    gap: 30px;

    position: relative;

    z-index: 2;
}


/* HERO CONTENT */

.hero-content {
    padding: 100px 0 80px;
}

.hero-badge {
    display: flex;
    align-items: center;

    gap: 14px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    color: var(--yellow);

    margin-bottom: 30px;
}

.badge-line {
    width: 42px;
    height: 2px;

    background: var(--yellow);
}

.hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(72px, 7vw, 118px);

    font-weight: 700;

    line-height: 0.91;

    letter-spacing: -2px;

    max-width: 760px;
}

.hero h1 span {
    display: block;

    color: var(--yellow);
}

.hero-description {
    margin-top: 32px;

    max-width: 560px;

    color: #aeb3ad;

    font-size: 17px;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-actions {
    margin-top: 42px;

    display: flex;
    align-items: center;

    gap: 16px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);

    min-width: 205px;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;

    transition: 0.3s;
}

.btn-primary b {
    font-size: 21px;
    font-weight: 400;

    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow: 0 14px 35px rgba(214, 169, 40, 0.25);
}

.btn-primary:hover b {
    transform: translateX(5px);
}

.btn-secondary {
    border: 1px solid #50544f;

    padding: 17px 25px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;

    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--black);
}


/* HERO STATS */

.hero-stats {
    display: flex;

    margin-top: 70px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    padding-top: 26px;

    gap: 45px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 500;

    color: white;
}

.hero-stat span {
    margin-top: 4px;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #838982;
}


/* =====================================================
   HERO MACHINE
===================================================== */

.hero-machine-area {
    height: 100%;

    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
    padding-left: 20px;
}


/* CIRCLE */

.machine-circle {
    position: absolute;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background:
        radial-gradient(
            circle,
            rgba(214, 169, 40, 0.13),
            rgba(214, 169, 40, 0.02) 55%,
            transparent 70%
        );
}

.machine-circle::before {
    content: "";

    position: absolute;

    inset: 55px;

    border-radius: 50%;

    border: 1px dashed rgba(214, 169, 40, 0.22);

    animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* MACHINE LABEL */

.machine-label {
    position: absolute;

    top: 110px;
    right: 0;

    text-align: right;

    z-index: 3;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.machine-label span {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #898e88;
}

.machine-label strong {
    font-family: var(--font-heading);

    font-size: 26px;

    font-weight: 500;

    letter-spacing: 2px;

    color: var(--yellow);
}


/* MACHINE IMAGE */

.machine-display {
    width: 100%;

    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-top: 40px;

    animation: machineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.machine-display img {
    width: 108%;

    max-width: 720px;

    max-height: 470px;

    object-fit: contain;

    filter:
        drop-shadow(0 35px 35px rgba(0, 0, 0, 0.45));

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;

    animation: machineFloat 6s ease-in-out infinite;
}

.machine-display img.hide-left {
    opacity: 0;
    transform: translateX(-90px) scale(0.92) rotate(-1deg);
}

.machine-display img.enter-right {
    opacity: 0;
    transform: translateX(90px) scale(0.94) rotate(1deg);
}


@keyframes machineReveal {

    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}


@keyframes machineFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* MACHINE CONTROLS */

.machine-controls {
    position: absolute;

    bottom: 80px;
    left: 0;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 18px;
}

.machine-arrow {
    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: transparent;

    color: white;

    font-size: 19px;

    transition: 0.3s;
}

.machine-arrow:hover {
    background: var(--yellow);
    color: var(--black);

    border-color: var(--yellow);
}

.machine-counter {
    display: flex;
    align-items: center;

    gap: 10px;

    font-family: var(--font-heading);

    font-size: 17px;
}

.machine-counter span:first-child {
    color: var(--yellow);
}

.machine-counter span:last-child {
    color: #777c76;
}

.machine-counter i {
    width: 35px;
    height: 1px;

    background: #555;
}


/* DOTS */

.slider-dots {
    position: absolute;

    right: 0;
    bottom: 90px;

    display: flex;

    gap: 8px;
}

.slider-dot {
    width: 7px;
    height: 7px;

    border: none;

    border-radius: 50%;

    background: #555b55;

    transition: 0.3s;
}

.slider-dot.active {
    background: var(--yellow);

    width: 26px;

    border-radius: 10px;
}


/* SCROLL */

.scroll-down {
    position: absolute;

    left: 5%;

    bottom: 25px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 13px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #858a84;

    writing-mode: horizontal-tb;
}

.scroll-down i {
    width: 50px;
    height: 1px;

    background: var(--yellow);

    position: relative;
}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {
    background: var(--yellow);

    color: var(--black);
}

.trust-grid {
    min-height: 120px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 25px 35px;

    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(0, 0, 0, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.trust-item strong {
    display: block;

    font-size: 11px;

    letter-spacing: 1px;
}

.trust-item span {
    display: block;

    margin-top: 5px;

    font-size: 11px;

    color: rgba(0, 0, 0, 0.6);
}


/* =====================================================
   GENERAL SECTION
===================================================== */

.section {
    padding: 130px 0;
}

.section-eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #777c76;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 25px;
}

.section-eyebrow span {
    width: 35px;
    height: 2px;

    background: var(--yellow);
}

.section-eyebrow.light {
    color: #a5aaa3;
}

.section h2,
.contact h2 {
    font-family: var(--font-heading);

    font-size: clamp(56px, 6vw, 92px);

    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -1px;
}

.section h2 em,
.contact h2 em {
    display: block;

    color: var(--yellow);

    font-style: normal;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 110px;

    align-items: center;
}


/* ABOUT VISUAL */

.about-visual {
    position: relative;

    min-height: 560px;
}

.about-image-card {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 90%;
    height: 460px;

    background: white;

    border: 1px solid rgba(0, 0, 0, 0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;

    overflow: hidden;
}

.about-image-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: var(--yellow);

    opacity: 0.1;
}

.about-image-card img {
    width: 120%;

    position: relative;

    z-index: 2;

    filter:
        drop-shadow(0 30px 25px rgba(0, 0, 0, 0.2));

    transition: 0.5s;
}

.about-image-card:hover img {
    transform: scale(1.06);
}

.about-number {
    position: absolute;

    top: 0;
    right: 0;

    width: 180px;
    height: 180px;

    background: var(--black);

    color: var(--yellow);

    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding-left: 30px;

    font-family: var(--font-heading);

    font-size: 65px;

    line-height: 0.8;
}

.about-number span {
    margin-top: 13px;

    color: white;

    font-family: var(--font-main);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.about-shape {
    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -25px;
    right: 20px;

    border: 1px solid var(--yellow);
}


/* ABOUT CONTENT */

.about-content {
    padding: 30px 0;
}

.about-main-text {
    margin-top: 35px;

    font-size: 22px;

    line-height: 1.7;

    max-width: 650px;
}

.about-small-text {
    margin-top: 20px;

    color: #6f746e;

    line-height: 1.9;

    max-width: 650px;
}

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 40px;

    border-top: 1px solid rgba(0, 0, 0, 0.12);

    padding-top: 30px;
}

.about-feature {
    display: flex;

    gap: 15px;
}

.about-feature span {
    font-family: var(--font-heading);

    color: var(--yellow);

    font-size: 24px;
}

.about-feature p {
    color: #5d625c;

    font-size: 13px;

    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 20px;

    margin-top: 45px;

    padding-bottom: 8px;

    border-bottom: 2px solid var(--black);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.3s;
}

.text-link b {
    font-size: 20px;

    transition: 0.3s;
}

.text-link:hover {
    color: var(--yellow);

    border-color: var(--yellow);
}

.text-link:hover b {
    transform: translateX(6px);
}


/* =====================================================
   PRODUCTS
===================================================== */

.products {
    background: var(--dark);
    color: white;
}

.products-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 70px;
}

.products-header h2 {
    max-width: 650px;
}

.products-header p {
    max-width: 300px;

    color: #9da29c;

    font-size: 15px;

    line-height: 1.8;

    padding-bottom: 10px;
}


/* PRODUCT GRID */

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: #343834;
}

.product-card {
    background: #1d201d;

    min-height: 610px;

    padding: 28px;

    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition: 0.4s;
}

.product-card:hover {
    background: #242824;
}

.product-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: var(--yellow);

    filter: blur(70px);

    opacity: 0;

    top: 40%;
    left: 50%;

    transform: translate(-50%, -50%);

    transition: 0.5s;
}

.product-card:hover::after {
    opacity: 0.08;
}

.featured-product {
    background: #222621;
}


/* TOP */

.product-top {
    position: relative;

    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-number {
    font-family: var(--font-heading);

    color: var(--yellow);

    font-size: 20px;
}

.product-tag {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;

    color: #8c918b;
}


/* MACHINE */

.product-machine {
    height: 280px;

    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 20px 0;
}

.product-machine::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-machine img {
    width: 125%;

    max-height: 280px;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 20px rgba(0, 0, 0, 0.45));

    transition: 0.5s;
}

.product-card:hover .product-machine img {
    transform: scale(1.08) translateY(-8px);
}


/* PRODUCT BOTTOM */

.product-bottom {
    position: relative;

    z-index: 2;

    margin-top: auto;
}

.product-bottom h3 {
    font-family: var(--font-heading);

    font-size: 48px;

    font-weight: 500;

    letter-spacing: 1px;
}

.product-bottom p {
    color: #929891;

    font-size: 14px;

    line-height: 1.8;

    margin-top: 13px;

    min-height: 80px;
}

.product-btn {
    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding-top: 18px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.3s;
}

.product-btn b {
    font-size: 20px;

    font-weight: 400;

    color: var(--yellow);
}

.product-btn:hover {
    color: var(--yellow);
}


/* PRODUCT FOOTER */

.products-footer {
    margin-top: 40px;

    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-footer span {
    color: #777d76;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.products-footer a {
    color: var(--yellow);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================================
   WHY US
===================================================== */

.why {
    background: white;
}



/* ==============================
   GALLERY
============================== */

.gallery {
    background: #f6f4ef;
}

.gallery-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px;
}

.gallery-intro h2 {
    margin: 14px 0 0;
}

.gallery-intro p {
    max-width: 480px;
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    background: #171717;
    min-height: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, opacity .45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.03) 60%);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-caption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

@media (max-width: 900px) {
    .gallery-intro {
        display: block;
    }

    .gallery-intro p {
        margin-top: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.why-intro {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 70px;
}

.why-intro h2 {
    max-width: 650px;
}

.why-intro p {
    max-width: 350px;

    color: #737870;

    line-height: 1.8;

    padding-bottom: 10px;
}


/* WHY GRID */

.why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.why-card {
    padding: 45px;

    min-height: 360px;

    border: 1px solid #e4e4df;

    position: relative;

    transition: 0.4s;

    overflow: hidden;
}

.why-card:hover,
.why-card.active {
    background: var(--black);
    color: white;

    border-color: var(--black);
}

.why-icon {
    font-family: var(--font-heading);

    color: var(--yellow);

    font-size: 35px;

    margin-bottom: 55px;
}

.why-card h3 {
    font-family: var(--font-heading);

    font-size: 29px;

    font-weight: 500;

    margin-bottom: 15px;
}

.why-card p {
    color: #747970;

    font-size: 14px;

    line-height: 1.8;

    transition: 0.3s;
}

.why-card:hover p,
.why-card.active p {
    color: #a8ada6;
}

.why-line {
    position: absolute;

    width: 0;
    height: 3px;

    left: 0;
    bottom: 0;

    background: var(--yellow);

    transition: 0.4s;
}

.why-card:hover .why-line,
.why-card.active .why-line {
    width: 100%;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery {
    background: var(--cream);
}

.gallery-header {
    margin-bottom: 60px;
}

.gallery-header h2 {
    max-width: 700px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    grid-template-rows: 300px 300px;

    gap: 18px;
}

.gallery-card {
    background: white;

    position: relative;

    overflow: visible;

    display: flex;
    flex-direction: column;
}

.gallery-card.large {
    grid-row: span 2;
}

.gallery-image {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 28px;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 169, 40, 0.12),
            transparent 60%
        );
}

.gallery-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(0 20px 18px rgba(0, 0, 0, 0.18));

    transition: 0.5s;
}

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

/* Keep every implement fully visible, including taller Chopper images */
.gallery-card:not(.large) .gallery-image img {
    width: 94%;
    height: 94%;
    object-fit: contain;
}

.gallery-card.large .gallery-image img {
    width: 96%;
    height: 96%;
    object-fit: contain;
}

.gallery-caption {
    height: 65px;

    border-top: 1px solid #ecece8;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 0 25px;
}

.gallery-caption span {
    color: var(--yellow);

    font-family: var(--font-heading);

    font-size: 18px;
}

.gallery-caption h3 {
    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 1px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 760px;
}


/* LEFT */

.contact-left {
    background: var(--black);

    color: white;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 100px max(5%, calc((100vw - 1240px) / 2));
}

.contact-pattern {
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);
}

.contact-pattern::before,
.contact-pattern::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-pattern::before {
    inset: 60px;
}

.contact-pattern::after {
    inset: 120px;
}

.contact-info {
    position: relative;

    z-index: 2;

    max-width: 550px;
}

.contact-info h2 {
    font-size: clamp(58px, 5vw, 90px);
}

.contact-info > p {
    margin-top: 30px;

    color: #9da29b;

    line-height: 1.9;

    max-width: 480px;
}

.contact-details {
    margin-top: 55px;

    display: flex;
    flex-direction: column;

    gap: 22px;
}

.contact-detail {
    display: flex;
    align-items: center;

    gap: 18px;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;

    border: 1px solid #424641;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--yellow);

    font-size: 21px;

    transition: 0.3s;
}

.contact-detail:hover .contact-detail-icon {
    background: var(--yellow);
    color: var(--black);

    border-color: var(--yellow);
}

.contact-detail span {
    display: block;

    color: #737970;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.contact-detail strong {
    font-size: 15px;

    font-weight: 600;
}


/* RIGHT */

.contact-right {
    background: var(--cream);

    display: flex;
    align-items: center;

    padding: 90px 8%;
}

.form-wrapper {
    width: 100%;

    max-width: 600px;

    margin: auto;
}

.form-heading > span {
    font-size: 10px;

    font-weight: 800;

    color: var(--yellow);

    letter-spacing: 2px;
}

.form-heading h3 {
    margin-top: 12px;

    font-family: var(--font-heading);

    font-size: 45px;

    font-weight: 500;
}


/* FORM */

form {
    margin-top: 40px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #72776f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: none;

    border-bottom: 1px solid #c8c7c0;

    background: transparent;

    padding: 14px 0;

    outline: none;

    color: var(--black);

    font-size: 14px;

    transition: 0.3s;

    border-radius: 0;
}

.form-group textarea {
    resize: vertical;

    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
}

.submit-btn {
    width: 100%;

    border: none;

    background: var(--black);

    color: white;

    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.submit-btn b {
    color: var(--yellow);

    font-size: 22px;

    font-weight: 400;

    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

.submit-btn:hover b {
    color: var(--black);

    transform: translateX(7px);
}

#formMessage {
    margin-top: 20px;

    font-size: 13px;

    font-weight: 700;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #0a0b0a;

    color: white;

    padding-top: 80px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 65px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-logo img {
    width: 65px;
    height: 65px;

    object-fit: contain;

    background: white;

    border-radius: 50%;

    padding: 4px;
}

.footer-logo div {
    display: flex;
    flex-direction: column;
}

.footer-logo strong {
    font-family: var(--font-heading);

    font-size: 23px;

    font-weight: 500;

    letter-spacing: 2px;
}

.footer-logo span {
    margin-top: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #7e837d;
}

.footer-brand > p {
    margin-top: 25px;

    max-width: 360px;

    color: #777d76;

    font-size: 13px;

    line-height: 1.9;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.footer-links h4 {
    margin-bottom: 12px;

    color: var(--yellow);

    font-size: 10px;

    letter-spacing: 2px;
}

.footer-links a {
    color: #8d928c;

    font-size: 13px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: white;

    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 0 38px;
}

.footer-social-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--yellow);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.footer-social-heading span {
    width: 22px;
    height: 1px;
    background: var(--red);
    display: block;
}

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #2a2d2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9f98;
    transition: 0.3s ease;
}

.footer-social-links a:hover {
    color: white;
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.footer-social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

.footer-social-links a:nth-child(2) svg {
    fill: none;
    stroke-width: 2;
}

.footer-social-links a:nth-child(2) .social-fill {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    min-height: 75px;

    border-top: 1px solid #202320;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #555b54;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}




/* =====================================================
   FACTORY LOCATION MAP
===================================================== */

.footer-map {
    position: relative !important;
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 560px !important;
    left: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.footer-map iframe {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .footer-map {
        height: 420px !important;
    }
}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    height: 55px;

    background: #25d366;

    color: white;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 18px;

    border-radius: 30px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

    transition: 0.3s;
}

.whatsapp span {
    font-size: 26px;

    transform: rotate(-20deg);
}

.whatsapp small {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.whatsapp:hover {
    transform: translateY(-5px);
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {
    position: fixed;

    right: 28px;
    bottom: 95px;

    width: 42px;
    height: 42px;

    border: none;

    background: var(--black);

    color: var(--yellow);

    font-size: 20px;

    z-index: 900;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;
}

.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero-content > * {
    animation: fadeUp 0.8s ease backwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.4s;
}

.hero-stats {
    animation-delay: 0.5s;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav-links {
        gap: 20px;
    }

    .hero-container {
        gap: 10px;
    }

    .machine-circle {
        width: 500px;
        height: 500px;
    }

    .about-grid {
        gap: 60px;
    }

    .product-card {
        padding: 22px;
    }

    .product-bottom h3 {
        font-size: 40px;
    }

    .contact-left {
        padding-left: 7%;
        padding-right: 7%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {


    /* TOP */




    /* HEADER */

    .navbar {
        height: 82px;
    }

    .brand-logo {
        width: 55px;
        height: 55px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .menu-btn {
        display: flex;
    }


    /* MOBILE NAV */

    .nav-links {
        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;

        background: var(--cream);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 20px 5% 35px;

        border-top: 1px solid rgba(0, 0, 0, 0.08);

        transform: translateY(-130%);

        opacity: 0;

        pointer-events: none;

        transition: 0.4s;
    }

    .nav-links.show {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .nav-link {
        width: 100%;

        padding: 17px 0;

        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-contact {
        margin-top: 20px;

        width: 100%;

        justify-content: space-between;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 70px 0 35px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-bg-text {
        font-size: 300px;

        top: 62%;

        right: -100px;
    }

    .hero h1 {
        font-size: clamp(64px, 18vw, 95px);
    }

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

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;

        justify-content: center;

        text-align: center;
    }

    .btn-primary {
        justify-content: space-between;
    }

    .hero-stats {
        margin-top: 45px;

        gap: 18px;

        justify-content: space-between;
    }

    .hero-stat strong {
        font-size: 28px;
    }

    .hero-stat span {
        font-size: 7px;
        letter-spacing: 0.8px;
    }


    /* HERO MACHINE */

    .hero-machine-area {
        min-height: 450px;

        margin-top: 15px;
    }

    .machine-circle {
        width: 390px;
        height: 390px;
    }

    .machine-circle::before {
        inset: 35px;
    }

    .machine-display img {
        width: 125%;

        max-height: 330px;
    }

    .machine-label {
        top: 25px;
        right: 0;
    }

    .machine-label strong {
        font-size: 21px;
    }

    .machine-controls {
        bottom: 10px;
    }

    .slider-dots {
        bottom: 25px;
    }

    .scroll-down {
        display: none;
    }


    /* TRUST */

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

    .trust-item {
        border-right: none;

        border-bottom: 1px solid rgba(0, 0, 0, 0.13);

        padding: 22px 10px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }


    /* GENERAL */

    .section {
        padding: 85px 0;
    }

    .section h2,
    .contact h2 {
        font-size: 58px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-visual {
        min-height: 460px;
    }

    .about-image-card {
        height: 390px;
    }

    .about-number {
        width: 135px;
        height: 135px;

        font-size: 48px;
    }

    .about-shape {
        width: 120px;
        height: 120px;
    }

    .about-main-text {
        font-size: 18px;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* PRODUCTS */

    .products-header {
        display: block;

        margin-bottom: 45px;
    }

    .products-header p {
        margin-top: 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 1px;
    }

    .product-card {
        min-height: 530px;
    }

    .products-footer {
        flex-direction: column;

        gap: 18px;
    }


    /* WHY */

    .why-intro {
        display: block;

        margin-bottom: 45px;
    }

    .why-intro p {
        margin-top: 25px;
    }

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

    .why-card {
        min-height: 300px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows: auto;
    }

    .gallery-card.large {
        grid-row: auto;
    }

    .gallery-card {
        min-height: 360px;
        overflow: visible;
    }

    .gallery-image {
        min-height: 285px;
    }

    .gallery-image img {
        width: 94%;
        height: 94%;
        object-fit: contain;
    }


    /* CONTACT */

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

    .contact-left {
        min-height: 620px;

        padding: 85px 5%;
    }

    .contact-right {
        padding: 75px 5%;
    }

    .contact-info h2 {
        font-size: 60px;
    }

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


    /* FOOTER */

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

        gap: 45px;
    }

    .footer-social {
        padding-bottom: 30px;
    }

    .footer-social-links a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        gap: 8px;

        text-align: center;

        padding: 20px 0;
    }


    /* FLOATING */

    .whatsapp {
        width: 55px;
        height: 55px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp small {
        display: none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text span {
        font-size: 7px;
        letter-spacing: 2.5px;
    }

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

    .hero-stats {
        gap: 10px;
    }

    .hero-stat strong {
        font-size: 25px;
    }

    .hero-stat span {
        font-size: 6px;
    }

    .machine-circle {
        width: 330px;
        height: 330px;
    }

    .machine-display img {
        width: 140%;
    }

    .section h2,
    .contact h2 {
        font-size: 50px;
    }

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

    .about-image-card {
        height: 340px;
    }

    .about-number {
        width: 115px;
        height: 115px;

        font-size: 40px;
    }

}


/* =====================================================
   RED + WHITE THEME ONLY
   Layout, sizes, animations and functionality unchanged
===================================================== */

:root {
    --cream: #ffffff;
    --white: #ffffff;
    --yellow: #d71920;
    --yellow-light: #ef4444;
}

body {
    background: #ffffff;
    color: #171717;
}

.header {
    background: rgba(255, 255, 255, 0.97);
}

.top-strip {
    background: #ffffff;
    color: #555555;
    border-bottom: 1px solid #ececec;
}

.top-divider {
    background: #dddddd;
}

.nav-contact,
.menu-btn,
.about-number,
.submit-btn,
.back-to-top {
    background: var(--yellow);
    color: #ffffff;
}

.nav-contact span,
.submit-btn b,
.back-to-top {
    color: #ffffff;
}

.nav-contact:hover,
.submit-btn:hover {
    background: #111111;
    color: #ffffff;
}

.submit-btn:hover b {
    color: #ffffff;
}

/* HERO */
.hero {
    background: #ffffff;
    color: #171717;
}

.hero-grid-lines {
    opacity: 0.045;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
}

.hero-noise {
    opacity: 0.025;
    background-image:
        radial-gradient(circle at 20% 30%, black 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, black 1px, transparent 1px);
}

.hero-bg-text {
    color: rgba(215, 25, 32, 0.035);
}

.hero h1,
.hero-stat strong {
    color: #171717;
}

.hero-description {
    color: #666666;
}

.btn-primary {
    background: var(--yellow);
    color: #ffffff;
}

.btn-primary:hover {
    box-shadow: 0 14px 35px rgba(215, 25, 32, 0.25);
}

.btn-secondary {
    border-color: #dddddd;
    color: #171717;
}

.btn-secondary:hover {
    background: var(--yellow);
    color: #ffffff;
    border-color: var(--yellow);
}

.hero-stats {
    border-top-color: rgba(0, 0, 0, 0.12);
}

.hero-stat span {
    color: #777777;
}

.machine-circle {
    border-color: rgba(0, 0, 0, 0.12);
    background: radial-gradient(
        circle,
        rgba(215, 25, 32, 0.10),
        rgba(215, 25, 32, 0.02) 55%,
        transparent 70%
    );
}

.machine-circle::before {
    border-color: rgba(215, 25, 32, 0.25);
}

.machine-label span {
    color: #777777;
}

.machine-display img {
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.18));
}

.machine-arrow {
    border-color: rgba(0, 0, 0, 0.18);
    color: #171717;
}

.machine-arrow:hover {
    background: var(--yellow);
    color: #ffffff;
    border-color: var(--yellow);
}

.machine-counter span:last-child {
    color: #888888;
}

.machine-counter i,
.slider-dot {
    background: #cccccc;
}

.slider-dot.active {
    background: var(--yellow);
}

.scroll-down {
    color: #777777;
}

/* TRUST */
.trust-bar {
    background: var(--yellow);
    color: #ffffff;
}

.trust-item {
    border-right-color: rgba(255, 255, 255, 0.28);
}

.trust-icon {
    border-color: rgba(255, 255, 255, 0.4);
}

/* ABOUT */
.about {
    background: #ffffff;
}

.about-number {
    color: #ffffff;
}

.about-number span {
    color: #ffffff;
}

/* PRODUCTS */
.products {
    background: #ffffff;
    color: #171717;
}

.section-eyebrow.light,
.products-header p {
    color: #666666;
}

.product-grid {
    background: #ececec;
}

.product-card,
.featured-product,
.product-card:hover {
    background: #ffffff;
}

.product-card {
    border: 1px solid #ececec;
}

.product-machine {
    background: #ffffff;
}

.product-machine::before {
    border-color: rgba(0, 0, 0, 0.10);
}

.product-machine img {
    background: transparent;
    filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.18));
}

.product-tag,
.product-bottom p,
.products-footer span {
    color: #666666;
}

.product-btn,
.products-footer {
    border-color: rgba(0, 0, 0, 0.12);
}

/* WHY */
.why-card:hover,
.why-card.active {
    background: var(--yellow);
    color: #ffffff;
    border-color: var(--yellow);
}

.why-card:hover p,
.why-card.active p {
    color: rgba(255, 255, 255, 0.82);
}

/* GALLERY */
.gallery {
    background: #ffffff;
}

.gallery-image {
    background: radial-gradient(
        circle at center,
        rgba(215, 25, 32, 0.08),
        transparent 60%
    );
}

.gallery-image img {
    background: transparent;
}

/* CONTACT */
.contact-left {
    background: #ffffff;
    color: #171717;
    border-right: 1px solid #ececec;
}

.contact-pattern,
.contact-pattern::before,
.contact-pattern::after {
    border-color: rgba(215, 25, 32, 0.12);
}

.contact-info > p,
.contact-detail span {
    color: #666666;
}

.contact-detail-icon {
    border-color: #dddddd;
    color: var(--yellow);
}

.contact-detail:hover .contact-detail-icon {
    background: var(--yellow);
    color: #ffffff;
    border-color: var(--yellow);
}

/* FOOTER */
.footer {
    background: #ffffff;
    color: #171717;
    border-top: 1px solid #ececec;
}

.footer-logo span,
.footer-brand > p,
.footer-links a,
.footer-bottom {
    color: #666666;
}

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

.footer-bottom {
    border-top-color: #ececec;
}

/* MOBILE MENU / OTHER WHITE-ON-DARK TEXT FIXES */
@media (max-width: 900px) {
    .nav-links {
        background: #ffffff;
        border-bottom: 1px solid #ececec;
    }
}


/* =====================================================
   HERO MOBILE RESPONSIVE FIX ONLY
   Desktop layout remains unchanged
===================================================== */
@media (max-width: 768px) {
    .hero-container {
        padding: 38px 0 28px;
        gap: 18px;
    }

    .hero-bg-text {
        font-size: clamp(170px, 52vw, 260px);
        top: 58%;
        right: 50%;
        transform: translate(50%, -50%);
        letter-spacing: -8px;
        white-space: nowrap;
    }

    .hero-machine-area {
        width: 100%;
        min-height: 500px;
        margin-top: 0;
        padding-left: 0;
        overflow: hidden;
    }

    .machine-circle {
        width: min(82vw, 390px);
        height: min(82vw, 390px);
    }

    .machine-display {
        width: 100%;
        padding-top: 20px;
        justify-content: center;
    }

    .machine-display img {
        width: min(94vw, 520px);
        max-width: 94vw;
        max-height: 360px;
        height: auto;
        object-fit: contain;
    }

    .machine-label {
        top: 12px;
        right: 5%;
        max-width: 70%;
    }

    .machine-label strong {
        font-size: clamp(17px, 5vw, 21px);
        line-height: 1.1;
    }

    .machine-controls {
        left: 5%;
        bottom: 18px;
        gap: 12px;
    }

    .slider-dots {
        right: 5%;
        bottom: 34px;
        gap: 5px;
        max-width: 54%;
        justify-content: flex-end;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
        flex: 0 0 auto;
    }

    .slider-dot.active {
        width: 18px;
    }
}

@media (max-width: 420px) {
    .hero-container {
        padding-top: 30px;
    }

    .hero-bg-text {
        font-size: 180px;
        top: 57%;
    }

    .hero-machine-area {
        min-height: 465px;
    }

    .machine-circle {
        width: 78vw;
        height: 78vw;
    }

    .machine-display {
        padding-top: 16px;
    }

    .machine-display img {
        width: 92vw;
        max-width: 92vw;
        max-height: 320px;
    }

    .machine-label {
        top: 10px;
    }

    .machine-controls {
        bottom: 14px;
    }

    .slider-dots {
        bottom: 28px;
        gap: 4px;
        max-width: 52%;
    }

    .slider-dot {
        width: 5px;
        height: 5px;
    }

    .slider-dot.active {
        width: 15px;
    }
}

/* =====================================================
   ABOUT SECOND STAT - 1000+ CUSTOMERS ONLY
===================================================== */
.about-shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-shape strong {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    color: var(--yellow);
}

.about-shape span {
    margin-top: 9px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #171717;
}

@media (max-width: 768px) {
    .about-shape strong {
        font-size: 34px;
    }

    .about-shape span {
        font-size: 7px;
        letter-spacing: 1.5px;
    }
}


/* =====================================================
   ABOUT VISUAL BOXES - PROFESSIONAL TYPOGRAPHY ONLY
   Text unchanged: MADE IN INDIA / TRUSTED BY FARMERS
===================================================== */
.about-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0;
    background: var(--yellow);
    color: #ffffff;
}

.about-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 1px;
}

.about-number span {
    margin-top: 14px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
}

.about-shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(215, 25, 32, 0.55);
    box-sizing: border-box;
    padding: 18px;
}

.about-shape strong {
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--yellow);
    white-space: nowrap;
}

.about-shape span {
    margin-top: 13px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    color: #171717;
}

@media (max-width: 768px) {
    .about-number {
        font-size: 44px;
        padding: 0;
    }

    .about-number span {
        margin-top: 12px;
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .about-shape {
        padding: 14px 8px;
    }

    .about-shape strong {
        font-size: 20px;
        letter-spacing: 0.8px;
    }

    .about-shape span {
        margin-top: 11px;
        font-size: 8px;
        letter-spacing: 2px;
    }
}

/* =====================================================
   ABOUT VISUAL BOXES - MATCHING RED BOXES FIX
   Both boxes use the exact same red filled style
===================================================== */
.about-number,
.about-shape {
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    background: var(--yellow);
    color: #ffffff;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
}

.about-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 1px;
}

.about-number span {
    margin-top: 14px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
}

.about-shape strong {
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    white-space: nowrap;
}

.about-shape span {
    margin-top: 13px;
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    color: #ffffff;
}

@media (max-width: 768px) {
    .about-number,
    .about-shape {
        width: 135px;
        height: 135px;
        padding: 12px 8px;
    }

    .about-number {
        font-size: 38px;
    }

    .about-number span {
        margin-top: 10px;
        font-size: 8px;
        letter-spacing: 2.2px;
    }

    .about-shape strong {
        font-size: 17px;
        letter-spacing: 0.5px;
    }

    .about-shape span {
        margin-top: 10px;
        font-size: 7px;
        letter-spacing: 1.8px;
    }
}


/* =====================================================
   ABOUT STAT BOXES - PREMIUM TEXT HIERARCHY
   MADE IN / TRUSTED BY small | INDIA / FARMERS large
===================================================== */
.about-number small,
.about-shape small {
    display: block;
    margin: 0 0 13px;
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    color: #ffffff;
}

.about-number span {
    display: block;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 0.95;
    color: #ffffff;
}

.about-shape strong {
    display: block;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 0.95;
    color: #ffffff;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .about-number small,
    .about-shape small {
        margin-bottom: 10px;
        font-size: 7px;
        letter-spacing: 2px;
    }

    .about-number span {
        margin: 0;
        font-size: 38px;
        letter-spacing: 0.8px;
    }

    .about-shape strong {
        margin: 0;
        font-size: 26px;
        letter-spacing: 0.5px;
    }
}


/* =====================================================
   COMPANY PROFILE + INFRASTRUCTURE + DESIGN CREDIT
===================================================== */

.about-main-text strong {
    font-weight: 800;
}

.mission-goal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 30px;
}

.purpose-card {
    padding: 20px;
    border-left: 3px solid var(--yellow);
    background: rgba(16, 17, 16, 0.045);
}

.purpose-card span {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 17px;
    letter-spacing: 1.4px;
}

.purpose-card p {
    font-size: 12px;
    line-height: 1.75;
    color: #666b65;
}

.infrastructure {
    background: #f7f5ef;
}

.infrastructure-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.infrastructure-heading h2 {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
    font-weight: 600;
}

.infrastructure-heading h2 em {
    color: var(--yellow);
    font-style: normal;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
    gap: 34px;
    align-items: stretch;
}

.infrastructure-main {
    background: white;
    padding: 42px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.infrastructure-main > p {
    color: #626761;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 22px;
}

.infrastructure-list {
    display: grid;
    gap: 25px;
    padding-top: 12px;
}

.infrastructure-list h3 {
    margin-bottom: 9px;
    font-size: 14px;
    line-height: 1.4;
}

.infrastructure-list ul {
    padding-left: 20px;
    color: #686d67;
}

.infrastructure-list li {
    margin: 6px 0;
    font-size: 13px;
    line-height: 1.55;
}

.infrastructure-note {
    margin: 28px 0 0 !important;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    font-weight: 600;
}

.infrastructure-grid {
    align-items: start !important;
}

.quality-panel {
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: white;
    padding: 42px 34px;
    display: flex;
    align-items: center;
    align-self: start !important;
    min-height: 0 !important;
    height: 360px !important;
    max-height: 360px !important;
    box-sizing: border-box;
}

.quality-panel::before {
    content: \"QUALITY\";
    position: absolute;
    right: -8px;
    top: 18px;
    font-family: var(--font-heading);
    font-size: 74px;
    font-weight: 700;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.quality-panel h3 {
    margin: 18px 0;
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
    letter-spacing: 1px;
}

.quality-panel p {
    color: #aeb3ad;
    font-size: 14px;
    line-height: 1.85;
}

.quality-number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 18px;
}

.designer-credit {
    border-top: 1px solid #202320;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #70766e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.designer-credit strong {
    margin-left: 5px;
    color: var(--yellow);
    font-weight: 800;
}

@media (max-width: 900px) {
    .mission-goal-grid,
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .quality-panel {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .mission-goal-grid {
        gap: 10px;
    }

    .purpose-card {
        padding: 17px;
    }

    .infrastructure-main {
        padding: 25px 20px;
    }

    .infrastructure-main > p {
        font-size: 14px;
    }

    .quality-panel {
        padding: 32px 24px;
        min-height: 390px;
    }

    .quality-panel h3 {
        font-size: 30px;
    }
}


/* Modern Infrastructure kept inside the About / company introduction flow */
.infrastructure-inline {
    margin-top: 70px;
    padding-top: 65px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.infrastructure-inline .infrastructure-heading {
    max-width: 760px;
}

.infrastructure-inline .infrastructure-grid {
    margin-top: 0;
}

@media (max-width: 900px) {
    .infrastructure-inline {
        margin-top: 50px;
        padding-top: 50px;
    }
}

@media (max-width: 600px) {
    .infrastructure-inline {
        margin-top: 38px;
        padding-top: 38px;
    }
}


/* INFRASTRUCTURE FACTORY PHOTO, CERTIFICATES & TEST REPORT */
.factory-unit-photo {
    position: relative;
    display: block;
    margin: 28px 0 30px;
    overflow: hidden;
    background: var(--black);
    border: 1px solid rgba(16, 17, 16, 0.10);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.factory-unit-photo:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.18);
}

.factory-unit-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.factory-unit-photo:hover img {
    transform: scale(1.025);
}

.factory-unit-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.factory-unit-photo span {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 1;
    color: white;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

@media (max-width: 600px) {
    .factory-unit-photo img {
        height: 170px;
    }

    .factory-unit-photo span {
        left: 15px;
        bottom: 14px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* INFRASTRUCTURE CERTIFICATES & TEST REPORT */
.certificate-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 28px 0 34px;
}

.certificate-card {
    position: relative;
    display: block;
    background: #fff;
    padding: 10px 10px 42px;
    border: 1px solid rgba(16, 17, 16, 0.10);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.certificate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.certificate-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.certificate-card span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--black);
}

.testing-approval {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 24px;
    align-items: start;
}

.super-seeder-test {
    position: relative;
    display: block;
    background: #fff;
    padding: 7px 7px 45px;
    border: 1px solid rgba(16, 17, 16, 0.10);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.super-seeder-test:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

.super-seeder-test img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.super-seeder-test span {
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--black);
}

.super-seeder-test small {
    font-family: var(--font-main);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray);
}

@media (max-width: 700px) {
    .certificate-gallery {
        gap: 12px;
    }
    .certificate-card img {
        height: 190px;
    }
    .certificate-card span {
        font-size: 13px;
    }
    .testing-approval {
        grid-template-columns: 1fr;
    }
    .super-seeder-test {
        width: min(260px, 100%);
    }
    .super-seeder-test img {
        height: 300px;
    }
}


/* MANUFACTURING EQUIPMENT REFERENCE PHOTOS */
.equipment-reference {
    margin: 30px 0 34px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(16, 17, 16, 0.09);
}

.equipment-reference-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.equipment-reference-head span {
    width: 28px;
    height: 2px;
    background: var(--yellow);
}

.equipment-reference-head p {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray);
}

.equipment-reference-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.equipment-reference-card {
    margin: 0;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(16, 17, 16, 0.09);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.12);
}

.equipment-reference-card img {
    width: 100%;
    height: 118px;
    display: block;
    object-fit: cover;
}

.equipment-reference-card figcaption {
    padding: 10px 8px 11px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.1;
    color: var(--black);
}

.equipment-reference-note {
    display: block;
    margin-top: 12px;
    font-size: 9px;
    line-height: 1.4;
    color: var(--gray);
}

@media (max-width: 900px) {
    .equipment-reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .equipment-reference {
        padding: 16px;
    }
    .equipment-reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .equipment-reference-card img {
        height: 110px;
    }
    .equipment-reference-card figcaption {
        font-size: 11px;
    }
}


/* =====================================================
   HAPPY CUSTOMERS GALLERY
===================================================== */
.customer-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
}

.customer-gallery-grid .gallery-item {
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.customer-gallery-grid .gallery-item img {
    object-position: center;
}

.customer-gallery-grid .gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.customer-gallery-grid .gallery-caption {
    opacity: 0;
    transform: translateY(8px);
    transition: .3s ease;
}

.customer-gallery-grid .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .customer-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }
}

@media (max-width: 560px) {
    .customer-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .customer-gallery-grid .gallery-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* =====================================================
   SOCIAL VIDEOS
===================================================== */
.social-videos {
    background: #f7f5ef;
    padding: 110px 0;
}

.social-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.social-heading p {
    margin-top: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.social-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: auto;
}

.social-video-card {
    min-height: 150px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--black);
    color: var(--white);
    transition: transform .3s ease, box-shadow .3s ease;
}

.social-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,.16);
}

.social-video-card.instagram-card {
    background: var(--yellow);
    color: var(--black);
}

.social-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 22px;
}

.social-video-card span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: .72;
    margin-bottom: 8px;
}

.social-video-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 1px;
}

.social-video-card > b {
    margin-left: auto;
    font-size: 28px;
    font-weight: 400;
}

@media (max-width: 700px) {
    .social-videos { padding: 80px 0; }
    .social-video-grid { grid-template-columns: 1fr; }
    .social-video-card { min-height: 130px; padding: 22px; }
    .social-video-card h3 { font-size: 22px; }
}


/* =====================================================
   PRODUCT DETAILS MODAL
===================================================== */
.product-details-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.product-details-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-details-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 17, 16, 0.82);
    backdrop-filter: blur(9px);
}

.product-details-dialog {
    position: relative;
    width: min(1060px, 100%);
    max-height: min(820px, 92vh);
    overflow: auto;
    background: var(--cream);
    color: var(--black);
    border: 1px solid rgba(16, 17, 16, 0.12);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-details-modal.show .product-details-dialog {
    transform: translateY(0) scale(1);
}

.product-details-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(16, 17, 16, 0.14);
    background: rgba(243, 240, 232, 0.9);
    color: var(--black);
    font-size: 28px;
    line-height: 1;
    transition: 0.25s ease;
}

.product-details-close:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.product-details-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    min-height: 590px;
}

.product-details-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 45px 45px;
    overflow: hidden;
    background: var(--white);
}

.product-details-visual::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle, rgba(214, 169, 40, 0.14), rgba(214, 169, 40, 0.025) 55%, transparent 70%);
}

.product-details-visual::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 1px dashed rgba(214, 169, 40, 0.24);
    animation: productModalRing 18s linear infinite;
}

@keyframes productModalRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-details-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.45));
    animation: productModalFloat 5s ease-in-out infinite;
}

@keyframes productModalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.product-details-number {
    position: absolute;
    top: 25px;
    left: 28px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--yellow);
}

.product-details-content {
    padding: 68px 55px 48px;
}

.product-details-content .section-eyebrow {
    margin-bottom: 15px;
}

.product-details-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.product-details-subtitle {
    max-width: 620px;
    color: #6d726c;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 25px;
}

.product-specs {
    border-top: 1px solid rgba(16, 17, 16, 0.13);
}

.product-spec-row {
    display: grid;
    grid-template-columns: minmax(135px, 0.8fr) minmax(0, 1.2fr);
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 17, 16, 0.10);
}

.product-spec-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #777c75;
}

.product-spec-value {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

/* PRODUCT DESCRIPTION */
.product-details-description {
    margin: -8px 0 25px;
    padding: 16px 18px;
    background: rgba(214, 169, 40, 0.08);
    border-left: 3px solid var(--yellow);
    color: #50554f;
    font-size: 13px;
    line-height: 1.7;
}

/* PRODUCT YOUTUBE */
.product-youtube {
    margin-top: 26px;
}

.product-youtube-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.product-youtube-head span {
    width: 28px;
    height: 2px;
    background: var(--yellow);
}

.product-youtube-head p {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray);
}

.product-youtube-list {
    display: grid;
    gap: 14px;
}

.product-youtube-link {
    display: grid;
    grid-template-columns: minmax(180px, 42%) 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px;
    background: var(--black);
    color: white;
    border: 1px solid rgba(16, 17, 16, 0.12);
    transition: transform .25s ease, background .25s ease;
    overflow: hidden;
}

.product-youtube-link:hover {
    transform: translateY(-2px);
    background: #242724;
}

.product-youtube-preview {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #181818;
}

.product-youtube-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-youtube-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #ff0000;
    color: #fff;
    font-size: 19px;
    padding-left: 3px;
    box-shadow: 0 3px 12px rgba(0,0,0,.35);
}

.product-youtube-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-youtube-text strong {
    font-size: 14px;
    line-height: 1.35;
}

.product-youtube-text small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 1.4px;
    color: #aeb3ad;
}

.product-youtube-link > b {
    margin-left: auto;
    margin-right: 8px;
    font-size: 18px;
    font-weight: 400;
    color: var(--yellow);
}

.product-details-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
}

.product-details-actions .btn-primary {
    min-width: 190px;
}

.product-details-secondary {
    border: 1px solid rgba(16, 17, 16, 0.18);
    background: transparent;
    color: var(--black);
    padding: 17px 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    transition: 0.25s ease;
}

.product-details-secondary:hover {
    background: var(--black);
    color: white;
}

.product-details-source {
    margin-top: 18px;
    color: #858a83;
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

body.product-modal-open {
    overflow: hidden;
}

@media (max-width: 850px) {
    .product-details-modal {
        padding: 15px;
    }

    .product-details-dialog {
        max-height: 94vh;
    }

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

    .product-details-visual {
        min-height: 330px;
        padding: 55px 30px 25px;
    }

    .product-details-visual::before {
        width: 300px;
        height: 300px;
    }

    .product-details-visual::after {
        width: 245px;
        height: 245px;
    }

    .product-details-visual img {
        max-height: 260px;
    }

    .product-details-content {
        padding: 38px 28px 35px;
    }
}

@media (max-width: 480px) {
    .product-details-modal {
        padding: 8px;
    }

    .product-details-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .product-details-content h2 {
        font-size: 40px;
    }

    .product-spec-row {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 10px 0;
    }

    .product-details-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-details-actions .btn-primary,
    .product-details-secondary {
        width: 100%;
    }
}
/* =====================================================
   DESKTOP MODE ON MOBILE / COMPACT DESKTOP FIX
   Keeps normal desktop design intact
===================================================== */

@media (min-width: 769px) and (max-width: 1100px) {

    /* MAIN CONTAINER */
    .container {
        width: 92%;
    }

    /* HEADER */
    .navbar {
        height: 82px;
    }

    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 10px;
        letter-spacing: 0.7px;
    }

    .nav-contact {
        padding: 13px 16px;
        font-size: 9px;
        gap: 8px;
    }


    /* HERO */
    .hero {
        min-height: 650px;
    }

    .hero-container {
        min-height: 650px;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 15px;
    }

    .hero-content {
        padding: 70px 0 60px;
    }

    .hero h1 {
        font-size: clamp(58px, 7vw, 82px);
    }

    .hero-description {
        max-width: 430px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat strong {
        font-size: 32px;
    }

    .machine-circle {
        width: 470px;
        height: 470px;
    }

    .machine-display img {
        width: 105%;
        max-width: 570px;
        max-height: 390px;
    }


    /* ABOUT */
    .about-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 45px;
    }

    .about-visual {
        min-height: 500px;
    }

    .about-image-card {
        width: 95%;
        height: 400px;
        padding: 25px;
    }

    .about-image-card img {
        width: 110%;
    }

    .about-number {
        width: 145px;
        height: 145px;
        font-size: 52px;
    }

    .about-shape {
        width: 145px;
        height: 145px;
        right: 10px;
    }

    .about-main-text {
        font-size: 18px;
        line-height: 1.65;
    }

    .about-small-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-features {
        gap: 18px;
    }


    /* MISSION / GOAL */
    .mission-goal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .purpose-card {
        padding: 22px;
    }

    .purpose-card p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* INFRASTRUCTURE */
    .infrastructure-heading {
        max-width: 650px;
        margin-bottom: 38px;
    }

    .infrastructure-heading h2 {
        font-size: clamp(44px, 6vw, 68px);
    }

    .infrastructure-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.75fr);
        gap: 22px;
    }

    .infrastructure-main {
        padding: 30px;
    }

    .infrastructure-main > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .quality-panel {
        padding: 32px 25px;
    }

    .quality-panel h3 {
        font-size: 30px;
    }


    /* PRODUCTS */
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card {
        padding: 20px;
    }

    .product-bottom h3 {
        font-size: 34px;
    }


    /* WHY US */
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .why-card {
        padding: 28px 22px;
    }

    .why-card h3 {
        font-size: 28px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-left {
        padding-left: 6%;
        padding-right: 6%;
    }
}


/* EXTRA SAFETY:
   Prevent any section from becoming wider than viewport
*/
@media (min-width: 769px) and (max-width: 1100px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    section,
    header,
    footer,
    main {
        max-width: 100%;
    }

    img {
        max-width: 100%;
    }

    .about-grid,
    .infrastructure-grid,
    .mission-goal-grid,
    .product-grid,
    .why-grid,
    .contact-grid {
        min-width: 0;
    }

    .about-grid > *,
    .infrastructure-grid > *,
    .mission-goal-grid > *,
    .product-grid > *,
    .why-grid > *,
    .contact-grid > * {
        min-width: 0;
    }
}


/* FINAL QA LOCK — desktop quality panel must never stretch with the left column */
@media (min-width: 901px) {
    .infrastructure-inline-grid {
        align-items: start !important;
        grid-template-rows: max-content !important;
    }

    .infrastructure-inline-grid > .quality-panel {
        align-self: start !important;
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
        box-sizing: border-box !important;
        align-items: center !important;
    }
}

/* DESKTOP PRODUCT MODAL — true wide editorial layout */
@media (min-width: 851px) {
    .product-details-modal {
        padding: 30px;
    }

    .product-details-dialog {
        width: min(1280px, calc(100vw - 60px));
        max-height: 92vh;
        overflow-y: auto;
    }

    .product-details-grid {
        display: grid;
        grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
        grid-template-areas:
            "visual content"
            "videos videos";
        min-height: 0;
    }

    .product-details-visual {
        grid-area: visual;
        min-height: 610px;
        padding: 76px 48px 48px;
    }

    .product-details-visual::before {
        width: 540px;
        height: 540px;
    }

    .product-details-visual::after {
        width: 430px;
        height: 430px;
    }

    .product-details-visual img {
        width: min(100%, 550px);
        max-height: 480px;
    }

    .product-details-content {
        grid-area: content;
        padding: 62px 62px 42px;
    }

    .product-details-content h2 {
        font-size: clamp(48px, 4vw, 70px);
    }

    .product-details-description {
        max-width: 700px;
        font-size: 14px;
        line-height: 1.7;
        padding: 17px 20px;
    }

    .product-spec-row {
        grid-template-columns: minmax(155px, 0.7fr) minmax(0, 1.3fr);
        padding: 12px 0;
    }

    .product-youtube {
        grid-area: videos;
        margin: 0;
        padding: 30px 62px 38px;
        border-top: 1px solid rgba(16,17,16,.11);
        background: rgba(255,255,255,.34);
    }

    .product-youtube-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .product-youtube-link {
        grid-template-columns: 190px minmax(0, 1fr) auto;
        min-height: 120px;
        padding: 9px;
    }

    .product-youtube-text strong {
        font-size: 14px;
    }

    .product-details-actions {
        margin-top: 28px;
    }
}

@media (max-width: 850px) {
    .product-details-youtube { }
    .product-youtube {
        grid-column: auto;
        padding: 0;
        border-top: 0;
        background: transparent;
    }
}


/* =====================================================
   SOCIAL FOOTER - PREMIUM ICONS
===================================================== */
.footer-social {
    gap: 18px;
    padding-bottom: 42px;
}

.footer-social-heading {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 900;
}

.footer-social-heading span {
    width: 30px;
    height: 2px;
}

.footer-social-links {
    gap: 16px;
}

.footer-social-links a {
    width: 54px;
    height: 54px;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    background: #fff;
    color: #242724;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.footer-social-links a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: .3s ease;
    pointer-events: none;
}

.footer-social-links a:hover {
    color: var(--red);
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,.13);
}

.footer-social-links svg {
    width: 27px;
    height: 27px;
}

.footer-social-links a:nth-child(2) svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.footer-social-links a:nth-child(3) svg {
    width: 29px;
    height: 29px;
}

@media (max-width: 600px) {
    .footer-social {
        gap: 17px;
        padding-bottom: 36px;
    }

    .footer-social-links {
        gap: 14px;
    }

    .footer-social-links a {
        width: 52px;
        height: 52px;
        border-radius: 13px;
    }

    .footer-social-links svg {
        width: 26px;
        height: 26px;
    }
}
