/* --------------------------------------------------------------------------
   NEO CUSTOM - BESPOKE AUTOMOTIVE LIGHTING
   Official Stylesheet
   -------------------------------------------------------------------------- */

:root {
    --bg-color: #08090c;
    --bg-darker: #050608;
    --surface-color: #12141a;
    --surface-light: #1a1d24;
    --surface-border: rgba(255, 255, 255, 0.08);
    --surface-border-hover: rgba(209, 17, 17, 0.45);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-color: #d11111;
    --accent-hover: #b00e0e;
    --accent-light: #ff3333;
    --accent-glow: rgba(209, 17, 17, 0.35);
    --accent-glow-strong: rgba(209, 17, 17, 0.65);
    --accent-subtle: rgba(209, 17, 17, 0.12);
    
    --nav-bg: rgba(8, 9, 12, 0.92);
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

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

.text-muted {
    color: var(--text-muted);
}

.section {
    padding: 6.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem auto;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    background: var(--accent-subtle);
    color: var(--accent-light);
    border: 1px solid rgba(209, 17, 17, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

/* Top Announcement Bar */
.top-bar {
    background: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.825rem;
    color: var(--text-secondary);
    padding: 0.45rem 0;
    white-space: nowrap;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.top-bar-item a:hover {
    color: var(--accent-light);
}

.top-bar-mobile-content {
    display: none;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

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

.logo img {
    height: 38px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-external {
    color: var(--accent-light) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 2rem;
    flex-shrink: 0;
}

.mobile-header-cta {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 24px var(--accent-glow-strong);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
    background: var(--accent-subtle);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.95rem 2.2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(8, 9, 12, 0.85) 0%, rgba(8, 9, 12, 0.95) 100%),
                url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?auto=format&fit=crop&q=80') center/cover no-repeat;
    text-align: center;
    padding: 5rem 0;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(209, 17, 17, 0.22) 0%, rgba(8, 9, 12, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(20, 22, 28, 0.85);
    border: 1px solid rgba(209, 17, 17, 0.4);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin: 0 auto 2.5rem auto;
    max-width: 780px;
}

.hero-description strong {
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Hero Stats Strip */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    background: rgba(18, 20, 26, 0.75);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   FEATURED PRODUCTS PHOTO SLIDER (CAROUSEL)
   -------------------------------------------------------------------------- */
.products-section {
    background: var(--bg-color);
    position: relative;
}

.product-carousel-wrapper {
    position: relative;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
    overflow: hidden;
}

.product-carousel-track {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.product-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-slide {
    flex: 0 0 calc(33.333% - 1.2rem);
    min-width: 310px;
    scroll-snap-align: start;
}

.product-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--surface-border-hover);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px var(--accent-glow);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
}

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

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

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(18, 20, 26, 0.85);
    border: 1px solid rgba(209, 17, 17, 0.4);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.product-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-specs {
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    flex-grow: 1;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
    margin-top: auto;
}

.product-card-footer .btn {
    flex: 1;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.product-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Carousel Control Arrows */
.carousel-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 20, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.carousel-prev {
    left: 0.5rem;
}

.carousel-next {
    right: 0.5rem;
}

/* Carousel Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 28px;
    border-radius: 9999px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Services Grid */
.services {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.service-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--surface-border-hover);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px var(--accent-glow);
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--text-muted);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-features {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.card-features li i {
    color: var(--accent-light);
}

.card-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-light);
}

.card-link:hover {
    color: #ffffff;
    gap: 0.6rem;
}

.card-link-secondary {
    font-size: 0.825rem;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.card-link-secondary:hover {
    color: var(--accent-light);
}

/* --------------------------------------------------------------------------
   VISUAL PROOF: INTERACTIVE BEFORE/AFTER BEAM COMPARISON SLIDER
   -------------------------------------------------------------------------- */
.comparison {
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Comparison Top Control Bar */
.ba-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.75rem;
    background: #0f1117;
    border-bottom: 1px solid var(--surface-border);
    gap: 0.75rem;
}

.ba-side-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #ffffff;
    white-space: nowrap;
}

.ba-side-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.red-dot {
    background: var(--accent-light);
    box-shadow: 0 0 10px var(--accent-glow-strong);
}

.yellow-dot {
    background: #ffb833;
    box-shadow: 0 0 8px rgba(255, 184, 51, 0.6);
}

.ba-side-badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.ba-slider-instruction {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-light);
    background: var(--accent-subtle);
    border: 1px solid rgba(209, 17, 17, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 580px;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    background: #000;
    touch-action: none; /* Critical: allows horizontal touch drag on mobile without page scroll interference */
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.ba-after-wrapper .ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badges Over Image */
.ba-floating-badge {
    position: absolute;
    bottom: 1.25rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 4;
    pointer-events: none;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ba-badge-after {
    left: 1.25rem;
    background: rgba(209, 17, 17, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.ba-badge-before {
    right: 1.25rem;
    background: rgba(14, 16, 20, 0.85);
    color: #ffbb33;
    border: 1px solid rgba(255, 187, 51, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Slider Handle & Divider Line */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ba-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 15px var(--accent-glow-strong);
}

.ba-handle-circle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-glow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    gap: 2px;
}

/* Comparison Stats Bar */
.comparison-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: rgba(18, 20, 26, 0.95);
    border-top: 1px solid var(--surface-border);
}

.c-stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.c-icon {
    font-size: 1.8rem;
    background: var(--accent-subtle);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(209, 17, 17, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-stat strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.c-stat p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* About Us Section */
.about {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.about-card-hero {
    background: linear-gradient(145deg, #161820 0%, #0d0e12 100%);
    border: 1px solid rgba(209, 17, 17, 0.3);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-glow);
    filter: blur(50px);
    border-radius: 50%;
}

.milestone-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.milestone-year {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-light);
}

.milestone-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 600;
}

.about-quote {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.about-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.about-stats-row strong {
    display: block;
    font-size: 1.25rem;
    color: #ffffff;
    font-family: var(--font-heading);
}

.about-stats-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.divider-v {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
}

.about-content h2 {
    margin-bottom: 1.2rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.promise-box {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.promise-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promise-header h4 {
    font-size: 1.1rem;
    color: #ffffff;
}

.promise-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Why Us & Warranty */
.why-us {
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.feature-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: rgba(209, 17, 17, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Warranty Card */
.warranty-card {
    background: linear-gradient(180deg, #15171e 0%, #0e1014 100%);
    border: 1px solid rgba(209, 17, 17, 0.35);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.warranty-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.warranty-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.warranty-badge i {
    font-size: 1.6rem;
    color: var(--accent-light);
}

.warranty-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.warranty-col h5 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warranty-col ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.warranty-col ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.warranty-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.warranty-footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.phone-link {
    color: var(--accent-light) !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.phone-link:hover {
    text-decoration: underline;
    color: #ffffff !important;
}

/* How to Order */
.how-to-order {
    background: var(--bg-darker);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.step-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    transition: var(--transition-fast);
}

.step-card:hover {
    border-color: rgba(209, 17, 17, 0.4);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-subtle);
    -webkit-text-stroke: 1px var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-highlight {
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.order-cta-box {
    background: linear-gradient(135deg, #171a22 0%, #0e1014 100%);
    border: 1px solid rgba(209, 17, 17, 0.35);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.order-cta-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.order-cta-text p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.92) 100%),
                url('https://images.unsplash.com/photo-1610427950337-3f305f82d6e3?auto=format&fit=crop&q=80') center/cover no-repeat;
    text-align: center;
    padding: 7rem 0;
}

.cta-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #040507;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.2fr 1.4fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    height: 36px;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer-entity-badge span {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer ul a:hover {
    color: var(--accent-light);
    transform: translateX(3px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.contact-info a {
    color: var(--text-secondary);
}

.contact-info a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 0 15px var(--accent-glow);
    border-color: var(--accent-color);
}

.footer-network-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.network-title {
    color: var(--text-muted);
    font-weight: 600;
}

.network-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.network-links a {
    color: var(--text-secondary);
}

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

.bullet {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.75rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.825rem;
}

/* Modal Popup for Legal Documentation */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #111319;
    border: 1px solid rgba(209, 17, 17, 0.35);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-glow);
    overflow: hidden;
    animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0f14;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.modal-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--accent-color);
}

.modal-tabs {
    display: flex;
    background: #0d0f14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 1.5rem;
    overflow-x: auto;
}

.modal-tab {
    padding: 0.9rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.modal-tab:hover {
    color: #ffffff;
}

.modal-tab.active {
    color: var(--accent-light);
    border-bottom-color: var(--accent-color);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.policy-tab-content {
    display: none;
}

.policy-tab-content.active {
    display: block;
}

.policy-meta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.policy-tab-content h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.policy-tab-content h4:first-of-type {
    margin-top: 0;
}

.policy-tab-content p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-tab-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.policy-tab-content ul li {
    font-size: 0.925rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.policy-alert-box {
    background: rgba(209, 17, 17, 0.1);
    border: 1px solid rgba(209, 17, 17, 0.35);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin: 1.25rem 0;
}

.policy-alert-box h5 {
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.policy-alert-box p {
    margin-bottom: 0;
}

.warranty-table-responsive {
    overflow-x: auto;
    margin: 1.25rem 0;
}

.warranty-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
}

.warranty-table th, .warranty-table td {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.warranty-table th {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: var(--font-heading);
}

.warranty-table td {
    color: var(--text-secondary);
    vertical-align: top;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: #0d0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-25px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .product-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-stats-bar {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 1080px) {
    .hide-mobile {
        display: none !important;
    }
    
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .top-bar {
        padding: 0.35rem 0.75rem;
    }

    .top-bar-container {
        justify-content: center;
        width: 100%;
    }

    .top-bar-mobile-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 0.78rem;
        color: #ffffff;
        white-space: nowrap;
    }

    .nav-container {
        padding: 0.65rem 1.25rem;
    }

    .logo img {
        height: 34px;
    }

    .mobile-header-cta {
        display: inline-flex;
        padding: 0.4rem 0.85rem;
        font-size: 0.825rem;
        font-weight: 700;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: block;
        font-size: 1.7rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface-color);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--surface-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-slide {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 280px;
    }

    .carousel-btn {
        display: none; /* Swipe on mobile */
    }

    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .order-cta-box {
        padding: 2rem;
        text-align: center;
        justify-content: center;
    }

    .order-cta-box .btn {
        width: 100%;
    }

    .ba-control-bar {
        padding: 0.75rem 0.85rem;
        gap: 0.5rem;
    }

    .ba-side-tag {
        font-size: 0.825rem;
        gap: 0.35rem;
    }

    .ba-slider-instruction {
        font-size: 0.68rem;
        padding: 0.25rem 0.5rem;
        gap: 0.2rem;
    }

    .ba-slider-container {
        aspect-ratio: 4 / 3;
    }

    .ba-floating-badge {
        display: none; /* Hide floating text inside photo on mobile to prevent any obstruction */
    }

    .modal-container {
        max-height: 92vh;
    }

    .modal-header {
        padding: 1.25rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .comparison-stats-bar {
        padding: 1.25rem;
    }
    .ba-side-tag {
        font-size: 0.78rem;
    }
    .ba-slider-instruction {
        display: none; /* Keeps left & right titles clean and prominent on narrow phone screens */
    }
}
