/* ==========================================================================
   yRent.md — Premium Industrial Dark Design System
   Fonts: DM Sans (body) + Space Grotesk (headings)
   Direction: Dark, bold, gold-accented, conversion-optimized
   ========================================================================== */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-2);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-1);
    line-height: 1.15;
}

a { color: inherit; text-decoration: none; transition: color .2s; }

/* ── Skip Link (Accessibility) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    transition: top .2s;
}
.skip-link:focus {
    top: 0;
}
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
    --gold: #f5a623;
    --gold-hover: #ffb940;
    --gold-dark: #c77d00;
    --gold-glow: rgba(245, 166, 35, .15);
    --cyan: #06b6d4;
    --green: #22c55e;
    --bg: #050505;
    --bg-card: #0a0a0d;
    --bg-elevated: #0e0e12;
    --bg-hover: #131318;
    --border: rgba(255, 255, 255, .06);
    --border-hover: rgba(245, 166, 35, .3);
    --text-1: #ffffff;
    --text-2: #b4bcd0;
    --text-3: #8891a4;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,.5);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
    --shadow-gold: 0 4px 24px rgba(245,166,35,.2);
    --transition: all .25s cubic-bezier(.4,0,.2,1);
    --container: 1200px;
}

/* ── Utilities ── */
.section-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: var(--shadow-gold);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%);
    background-size: 250% 100%;
    background-position: 100% 0;
    transition: background-position .6s;
}
.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,166,35,.35);
}
.btn-primary:hover::before { background-position: -100% 0; }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,.12);
    color: var(--text-1);
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245,166,35,.05);
}

.btn-full { width: 100%; justify-content: center; }

.btn-catalog {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ── Section Header ── */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}
.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px;
}
.section-head p {
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
}
.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-glow);
    border: 1px solid rgba(245,166,35,.15);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ── Navigation ── */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: var(--transition);
}
.nav-wrapper.scrolled {
    background: rgba(5,5,5,.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
}

.nav-bar {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    cursor: pointer;
}
.logo-y { color: var(--gold); }
.logo-rent { color: var(--text-1); }
.logo-dot { color: var(--text-3); font-weight: 400; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-2);
    position: relative;
    padding: 4px 0;
    cursor: pointer;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a:hover::after { width: 100%; }

.nav-link-account {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-account-btn {
    padding: 8px;
    color: var(--text-2);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-account-btn:hover { color: var(--gold); }

.lang-switch {
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-2);
    transition: var(--transition);
    cursor: pointer;
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold); }

.cart-toggle {
    position: relative;
    padding: 8px;
    color: var(--text-2);
    transition: var(--transition);
}
.cart-toggle:hover { color: var(--gold); }
.cart-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: #000;
    font-size: .65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.visible { transform: scale(1); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-1);
    transition: var(--transition);
    cursor: pointer;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.nav-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Hero ── */
.hero {
    padding: 160px 24px 60px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,166,35,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,166,35,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245,166,35,.06);
    border: 1px solid rgba(245,166,35,.15);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}
.badge-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-subtitle strong { color: var(--gold); font-weight: 600; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Live Proof */
.hero-live-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 16px;
    background: rgba(34,197,94,.06);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: 100px;
    font-size: .82rem;
    color: var(--text-2);
}
.hero-live-proof svg { color: var(--green); flex-shrink: 0; }
.hero-live-proof strong { color: var(--green); font-weight: 700; }

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-img {
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10,10,13,.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-1);
    box-shadow: var(--shadow-md);
    animation: floatCard 5s ease-in-out infinite;
    white-space: nowrap;
}
.hero-float-card svg { color: var(--gold); flex-shrink: 0; }
.hero-float-1 { top: 15%; left: -10%; animation-delay: 0s; }
.hero-float-2 { bottom: 20%; right: -5%; animation-delay: -2.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Social Proof Bar */
.social-proof-bar {
    max-width: var(--container);
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}

.proof-item { text-align: center; }
.proof-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.2;
}
.proof-label {
    display: block;
    font-size: .8rem;
    color: var(--text-3);
    margin-top: 4px;
    font-weight: 500;
}
.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Products ── */
.products-section { padding: 120px 24px; }

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.tab {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-2);
    border: 1px solid var(--border);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}
.tab:hover { border-color: rgba(245,166,35,.4); color: var(--text-1); }
.tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Catalog Link */
.catalog-link-wrapper {
    text-align: center;
    margin-top: 48px;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(245,166,35,.06);
}

