/* ============================================================
   VREMP — Apple × Mercury Design System
   Dark, editorial, precision-crafted
   ============================================================ */
:root {
    /* Surface */
    --bg:          #07131f;
    --bg-1:        #0b1b2d;
    --bg-2:        #10263b;
    --bg-3:        #16324a;
    --bg-4:        #1d3c57;
    --bg-raised:   #0f2134;

    /* Borders */
    --line:        rgba(255, 255, 255, 0.08);
    --line-md:     rgba(255, 255, 255, 0.12);
    --line-hi:     rgba(255, 255, 255, 0.18);

    /* Text */
    --t1:  #f4f7fb;
    --t2:  rgba(244, 247, 251, 0.8);
    --t3:  rgba(244, 247, 251, 0.62);
    --t4:  rgba(244, 247, 251, 0.62);

    /* Accent — single, restrained */
    --blue:        #4ea3ff;
    --blue-dim:    rgba(78,163,255,0.16);
    --blue-border: rgba(78,163,255,0.28);

    /* Status */
    --green:  #16a34a;
    --amber:  #d97706;
    --red:    #dc2626;

    /* Type */
    --font: 'Plus Jakarta Sans', 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing rhythm */
    --section: 9rem 0;
    --max:     1320px;

    /* Radius */
    --r-xs:  8px;
    --r-sm:  12px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-pill: 9999px;

    /* Motion */
    --ease:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-b: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur:    0.4s;

    /* Shadows — minimal, light-mode aware */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 28px 72px rgba(0, 0, 0, 0.4);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
    background: var(--bg);
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
textarea { resize: vertical; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: loadPulse 1.6s ease-in-out infinite;
}

@keyframes loadPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

.loading-bar {
    width: 160px;
    height: 1px;
    background: var(--line-md);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background: var(--blue);
    border-radius: var(--r-pill);
    animation: loadBar 1.5s var(--ease) forwards;
}

@keyframes loadBar {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* ============================================================
   BACKGROUND — subtle noise texture and dynamic ambient moving glow
   ============================================================ */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
    will-change: transform;
}

.bg-shape-1 {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, rgba(0, 70, 200, 0.08) 65%, transparent 100%);
    top: 5%;
    left: -100px;
    animation: ambientFloat1 22s ease-in-out infinite alternate;
}

.bg-shape-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, rgba(6, 182, 212, 0.08) 65%, transparent 100%);
    top: 38%;
    right: -100px;
    animation: ambientFloat2 26s ease-in-out infinite alternate;
}

.bg-shape-3 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(59, 130, 246, 0.06) 65%, transparent 100%);
    bottom: -60px;
    left: 12%;
    animation: ambientFloat3 30s ease-in-out infinite alternate;
}

@keyframes ambientFloat1 {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(90px, 70px, 0) scale(1.15); }
    100% { transform: translate3d(-50px, 130px, 0) scale(0.92); }
}

@keyframes ambientFloat2 {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(-100px, -80px, 0) scale(1.22); }
    100% { transform: translate3d(60px, -120px, 0) scale(0.88); }
}

@keyframes ambientFloat3 {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(80px, -90px, 0) scale(1.14); }
    100% { transform: translate3d(-70px, 50px, 0) scale(0.94); }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,102,255,0.07) 0%, transparent 70%),
        var(--bg);
    pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(7, 19, 31, 0.45);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                padding var(--dur) var(--ease);
}

.site-header.scrolled {
    background: rgba(7, 19, 31, 0.96);
    border-bottom-color: rgba(255,255,255,0.12);
    padding: 0.85rem 0;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
}

/* ── Brand mark ───────────────────────────────────────────── */
.brand-mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: 110px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: opacity var(--dur) var(--ease);
}

.brand-logo:hover { opacity: 0.7; }

/* ── Desktop nav pill ─────────────────────────────────────── */
.main-nav-pill {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(6, 25, 40, 0.72);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-pill);
    padding: 6px;
    backdrop-filter: blur(20px);
}

.nav-link {
    padding: 0.55rem 1.15rem;
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--t2);
    transition: color var(--dur) var(--ease),
                background var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--t1);
    background: rgba(78, 163, 255, 0.16);
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(78, 163, 255, 0.2);
    color: var(--t1);
    border-color: transparent;
}

/* ── Header icons ─────────────────────────────────────────── */
.header-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: transparent;
    border: 1px solid var(--line);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
    position: relative;
}

.icon-circle:hover {
    color: var(--t1);
    border-color: var(--line-hi);
    background: var(--bg-3);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--blue);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
    transition: transform 0.2s var(--ease-b);
}

/* ── Hamburger ────────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: transparent;
    transition: border-color var(--dur) var(--ease);
}

.hamburger:hover { border-color: var(--line-hi); }

.hamburger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--t2);
    border-radius: var(--r-pill);
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
    .main-nav-pill { display: none; }
    .hamburger     { display: flex; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 11rem 0 6.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 35%), var(--bg);
}

/* Thin horizontal rule at very bottom of hero */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* ── Left copy ────────────────────────────────────────────── */
.hero-copy { max-width: 580px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 1.65rem;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.55rem 1rem;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.04);
}

.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blinkDot 2.4s ease-in-out infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(4rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.98;
    color: var(--t1);
    margin-bottom: 1.6rem;
}

.hero-accent {
    color: var(--t3);
    display: block;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(245,245,247,0.78);
    line-height: 1.9;
    margin-bottom: 2.8rem;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Right visual ─────────────────────────────────────────── */
.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0,102,255,0.14), transparent 26%),
                radial-gradient(circle at 20% 60%, rgba(72,224,151,0.08), transparent 18%);
    pointer-events: none;
    z-index: 0;
}

.hero-parallax-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
}

.hero-img {
    width: 100%;
    display: block;
    transition: transform 0.9s var(--ease);
    mix-blend-mode: lighten;
}

.hero-img-wrap:hover .hero-img { transform: scale(1.03); }

/* Floating chips */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-3);
    border: 1px solid var(--line-md);
    border-radius: var(--r-pill);
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t2);
    white-space: nowrap;
    backdrop-filter: blur(12px);
    animation: floatChip 5s ease-in-out infinite;
}

.hero-float i { color: var(--blue); font-size: 0.9rem; }
.hero-float-1 { top: 8%; right: -16px; animation-delay: 0s; }
.hero-float-2 { bottom: 12%; left: -16px; animation-delay: -2.5s; }

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

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-1);
}

