/* ===================================
   RETAIL CAFE REVOLUTION
   Modern Racing-Inspired Design
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #ff4757;
    --secondary: #ffd460;
    --accent: #00d2ff;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --dark-lighter: #2a2f4a;
    --light: #ffffff;
    --gray: #8892b0;
    --gray-light: #ccd6f6;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark);
    color: var(--gray-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 71, 87, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 900;
    color: var(--light);
    letter-spacing: 2px;
}

.logo i {
    color: var(--primary);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: slideInDown 0.8s ease 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title-line {
    display: block;
    background: linear-gradient(120deg, var(--light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-title-line:nth-child(2) {
    animation: slideInRight 0.8s ease 0.6s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    animation: fadeIn 0.8s ease 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gray);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

/* ===================================
   VIDEO INTRO SECTION
   =================================== */
.video-intro {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.video-intro-content {
    text-align: center;
}

.video-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.video-intro-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--light);
    margin-bottom: 20px;
}

.video-intro-content p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-thumbnail {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.video-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 71, 87, 0.3);
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.play-button i {
    color: var(--light);
    font-size: 28px;
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.6);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 212, 96, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 25px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   TREND SECTION - TIMELINE
   =================================== */
.trend-section {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--primary) 0%, 
        var(--accent) 50%, 
        var(--secondary) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    animation: fadeInTimeline 0.8s ease;
}

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

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: var(--primary);
    color: var(--light);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 25px;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--dark-light);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.2);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-icon i {
    color: var(--light);
    font-size: 20px;
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

.brand-highlight {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.brand-highlight img {
    width: 100%;
    display: block;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.brand-logo-item {
    padding: 15px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 1px;
}

/* ===================================
   WHY COFFEE SECTION
   =================================== */
.why-coffee {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.insight-card {
    background: var(--dark);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.insight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.2);
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-number {
    font-family: var(--font-primary);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 71, 87, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.insight-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.insight-icon i {
    color: var(--primary);
    font-size: 28px;
}

.insight-card h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.insight-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

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

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgba(0, 210, 255, 0.05);
    border: 2px solid var(--accent);
    border-radius: 15px;
    margin-top: 20px;
}

.big-stat {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-desc {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

blockquote {
    padding: 20px 25px;
    background: rgba(255, 212, 96, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    font-style: italic;
    color: var(--gray-light);
    margin-top: 20px;
}

/* ===================================
   BRANDS SPOTLIGHT
   =================================== */
.brands-spotlight {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.brand-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.brand-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 900;
    color: var(--light);
    letter-spacing: 3px;
}

.brand-details {
    padding: 30px;
}

.brand-details h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.brand-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat-num {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.mini-stat-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.brand-details p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.brand-highlight-box {
    padding: 15px 20px;
    background: rgba(255, 71, 87, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-light);
}

.brand-highlight-box strong {
    color: var(--primary);
}

/* ===================================
   FUTURE SECTION
   =================================== */
.future-section {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.differentiation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.diff-card {
    background: var(--dark);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 210, 255, 0.2);
    transition: var(--transition-smooth);
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.2);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diff-icon i {
    color: var(--accent);
    font-size: 24px;
}

.diff-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.diff-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.example-box {
    padding: 12px 18px;
    background: rgba(255, 212, 96, 0.05);
    border-left: 3px solid var(--secondary);
    border-radius: 5px;
    font-size: 14px;
    color: var(--gray-light);
}

.example-box strong {
    color: var(--secondary);
}

.comparison {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.comp-item {
    padding: 12px 15px;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-label {
    font-weight: 700;
    color: var(--accent);
    font-size: 13px;
}

.comp-value {
    color: var(--gray);
    font-size: 13px;
}

.challenges-section {
    margin-top: 80px;
}

.challenges-section h3 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--light);
    text-align: center;
    margin-bottom: 50px;
}

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

.challenge-item {
    background: rgba(255, 71, 87, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 71, 87, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.challenge-item:hover {
    background: rgba(255, 71, 87, 0.1);
    transform: translateY(-5px);
}

.challenge-item i {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 20px;
}

.challenge-item h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}

.challenge-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   TAKEAWAYS SECTION
   =================================== */
.takeaways {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.takeaway-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.takeaway-card {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-lighter) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 212, 96, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.takeaway-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 212, 96, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.takeaway-card:hover::before {
    opacity: 1;
}

.takeaway-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(255, 212, 96, 0.2);
}

.takeaway-num {
    font-family: var(--font-primary);
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 212, 96, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.takeaway-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.takeaway-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.gallery .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   STATS BANNER
   =================================== */
.stats-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c44569 100%);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--light);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-source h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-source p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.source-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.source-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .insights-grid,
    .brands-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    :root {
        --section-padding: 60px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .differentiation-grid,
    .takeaway-cards,
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .brand-stats-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
}