/**
 * FILMTECT Theme Styles
 * Responsive Navigation + Video Background Hero
 * Version: 1.1.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary: #D0F400;
    --primary-dark: #b8dc00;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-600: #666666;
    --gray-800: #1a1a1a;
}

/* ==========================================================================
   Base Fixes for Full Width Mobile
   ========================================================================== */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ==========================================================================
   Navigation - Desktop
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 120px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-logo span {
    color: var(--primary);
}

.nav-logo a {
    color: inherit;
    text-decoration: none;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links > a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-links > a:hover,
.nav-links > a.active {
    color: var(--primary);
}

/* Desktop Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-dropdown > a::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a {
    color: var(--primary);
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-label {
    padding: 8px 20px;
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: var(--white);
    background: rgba(208, 244, 0, 0.1);
    padding-left: 24px;
}

.dropdown-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover .dropdown-icon {
    background: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Desktop CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(208, 244, 0, 0.4);
}

/* Mobile Toggle Button - Hidden on Desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* Toggle Animation */
.nav-toggle.active .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================================================
   Mobile Menu - Hidden by Default
   ========================================================================== */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu__inner {
    padding: 24px;
}

.mobile-menu__link {
    display: block;
    padding: 16px 0;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: var(--primary);
}

/* Mobile Submenu */
.mobile-menu__item {
    position: relative;
}

.mobile-menu__has-submenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__has-submenu > .mobile-menu__link {
    flex: 1;
    border-bottom: none;
}

.mobile-menu__toggle-sub {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-menu__toggle-sub.active {
    transform: rotate(45deg);
}

.mobile-menu__toggle-sub.active span {
    color: var(--primary);
}

.mobile-menu__submenu {
    width: 100%;
    display: none;
    padding: 0 0 16px 20px;
}

.mobile-menu__submenu.active {
    display: block;
}

.mobile-menu__submenu a {
    display: block;
    padding: 12px 0;
    color: #999;
    font-size: 15px;
    text-decoration: none;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 16px;
    transition: all 0.2s;
}

.mobile-menu__submenu a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Mobile CTA */
.mobile-menu__cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__contact a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
}

.mobile-menu__contact a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Hero Section - Video Background
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 120px 80px;
    overflow: hidden;
}

/* YouTube Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Fallback Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
}

.hero-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Decorative Glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(208, 244, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(208, 244, 0, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(208, 244, 0, 0.3);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    color: #AAAAAA;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--primary);
    color: var(--black);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(208, 244, 0, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.btn--full {
    width: 100%;
}

/* ==========================================================================
   Container & Sections
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

.section {
    padding: 100px 0;
}

.section--light {
    background: var(--white);
}

.section--gray {
    background: var(--gray-100);
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

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

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

.section-header--center p {
    max-width: 600px;
    margin: 0 auto;
}

.section-header--between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: rgba(208, 244, 0, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    margin-bottom: 16px;
    font-size: 40px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 18px;
}

.section--dark .section-header p {
    color: #888;
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================================================
   Highlight Cards
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.highlight-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.highlight-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.highlight-card__text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.products-grid,
.products-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card,
.product-category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover,
.product-category-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-card__image,
.product-category-card__image {
    position: relative;
    height: 220px;
    background: var(--gray-100);
    overflow: hidden;
}

.product-card__image img,
.product-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.product-card__content,
.product-category-card__content {
    padding: 24px;
}

.product-card__content h3,
.product-category-card__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-category-card__content p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.product-category-card:hover .product-link {
    color: var(--primary);
}

/* ==========================================================================
   Why Section
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image__placeholder {
    background: var(--gray-800);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

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

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.why-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.why-check {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.why-text p {
    font-size: 14px;
    color: #888;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(208, 244, 0, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #AAA;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* Platform-specific colors */
.social-icon--facebook {
    background: #1877F2;
}

.social-icon--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon--youtube {
    background: #FF0000;
}

.social-icon--tiktok {
    background: #000;
    border: 1px solid #333;
}

.social-icon--line {
    background: #06C755;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-contact a {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 14px;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
}

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

.footer-links .separator {
    margin: 0 12px;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.page-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    color: #AAA;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
}

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

.breadcrumb .current {
    color: var(--primary);
}

/* ==========================================================================
   Articles Section
   ========================================================================== */
.articles-section {
    background: var(--white);
    padding: 80px 0;
}

.section-header--between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header--between h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.section-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.section-link:hover {
    color: var(--primary);
}

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

.article-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.article-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.article-card__image {
    position: relative;
    height: 160px;
    background: #f0f0f0;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.article-card__content {
    padding: 20px;
}

.article-card__tag {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.article-card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__date {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* Articles Placeholder */
.articles-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
    border-radius: 16px;
    color: #666;
}

.article-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    color: #999;
    font-size: 13px;
    line-height: 1.5;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.testimonials-section .section-header--center {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-section .section-header--center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.testimonials-section .section-header--center p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: var(--primary);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-card__image {
    position: relative;
    height: 350px;
    background: #1a1a1a;
    overflow: hidden;
}

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

.testimonial-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #666;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}

.testimonial-card__content {
    padding: 32px 40px 40px;
}

.testimonial-card__quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 24px;
    position: relative;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    margin-right: 8px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
    flex-shrink: 0;
}

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

.author-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-500);
    font-size: 12px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.testimonial-rating .star {
    color: #FFD700;
    font-size: 14px;
}

