/* ===== THEME VARIABLES ===== */
[data-theme="dark"] {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-tertiary: #1a2236;
    --bg-card: #151c2e;
    --bg-card-hover: #1c2540;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --accent-subtle: rgba(99, 102, 241, 0.1);
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.12);
    --header-bg: rgba(10, 14, 26, 0.85);
    --header-border: rgba(255, 255, 255, 0.06);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --chip-bg: rgba(99, 102, 241, 0.12);
    --chip-text: #818cf8;
    --invert: 0;
    --menu-bg: #0a0e1a;
    --menu-text: #f1f5f9;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.2);
    --accent-subtle: rgba(99, 102, 241, 0.06);
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --header-bg: rgba(255, 255, 255, 0.88);
    --header-border: #e2e8f0;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --chip-bg: rgba(99, 102, 241, 0.08);
    --chip-text: #6366f1;
    --invert: 0;
    --menu-bg: #ffffff;
    --menu-text: #0f172a;
}

:root {
    --font: 'Sora', system-ui, -apple-system, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --speed: 0.35s;
    --speed-premium: 0.8s;
    --wrap: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

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

/* Global object-fit for all images */
.hero__slide img,
.about__card img,
.gallery__item img,
.features__img img,
.testimonials__avatar img,
.testimonials__bg img,
.products__item-img img,
.logistics__img img,
.new-gallery__item img,
.process__img img {
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--speed) var(--ease);
}

ul {
    list-style: none;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.sec {
    padding: 110px 0;
    overflow-x: hidden;
    width: 100%;
}

/* ===== ANIMATION ===== */
.anim {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.anim.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity var(--speed-premium) var(--ease-premium), transform var(--speed-premium) var(--ease-premium);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity var(--speed-premium) var(--ease-premium), transform var(--speed-premium) var(--ease-premium);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity var(--speed-premium) var(--ease-premium), transform var(--speed-premium) var(--ease-premium);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CHIP / TAG ===== */
.chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--chip-text);
    background: var(--chip-bg);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

/* ===== SECTION HEAD ===== */
.sec__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.sec__head h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 14px;
    transition: color 0.5s var(--ease);
}

.sec__head p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border-radius: var(--radius-xs);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    white-space: nowrap;
}

.btn--accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    position: relative;
    overflow: hidden;
}

.btn--accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s var(--ease-premium);
}

.btn--accent:hover::before {
    left: 100%;
}

.btn--accent:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}

.btn--white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 38px;
    font-size: 0.95rem;
}

/* ===== HEADER ===== */
.hd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 99999;
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--header-border);
    transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow var(--speed) var(--ease), backdrop-filter 0.5s var(--ease);
    overflow-x: hidden;
}

.hd.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}

[data-theme="dark"] .hd.scrolled {
    background: rgba(10, 14, 26, 0.95);
}

[data-theme="light"] .hd.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.hd__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
    width: 100%;
    max-width: 100%;
}

.hd__logo img {
    height: 90px;
}

.hd__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hd__nav li {
    display: inline-block;
}

.hd__nav a {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    display: inline-block;
}

.hd__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--speed) var(--ease);
}

.hd__nav a:hover {
    color: var(--text-primary);
}

.hd__nav a:hover::after {
    width: 100%;
}

.hd__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--speed) var(--ease);
}

.theme-toggle:hover {
    background: var(--accent-subtle);
    color: var(--accent);
    border-color: var(--accent-glow);
}

[data-theme="dark"] .theme-toggle__moon {
    display: none;
}

[data-theme="dark"] .theme-toggle__sun {
    display: block;
}

[data-theme="light"] .theme-toggle__sun {
    display: none;
}

[data-theme="light"] .theme-toggle__moon {
    display: block;
}

.hd__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-xs);
    transition: all var(--speed) var(--ease);
    position: relative;
    overflow: hidden;
}

.hd__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s var(--ease-premium);
}

.hd__cta:hover::before {
    left: 100%;
}

.hd__cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.hd__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100002;
    position: relative;
}

.hd__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--speed) var(--ease);
}

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

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

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

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 0;
}

.hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s var(--ease);
    z-index: 0;
}

.hero__slide.active {
    opacity: 1;
    z-index: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: parallaxZoom 20s ease-out infinite alternate;
}

@keyframes parallaxZoom {
    0% {
        transform: scale(1.05) translateY(0);
    }

    100% {
        transform: scale(1.1) translateY(-20px);
    }
}