.product-card-img {
    position: relative;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.015) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.product-card-img img {
    max-height: 160px;
    object-fit: contain;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    background: var(--gold);
    color: #000;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.product-card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-card-body .product-desc {
    font-size: .85rem;
    color: var(--text-3);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-price { display: flex; flex-direction: column; }
.product-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.product-price .period { font-size: .75rem; color: var(--text-3); }

.btn-add {
    padding: 10px 18px;
    background: rgba(245,166,35,.08);
    border: 1px solid rgba(245,166,35,.25);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-weight: 600;
    font-size: .85rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-add:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: scale(1.02);
}
.btn-add.added {
    background: rgba(34,197,94,.1);
    border-color: rgba(34,197,94,.3);
    color: var(--green);
}

/* ── Pricing Section ── */
.pricing-section {
    padding: 120px 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-table-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.pricing-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background .2s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:not(.pricing-header-row):hover { background: rgba(245,166,35,.02); }

.pricing-header-row {
    background: rgba(255,255,255,.02);
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 24px;
}

.pricing-cell { font-size: .92rem; color: var(--text-2); }

.pricing-period {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-1);
}
.pricing-period svg { color: var(--text-3); flex-shrink: 0; }

.pricing-discount { font-weight: 600; }

.discount-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: 100px;
    color: var(--green);
    font-size: .85rem;
    font-weight: 700;
}
.discount-best {
    background: rgba(245,166,35,.1);
    border-color: rgba(245,166,35,.25);
    color: var(--gold);
}

.pricing-example {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-1);
}

.pricing-popular { background: rgba(34,197,94,.02); }
.pricing-best { background: rgba(245,166,35,.03); }

.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: .82rem;
    color: var(--text-3);
}

/* ── Zones Section ── */
.zones-section { padding: 120px 24px; }

.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.zone-group {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.zone-group:hover { border-color: var(--border-hover); }

.zone-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 16px;
}
.zone-group-title svg { color: var(--gold); flex-shrink: 0; }

.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.zone-tag {
    padding: 6px 14px;
    background: rgba(245,166,35,.05);
    border: 1px solid rgba(245,166,35,.1);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-2);
    transition: var(--transition);
}
.zone-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245,166,35,.08);
}

.zones-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: .85rem;
    color: var(--text-3);
}
.zones-note svg { color: var(--gold); flex-shrink: 0; }

/* ── Advantages ── */
.advantages {
    padding: 120px 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}
.adv-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,166,35,.05);
}

.adv-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid rgba(245,166,35,.12);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--gold);
    transition: var(--transition);
}
.adv-card:hover .adv-icon {
    background: rgba(245,166,35,.12);
    border-color: rgba(245,166,35,.3);
}

.adv-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.adv-card p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ── How It Works ── */
.how-it-works { padding: 120px 24px; }

.steps-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}
.step:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: .5;
}
.step:hover .step-num { opacity: 1; }

.step-content h3 { font-size: .95rem; margin-bottom: 6px; }
.step-content p { font-size: .82rem; color: var(--text-2); }

.step-connector {
    width: 32px;
    height: 2px;
    background: var(--border);
    margin: 0 4px;
}

/* ── CTA Banner ── */
.cta-banner { padding: 80px 24px 100px; }

.cta-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(245,166,35,.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}
.cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}
.cta-text p {
    color: var(--text-2);
    font-size: 1.05rem;
    line-height: 1.7;
}
.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Footer ── */
footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: .88rem;
    color: var(--text-3);
    max-width: 280px;
    line-height: 1.6;
}
.footer-col h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-3);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
    font-size: .88rem;
    color: var(--text-2);
    transition: color .2s;
    cursor: pointer;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: .8rem; color: var(--text-3); }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-2);
    transition: var(--transition);
    cursor: pointer;
}
.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245,166,35,.05);
}