.trust-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 150px;
    justify-content: center;
    padding: 0.5rem;
    border-radius: var(--r-md);
    transition: background var(--dur) var(--ease);
}

.trust-badge-item:hover { background: var(--bg-3); }

.trust-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-xs);
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
}

.trust-badge-item:hover .trust-badge-icon {
    background: var(--blue-dim);
    border-color: var(--blue-border);
}

.trust-badge-text { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-badge-text strong { font-size: 0.82rem; font-weight: 600; color: var(--t1); }
.trust-badge-text span   { font-size: 0.72rem; color: var(--t3); }

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-divider { display: none; }
    .trust-badge-item { min-width: 130px; justify-content: flex-start; }
}

/* ============================================================
   VEHICLE SELECTOR SECTION
   ============================================================ */
.vehicle-selector-section {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

.vehicle-selector-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left content card */
.vehicle-selector-content {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 3rem;
}

.vehicle-selector-header { margin-bottom: 2.5rem; }

.vehicle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    border-radius: var(--r-pill);
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.25rem;
}

.vehicle-selector-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--t1);
    margin-bottom: 0.85rem;
}

.gradient-text { color: var(--t3); }

.vehicle-selector-subtitle {
    font-size: 0.95rem;
    color: var(--t2);
    line-height: 1.7;
}

/* Form grid */
.vehicle-selector-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.vehicle-select-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.vehicle-select-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vehicle-select-group label i { color: var(--blue); }

.vehicle-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    color: var(--t1);
    font-family: var(--font);
    font-size: 0.88rem;
    outline: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(245,245,247,0.3)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.2rem;
    transition: border-color var(--dur) var(--ease),
                background-color var(--dur) var(--ease);
}

.vehicle-select:hover  { border-color: var(--line-hi); }
.vehicle-select:focus  { border-color: var(--blue); background: var(--bg-4); }
.vehicle-select option { background: var(--bg-3); }

.vehicle-submit-btn {
    grid-column: span 3;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Stats row inside card */
.vehicle-selector-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--t1);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--t3);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

/* Right visual */
.vehicle-selector-visual { position: relative; }

.vehicle-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vehicle-image {
    max-width: 100%;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
    mix-blend-mode: lighten;
    animation: floatImage 7s ease-in-out infinite;
}

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

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-3);
    border: 1px solid var(--line-md);
    border-radius: var(--r-pill);
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t2);
    white-space: nowrap;
    animation: floatChip 4s ease-in-out infinite;
}

.floating-badge i { color: var(--green); }
.floating-badge-2 i { color: var(--blue); }
.floating-badge-1 { top: 12%; right: 0; animation-delay: 0s; }
.floating-badge-2 { bottom: 18%; left: 0; animation-delay: -2s; }

/* Responsive */
@media (max-width: 1024px) {
    .vehicle-selector-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .vehicle-selector-visual  { display: none; }
}

@media (max-width: 640px) {
    .vehicle-selector-form    { grid-template-columns: 1fr; }
    .vehicle-submit-btn       { grid-column: span 1; }
    .vehicle-selector-content { padding: 2rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

/* Primary — solid blue */
.btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.btn-primary:hover {
    background: #1a7aff;
    border-color: #1a7aff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,102,255,0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Outline — border only */
.btn-outline {
    background: transparent;
    color: var(--t1);
    border-color: var(--line-md);
}

.btn-outline:hover {
    border-color: var(--line-hi);
    background: var(--bg-3);
    transform: translateY(-2px);
}

/* Glass — subtle fill */
.btn-glass {
    background: var(--bg-3);
    color: var(--t1);
    border-color: var(--line);
}

.btn-glass:hover {
    background: var(--bg-4);
    border-color: var(--line-md);
    transform: translateY(-2px);
}

.btn-full  { width: 100%; }
.btn-sm    { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-glow  { }   /* kept as class hook, no extra style needed in dark mode */

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    margin-bottom: 4.25rem;
    max-width: 720px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--blue);
    opacity: 0.85;
    flex-shrink: 0;
}

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

.section-title {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: var(--t1);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: rgba(245,245,247,0.78);
    line-height: 1.9;
}

/* Gradient text utility */
.gradient-text { color: var(--t3); }

/* ============================================================
   PART SEARCH SECTION
   ============================================================ */
.part-search-section {
    padding: 10rem 0 6rem;
    background: var(--bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Search card container */
.search-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

/* Tab row */
.search-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.05rem 1.5rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--t3);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background var(--dur) var(--ease),
                transform 0.2s ease;
    margin-bottom: -1px;
}

.search-tab i { font-size: 0.85rem; }

.search-tab:hover  {
    color: var(--t1);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

.search-tab.active {
    color: var(--t1);
    border-bottom-color: var(--blue);
}

/* Panel */
.search-panel { display: none; padding: 2.25rem; }
.search-panel.active { display: block; }

/* Main search row */
.search-main-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
    align-items: stretch;
}

.search-main-row:last-child { margin-bottom: 0; }

.search-row-single { margin-top: 0.9rem; }

/* Input wrap */
.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 23px;
    padding: 0 1.2rem;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.search-input-wrap:focus-within { border-color: rgba(0,102,255,0.45); background: rgba(255,255,255,0.08); }

.search-input-wrap i {
    color: var(--blue);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--t1);
    padding: 1rem 0;
}

.search-input::placeholder { color: rgba(245,245,247,0.45); }

/* Select */
.search-select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 23px;
    padding: 1rem 1.05rem;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--t1);
    outline: none;
    appearance: none;
    cursor: pointer;
    min-width: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(245,245,247,0.4)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.search-select:hover { border-color: rgba(255,255,255,0.18); }
.search-select:focus { border-color: rgba(0,102,255,0.5); }
.search-select option { background: rgba(255,255,255,0.06); }

/* Search button */
.btn-search {
    padding: 1rem 1.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Quick chips */
.location-query-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1.1rem;
    flex-wrap: wrap;
}

.btn-location {
    padding: 0.8rem 1.1rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.current-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: var(--t2);
    font-size: 0.82rem;
}

.current-location-pill i {
    color: var(--blue);
    font-size: 0.7rem;
}

.search-quick {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.quick-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--t3);
}

.search-results {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    color: var(--t2);
    font-size: 0.95rem;
}

.shop-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 3rem 2rem;
}

.shop-empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--t1);
}

.shop-empty-state p {
    color: var(--t2);
    line-height: 1.8;
}

.quick-chip {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--t2);
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 0.3rem 0.75rem;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
}