.hero__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 14, 26, 0.88) 0%,
            rgba(99, 102, 241, 0.15) 100%);
}

.hero__slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 180px;
    z-index: 2;
}

.hero__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.2s var(--ease), transform 0.6s 0.2s var(--ease);
}

.hero__slide.active .hero__label {
    opacity: 1;
    transform: translateY(0);
}

.hero__slide-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s 0.35s var(--ease), transform 0.7s 0.35s var(--ease);
}

.hero__slide.active .hero__slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero__slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.5s var(--ease), transform 0.6s 0.5s var(--ease);
}

.hero__slide.active .hero__slide-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Controls */
.hero__controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
}

.hero__arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}

.hero__dots {
    display: flex;
    gap: 8px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    position: relative;
    overflow: hidden;
}

.hero__dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--accent);
}

/* Hero CTA Bar */
.hero__cta-bar {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    max-width: calc(100% - 40px);
}

/* Scroll Hint */
.hero__scroll-hint {
    position: absolute;
    right: 32px;
    bottom: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== ABOUT — Bento Grid ===== */
.about {
    background: var(--bg-secondary);
    transition: background 0.5s var(--ease);
}

.about__bento {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.about__card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background 0.5s var(--ease);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.about__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--speed-premium) var(--ease-premium);
}

.about__card:hover img {
    transform: scale(1.05);
}

.about__card--hero {
    grid-row: 1 / 4;
    min-height: 420px;
}

.about__card:not(.about__card--hero):not(.about__card--stat) {
    min-height: 0;
}

.about__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.about__card-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about__card-overlay p {
    font-size: 0.82rem;
    opacity: 0.8;
    line-height: 1.5;
}

.about__card--stat {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-color: var(--accent);
}

.about__stat-inner {
    display: flex;
    gap: 28px;
    text-align: center;
}

.about__stat-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about__stat-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY — Masonry ===== */
.gallery {
    background: var(--bg-primary);
    transition: background 0.5s var(--ease);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--speed-premium) var(--ease-premium);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--speed) var(--ease);
}

.gallery__item:hover .gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PROCESS — Horizontal Scroll ===== */
.process {
    background: var(--bg-secondary);
    transition: background 0.5s var(--ease);
    overflow: hidden;
}

.process__track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-tertiary);
}

.process__track::-webkit-scrollbar {
    height: 4px;
}

.process__track::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 2px;
}

.process__track::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.process__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background 0.5s var(--ease);
}

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

.process__num {
    padding: 16px 20px 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
}

.process__img {
    margin: 12px 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.process__img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.process__card:hover .process__img img {
    transform: scale(1.05);
}

.process__card h3 {
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.5s var(--ease);
}

.process__card p {
    padding: 0 20px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process__connector {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.process__connector::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--border));
    border-radius: 1px;
}

/* ===== PRODUCTS ===== */
.products {
    background: var(--bg-primary);
    transition: background 0.5s var(--ease);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.products__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background 0.5s var(--ease);
}

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

.products__item-img {
    overflow: hidden;
    height: 220px;
}

.products__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--speed-premium) var(--ease-premium);
}

.products__item:hover .products__item-img img {
    transform: scale(1.05);
}

.products__item-body {
    padding: 24px;
}

.products__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.products__item-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.5s var(--ease);
}

.products__item-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.products__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.products__link:hover {
    color: var(--accent-light);
    gap: 8px;
}

/* ===== LOGISTICS ===== */
.logistics {
    background: var(--bg-secondary);
    transition: background 0.5s var(--ease);
}

.logistics__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.logistics__info .chip {
    margin-bottom: 14px;
}

.logistics__info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 14px;
    transition: color 0.5s var(--ease);
}

.logistics__info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.logistics__nums {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.logistics__num-box {
    text-align: center;
}

.logistics__num-box .counter {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    transition: color 0.5s var(--ease);
}

.logistics__num-box small {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.logistics__num-box label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.logistics__images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 12px;
}

.logistics__img-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--speed-premium) var(--ease-premium);
}

.logistics__img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-premium);
}

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

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

.logistics__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--speed) var(--ease);
}

.logistics__img-card:hover .logistics__overlay {
    opacity: 1;
}

