/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
    --accent: #F5A623;
    --accent-dark: #d4900e;
    --accent-glow: rgba(245, 166, 35, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666;
    --max-width: 1200px;
}

/* ===== ANIMATED BACKGROUND PARTICLES ===== */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== FLOATING GEOMETRIC SHAPES ===== */
.floating-shapes {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.floating-shapes .shape {
    position: absolute;
    border: 1px solid rgba(245, 166, 35, 0.08);
    border-radius: 4px;
    animation: floatShape linear infinite;
}
.floating-shapes .shape:nth-child(1) { width: 60px; height: 60px; top: 10%; left: 5%; animation-duration: 25s; }
.floating-shapes .shape:nth-child(2) { width: 40px; height: 40px; top: 30%; left: 80%; animation-duration: 30s; border-radius: 50%; }
.floating-shapes .shape:nth-child(3) { width: 80px; height: 80px; top: 60%; left: 15%; animation-duration: 35s; }
.floating-shapes .shape:nth-child(4) { width: 50px; height: 50px; top: 80%; left: 70%; animation-duration: 20s; border-radius: 50%; }
.floating-shapes .shape:nth-child(5) { width: 30px; height: 30px; top: 45%; left: 50%; animation-duration: 28s; }
.floating-shapes .shape:nth-child(6) { width: 70px; height: 70px; top: 15%; left: 60%; animation-duration: 32s; border-radius: 50%; }
.floating-shapes .shape:nth-child(7) { width: 45px; height: 45px; top: 70%; left: 40%; animation-duration: 22s; }
.floating-shapes .shape:nth-child(8) { width: 55px; height: 55px; top: 50%; left: 90%; animation-duration: 27s; border-radius: 50%; }

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.5; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

/* ===== GRID OVERLAY ===== */
.grid-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; }
.logo-svg { height: 45px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--accent) !important;
    color: #0a0a0a !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 700 !important;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
    color: #0a0a0a !important;
}
.nav-cta::after { display: none !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(245, 166, 35, 0.1);
    }
    .nav-links.open { right: 0; }
}

/* ===== SECTION COMMON ===== */
section { position: relative; z-index: 1; }
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 28px; height: 2px;
    background: var(--accent);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section-title span { color: var(--accent); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero-logo-svg {
    width: 500px;
    max-width: 90%;
    margin: 0 auto 2rem;
    animation: fadeInDown 1s ease;
}
.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 1s ease 0.4s both;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
    color: #0a0a0a;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 1s both;
}
.hero-stat { text-align: center; }
.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}
.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
}
.scroll-indicator .mouse {
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator .wheel {
    width: 3px; height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ===== RETAILER LOGOS MARQUEE ===== */
.retailers-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.02), transparent);
    overflow: hidden;
}
.retailers-section .container { text-align: center; margin-bottom: 2rem; }
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 150px;
    z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, #0a0a0a, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, #0a0a0a, transparent); }
.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.retailer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    margin: 0 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
}
.retailer-logo:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.05);
}
.retailer-name {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    white-space: nowrap;
}
.retailer-logo:hover .retailer-name { color: var(--accent); }

/* ===== SERVICES ===== */
.services { padding: 8rem 0; }
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 166, 35, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 60px; height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}
.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: letter-spacing 0.3s;
}
.service-card:hover .card-link { letter-spacing: 1px; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.02), transparent);
}
.how-it-works .section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.how-it-works .section-subtitle { margin: 0 auto; }
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.2), transparent);
}
@media (max-width: 768px) { .steps::before { display: none; } }
.step { text-align: center; position: relative; }
.step-number {
    width: 90px; height: 90px;
    background: var(--bg-card);
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}
.step:hover .step-number {
    background: var(--accent);
    color: #0a0a0a;
    box-shadow: 0 0 40px var(--accent-glow);
}
.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 8rem 0; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
.why-content .section-subtitle { margin-bottom: 2rem; }
.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.why-item .check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}
.why-item p { color: var(--text-secondary); line-height: 1.6; }
.why-item strong { color: var(--text-primary); }
.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.stat-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-4px);
}
.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}
.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.02), transparent);
}
.testimonials .section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.testimonials .section-subtitle { margin: 0 auto; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
}
.testimonial-card .quote-mark {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}
.testimonial-author .name {
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    font-size: 0.95rem;
}
.testimonial-author .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 8rem 0; text-align: center; }
.cta-box {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(245, 166, 35, 0.02));
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 24px;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(245, 166, 35, 0.05), transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.cta-box h2 span { color: var(--accent); }
.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.02), transparent);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-detail .icon {
    width: 44px; height: 44px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail span { color: var(--text-secondary); }
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a1a; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { }
.footer-logo-svg { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PULSE DOT ===== */
.pulse-dot {
    width: 8px; height: 8px;
    background: #0a0a0a;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(10,10,10,0.4); }
    70% { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.page-hero .breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease;
}
.page-hero .breadcrumb a {
    color: var(--accent);
    transition: opacity 0.3s;
}
.page-hero .breadcrumb a:hover { opacity: 0.8; }

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}
.service-detail:nth-child(even) {
    background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.02), transparent);
}
.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}
.service-detail:nth-child(even) .service-detail-inner > * {
    direction: ltr;
}
@media (max-width: 768px) {
    .service-detail-inner { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
}
.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.service-detail-content h2 span { color: var(--accent); }
.service-detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.service-detail-content ul {
    list-style: none;
    margin: 1.5rem 0;
}
.service-detail-content ul li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
}
.service-detail-visual {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.service-detail-visual .big-icon {
    width: 120px; height: 120px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== RETAILERS PAGE GRID ===== */
.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}
.retailer-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.retailer-card:hover {
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.retailer-card .retailer-icon {
    width: 70px; height: 70px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.retailer-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.retailer-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.retailer-card .retailer-icon svg {
    width: 32px; height: 32px;
}

/* ===== ABOUT PAGE TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}
.team-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-4px);
}
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
}
.team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.team-card .team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== MISSION SECTION ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.mission-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}
.mission-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
}
.mission-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}