.quick-chip:hover {
    color: var(--t1);
    border-color: var(--line-hi);
    background: var(--bg-4);
}

/* Shop intro section */
.shop-intro {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
    .search-main-row { flex-direction: column; }
    .search-select   { min-width: unset; width: 100%; }
    .btn-search      { width: 100%; }
}

/* ============================================================
   SHOP GRID & PRODUCT CARDS
   ============================================================ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.shop-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.22);
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
}

/* Image area */
.shop-card-img {
    position: relative;
    background: rgba(255,255,255,0.04);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.shop-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.55s var(--ease);
}

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

/* Tag badge */
.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.5rem 0.95rem;
    border-radius: var(--r-pill);
    background: rgba(0,102,255,0.2);
    color: #fff;
    z-index: 2;
}

.product-tag.tag-new  { background: rgba(72,224,151,0.22); color: #000; }
.product-tag.tag-sale { background: rgba(255,159,10,0.22); color: #000; }

/* Card body */
.shop-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--t1);
    line-height: 1.4;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.35rem 0;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    color: var(--t2);
}

.product-specs i {
    color: var(--green);
    font-size: 0.78rem;
}

/* Footer: price + cart button */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--t1);
}

.product-price .old-price {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(245,245,247,0.65);
    text-decoration: line-through;
    margin-left: 0.45rem;
}

.btn-add-cart {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                transform var(--dur) var(--ease);
}

.btn-add-cart:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: scale(1.1);
}

.shop-card {
    cursor: pointer;
}

.product-detail-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 12, 28, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 4000;
}

.product-detail-modal-overlay.open {
    display: grid;
}

.product-detail-modal {
    width: min(1180px, 100%);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background: rgba(14, 24, 44, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    box-shadow: 0 45px 120px rgba(0,0,0,0.32);
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--t3);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.modal-close:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: var(--t1);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.product-detail-image {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 2rem;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-title {
    font-size: 2rem;
    line-height: 1.05;
    color: var(--t1);
}

.product-detail-desc {
    color: var(--t2);
    line-height: 1.8;
    font-size: 0.98rem;
}

.product-detail-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--t2);
}

.product-detail-stats strong {
    color: var(--t1);
    font-weight: 600;
}

.product-detail-features h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--t1);
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--t2);
}

.product-detail-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--green);
    display: inline-block;
    width: 1rem;
    text-align: center;
}

.product-detail-actions {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--t1);
}

.product-detail-modal button {
    margin-top: 0.5rem;
}

@media (max-width: 980px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-image {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .product-detail-modal {
        padding: 1.25rem;
    }
    .product-detail-title {
        font-size: 1.6rem;
    }
}

.checkout-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 4rem 1.5rem;
    background: radial-gradient(circle at top, rgba(34, 132, 255, 0.12), transparent 35%),
                radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.08), transparent 30%),
                var(--bg);
}

.checkout-message {
    max-width: 640px;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 3rem 2rem;
    box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

.checkout-message h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.2rem;
    color: var(--t1);
}

.checkout-message p {
    color: var(--t2);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.checkout-message .btn {
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        border-radius: var(--r-lg);
    }
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section {
    padding: var(--section);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--line);
}

.category-card {
    background: var(--bg-2);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.category-card:hover { background: var(--bg-3); }

/* Hover accent line at top */
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform var(--dur) var(--ease);
}

.category-card:hover::before { transform: scaleX(1); }

.cat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease-b);
}

.category-card:hover .cat-icon {
    background: var(--blue-dim);
    border-color: var(--blue-border);
    color: var(--blue);
    transform: scale(1.1) rotate(-6deg);
}

.category-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--t1);
}

.category-card p {
    font-size: 0.78rem;
    color: var(--t3);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--r-lg);
    }
}

/* ============================================================
   BRAND STRIP — SCROLLING MARQUEE
   ============================================================ */
.brand-strip-section {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

.brand-strip {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image:         linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.brand-strip-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 36s linear infinite;
    width: max-content;
}

.brand-strip:hover .brand-strip-content { animation-play-state: paused; }

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

.brand-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--t4);
    flex-shrink: 0;
    transition: color var(--dur) var(--ease);
    cursor: default;
}

.brand-name:hover { color: var(--t1); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: var(--section);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: start;
}

/* Form card */
.contact-form {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group { margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 0.8rem 1rem;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--t1);
    outline: none;
    transition: border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--t4); }

.form-group input:hover,
.form-group textarea:hover { border-color: var(--line-hi); }

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--bg-4);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .form-row          { grid-template-columns: 1fr; }
    .contact-form      { padding: 1.75rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-1);
    border-top: 1px solid var(--line);
    padding: 5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2.5rem;
}

/* Brand column */
.brand-footer {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.footer-brand-col p {
    font-size: 0.88rem;
    color: var(--t3);
    line-height: 1.75;
    max-width: 300px;
}

/* Link columns */
.footer-col h6 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t2);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--t3);
    transition: color var(--dur) var(--ease);
    display: inline-block;
}

.footer-col a:hover { color: var(--t1); }

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--t4);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: var(--r-xs);
    border: 1px solid var(--line);
    background: transparent;
    color: var(--t3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
}

.footer-socials a:hover {
    color: var(--t1);
    border-color: var(--line-hi);
    background: var(--bg-3);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
    .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-section {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--line);
}

.step-card {
    flex: 1;
    background: var(--bg-2);
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    transition: background var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-card:hover { background: var(--bg-3); }

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.step-card:hover::before { transform: scaleX(1); }

.step-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    position: static;
    opacity: 1;
    background: none;
    -webkit-text-fill-color: unset;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease-b);
    margin: 0;
}

.step-card:hover .step-icon {
    background: var(--blue-dim);
    border-color: var(--blue-border);
    color: var(--blue);
    transform: scale(1.08) rotate(-6deg);
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--t1);
}

.step-card p {
    font-size: 0.88rem;
    color: var(--t3);
    line-height: 1.7;
}

/* Connector arrows between cards */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    color: var(--t4);
    font-size: 0.75rem;
    padding: 0 0.1rem;
    flex-shrink: 0;
    transition: color var(--dur) var(--ease);
}

.step-line { display: none; }

@media (max-width: 768px) {
    .steps-grid      { flex-direction: column; }
    .step-connector  { transform: rotate(90deg); padding: 0.5rem 0; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    padding: 5rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--line);
}

.stat-card {
    background: var(--bg-2);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: background var(--dur) var(--ease);
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--ease);
}