.logistics__zoom {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.logistics__zoom:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.logistics__img-card.item-1 {
    grid-column: span 3;
    grid-row: span 2;
}

.logistics__img-card.item-2 {
    grid-column: span 3;
    grid-row: span 1;
}

.logistics__img-card.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.logistics__img-card.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.logistics__img-card.item-5 {
    grid-column: span 1;
    grid-row: span 1;
}


/* Mobile responsive */
@media (max-width: 992px) {
    .logistics__images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .logistics__img-card {
        height: 200px;
    }
}
@media (max-width: 576px) {
    .logistics__images {
        grid-template-columns: 1fr;
    }
}


/* ===== CLIENTS ===== */
.clients {
    background: var(--bg-primary);
    padding: 80px 0;
    transition: background 0.5s var(--ease);
}

.clients__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.clients__logo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--speed) var(--ease);
}

.clients__logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.clients__logo-card img {
    height: 92px;
    width: 92px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 8px;
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92), rgba(99, 102, 241, 0.2));
}

.cta .wrap {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.ft {
    background: var(--bg-secondary);
    color: var(--text-muted);
    padding: 60px 0 0;
    transition: background 0.5s var(--ease);
}

.ft__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.ft__logo {
    height: 42px;
    margin-bottom: 12px;
}

.ft__brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.ft__col h4 {
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
    transition: color 0.5s var(--ease);
}

.ft__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft__col a {
    font-size: 0.84rem;
    color: var(--text-muted);
}

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

.ft__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 2px;
}

.ft__contact-item svg {
    margin-top: 4px;
    color: var(--accent);
    flex-shrink: 0;
}

.ft__contact-item small {
    display: block;
    line-height: 1.5;
    color: var(--text-muted);
}

.ft__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--menu-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-premium);
    will-change: transform;
}

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

.mobile-menu-overlay__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--menu-text);
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    z-index: 10;
}

.mobile-menu-overlay__close:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-menu-overlay__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-overlay__nav li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-overlay.open .mobile-menu-overlay__nav li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay__nav a {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--menu-text);
    padding: 12px 24px;
    text-decoration: none;
    position: relative;
    transition: color var(--speed) var(--ease);
}

.mobile-menu-overlay__nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: transform var(--speed) var(--ease);
}

.mobile-menu-overlay__nav a:hover {
    color: var(--accent);
}

.mobile-menu-overlay__nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about__bento {
        gap: 16px;
    }

    .logistics__split {
        gap: 40px;
    }

    .gallery__grid {
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    .sec {
        padding: 80px 0;
    }

    .wrap {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hd__nav {
        display: none;
    }

    .hd__burger {
        display: flex;
    }

    .hd__cta {
        display: none;
    }

    .hd__logo img {
        height: 36px;
    }

    .hero {
        min-height: 550px;
        height: 100vh;
    }

    .hero__slide-content {
        padding-bottom: 180px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 5px 14px;
    }

    .hero__slide-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        max-width: 100%;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero__slide-content p {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero__controls {
        bottom: 130px;
        gap: 12px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero__arrow {
        width: 38px;
        height: 38px;
    }

    .hero__cta-bar {
        bottom: 32px;
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
    }

    .hero__cta-bar .btn {
        font-size: 0.88rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero__scroll-hint {
        display: none;
    }

    .about__bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .about__card--hero {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 280px;
    }

    .about__stat-inner {
        gap: 20px;
    }

    .about__stat-item strong {
        font-size: 1.4rem;
    }

    .about__stat-item span {
        font-size: 0.68rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__caption {
        font-size: 0.8rem;
        padding: 12px 16px;
    }

    .process__card {
        flex: 0 0 260px;
    }

    .process__connector {
        width: 30px;
    }

    .process__connector::before {
        width: 30px;
    }

    .products__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products__item-img {
        height: 200px;
    }

    .products__item-body {
        padding: 20px;
    }

    .logistics__split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logistics__info h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .logistics__nums {
        gap: 24px;
        justify-content: space-around;
    }

    .logistics__num-box .counter {
        font-size: 1.6rem;
    }

    .logistics__num-box small {
        font-size: 1rem;
    }

    .logistics__num-box label {
        font-size: 0.7rem;
    }

    .logistics__img--main img {
        height: 300px;
    }

    .logistics__img--secondary {
        bottom: -16px;
        right: 0;
        width: 160px;
        height: 130px;
    }

    .ft__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ft__brand {
        grid-column: 1 / -1;
    }

    .clients__row {
        gap: 24px;
    }

    .clients__logo-card {
        padding: 16px 28px;
    }

    .clients__logo-card img {
        height: 60px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .sec {
        padding: 60px 0;
    }

    .sec__head {
        margin-bottom: 48px;
    }

    .sec__head h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .sec__head p {
        font-size: 0.9rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__slide-content {
        padding-bottom: 160px;
    }

    .hero__slide-content h1 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        line-height: 1.2;
    }

    .hero__slide-content p {
        font-size: 0.92rem;
    }

    .hero__controls {
        bottom: 110px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero__arrow {
        width: 36px;
        height: 36px;
    }

    .hero__dot {
        width: 8px;
        height: 8px;
    }

    .hero__dot.active {
        width: 24px;
    }

    .hero__cta-bar {
        bottom: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .hero__cta-bar .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.86rem;
    }

    .about__bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .about__card--hero {
        grid-row: auto;
        min-height: 240px;
    }

    .about__stat-inner {
        flex-direction: column;
        gap: 16px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .process__card {
        flex: 0 0 240px;
    }

    .process__img img {
        height: 140px;
    }

    .logistics__nums {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .logistics__img--secondary {
        width: 140px;
        height: 110px;
        bottom: -12px;
    }

    .cta__btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta__btns .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ft__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ft__brand {
        grid-column: 1;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--bg-secondary);
    transition: background 0.5s var(--ease);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 100%;
}

.features__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--speed-premium) var(--ease-premium);
}

.features__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-glow);
}

.features__img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.features__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--speed-premium) var(--ease-premium);
}

.features__item:hover .features__img img {
    transform: scale(1.1);
}

.features__content {
    padding: 28px;
}

.features__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: color 0.5s var(--ease);
}

.features__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.testimonials__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.testimonials__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(10, 14, 26, 0.92) 0%,
            rgba(99, 102, 241, 0.25) 100%);
}