/* Slider Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonials-dots .dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Testimonial Placeholder */
.testimonial-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: 24px;
    color: var(--gray-600);
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1200px) {
    .nav {
        padding: 0 40px;
    }
    
    .hero-section {
        padding: 120px 40px 60px;
    }
    
    .container {
        padding: 0 40px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1200px) {
    .nav {
        padding: 0 40px;
    }
    
    .hero-section {
        padding: 100px 40px 60px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .products-grid,
    .products-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .nav {
        padding: 0 24px;
    }
    
    .hero-section {
        padding: 100px 24px 60px;
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    /* ===== NAVIGATION - MOBILE ===== */
    .site-header {
        width: 100%;
    }
    
    .nav {
        padding: 0 16px;
        height: 64px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .nav-links,
    .nav-cta {
        display: none !important;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    /* ===== MOBILE MENU ===== */
    .mobile-menu {
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .mobile-menu__inner {
        padding: 20px 16px;
    }
    
    .mobile-menu__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu__list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu__list li a {
        display: block;
        padding: 16px 0;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
    }
    
    .mobile-menu__list li a:hover {
        color: var(--primary);
    }
    
    /* ===== HERO SECTION - MOBILE FULL WIDTH ===== */
    .hero-section {
        padding: 80px 0 40px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-section .container {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-title span {
        display: block;
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        justify-content: center;
    }
    
    /* Video Background - Mobile */
    .hero-video-bg {
        width: 100%;
    }
    
    .hero-video-bg iframe {
        min-width: 250vw;
        min-height: 100vh;
    }
    
    .hero-video-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
    
    /* Decorative glow - hide on mobile */
    .hero-section::before {
        display: none;
    }
    
    /* ===== CONTAINER - MOBILE ===== */
    .container {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* ===== SECTIONS - MOBILE ===== */
    .section {
        padding: 48px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .section-header--between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    /* ===== GRIDS - MOBILE ===== */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card__icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .highlight-card__title {
        font-size: 16px;
    }
    
    .highlight-card__text {
        font-size: 13px;
    }
    
    .products-grid,
    .products-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* ===== CTA - MOBILE ===== */
    .cta-section {
        padding: 48px 0;
    }
    
    .cta-content {
        padding: 0 16px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* ===== FOOTER - MOBILE ===== */
    .site-footer {
        padding: 48px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand h3 {
        font-size: 24px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-col li {
        padding: 6px 0;
    }
    
    .footer-bottom__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    /* ===== PAGE HERO - MOBILE ===== */
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 14px;
    }
    
    /* ===== WHY SECTION - MOBILE ===== */
    .why-content h2 {
        font-size: 24px;
    }
    
    .why-list li {
        padding: 16px 0;
    }
    
    .why-text h4 {
        font-size: 15px;
    }
    
    .why-text p {
        font-size: 13px;
    }
    
    /* ===== TESTIMONIALS - MOBILE ===== */
    .testimonials-section .section-header--center h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-card__image {
        height: 250px;
    }
    
    .testimonial-card__content {
        padding: 24px;
    }
    
    .testimonial-card__quote {
        font-size: 1rem;
    }
    
    .testimonial-card__quote::before {
        font-size: 2rem;
    }
    
    /* ===== ARTICLES - MOBILE ===== */
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .section-header--between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-card__title {
        font-size: 16px;
    }
}

/* ==========================================================================
   Responsive - Small Mobile
   ========================================================================== */
@media (max-width: 575px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card__image {
        height: 180px;
    }
}

@media (max-width: 375px) {
    .nav {
        padding: 0 12px;
    }
    
    .hero-section {
        padding: 70px 0 32px;
    }
    
    .hero-section .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title span {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Products Page - One Page Scroll (Wireframe Design)
   ========================================================================== */

/* Page Hero */
.page-hero {
    padding: 160px 120px 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(208, 244, 0, 0.08) 0%, transparent 70%);
}

.page-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    color: #AAAAAA;
    line-height: 1.8;
}

/* Products Sticky Navigation */
.product-nav {
    background: var(--white);
    border-bottom: 1px solid #E6E6E6;
    padding: 0 120px;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.product-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-nav-inner::-webkit-scrollbar {
    display: none;
}

.product-nav a {
    padding: 20px 24px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.product-nav a:hover {
    color: var(--black);
    background: #FAFAFA;
}

.product-nav a.active {
    color: var(--black);
    border-bottom-color: var(--primary);
}

/* Section Styles */
.section {
    padding: 80px 120px;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: #F5F5F5;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

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

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

.section-label {
    display: inline-block;
    background: rgba(208, 244, 0, 0.15);
    color: #7a9200;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-dark .section-label {
    background: rgba(208, 244, 0, 0.2);
    color: var(--primary);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
}

.section-dark .section-header p {
    color: #AAAAAA;
}

.section-header.center p {
    margin: 0 auto;
}

/* Products Overview Grid */
.products-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.product-overview-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-overview-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-overview-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 13px;
    position: relative;
}

.product-overview-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.product-overview-content {
    padding: 28px;
}

.product-overview-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-overview-content p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-link {
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.product-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* Full Width Cards */
.products-overview-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.product-full-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    border: 2px solid rgba(208, 244, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.product-full-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.product-full-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex-shrink: 0;
}

.product-full-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-full-content p {
    font-size: 14px;
    color: #AAAAAA;
    margin-bottom: 16px;
    line-height: 1.7;
}

.product-full-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Product Detail Header */
.product-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 120px;
    background: #FAFAFA;
}

.product-detail-header.section-gray {
    background: #F5F5F5;
}

.product-detail-image {
    height: 450px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.product-detail-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.product-detail-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-info .subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.product-tag {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.product-tag.highlight {
    background: var(--primary);
    color: var(--black);
}

/* Product Detail Features */
.product-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.product-feature-icon {
    font-size: 24px;
}

.product-feature-text {
    font-size: 14px;
    font-weight: 500;
}

/* Product Types Grid */
.product-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-type-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.product-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-type-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.product-type-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-type-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid #EEEEEE;
}

.comparison-table th {
    background: #F5F5F5;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table th.highlight {
    background: var(--primary);
    color: var(--black);
}

.table-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 8px;
}

.comparison-table td {
    font-size: 14px;
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 500;
    background: #FAFAFA;
}

.comparison-table .check {
    color: var(--primary-dark);
    font-weight: 700;
}

.comparison-table .cross {
    color: #CCCCCC;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #F5F5F5;
    border-radius: 16px;
    padding: 24px 32px;
    border-left: 4px solid var(--primary);
}

.info-box-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-box-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-box-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.info-box-content a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spec-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.spec-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    margin-bottom: 12px;
}

.spec-card .value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.spec-card p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #CCCCCC;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Color Collection */
.color-collection {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.color-swatch {
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.color-swatch:hover {
    transform: scale(1.05);
}

/* Color Swatches */
.color-swatch.gloss-black { background: linear-gradient(135deg, #000 0%, #333 100%); }
.color-swatch.matte-black { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); }
.color-swatch.gloss-white { background: linear-gradient(135deg, #fff 0%, #eee 100%); color: #000; text-shadow: none; }
.color-swatch.midnight-blue { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.color-swatch.racing-red { background: linear-gradient(135deg, #b71c1c 0%, #e53935 100%); }
.color-swatch.nardo-gray { background: linear-gradient(135deg, #616161 0%, #9e9e9e 100%); }
.color-swatch.army-green { background: linear-gradient(135deg, #33691e 0%, #558b2f 100%); }
.color-swatch.satin-gold { background: linear-gradient(135deg, #bf9b30 0%, #d4af37 100%); }
.color-swatch.purple { background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%); }
.color-swatch.orange { background: linear-gradient(135deg, #e65100 0%, #ff9800 100%); }
.color-swatch.tiffany { background: linear-gradient(135deg, #00838f 0%, #4dd0e1 100%); }
.color-swatch.chrome { background: linear-gradient(135deg, #9e9e9e 0%, #e0e0e0 100%); }

.color-note {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-top: 32px;
}

.section-dark .color-note {
    color: rgba(255, 255, 255, 0.6);
}

/* Dealer Packs Grid */
.dealer-packs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dealer-pack-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.dealer-pack-card:hover {
    transform: translateY(-4px);
}

.dealer-pack-card.featured {
    border-color: var(--primary);
}

.dealer-pack-header {
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dealer-pack-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.dealer-pack-header p {
    color: #888888;
    font-size: 14px;
    margin: 0;
}

.dealer-pack-content {
    padding: 32px;
}

.dealer-pack-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.dealer-pack-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.dealer-pack-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #AAAAAA;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Button Primary (for products page) */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(208, 244, 0, 0.3);
}

/* ==========================================================================
   Products Page - Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .page-hero,
    .section,
    .product-nav,
    .product-detail-header,
    .cta-section {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 992px) {
    .products-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-overview-full {
        grid-template-columns: 1fr;
    }
    
    .product-detail-header {
        grid-template-columns: 1fr;
    }
    
    .product-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .color-collection {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .dealer-packs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-nav {
        top: 70px;
    }
}

@media (max-width: 768px) {
    .page-hero,
    .section,
    .product-nav,
    .product-detail-header,
    .cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .page-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .product-nav {
        padding: 0;
        top: 64px;
    }
    
    .product-nav-inner {
        padding: 0 16px;
    }
    
    .product-nav a {
        padding: 16px 16px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .products-overview,
    .product-types-grid,
    .specs-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .color-collection {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-detail-header {
        padding: 40px 24px;
    }
    
    .product-detail-image {
        height: 250px;
    }
    
    .product-detail-info h2 {
        font-size: 28px;
    }
    
    .product-detail-features {
        grid-template-columns: 1fr;
    }
    
    .product-full-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .product-full-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}