.stat-card:hover { background: var(--bg-3); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-card-icon {
    font-size: 1.1rem;
    color: var(--t4);
    margin-bottom: 0.25rem;
    transition: color var(--dur) var(--ease),
                transform var(--dur) var(--ease-b);
}

.stat-card:hover .stat-card-icon {
    color: var(--blue);
    transform: scale(1.15);
}

/* Number + suffix inline */
.stat-card-number,
.stat-card-suffix {
    display: inline;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--t1);
    line-height: 1;
    background: none;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.stat-card-suffix { font-size: 2rem; color: var(--t3); }

.stat-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t3);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); border-radius: var(--r-lg); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--line);
}

.testimonial-card {
    background: var(--bg-2);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: background var(--dur) var(--ease);
}

.testimonial-card:hover { background: var(--bg-3); }

/* Large quotation mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--t4);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease);
}

.testimonial-card:hover::before { opacity: 0.6; }

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--amber);
    font-size: 0.75rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--t2);
    line-height: 1.8;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--t1);
    letter-spacing: -0.01em;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--t3);
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: var(--section);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    transition: background var(--dur) var(--ease);
}

.faq-item:last-child { border-bottom: none; }
.faq-item.open       { background: var(--bg-3); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--t2);
    transition: color var(--dur) var(--ease);
}

.faq-question:hover { color: var(--t1); }
.faq-item.open .faq-question { color: var(--t1); }

.faq-icon {
    font-size: 0.72rem;
    color: var(--t3);
    flex-shrink: 0;
    transition: transform 0.35s var(--ease), color var(--dur) var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), padding 0.3s ease;
    padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--t3);
    line-height: 1.8;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
}

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

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: transparent;
    border: 1px solid var(--line);
    color: var(--t2);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                background var(--dur) var(--ease);
}

.mobile-menu-close:hover {
    border-color: var(--line-hi);
    color: var(--t1);
    background: var(--bg-3);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    max-width: 340px;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: var(--r-md);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--t2);
    transition: color var(--dur) var(--ease),
                background var(--dur) var(--ease);
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--t1);
    background: var(--bg-2);
    border-color: var(--line);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 2.5rem;
    width: 100%;
    max-width: 340px;
    padding: 0 2rem;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease),
                visibility var(--dur) var(--ease);
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 400px;
    max-width: 100vw;
    background: var(--bg-1);
    border-left: 1px solid var(--line);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: var(--shadow-xl);
}

.cart-drawer.open { transform: translateX(0); }

/* Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

.cart-drawer-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--t1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-drawer-header h3 i { color: var(--t3); font-size: 0.9rem; }

.cart-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: var(--r-xs);
    background: transparent;
    border: 1px solid var(--line);
    color: var(--t3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
}

.cart-drawer-close:hover {
    color: var(--t1);
    border-color: var(--line-hi);
    background: var(--bg-3);
}

/* Body */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-4) transparent;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 4rem 2rem;
    text-align: center;
}

.cart-empty i    { font-size: 2.5rem; color: var(--t4); }
.cart-empty p    { font-size: 0.95rem; font-weight: 500; color: var(--t2); }
.cart-empty span { font-size: 0.82rem; color: var(--t4); }

/* Items list */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--line);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    background: var(--bg-2);
    transition: background var(--dur) var(--ease);
}

.cart-item:hover { background: var(--bg-3); }

.cart-item-img {
    width: 52px;
    height: 52px;
    border-radius: var(--r-xs);
    background: var(--bg-1);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.3rem;
    mix-blend-mode: lighten;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.15rem;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--t1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--t1);
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: var(--r-xs);
    background: transparent;
    border: 1px solid var(--line);
    color: var(--t4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
}

.cart-item-remove:hover {
    background: rgba(255,69,58,0.15);
    border-color: rgba(255,69,58,0.4);
    color: var(--red);
}

/* Footer */
.cart-drawer-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cart-payment-actions {
    display: grid;
    gap: 0.85rem;
}

.cart-payment-actions button {
    min-height: 48px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--t3);
}

.cart-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--t1);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
    position: fixed;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    pointer-events: none;
    width: 100%;
    max-width: 380px;
    padding: 0 1rem;
}

.toast {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--bg-3);
    border: 1px solid var(--line-md);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    pointer-events: all;
    animation: toastIn 0.4s var(--ease) forwards;
}

.toast.removing { animation: toastOut 0.3s ease-in forwards; }

.toast-img {
    width: 40px;
    height: 40px;
    border-radius: var(--r-xs);
    background: var(--bg-2);
    border: 1px solid var(--line);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    mix-blend-mode: lighten;
}

.toast-body { flex: 1; min-width: 0; }

.toast-body strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-body span { font-size: 0.75rem; color: var(--t3); }

.toast-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(8px) scale(0.96); }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--bg-3);
    border: 1px solid var(--line-md);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--dur) var(--ease),
                visibility var(--dur) var(--ease),
                transform var(--dur) var(--ease),
                background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease);
}

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

