/* ============================================
   MARMAFARM — Mobile-First CSS
   Design Benchmark: Gotham Greens
   Clean, Modern, Bold Typography
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Colors */
    --green-900: #0d2818;
    --green-800: #1a3a2a;
    --green-700: #1b4332;
    --green-600: #2d6a4f;
    --green-500: #40916c;
    --green-400: #52b788;
    --green-300: #74c69d;
    --accent: #4ecdc4;
    --accent-glow: rgba(78, 205, 196, 0.25);
    --white: #ffffff;
    --off-white: #f8faf9;
    --gray-100: #f0f2f1;
    --gray-200: #e2e5e3;
    --gray-400: #9ca3a0;
    --gray-600: #5a6360;
    --gray-800: #2d3331;
    --dark: #0a1612;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-pad: 5rem 0;
    --container-pad: 0 1.25rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-pad);
}

/* ---------- SECTION COMMON ---------- */
.section {
    padding: var(--section-pad);
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-tag.light {
    color: var(--accent);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-tag {
    padding-left: 0;
}

.section-header.center .section-tag::before {
    display: none;
}

.section-header h2,
.about-text h2,
.horeca-content h2,
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 560px;
}

.section-header.center p {
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: #3dbdb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(10, 22, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(10, 22, 18, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.nav-menu.open {
    transform: translateX(0);
}

.nav-menu a {
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.nav-cta {
    color: var(--accent);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    border: 1.5px solid var(--accent);
    border-radius: 60px;
    font-size: 0.85rem !important;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px;
    padding: 0.4rem 0.85rem;
    color: var(--white);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.lang-flag {
    font-size: 1rem;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 18, 0.3) 0%,
        rgba(10, 22, 18, 0.5) 40%,
        rgba(10, 22, 18, 0.85) 75%,
        rgba(10, 22, 18, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(78, 205, 196, 0.12);
    border: 1px solid rgba(78, 205, 196, 0.25);
    border-radius: 60px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.hero-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--gray-400);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-num {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-unit {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gray-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ---------- ABOUT ---------- */
.about {
    background: var(--dark);
}

.about-grid {
    display: grid;
    gap: 3rem;
}

.about-visual {
    position: relative;
}

.about-img-stack {
    position: relative;
}

.about-img-main {
    border-radius: 1rem;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -1.5rem;
    right: -0.5rem;
    width: 45%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 4px solid var(--dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-text p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s var(--ease-out);
}

.about-feature:hover {
    background: rgba(78, 205, 196, 0.06);
    border-color: rgba(78, 205, 196, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 0.5rem;
    color: var(--accent);
}

.about-feature strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.about-feature span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ---------- TECHNOLOGY ---------- */
.tech {
    background: var(--green-900);
}

.tech-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.tech-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 205, 196, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: var(--accent);
}

.tech-card-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--green-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Greenhouse Gallery Marquee */
.tech-gallery {
    overflow: hidden;
    border-radius: 1rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-gallery-track {
    display: flex;
    gap: 1rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.tech-gallery-track img {
    height: 180px;
    width: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- PRODUCTS ---------- */
.products {
    background: var(--dark);
}

.product-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.product-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    font-family: var(--font-primary);
}

.product-tab:hover {
    background: rgba(78, 205, 196, 0.08);
    color: var(--white);
}

.product-tab.active {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.product-card[data-hidden="true"] {
    display: none;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 205, 196, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--green-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.product-card h4 {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.product-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

.product-card-wide .product-img {
    aspect-ratio: 16/9;
}

.product-info-overlay {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10,22,18,0.95), rgba(10,22,18,0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-info-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: left;
    padding: 0;
}

.product-info-overlay p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Custom Growing */
.custom-growing {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(45, 106, 79, 0.15));
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 1rem;
    overflow: hidden;
}

.custom-growing-inner {
    padding: 2rem 1.5rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.custom-growing h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.custom-growing p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---------- HORECA ---------- */
.horeca {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.horeca-bg {
    position: absolute;
    inset: 0;
}

.horeca-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horeca-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 18, 0.92), rgba(10, 22, 18, 0.8));
}

.horeca-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.horeca-content h2 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.horeca-content p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.horeca-perks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.perk:hover {
    background: rgba(78, 205, 196, 0.08);
    border-color: rgba(78, 205, 196, 0.2);
}

.perk-icon {
    font-size: 1.3rem;
}

/* ---------- LOGISTICS ---------- */
.logistics {
    background: var(--green-900);
}

.logistics-grid {
    display: grid;
    gap: 2rem;
}

.logistics-map {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden;
}

.map-svg {
    width: 100%;
    height: auto;
}

.map-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; r: 12; }
    50% { opacity: 0.5; r: 18; }
}

.map-line {
    animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -24; }
}

.logistics-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logistics-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.75rem;
    transition: all 0.3s var(--ease-out);
}

.logistics-card:hover {
    background: rgba(78, 205, 196, 0.06);
    border-color: rgba(78, 205, 196, 0.15);
}

.logistics-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.logistics-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.logistics-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ---------- CONTACT ---------- */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info h2 {
    font-family: var(--font-display);
}

.contact-info p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(78, 205, 196, 0.05);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--green-900);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 280px;
}

.footer-links h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    padding: 0.25rem 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.stock-credit {
    font-size: 0.7rem;
}

/* ---------- ANIMATIONS (AOS-like) ---------- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE: TABLET (min 640px) ---------- */
@media (min-width: 640px) {
    :root {
        --section-pad: 6rem 0;
        --container-pad: 0 2rem;
    }

    .hero {
        align-items: center;
        padding: 0;
    }

    .hero-content {
        padding: 0 2rem;
    }

    .hero-stats {
        gap: 3rem;
    }

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

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

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

    .horeca-perks {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ---------- RESPONSIVE: DESKTOP (min 1024px) ---------- */
@media (min-width: 1024px) {
    :root {
        --section-pad: 8rem 0;
        --container-pad: 0 3rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        transform: none;
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero {
        align-items: center;
    }

    .hero-content {
        padding: 0 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1.15fr;
        gap: 4rem;
        align-items: center;
    }

    .tech-gallery-track img {
        height: 240px;
    }

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

    .logistics-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
        align-items: center;
    }

    .custom-growing-inner {
        grid-template-columns: 1fr auto;
        padding: 2.5rem;
    }
}

/* ---------- RESPONSIVE: LARGE DESKTOP (min 1400px) ---------- */
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }

    .hero h1 {
        font-size: 5rem;
    }
}

/* ---------- SELECTION ---------- */
::selection {
    background: var(--accent);
    color: var(--dark);
}

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

    html {
        scroll-behavior: auto;
    }

    .tech-gallery-track {
        animation: none;
    }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--green-700);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-600);
}