.testimonials .wrap {
    position: relative;
    z-index: 2;
}

.testimonials .sec__head {
    color: #fff;
}

.testimonials .sec__head h2 {
    color: #fff;
}

.testimonials .sec__head p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
    width: 100%;
    max-width: 100%;
}

.testimonials__item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--speed-premium) var(--ease-premium);
}

.testimonials__item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonials__quote {
    position: relative;
    margin-bottom: 24px;
}

.testimonials__quote svg {
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--accent);
}

.testimonials__quote p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    padding-left: 20px;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

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

.testimonials__author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.testimonials__author span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== NEW COLLECTION GALLERY ===== */
.new-gallery {
    background: var(--bg-primary);
    transition: background 0.5s var(--ease);
}

/* Filter Buttons */
.new-gallery__filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.new-gallery__filter {
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--speed) var(--ease);
}

.new-gallery__filter:hover {
    background: var(--accent-subtle);
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.new-gallery__filter.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Gallery Grid */
.new-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
}

.new-gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all var(--speed-premium) var(--ease-premium);
}

.new-gallery__item.hidden {
    display: none;
}

.new-gallery__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-glow);
}

.new-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--speed-premium) var(--ease-premium);
}

.new-gallery__item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.new-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--speed) var(--ease);
}

.new-gallery__item:hover .new-gallery__overlay {
    opacity: 1;
}

.new-gallery__zoom {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.new-gallery__zoom:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-premium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s var(--ease-premium);
}

.lightbox.active .lightbox__content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox__counter {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

/* Lightbox Controls */
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.lightbox__close {
    top: 24px;
    right: 24px;
}

.lightbox__prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox__next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--accent-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all var(--speed-premium) var(--ease-premium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--accent-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    /* Features Mobile */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .features__img {
        height: 200px;
    }

    .features__content {
        padding: 20px;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials__item {
        padding: 24px;
    }

    .testimonials__avatar {
        width: 48px;
        height: 48px;
    }

    /* New Gallery Mobile */
    .new-gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
        width: 100%;
    }

    .new-gallery__filters {
        gap: 8px;
    }

    .new-gallery__filter {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    /* Lightbox Mobile */
    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        width: 44px;
        height: 44px;
    }

    .lightbox__close {
        top: 16px;
        right: 16px;
    }

    .lightbox__prev {
        left: 16px;
    }

    .lightbox__next {
        right: 16px;
    }

    .lightbox__content img {
        max-height: 75vh;
    }
}

@media (max-width: 480px) {
    .new-gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}