.scroll-to-top:hover {
    background: var(--bg-4);
    border-color: var(--line-hi);
    color: var(--t1);
    transform: translateY(-3px);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 800;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: transform var(--dur) var(--ease-b),
                box-shadow var(--dur) var(--ease);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.whatsapp-tooltip {
    position: absolute;
    right: 56px;
    background: var(--bg-3);
    color: var(--t1);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ============================================================
   RIPPLE KEYFRAME (injected by JS, defined here as fallback)
   ============================================================ */
@keyframes rippleAnim {
    to { transform: scale(2.5); opacity: 0; }
}

/* ============================================================
   GLOBAL RESPONSIVE OVERRIDES
   ============================================================ */

/* ── 1280px ───────────────────────────────────────────────── */
@media (max-width: 1280px) {
    :root { --max: 1100px; }
}

/* ── 1024px ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-copy { max-width: 100%; margin: 0 auto; }
    .hero-desc { max-width: 560px; margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-visual .hero-float-1,
    .hero-visual .hero-float-2 { display: none; }

    .contact-container { grid-template-columns: 1fr; gap: 3rem; }

    .section-header { max-width: 100%; }
}

/* ── 768px ────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --section: 6rem 0; }

    .container { padding: 0 1.25rem; }

    .hero-section { padding: 9rem 0 5rem; }

    .hero-title { letter-spacing: -0.03em; }

    .shop-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: var(--r-lg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--r-lg);
    }

    .steps-grid     { flex-direction: column; }
    .step-connector { transform: rotate(90deg); padding: 0.25rem; }

    .testimonials-grid  { grid-template-columns: 1fr; border-radius: var(--r-lg); }
    .category-grid      { grid-template-columns: repeat(2, 1fr); border-radius: var(--r-lg); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 2.5rem;
    }

    .footer-bottom { flex-direction: column; text-align: center; }

    .search-main-row    { flex-direction: column; }
    .search-select      { min-width: unset; width: 100%; }
    .btn-search         { width: 100%; }
    .vehicle-selector-content { padding: 1.75rem; }
    .vehicle-selector-form    { grid-template-columns: 1fr; }
    .vehicle-submit-btn       { grid-column: span 1; }
    .vehicle-selector-visual  { display: none; }

    .trust-strip-grid   { gap: 1.25rem; }
    .trust-divider      { display: none; }
    .trust-badge-item   { min-width: 130px; justify-content: flex-start; }
}

/* ── 480px ────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.4rem, 9vw, 3rem); }
    .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

    .shop-grid      { grid-template-columns: 1fr; }
    .category-grid  { grid-template-columns: repeat(2, 1fr); }

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

    .cart-drawer    { width: 100vw; }
    .contact-form   { padding: 1.25rem; }

    .stats-grid     { grid-template-columns: repeat(2, 1fr); }

    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }

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

/* ============================================================
   UTILITY — preserve any legacy class references
   ============================================================ */

/* Why vremp section (original HTML may reference this) */
.why-vremp-section {
    padding: var(--section);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--line);
}

.feature-card {
    background: var(--bg-2);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: background var(--dur) var(--ease);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
}

.feature-card:hover { background: var(--bg-3); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                color var(--dur) var(--ease),
                transform var(--dur) var(--ease-b);
}

.feature-card:hover .feature-icon {
    background: var(--blue-dim);
    border-color: var(--blue-border);
    color: var(--blue);
    transform: scale(1.1) rotate(-6deg);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--t1);
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--t3);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--line-hi); }

/* Selection */
::selection {
    background: rgba(0,102,255,0.3);
    color: var(--t1);
}

/* Categories section — no header, keep top padding */
.categories-section .container { padding-top: 0; }
.categories-section { padding: var(--section); }

/* ============================================================
   CUSTOM CURSOR — defined later in motion section
   ============================================================ */
@media (pointer: fine) {
    * { cursor: none !important; }
}

/* ============================================================
   HERO — CANVAS + PARALLAX ORBS
   ============================================================ */
.hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 10rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--line);
}

.hero-js-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
}

.hero-parallax-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.hero-orb-1 {
    width: 600px; height: 600px;
    background: rgba(0,102,255,0.12);
    top: -150px; right: -100px;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: rgba(0,102,255,0.07);
    bottom: -100px; left: 5%;
}

/* ── Hero copy ────────────────────────────────────────────── */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy { max-width: 620px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t3);
    border: 1px solid var(--line);
    padding: 0.4rem 0.9rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blinkDot 2.4s ease-in-out infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Split-line title reveal */
.hero-title {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: var(--t1);
    margin-bottom: 1.5rem;
    overflow: visible;
}

.split-line {
    display: block;
    overflow: hidden;
    line-height: 1.1;
    padding-bottom: 0.06em;
}

.split-inner {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}

.split-inner.revealed {
    transform: translateY(0);
    opacity: 1;
}

.split-line:nth-child(2) .split-inner { transition-delay: 0.18s; }

.hero-accent { color: var(--t3); }

.hero-desc {
    font-size: 1.05rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Inline stats below CTAs */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.hero-stat { text-align: left; }

.hero-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--t1);
}

.hero-stat-suf {
    font-size: 1rem;
    font-weight: 700;
    color: var(--t3);
}

.hero-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t4);
    margin-top: 0.15rem;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--line);
    flex-shrink: 0;
}

/* ── Hero visual ──────────────────────────────────────────── */
.hero-visual {
    position: relative;
    will-change: transform;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mesh {
    position: relative;
    width: min(100%, 520px);
    min-height: 480px;
    border-radius: 32px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(78,163,255,0.14), transparent 34%), radial-gradient(circle at 80% 20%, rgba(31,77,58,0.12), transparent 30%);
    pointer-events: none;
}

.hero-card {
    position: absolute;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.68);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    color: var(--t1);
}

.hero-card-main {
    inset: 40px 40px 90px 40px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t1);
    background: rgba(0,102,255,0.16);
    border: 1px solid rgba(0,102,255,0.24);
}

.hero-pill.muted {
    background: rgba(31,77,58,0.16);
    border-color: rgba(31,77,58,0.24);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.hero-metric-card {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-metric-card strong {
    font-size: 1.05rem;
    color: var(--t1);
}

.hero-metric-card span {
    font-size: 0.72rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-card-side {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--t2);
}

.hero-card-side i {
    color: var(--blue);
}

.hero-card-side.floating-card { animation: floatChip 4.8s ease-in-out infinite; }
.hero-card-side.alt { right: 20px; bottom: 20px; }
.hero-card-side:not(.alt) { top: 20px; right: 20px; }

.enterprise-section {
    padding: 6rem 0 5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.enterprise-card {
    padding: 1.6rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.enterprise-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--blue);
    background: rgba(0,102,255,0.12);
    border: 1px solid rgba(0,102,255,0.18);
}

.enterprise-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--t1);
}

.enterprise-card p {
    font-size: 0.9rem;
    color: var(--t3);
    line-height: 1.7;
}

.rental-section {
    padding: 5rem 0 6rem;
    border-bottom: 1px solid var(--line);
}

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

.rental-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--line);
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
}

.rental-thumb { height: 140px; display:flex; align-items:center; justify-content:center; overflow:hidden; margin-bottom:0.8rem; }
.rental-thumb img { max-width:100%; max-height:100%; display:block; }

.rental-card h4 { color: var(--t1); margin-bottom: 0.35rem; }
.rental-meta { color: var(--t3); font-size: 0.9rem; margin-bottom: 0.6rem; }

@media (max-width: 1024px) { .rental-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .rental-grid { grid-template-columns: 1fr; } }
.hero-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
}

.hero-img {
    width: 100%;
    display: block;
    transition: transform 0.9s var(--ease);
    mix-blend-mode: lighten;
}

.hero-img-wrap:hover .hero-img { transform: scale(1.04); }

.hero-img-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,102,255,0.15), transparent 70%);
    pointer-events: none;
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17,17,17,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line-md);
    border-radius: var(--r-pill);
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t2);
    white-space: nowrap;
}

