/* ============================================================
   ATLAS — Full Redesign
   Aesthetic: Heavy Industry, Refined
   Fonts: Oswald (display) + Source Sans 3 (body)  — loaded via <link> in HTML
   Palette: #111 base · #E89157 accent · #FFFFFF content
   ============================================================ */

/* Declare layer order — later layers take priority */
@layer base, tokens, layout, components, utilities;

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --orange:        #E89157;
    --orange-dark:   #C8712F;
    --orange-glow:   rgba(232, 145, 87, 0.18);
    --orange-faint:  rgba(232, 145, 87, 0.07);

    --black:         #0D0D0D;
    --dark:          #141414;
    --dark-2:        #1C1C1C;
    --dark-3:        #262626;
    --dark-4:        #333333;

    --white:         #FFFFFF;
    --off-white:     #F8F7F5;
    --light-gray:    #EDECEB;
    --mid-gray:      #999999;
    --text-body:     #2C2C2C;
    --text-muted:    #666666;

    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     16px;

    --shadow-card:   0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-hover:  0 16px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(232,145,87,0.12);
    --shadow-deep:   0 24px 64px rgba(0,0,0,0.22);

    --font-display:  'Oswald', sans-serif;
    --font-body:     'Source Sans 3', sans-serif;

    --transition:    0.25s ease;
    --transition-slow: 0.4s ease;

    --fs-xs:     11px;
    --fs-sm:     13px;
    --fs-base:   15px;
    --fs-md:     17px;
    --fs-lg:     21px;
    --fs-xl:     28px;
    --fs-2xl:    clamp(26px, 3vw, 38px);
    --fs-3xl:    clamp(32px, 4vw, 46px);
    --fs-stat:   clamp(36px, 4vw, 52px);
    --fs-hero:   clamp(42px, 6vw, 78px);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--text-body);
}

.section-title em {
    font-style: normal;
    color: var(--orange);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--black);
    padding: 8px 0;
    border-bottom: 1px solid var(--dark-3);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.top-bar-hours {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-wa {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #4ade80;
    transition: color var(--transition);
}

.top-bar-wa:hover { color: #86efac; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--dark-3), 0 4px 20px rgba(0,0,0,0.4);
    isolation: isolate;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange));
    transition: width 0.1s linear;
    pointer-events: none;
    z-index: 10;
}

.logo-wrap { flex-shrink: 0; }

.logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    display: block;
    transition: color var(--transition);
}

.logo:hover { color: var(--orange); }

.logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.logo-accent {
    width: 32px;
    height: 3px;
    background: var(--orange);
    margin-top: 5px;
    border-radius: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.3px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 1px;
}

.main-nav a:hover { color: var(--white); }

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav a.active { color: var(--white); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}

.header-phone:hover { color: var(--orange); }

.header-phone .ph-icon {
    width: 28px;
    height: 28px;
    background: var(--orange-glow);
    border: 1px solid rgba(232,145,87,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.btn-quote {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: none;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    padding: 16px 24px 20px;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a,
.mobile-nav button {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    cursor: pointer;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
    background: rgba(232,145,87,0.1);
    color: var(--orange);
}

.mobile-nav .mob-cta {
    background: var(--orange);
    color: var(--white) !important;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 8px;
}

.mobile-nav .mob-cta:hover {
    background: var(--orange-dark) !important;
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid var(--dark-3);
    margin-bottom: 6px;
}

/* ============================================================
   HERO — Base structure (carousel handles backgrounds)
   ============================================================ */
.hero {
    position: relative;
    background: var(--dark);
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark gradient overlay — keeps text readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            105deg,
            rgba(20, 20, 20, 0.88) 0%,
            rgba(20, 20, 20, 0.65) 50%,
            rgba(20, 20, 20, 0.30) 100%
    );
    pointer-events: none;
}

/* Diagonal orange slash */
.hero-slash {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 130%;
    z-index: 1;
    background: linear-gradient(
            170deg,
            transparent 45%,
            rgba(232, 145, 87, 0.06) 45%,
            rgba(232, 145, 87, 0.06) 52%,
            transparent 52%
    );
    pointer-events: none;
}

/* Grid texture overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
            linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Orange side accent bar */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--orange), var(--orange-dark));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 340px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 700;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 1px;
    max-width: 700px;
    margin-bottom: 24px;
    will-change: opacity, transform;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.55s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.btn-primary:hover::before { transform: translateX(0); }

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,145,87,0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 4px;
    border: none;
    background: none;
    cursor: pointer;
    transition: color var(--transition);
    letter-spacing: 0.3px;
}