/* ── Cart & Checkout Panels ── */
.cart-overlay, .checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.cart-overlay.open, .checkout-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-panel, .checkout-panel {
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-overlay.open .cart-panel,
.checkout-overlay.open .checkout-panel {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; }
.cart-close {
    font-size: 1.8rem;
    color: var(--text-3);
    padding: 4px 8px;
    transition: color .2s;
    cursor: pointer;
}
.cart-close:hover { color: var(--text-1); }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-3);
}
.cart-empty svg { margin-bottom: 16px; opacity: .4; }

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-item-img {
    width: 56px; height: 56px;
    background: rgba(255,255,255,.03);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-item-img img { max-height: 42px; object-fit: contain; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 {
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    color: var(--text-1);
}
.cart-item-info .item-price { font-size: .8rem; color: var(--gold); }

.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.day-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-1);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.day-btn:hover { border-color: var(--gold); color: var(--gold); }
.day-display {
    font-size: .85rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--text-1);
}
.cart-item-remove {
    color: var(--text-3);
    padding: 4px;
    transition: color .2s;
    font-size: 1.2rem;
    cursor: pointer;
}
.cart-item-remove:hover { color: #ef4444; }

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}
.cart-totals { margin-bottom: 16px; }
.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--text-2);
    margin-bottom: 6px;
}
.cart-row.discount span:last-child { color: var(--green); }
.cart-row.total {
    font-weight: 700;
    color: var(--text-1);
    font-size: 1rem;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

/* ── Checkout Form ── */
.checkout-form {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.form-group input,
.form-group select {
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,166,35,.08);
}
.form-group input:focus-visible,
.form-group select:focus-visible {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,166,35,.08);
}
.form-group input::placeholder { color: var(--text-3); }
.form-group select { appearance: none; cursor: pointer; }

/* ── Floating WhatsApp ── */
.floating-wa {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 900;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,.45);
}

/* ── Mobile Sticky CTA Bar ── */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: rgba(5,5,5,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    gap: 10px;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-cta-bar.visible { transform: translateY(0); }

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-cta-call {
    background: var(--gold);
    color: #000;
}
.mobile-cta-call:hover { background: var(--gold-hover); }
.mobile-cta-wa {
    background: #25d366;
    color: #fff;
}
.mobile-cta-wa:hover { background: #20bd5a; }

/* ── Scroll Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
[data-animate="fade-in"] { transform: translateY(0) scale(.97); }
[data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { order: 1; }
    .hero-visual { order: 0; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-btns { justify-content: center; }
    .hero-live-proof { justify-content: center; }
    .hero-img { max-height: 300px; }
    .hero-float-1 { left: 5%; top: 5%; }
    .hero-float-2 { right: 5%; bottom: 10%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .step-connector { display: none; }
    .cta-grid { flex-direction: column; text-align: center; }
    .cta-btns { justify-content: center; }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-account-btn { display: none; }
    .nav-burger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(5,5,5,.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .hero { padding: 120px 24px 40px; min-height: auto; }
    .hero-content h1 { font-size: 2.2rem; }
    .social-proof-bar { gap: 20px; padding: 20px 24px; flex-wrap: wrap; }
    .proof-number { font-size: 1.4rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
    .adv-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cart-panel, .checkout-panel { max-width: 100%; }
    .cta-inner { padding: 40px 24px; }
    .zones-grid { grid-template-columns: 1fr; }
    .pricing-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 16px; }
    .pricing-header-row .pricing-cell:last-child { display: none; }
    .pricing-cell.pricing-example { display: none; }

    /* Show mobile CTA bar */
    .mobile-cta-bar { display: flex; }

    /* Adjust floating WA position when mobile bar is visible */
    .floating-wa { bottom: 80px; }

    /* Add bottom padding to body for mobile CTA */
    body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.9rem; }
    .filter-tabs { gap: 6px; }
    .tab { padding: 10px 14px; font-size: .8rem; min-height: 44px; display: inline-flex; align-items: center; }
    .hero-float-card { display: none; }
    .social-proof-bar { gap: 16px; }
    .proof-divider { display: none; }
    .hero-live-proof { font-size: .76rem; padding: 8px 12px; }
}

@media (max-width: 375px) {
    .section-container { padding: 0 16px; }
    .hero { padding: 100px 16px 32px; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: .95rem; }
    .btn { padding: 12px 20px; font-size: .88rem; }
    .social-proof-bar { padding: 16px; gap: 12px; }
    .proof-number { font-size: 1.2rem; }
    .proof-label { font-size: .7rem; }
    .mobile-cta-btn { padding: 12px 12px; font-size: .82rem; }
    .pricing-row { padding: 12px; }
    .zone-group { padding: 20px 16px; }
    .zone-tag { padding: 5px 10px; font-size: .75rem; }
}