.hero-float i { color: var(--blue); font-size: 0.85rem; }
.hero-float-1 { top: 8%;    right: -18px; animation: floatChip 5s ease-in-out infinite; }
.hero-float-2 { bottom: 22%; left: -18px; animation: floatChip 5s ease-in-out infinite 1.7s; }
.hero-float-3 { bottom: 8%;  right: 10%;  animation: floatChip 5s ease-in-out infinite 3.3s; }

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

/* ── Scroll hint ──────────────────────────────────────────── */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-scroll-hint.hidden { opacity: 0; pointer-events: none; }

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-hint span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t4);
}

/* ── reveal-* animation classes (used instead of fade-in in hero) ── */
.reveal-fade, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-fade  { transform: none; }
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-fade.on,
.reveal-up.on,
.reveal-left.on,
.reveal-right.on {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-copy { max-width: 100%; margin: 0 auto; }
    .hero-desc { max-width: 560px; margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-float-1, .hero-float-2, .hero-float-3 { display: none; }
    .hero-visual { min-height: 420px; }
    .hero-card-main { inset: 24px 24px 80px 24px; }
    .hero-card-grid { grid-template-columns: 1fr; }
    .enterprise-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hero-mesh { min-height: 360px; }
    .hero-card-main { inset: 16px 16px 72px 16px; }
    .hero-card-side { display: none; }
    .enterprise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-section { padding: 9rem 0 5rem; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3rem); }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FEATURE SHOWCASE — Microsoft Windows style panels
   ============================================================ */
.feature-showcase {
    position: relative;
}

.showcase-panel {
    padding: 8rem 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.showcase-panel-1 { background: var(--bg-1); }
.showcase-panel-2 { background: var(--bg); }
.showcase-panel-3 { background: var(--bg-1); }

/* Ambient glow per panel */
.showcase-panel-1::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: rgba(0,102,255,0.06);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.showcase-panel-2::before {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: rgba(0,102,255,0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.showcase-reverse {
    direction: rtl;
}
.showcase-reverse > * { direction: ltr; }

.showcase-copy { max-width: 520px; }

.showcase-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--t1);
    margin: 1rem 0 1.25rem;
}

.showcase-desc {
    font-size: 1rem;
    color: var(--t2);
    line-height: 1.78;
    margin-bottom: 2rem;
}

/* Visual side */
.showcase-visual { position: relative; }

.showcase-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
    transition: border-color 0.4s var(--ease),
                box-shadow 0.4s var(--ease);
}

.showcase-img-wrap:hover {
    border-color: var(--line-hi);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.showcase-img {
    width: 100%;
    display: block;
    mix-blend-mode: lighten;
    transition: transform 0.8s var(--ease);
}

.showcase-img-wrap:hover .showcase-img { transform: scale(1.04); }

.showcase-badge-float {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17,17,17,0.88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line-md);
    border-radius: var(--r-pill);
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t1);
    animation: floatChip 4s ease-in-out infinite;
}

.showcase-badge-float i { color: var(--blue); font-size: 0.85rem; }

@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .showcase-reverse { direction: ltr; }
    .showcase-copy { max-width: 100%; }
    .showcase-panel { padding: 5rem 0; }
}

/* ============================================================
   SCROLL PROGRESS BAR — defined in motion section below
   ============================================================ */

/* ============================================================
   SMOOTH SCROLL / WIPE / TICKER / ENTER LINE
   All defined at bottom of file in MOTION CLASSES block
   ============================================================ */

/* ============================================================
   MAGNETIC BUTTON
   ============================================================ */
.magnetic {
    display: inline-flex;
    position: relative;
    transition: transform 0.4s var(--ease);
}

/* ============================================================
   CONTACT INFO LIST
   ============================================================ */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--t2);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--dur) var(--ease);
}

a.contact-info-item:hover { color: var(--t1); }

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-xs);
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
}

a.contact-info-item:hover .contact-info-icon {
    background: var(--blue-dim);
    border-color: var(--blue-border);
}

/* ============================================================
   MOTION CLASSES — Trionn-style dramatic reveals
   ============================================================ */

/* Section header — slide up from below */
.mot-header {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.mot-header.mot-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.mot-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.mot-left.mot-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.mot-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
                transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.mot-right.mot-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide up generic */
.mot-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
                transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.mot-up.mot-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cards — staggered slide up */
.mot-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
                transform 0.7s cubic-bezier(0.16,1,0.3,1);
    transition-delay: calc(var(--mot-i, 0) * 90ms);
}
.mot-card.mot-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   WORD SPLIT — bigger, more dramatic
   ============================================================ */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
    padding-bottom: 0.05em;
}

.word-inner {
    display: inline-block;
    transform: translateY(110%) rotate(3deg);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.16,1,0.3,1),
                opacity 0.5s ease;
}

.word-inner.revealed {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}

/* ============================================================
   SPLIT LINE hero — ensure visible by default, animates in
   ============================================================ */
.split-line {
    display: block;
    overflow: hidden;
    line-height: 1.08;
    padding-bottom: 0.04em;
}

.split-inner {
    display: block;
}

/* ============================================================
   CURSOR — make it obviously visible
   ============================================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.16,1,0.3,1),
                height 0.35s cubic-bezier(0.16,1,0.3,1),
                border-color 0.3s,
                background 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring.hovering {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.9);
}

.cursor-ring.clicking {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--blue);
    z-index: 99999;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* ============================================================
   SECTION ENTER LINE
   ============================================================ */
.section-enter-line {
    position: absolute;
    top: 0; left: 0;
    height: 1px;
    width: 0%;
    background: var(--blue);
    z-index: 10;
    transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.section-enter-line.line-active { width: 100%; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-1);
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
    mask-image: linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.ticker-bar:hover .ticker-track { animation-play-state: paused; }

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

.ticker-item {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t3);
    transition: color 0.3s;
}

.ticker-bar:hover .ticker-item { color: var(--t1); }

.ticker-sep {
    color: var(--blue);
    font-size: 0.5rem;
    opacity: 0.7;
    flex-shrink: 0;
}

/* ============================================================
   HERO IMAGE GLOW
   ============================================================ */
.hero-img-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,102,255,0.18), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   ENSURE hero content sits above Three.js canvas
   ============================================================ */
.hero-container       { position: relative; z-index: 2; }
.hero-parallax-layer  { z-index: 1; }
.hero-scroll-hint     { z-index: 2; }

/* ============================================================
   GSAP CURSOR — uses transform x/y not left/top
   ============================================================ */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   HIDE DEFAULT CURSOR — GSAP custom cursor takes over
   ============================================================ */