.btn-secondary:hover { color: var(--orange); }

.btn-secondary .arrow {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
    font-size: 13px;
}

.btn-secondary:hover .arrow {
    border-color: var(--orange);
    background: var(--orange-glow);
}

/* ============================================================
   HERO CAROUSEL — Background slides & text transitions
   ============================================================ */

/* Container for all background slides */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Individual background slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide.exiting {
    opacity: 0;
    z-index: 0;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    transform: scale(1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.06);
}

/* --- Text slides --- */
.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
    will-change: opacity, transform;
}

.hero-text-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-text-slide.exit-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-text-slide.exit-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-text-slide.enter-right {
    opacity: 0;
    transform: translateX(60px);
    transition: none;
}

.hero-text-slide.enter-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: none;
}

/* Reset original hero fadeUp — carousel handles its own */
.hero-text-slide .hero-eyebrow,
.hero-text-slide h1,
.hero-text-slide .hero-sub {
    opacity: 1;
    animation: none;
}

/* Stagger child animations when slide becomes active */
.hero-text-slide.active .hero-eyebrow {
    animation: carouselFadeUp 0.6s ease 0.05s both;
}

.hero-text-slide.active h1 {
    animation: carouselFadeUp 0.7s ease 0.15s both;
}

.hero-text-slide.active .hero-sub {
    animation: carouselFadeUp 0.7s ease 0.3s both;
}

@keyframes carouselFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Carousel Controls ─── */
.hero-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

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

.hero-dot {
    position: relative;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot:hover::before {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.hero-dot.active::before {
    background: var(--orange);
    transform: scale(1.1);
}

/* SVG progress ring */
.dot-ring {
    position: absolute;
    inset: 0;
    width: 36px;
    height: 36px;
    transform: rotate(-90deg);
}

.dot-ring circle {
    fill: none;
    stroke: transparent;
    stroke-width: 2;
    stroke-dasharray: 100.53;
    stroke-dashoffset: 100.53;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
}

.hero-dot.active .dot-ring circle {
    stroke: var(--orange);
    animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
    from { stroke-dashoffset: 100.53; }
    to   { stroke-dashoffset: 0; }
}

/* Arrow buttons */
.hero-arrows {
    display: flex;
    gap: 8px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-arrow:hover {
    border-color: var(--orange);
    background: rgba(232,145,87,0.15);
    color: var(--orange);
    transform: scale(1.08);
}

.hero-arrow:active {
    transform: scale(0.96);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
    background: var(--black);
    border-top: 1px solid var(--dark-3);
    border-bottom: 3px solid var(--orange);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 30px,
            rgba(255,255,255,0.012) 30px,
            rgba(255,255,255,0.012) 31px
    );
    pointer-events: none;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: background var(--transition);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--dark-3);
}

.stat-item:hover { background: rgba(232,145,87,0.04); }

.stat-number {
    font-family: var(--font-display);
    font-size: var(--fs-stat);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-suffix {
    font-size: 0.6em;
    font-weight: 500;
    vertical-align: super;
    letter-spacing: 0;
}

.stat-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.stat-caption {
    font-size: 11px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.5px;
    margin-top: 5px;
    line-height: 1.4;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
    background: var(--white);
    padding: 100px 0;
}

.section-header {
    margin-bottom: 56px;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0 2px 2px 0;
}

.product-card:hover {
    border-color: rgba(232,145,87,0.3);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-card:hover::before {
    transform: scaleY(1);
}

.product-img-wrap {
    background: var(--off-white);
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--black);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.product-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0 5px 20px;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.4;
}

.product-features li:last-child { border-bottom: none; }

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.product-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition), color var(--transition);
}