/* ── Categories Grid ── */
.categories-section { padding: 120px 24px; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cat-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,166,35,.06);
}
.cat-card-all { border-style: dashed; }
.cat-card-all:hover { border-style: solid; }

.cat-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid rgba(245,166,35,.1);
    border-radius: 12px;
    color: var(--gold);
}
.cat-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-1); }
.cat-card p { font-size: .82rem; color: var(--text-3); line-height: 1.5; }
.cat-count {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: auto;
}

/* ── Testimonials ── */
.testimonials-section {
    padding: 120px 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); }

.testimonial-stars { display: flex; gap: 2px; }

.testimonial-text {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid rgba(245,166,35,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gold);
}
.testimonial-author strong { font-size: .85rem; color: var(--text-1); display: block; }
.testimonial-author span { font-size: .75rem; color: var(--text-3); }

/* ── FAQ ── */
.faq-section { padding: 120px 24px; }

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(245,166,35,.15); }
.faq-item.open { border-color: var(--border-hover); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-1);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
    flex-shrink: 0;
    color: var(--text-3);
    transition: transform .3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 20px;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}
.faq-answer p {
    font-size: .88rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ── Brands ── */
.brands-section {
    padding: 60px 24px;
}
.brands-label {
    text-align: center;
    font-size: .8rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 24px;
}
.brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.brand-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,.15);
    letter-spacing: .5px;
    transition: color .3s;
}
.brand-item:hover { color: rgba(255,255,255,.4); }

/* ── Responsive for new sections ── */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .categories-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .brands-row { gap: 24px; }
    .brand-item { font-size: 1rem; }
}

/* ── Skip to Content ── */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    transition: top .2s;
}
.skip-to-content:focus-visible {
    top: 16px;
}

/* ── Focus Visible States ── */
*:focus { outline: none; }
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(245,166,35,.3); }
.tab:focus-visible { outline-offset: 3px; }
.nav-links a:focus-visible { outline-offset: 4px; }
.faq-question:focus-visible { outline-offset: -2px; }
.form-group input:focus-visible,
.form-group select:focus-visible {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,166,35,.08);
}

/* ── Touch Targets (min 44px on mobile) ── */
@media (max-width: 768px) {
    .day-btn { width: 44px; height: 44px; }
    .cart-close { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .cart-item-remove { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .nav-burger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
    .cart-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .lang-switch { min-height: 44px; display: flex; align-items: center; }
    .footer-socials a { width: 44px; height: 44px; }
}

/* ── Filter Tabs Horizontal Scroll on Mobile ── */
@media (max-width: 480px) {
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .tab { flex-shrink: 0; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-animate] { opacity: 1; transform: none; }
    .hero-img { animation: none; }
    .hero-float-card { animation: none; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.06); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ── */
::selection { background: rgba(245,166,35,.2); color: var(--text-1); }


/* ── Cart Date Picker ── */
.cart-item { flex-wrap: wrap; }
.cart-item-dates {
    display: flex; align-items: center; gap: 8px;
    width: 100%; margin-top: 8px; padding-top: 8px;
    border-top: 1px solid var(--border);
}
.cart-item-dates label { font-size: .7rem; color: var(--text-3); white-space: nowrap; }
.cart-date-input {
    padding: 4px 8px; font-size: .75rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xs); color: var(--text-1);
    cursor: pointer;
}
.cart-date-input:focus,
.cart-date-input:focus-visible { border-color: var(--gold); outline: none; }
.cart-date-end { font-size: .7rem; color: var(--text-3); margin-left: auto; }


/* ── Auth Nav State ── */
.nav-auth { display: flex; align-items: center; gap: 8px; }
.nav-user-link { display: flex; align-items: center; gap: 6px; cursor: pointer; transition: color .2s; }
.nav-user-link:hover { color: var(--gold); }
.nav-user-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid rgba(245,166,35,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700; color: var(--gold);
}
.nav-user-name { font-size: .85rem; font-weight: 500; color: var(--text-1); }
.nav-logout-btn {
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: .75rem; color: var(--text-3);
    background: none; cursor: pointer;
    transition: var(--transition);
}
.nav-logout-btn:hover { border-color: #ef4444; color: #ef4444; }
.nav-auth-btn {
    padding: 8px 16px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: .85rem; font-weight: 600;
    color: var(--gold); cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-auth-btn:hover { background: var(--gold); color: #000; }