@media (pointer: fine) {
    *, *::before, *::after { cursor: none !important; }
}

/* ============================================================
   CSS SCROLL REVEALS — content visible by default
   .will-animate is only added to elements below the fold
   ============================================================ */
.will-animate { transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.will-animate.rv-up    { opacity: 0; transform: translateY(44px); }
.will-animate.rv-left  { opacity: 0; transform: translateX(-50px); }
.will-animate.rv-right { opacity: 0; transform: translateX(50px); }
.will-animate.in-view  { opacity: 1 !important; transform: none !important; }

/* ============================================================
   HERO — full width centered (no image column)
   ============================================================ */
.hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
}

.hero-copy {
    max-width: 820px;
    margin: 0 auto;
}

.hero-desc {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    justify-content: center;
}

.hero-stats {
    justify-content: center;
}

/* ============================================================
   SELECT OPTION TEXT — dark theme consistent
   ============================================================ */
.search-select option,
.vehicle-select option {
    background: #0f1c2e;
    color: #f5f5f7;
    font-weight: 500;
}

/* ============================================================
   CUSTOM SELECT DROPDOWN — dark navy theme
   ============================================================ */
.custom-select {
    position: relative;
    flex-shrink: 0;
    min-width: 160px;
    user-select: none;
}

.custom-select-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.05rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 23px;
    color: var(--t1);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--dur) var(--ease),
                background var(--dur) var(--ease);
    white-space: nowrap;
}

.custom-select-btn:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.09);
}

.custom-select.open .custom-select-btn {
    border-color: rgba(0,102,255,0.55);
    border-radius: 16px 16px 0 0;
    background: rgba(15,28,46,0.98);
}

.custom-select-arrow {
    font-size: 0.65rem;
    color: var(--t3);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--blue);
}

/* Dropdown list */
.custom-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f1c2e;
    border: 1px solid rgba(0,102,255,0.35);
    border-top: none;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    z-index: 500;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease),
                transform 0.25s var(--ease);
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,102,255,0.3) transparent;
}

.custom-select.open .custom-select-list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.custom-select-list li {
    padding: 0.85rem 1.1rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(245,245,247,0.75);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom-select-list li:last-child { border-bottom: none; }

.custom-select-list li:hover {
    background: rgba(0,102,255,0.18);
    color: #fff;
}

.custom-select-list li.selected {
    background: rgba(0,102,255,0.25);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .custom-select { min-width: unset; width: 100%; }
}

/* ============================================================
   CUSTOM SELECT — option text dark blue
   ============================================================ */
.custom-select-list li {
    color: #ffffff !important;
    background: #0f1c2e;
}

.custom-select-list li:hover {
    background: #0066ff !important;
    color: #ffffff !important;
}

.custom-select-list li.selected {
    background: #0066ff !important;
    color: #ffffff !important;
}

.custom-select-list {
    background: #0f1c2e !important;
    border-color: rgba(0,102,255,0.35) !important;
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #48e097);
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-fade,
.reveal-up {
    opacity: 1;
}

.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* ============================================================
   HERO VISUAL EFFECTS
   ============================================================ */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,163,255,0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(72,224,151,0.3) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.hero-mesh {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(16, 38, 59, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
}

.hero-card-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card-top {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-pill {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--r-pill);
    background: rgba(78,163,255,0.15);
    border: 1px solid rgba(78,163,255,0.3);
    color: var(--blue);
}

.hero-pill.muted {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: var(--t3);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hero-metric-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    padding: 0.85rem;
    text-align: center;
}

.hero-metric-card strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 0.2rem;
}

.hero-metric-card span {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--t3);
}

.hero-card-side {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--t2);
}

.hero-card-side i {
    color: var(--blue);
    font-size: 0.95rem;
}

.hero-card-side.alt {
    border-color: rgba(72,224,151,0.3);
}

.hero-card-side.alt i {
    color: var(--green);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t4);
    animation: bounceHint 2s ease-in-out infinite;
}

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--t4), transparent);
}

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

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
    position: fixed;
    top: 6rem;
    right: 2rem;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--bg-2);
    border: 1px solid var(--line-md);
    border-radius: var(--r-lg);
    padding: 0.85rem 1.1rem;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(100px);
    animation: toastIn 0.4s var(--ease) forwards;
    pointer-events: auto;
}

.toast.removing {
    animation: toastOut 0.3s var(--ease) forwards;
}

@keyframes toastIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.toast-img {
    width: 42px;
    height: 42px;
    border-radius: var(--r-xs);
    background: var(--bg-3);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.toast-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.toast-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.toast-body strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--t1);
}

.toast-body span {
    font-size: 0.72rem;
    color: var(--t3);
}

.toast-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .toast-container {
        top: auto;
        bottom: 1.5rem;
        right: 1rem;
        left: 1rem;
    }
    .toast {
        min-width: unset;
        width: 100%;
    }
}

/* ============================================================
   RIPPLE ANIMATION
   ============================================================ */
@keyframes rippleAnim {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s var(--ease),
                visibility 0.3s var(--ease),
                transform 0.3s var(--ease),
                background 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(0,102,255,0.35);
}

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

.scroll-to-top:hover {
    background: #1a7aff;
    transform: translateY(-4px);
}

.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   RENTAL SECTION
   ============================================================ */
.rentals-section {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

#rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.rental-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s var(--ease),
                box-shadow 0.3s var(--ease),
                border-color 0.3s var(--ease);
}

.rental-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-hi);
}

.rental-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-md);
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--line);
}

.rental-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.rental-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--t1);
}

.rental-meta {
    font-size: 0.82rem;
    color: var(--t3);
    line-height: 1.6;
}

.rental-rates {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--t2);
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
}

.rental-rates span {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-3);
    border-radius: var(--r-sm);
}

/* ============================================================
   ENTERPRISE SECTION
   ============================================================ */
.enterprise-section {
    padding: var(--section);
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.enterprise-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    cursor: pointer;
}

.enterprise-card:hover {
    background: var(--bg-3);
    border-color: var(--line-hi);
}

.enterprise-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}

.enterprise-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.enterprise-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--t1);
}