.product-link:hover { color: var(--orange-dark); gap: 10px; }

.product-link-arrow {
    font-size: 16px;
    line-height: 1;
}

.product-img-wrap--dark {
    background: var(--dark-2);
}

.product-cta-icon {
    color: var(--orange);
    opacity: 0.7;
    transition: opacity var(--transition), transform 0.4s ease;
}

.product-card--cta:hover .product-cta-icon {
    opacity: 1;
    transform: scale(1.08) rotate(-3deg);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.why-section .section-label,
.why-section .section-title { color: var(--white); }

.why-section .section-title em { color: var(--orange); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dark-3);
    border: 1px solid var(--dark-3);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 56px;
}

.feature-item {
    background: var(--dark-2);
    padding: 36px 32px;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.feature-item:hover { background: var(--dark-3); }
.feature-item:hover::after { transform: scaleX(1); }

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border: 1px solid rgba(232,145,87,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: #171310;
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.about-img-panel {
    position: relative;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 40px;
}

.about-img-icon {
    font-size: 72px;
    opacity: 0.5;
}

.about-img-caption {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.about-img-badge {
    position: absolute;
    bottom: 32px;
    right: -1px;
    background: var(--orange);
    color: var(--white);
    padding: 18px 24px;
    text-align: center;
    line-height: 1.1;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.about-img-badge-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    display: block;
}

.about-img-badge-num sup {
    font-size: 0.55em;
    vertical-align: super;
}

.about-img-badge-txt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.88;
}

.about-copy {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
}

.about-copy::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--orange), transparent);
}

.about-title {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.about-title em {
    font-style: normal;
    color: var(--orange);
}

.about-text {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.about-point-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--orange-glow);
    border: 1px solid rgba(232,145,87,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--orange);
    font-weight: 700;
    margin-top: 1px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.about-cta:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,145,87,0.3);
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
    background: var(--off-white);
    padding: 72px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.brands-intro {
    text-align: center;
    margin-bottom: 48px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.brand-tile {
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 32px;
    height: 110px;
    transition: all var(--transition);
}

.brand-tile:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(232,145,87,0.12);
}

.brand-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter var(--transition), transform var(--transition);
}

.brand-tile:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--white);
    padding: 100px 0;
    border-top: 3px solid var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 72px;
    align-items: start;
}

.contact-info-panel h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.info-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--light-gray);
}

.info-block:last-of-type { border-bottom: none; }

.info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}

.info-value {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
}

.info-value a {
    color: var(--text-body);
    transition: color var(--transition);
    font-weight: 600;
}

.info-value a:hover { color: var(--orange); }

.quick-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.qbtn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.qbtn-whatsapp { background: #25D366; color: var(--white); }
.qbtn-whatsapp:hover { background: #1dba59; transform: translateY(-1px); }

.qbtn-viber { background: #7360F2; color: var(--white); }
.qbtn-viber:hover { background: #6350e0; transform: translateY(-1px); }

.map-embed {
    margin-bottom: 32px;
}

.map-embed iframe {
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: var(--radius-md);
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.map-embed iframe:hover { filter: grayscale(0%); }

.contact-form-panel h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 7px;
}

.form-group label .req { color: var(--orange); }

.form-group label .form-optional {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--mid-gray);
    margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 13px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--off-white);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select:invalid { color: var(--mid-gray); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232,145,87,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mid-gray);
    font-size: 14px;
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 4px;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,145,87,0.3);
}

.form-submit:disabled {
    background: var(--mid-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-feedback.success {
    display: block;
    background: #ecfdf5;
    border: 1.5px solid #6ee7b7;
    color: #065f46;
}

.form-feedback.error {
    display: block;
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0E0C0B;
    border-top: 3px solid var(--orange);
    padding: 72px 0 0;
    color: rgba(255,255,255,0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--dark-3);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}

.footer-logo-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 16px;
}

.footer-accent {
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 20px;
}

.footer-brand-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.footer-contact-quick a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-contact-quick a:hover { color: var(--orange); }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dark-3);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    transition: color var(--transition);
}

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