.enterprise-card p {
    font-size: 0.9rem;
    color: var(--t3);
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .hero-copy {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    :root {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-card-grid {
        grid-template-columns: 1fr;
    }
    
    #rental-grid,
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================ */
* {
    -webkit-tap-highlight-color: transparent;
}

img, video {
    will-change: auto;
}

.hero-parallax-layer,
.cursor-dot,
.cursor-ring {
    will-change: transform;
}

/* Live storefront treatment for the VREMP landing view */
:root {
    --vremp-cyan: #d8ff3e;
    --vremp-black: #090b0c;
}

body {
    background: var(--vremp-black);
}

.site-header {
    background: rgba(9, 11, 12, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.main-nav-pill {
    background: rgba(255, 255, 255, 0.06);
}

.hero-section {
    background: radial-gradient(circle at 78% 42%, rgba(216, 255, 62, 0.08), transparent 28%), var(--vremp-black);
}

.hero-title {
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hero-accent,
.hero-accent .split-inner {
    color: var(--vremp-cyan);
}

.hero-desc strong {
    color: var(--vremp-cyan);
}

.hero-visual {
    order: 2;
    min-height: 560px;
}

.hero-copy {
    order: 1;
}

.hero-photo-frame {
    position: absolute;
    inset: 4% 0 4% 8%;
    overflow: hidden;
    border: 1px solid rgba(216, 255, 62, 0.32);
    border-radius: 2px;
    background: #171a19;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(216, 255, 62, 0.16), transparent 42%, rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.08);
}

.hero-customer-badge {
    position: absolute;
    z-index: 1;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    padding: 0.9rem 1.1rem;
    background: var(--vremp-cyan);
    color: #10140b;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-customer-badge strong {
    font-size: 1.45rem;
    letter-spacing: 0;
}

.hero-customer-badge span {
    font-weight: 700;
}

.btn-primary {
    background: var(--vremp-cyan);
    border-color: var(--vremp-cyan);
    color: #10140b;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #efffa4;
    border-color: #efffa4;
}

@media (max-width: 768px) {
    .hero-visual {
        order: 1;
        min-height: 280px;
        margin-bottom: 1.5rem;
    }

    .hero-copy {
        order: 2;
    }

    .hero-photo-frame {
        inset: 0;
        border-radius: 16px;
    }
}

/* ============================================================
   MOBILE-FIRST LUXURY ENHANCEMENTS & TOUCH OPTIMIZATIONS
   ============================================================ */

/* ── Mobile Category Chips (Shop Filter) ─────────────────── */
.category-chips-wrap {
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.category-chips {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--t2);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    touch-action: manipulation;
    user-select: none;
}

.category-chip:active {
    transform: scale(0.95);
}

.category-chip:hover,
.category-chip.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.45), rgba(6, 182, 212, 0.35));
    border-color: rgba(0, 217, 255, 0.7);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

/* ── Mobile Navigation Drawer ────────────────────────────── */
@media (max-width: 900px) {
    .site-header {
        padding: 0.75rem 0;
        padding-top: max(0.75rem, env(safe-area-inset-top));
    }

    .mobile-menu-overlay {
        background: rgba(5, 12, 22, 0.94);
        backdrop-filter: blur(28px) saturate(200%);
        -webkit-backdrop-filter: blur(28px) saturate(200%);
        padding: 5rem 1.5rem 2.5rem;
        justify-content: flex-start;
        align-items: stretch;
    }

    .mobile-menu-close {
        top: max(1.25rem, env(safe-area-inset-top));
        right: 1.25rem;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        color: #fff;
    }

    .mobile-nav {
        max-width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .mobile-nav-link {
        font-size: 1.35rem;
        padding: 1rem 1.25rem;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        color: rgba(255, 255, 255, 0.88);
        transition: all 0.25s ease;
    }

    .mobile-nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.3);
        transition: transform 0.25s ease, color 0.25s ease;
    }

    .mobile-nav-link:active {
        transform: scale(0.98);
        background: rgba(0, 102, 255, 0.15);
        border-color: rgba(0, 102, 255, 0.35);
    }

    .mobile-nav-link:active::after {
        transform: translateX(4px);
        color: #00d9ff;
    }

    .mobile-menu-footer {
        position: relative;
        bottom: auto;
        margin-top: auto;
        padding: 1.5rem 0 0;
        max-width: 100%;
    }
}

/* ── Mobile Product Cards & Shop Grid ────────────────────── */
@media (max-width: 640px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .shop-card {
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .shop-card-img {
        min-height: 220px;
        padding: 1.25rem;
    }

    .shop-card-body {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.15rem;
        line-height: 1.35;
        margin-bottom: 0.6rem;
    }

    .product-specs {
        margin-bottom: 1rem;
        gap: 0.4rem;
    }

    .product-specs span {
        font-size: 0.78rem;
        padding: 0.3rem 0.65rem;
    }

    .product-footer {
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .product-price {
        font-size: 1.45rem;
    }

    .btn-add-cart {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        border-radius: 14px;
        background: linear-gradient(135deg, #0066ff, #06b6d4);
        border: none;
        color: #fff;
        box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
    }

    .btn-add-cart:active {
        transform: scale(0.92);
    }
}

/* ── Mobile Bottom Sheet Modal ───────────────────────────── */
@media (max-width: 768px) {
    .product-detail-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .product-detail-modal {
        width: 100%;
        max-height: 90vh;
        border-radius: 28px 28px 0 0;
        padding: 2.25rem 1.25rem 1.5rem;
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
        border-bottom: none;
        border-left: none;
        border-right: none;
        animation: slideUpMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-detail-modal::before {
        content: '';
        position: absolute;
        top: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        width: 42px;
        height: 4px;
        border-radius: 99px;
        background: rgba(255, 255, 255, 0.25);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-detail-image {
        min-height: 240px;
        max-height: 280px;
        padding: 1.25rem;
        border-radius: 20px;
    }

    .product-detail-actions {
        position: sticky;
        bottom: 0;
        background: rgba(14, 24, 44, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem 0 0.5rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    @keyframes slideUpMobile {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
}

/* ── Mobile Cart Drawer ──────────────────────────────────── */
@media (max-width: 640px) {
    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
        border-left: none;
    }

    .cart-drawer-header {
        padding: 1rem 1.25rem;
        padding-top: max(1rem, env(safe-area-inset-top));
    }

    .cart-drawer-footer {
        padding: 1.25rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
        background: rgba(10, 18, 30, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cart-payment-actions {
        gap: 0.6rem;
    }

    .cart-payment-actions .btn {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}

/* ── Mobile Touch Targets & Buttons ──────────────────────── */
button,
a,
input,
select {
    touch-action: manipulation;
}

@media (pointer: coarse) {
    .icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    .search-tab {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .custom-select-btn {
        min-height: 48px;
    }
}