.footer-cta-text {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
    margin-bottom: 20px;
}

.footer-cta-btn:hover {
    background: #1dba59;
    transform: translateY(-1px);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-hours span {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    line-height: 1.6;
}

.footer-hours-closed {
    color: rgba(255,255,255,0.15) !important;
}

/* ============================================================
   FLOATING MOBILE CONTACT BAR
   ============================================================ */
.mob-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--dark);
    border-top: 2px solid var(--orange);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    will-change: transform;
}

.mob-contact-bar.visible {
    transform: translateY(0);
}

.mob-bar-inner {
    display: flex;
    align-items: stretch;
    height: 56px;
}

.mob-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition);
}

.mob-bar-btn:hover { opacity: 0.88; }

.mob-bar-btn:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.mob-bar-call { background: var(--orange); color: var(--white); }
.mob-bar-whatsapp { background: #25D366; color: var(--white); }
.mob-bar-viber { background: #7360F2; color: var(--white); }

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-eyebrow,
    .hero h1,
    .hero-sub,
    .hero-actions {
        opacity: 1;
        animation: none;
    }

    .scroll-progress { transition: none; }
    .mob-contact-bar { transition: none; }

    /* Carousel reduced motion */
    .hero-slide {
        transition: opacity 0.01ms !important;
    }

    .hero-slide-bg {
        transition: none !important;
        transform: scale(1) !important;
    }

    .hero-text-slide,
    .hero-text-slide.exit-left,
    .hero-text-slide.exit-right {
        transition: none !important;
    }

    .hero-text-slide.active .hero-eyebrow,
    .hero-text-slide.active h1,
    .hero-text-slide.active .hero-sub {
        animation: none !important;
        opacity: 1;
    }

    .hero-dot.active .dot-ring circle {
        animation: none !important;
        stroke-dashoffset: 0;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-inner { grid-template-columns: 1fr; }
    .about-img-panel { min-height: 280px; }
    .about-copy { padding: 48px 40px; }
    .about-copy::before { display: none; }
}

@media (max-width: 900px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .top-bar { display: none; }
}

@media (max-width: 768px) {
    .main-nav,
    .header-actions { display: none; }
    .hamburger { display: flex; }

    .mob-contact-bar { display: block; }
    .site-footer { padding-bottom: 56px; }

    .hero { min-height: 480px; }
    .hero h1 { font-size: 38px; }
    .hero-sub { font-size: 15px; }

    .hero-content {
        min-height: 280px;
        padding: 60px 24px;
    }

    .hero-carousel-controls {
        margin-top: 28px;
    }

    .hero-dot {
        width: 28px;
        height: 28px;
    }

    .dot-ring {
        width: 28px;
        height: 28px;
    }

    .dot-ring circle {
        stroke-dasharray: 75.4;
        stroke-dashoffset: 75.4;
    }

    .hero-dot.active .dot-ring circle {
        animation: dotProgressMobile 6s linear forwards;
    }

    @keyframes dotProgressMobile {
        from { stroke-dashoffset: 75.4; }
        to   { stroke-dashoffset: 0; }
    }

    .hero-dots { gap: 6px; }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-text-slide h1 {
        font-size: 32px;
    }

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

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

    .about-copy { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { align-self: stretch; justify-content: center; }
}

@media (max-width: 480px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-inner .stat-item:nth-child(2)::after { display: none; }
    .brands-grid { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }
    .quick-btns { flex-direction: column; }
    .hero-actions { flex-direction: column; align-items: flex-start; }

    .hero-carousel-controls {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
}