/* ============================================
   HUDDLE GLOBAL 2025 - ESG LIVE DASHBOARD
   Full-Screen Keynote-Style Slides
   One Metric at a Time - Thin Fonts
   ============================================ */

/* CSS Variables */
:root {
    /* Dark Background */
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;

    /* Glowing Accent Colors */
    --accent-cyan: #00F5A0;
    --accent-blue: #00D9F5;
    --accent-purple: #BD00FF;
    --accent-pink: #FF6B6B;
    --accent-yellow: #FFE66D;
    --accent-orange: #FF9F43;
    --accent-red: #C23A3A;
    --accent-red-bright: #E04545;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00F5A0 0%, #00D9F5 100%);
    --gradient-secondary: linear-gradient(135deg, #BD00FF 0%, #FF6B6B 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);

    /* Text Colors */
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.3);

    /* Typography - Ultra Thin */
    --font-display: 'Inter Tight', sans-serif;
    --font-body: 'Inter Tight', sans-serif;

    /* Transitions */
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent text selection on touch */
    -webkit-tap-highlight-color: transparent;
    /* Smooth scrolling */
    scroll-behavior: smooth;
}

/* Touch-friendly improvements */
@media (pointer: coarse) {
    /* Larger touch targets for coarse pointers (touch screens) */
    /* Keep the visible dot small but have invisible touch area */
    .nav-dot {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
    }

    .nav-dot::after {
        content: '';
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

    .nav-dot.active::after {
        background: var(--accent-cyan);
        box-shadow: 0 0 10px var(--accent-cyan);
    }
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 200;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.4;
    position: relative;
}

/* Sustainability Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3C!-- Leaf 1 --%3E%3Cpath d='M30 40 Q45 25 50 40 Q55 55 40 60 Q25 55 30 40' fill='none' stroke='%2300F5A0' stroke-width='1'/%3E%3Cpath d='M40 40 L40 65' fill='none' stroke='%2300F5A0' stroke-width='1'/%3E%3C!-- Recycle --%3E%3Cpath d='M150 30 L160 45 L140 45 Z' fill='none' stroke='%2300D9F5' stroke-width='1'/%3E%3Cpath d='M165 55 L155 70 L165 70 L175 55 Z' fill='none' stroke='%2300D9F5' stroke-width='1'/%3E%3Cpath d='M135 55 L145 70 L135 70 L125 55 Z' fill='none' stroke='%2300D9F5' stroke-width='1'/%3E%3C!-- Water Drop --%3E%3Cpath d='M100 100 Q100 85 110 95 Q120 105 110 115 Q100 125 90 115 Q80 105 90 95 Q100 85 100 100' fill='none' stroke='%23BD00FF' stroke-width='1'/%3E%3C!-- Tree --%3E%3Cpath d='M40 150 L50 130 L60 150 Z' fill='none' stroke='%2300F5A0' stroke-width='1'/%3E%3Cpath d='M42 145 L50 125 L58 145' fill='none' stroke='%2300F5A0' stroke-width='1'/%3E%3Cpath d='M50 150 L50 170' fill='none' stroke='%2300F5A0' stroke-width='1'/%3E%3C!-- Sun/Energy --%3E%3Ccircle cx='150' cy='150' r='10' fill='none' stroke='%23FFE66D' stroke-width='1'/%3E%3Cpath d='M150 135 L150 130 M150 165 L150 170 M135 150 L130 150 M165 150 L170 150 M139 139 L135 135 M161 161 L165 165 M139 161 L135 165 M161 139 L165 135' stroke='%23FFE66D' stroke-width='1'/%3E%3C!-- Globe --%3E%3Ccircle cx='100' cy='40' r='15' fill='none' stroke='%2300D9F5' stroke-width='1'/%3E%3Cellipse cx='100' cy='40' rx='15' ry='6' fill='none' stroke='%2300D9F5' stroke-width='0.5'/%3E%3Cpath d='M85 40 Q100 30 115 40' fill='none' stroke='%2300D9F5' stroke-width='0.5'/%3E%3C!-- Small Leaf --%3E%3Cpath d='M170 100 Q180 90 185 100 Q180 110 170 105' fill='none' stroke='%2300F5A0' stroke-width='1'/%3E%3C!-- CO2 molecule style --%3E%3Ccircle cx='30' cy='100' r='6' fill='none' stroke='%23FF6B6B' stroke-width='0.5'/%3E%3Ccircle cx='20' cy='95' r='4' fill='none' stroke='%23FF6B6B' stroke-width='0.5'/%3E%3Ccircle cx='20' cy='105' r='4' fill='none' stroke='%23FF6B6B' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

/* Animated gradient overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 245, 160, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(189, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 217, 245, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================
   FIXED UI ELEMENTS
   ============================================ */

/* Logo */
.logo {
    position: fixed;
    top: 20px;
    left: 24px;
    margin-right: 50px;
    z-index: 100;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.logo-img {
    width: 135px;
    height: auto;
    margin-left: 25px;
}

/* Live Badge */
.live-badge {
    position: fixed;
    top: 32px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(194, 58, 58, 0.15);
    border: 1px solid rgba(194, 58, 58, 0.4);
    border-radius: 100px;
    z-index: 100;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red-bright);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-red-bright);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.live-badge span:last-child {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-red-bright);
    letter-spacing: 0.15em;
}


/* Slide Navigation Dots */
.slide-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.nav-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    /* Touch-friendly: invisible larger hit area */
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

.nav-dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-cyan);
    transform: scale(1.2);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px var(--accent-cyan);
}

/* ============================================
   MUSIC TOGGLE BUTTON
   ============================================ */

.music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 245, 160, 0.3);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-toggle.muted {
    opacity: 0.5;
}

.music-toggle i {
    line-height: 1;
}

/* ============================================
   SLIDES CONTAINER
   ============================================ */

.slides-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all var(--transition-smooth);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 40px;
}

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

/* ============================================
   GLOW ORBS (Background Effects)
   ============================================ */

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 160, 0.15), transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.12), transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -4s;
}

.orb-center {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-cyan {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 245, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-green {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 160, 0.18), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-multi {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 245, 160, 0.1), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(189, 0, 255, 0.1), transparent 50%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-red {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 58, 58, 0.2), transparent 70%);
    top: 30%;
    left: 20%;
    animation-delay: -2s;
}

/* ============================================
   SLIDE 1: TITLE / WELCOME
   ============================================ */

.slide-1 {
    position: relative;
}

.slide-1::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: url('slide1-bg.webp') center center / cover no-repeat;
    z-index: 0;
}

.slide-1::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.slide-1 .slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 100px;
}

.slide-1 .glow-orb {
    z-index: 2;
}

/* Sustainability Partner */
.sustainability-partner {
    position: fixed;
    top: 20px;
    right: 60px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 100;
}

.partner-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 73%);
}

.partner-logo {
    height: 40px;
    width: auto;
}

.title-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(194, 58, 58, 0.1);
    border: 1px solid rgba(194, 58, 58, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent-red-bright);
    margin-bottom: 40px;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-1.active .hero-logo {
    opacity: 1;
    transform: scale(1);
}

.hero-logo-img {
    width: clamp(180px, 30vw, 280px);
    height: auto;
}

.mega-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 20px;
}

.mega-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-1.active .mega-title .word {
    opacity: 1;
    transform: translateY(0);
}

.slide-1.active .mega-title .word:nth-child(1) { transition-delay: 0.2s; }
.slide-1.active .mega-title .word:nth-child(2) { transition-delay: 0.4s; }

.year-display {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 200;
    letter-spacing: -0.05em;
    line-height: 0.9;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-bright) 50%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.slide-1.active .year-display {
    opacity: 1;
    transform: scale(1);
}

.subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 40px;
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

.slide-1.active .subtitle {
    opacity: 1;
}

/* ============================================
   SLIDE 2: NO PLASTIC BOTTLES
   ============================================ */

.slide-4 .slide-content {
    padding-bottom: 100px;
}

.icon-container {
    position: relative;
    width: 120px;
    height: 180px;
    margin: 0 auto 0px;
}

.bottle-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-5.active .bottle-icon {
    opacity: 1;
    transform: translateY(0);
    animation: floatBottle 4s ease-in-out infinite 1s;
}

@keyframes floatBottle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cross-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
    transform-origin: center;
    border-radius: 3px;
    box-shadow: 0 0 30px var(--accent-pink);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.slide-5.active .cross-line {
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.headline .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-5.active .headline .line:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.slide-5.active .headline .line:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.slide-5.active .headline .line:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

.headline .thin {
    font-weight: 200;
    color: rgb(255 255 255);
}

/* Gradient & Highlight Text */
.gradient-text {
    background: linear-gradient(135deg, #C23A3A 0%, #E04545 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.highlight-orange {
    color: #ee6749;
}

/* ============================================
   SLIDES 3, 4, 5: METRIC DISPLAYS
   ============================================ */

.metric-label {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.giant-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 18vw, 180px);
    font-weight: 200;
    letter-spacing: -0.05em;
    line-height: 0.85;
    background: linear-gradient(180deg, #FFD93D 0%, #F5B800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .giant-number {
    opacity: 1;
    transform: scale(1);
}

.metric-suffix {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 200;
    color: var(--accent-cyan);
    margin-top: -20px;
    opacity: 0;
    transition: opacity 0.6s ease 0.6s;
}

.slide.active .metric-suffix {
    opacity: 1;
}

.metric-unit {
    font-family: var(--font-display);
    font-size: clamp(30px, 6vw, 60px);
    font-weight: 300;
    color: #ffffff;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.6s ease 0.5s;
}

.slide.active .metric-unit {
    opacity: 1;
}

.metric-tagline {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
}

.slide.active .metric-tagline {
    opacity: 1;
}

.comparison {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}

.slide.active .comparison {
    opacity: 1;
    transform: translateY(0);
}

.comparison strong {
    font-weight: 500;
    color: var(--text-primary);
}

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

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 245, 160, 0.2);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ============================================
   SLIDE 6: SUSTAINABILITY MESSAGE
   ============================================ */

.statement {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 30px;
}

.statement .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-14.active .statement .word {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.slide-14.active .statement .word:nth-child(1) { transition-delay: 0.1s; }
.slide-14.active .statement .word:nth-child(2) { transition-delay: 0.2s; }
.slide-14.active .statement .word:nth-child(3) { transition-delay: 0.3s; }
.slide-14.active .statement .word:nth-child(4) { transition-delay: 0.4s; }

.statement-sub {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s ease 0.8s;
}

.slide-14.active .statement-sub {
    opacity: 1;
}

/* QR Code Section */
.qr-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.slide-15.active .qr-heading {
    opacity: 1;
    transform: translateY(0);
}

.qr-section {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.slide-15.active .qr-section {
    opacity: 1;
    transform: translateY(0);
}

.qr-code {
    width: 200px;
    height: 200px;
    padding: 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 245, 160, 0.3);
}

.qr-cta {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 300;
    color: var(--accent-cyan);
    letter-spacing: 0.02em;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    font-size: 40px;
    color: var(--accent-cyan);
    opacity: 0.2;
    animation: floatAround 20s linear infinite;
}

.float-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 70%; left: 15%; animation-delay: -4s; }
.float-icon:nth-child(3) { top: 20%; right: 15%; animation-delay: -8s; }
.float-icon:nth-child(4) { top: 75%; right: 10%; animation-delay: -12s; }
.float-icon:nth-child(5) { top: 50%; left: 5%; animation-delay: -16s; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-30px) rotate(10deg); opacity: 0.2; }
    50% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    75% { transform: translateY(30px) rotate(-10deg); opacity: 0.2; }
}

/* ============================================
   SLIDE 8: RESPONSE COUNTER
   ============================================ */

.counter-display {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.counter-digit {
    width: 100px;
    height: 140px;
    background: linear-gradient(180deg, #FFD93D 0%, #F5B800 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-13.active .counter-digit {
    opacity: 1;
    transform: translateY(0);
}

.slide-13.active .counter-digit:nth-child(1) { transition-delay: 0.2s; }
.slide-13.active .counter-digit:nth-child(2) { transition-delay: 0.3s; }
.slide-13.active .counter-digit:nth-child(3) { transition-delay: 0.4s; }
.slide-13.active .counter-digit:nth-child(4) { transition-delay: 0.5s; }

.milestone-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(0, 245, 160, 0.1);
    border: 1px solid rgba(0, 245, 160, 0.3);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
}

.slide-13.active .milestone-badge {
    opacity: 1;
}

.milestone-value {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--accent-cyan);
    padding: 6px 16px;
    background: rgba(0, 245, 160, 0.2);
    border-radius: 100px;
}

.orb-yellow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   SLIDE 5: AQI
   ============================================ */

.slide-title {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-align: center;
    z-index: 50;
}

.aqi-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.aqi-card {
    padding: 20px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Slide 4: Carbon Footprint */
.carbon-footprint-display {
    text-align: center;
    margin-top: 60px;
}

.carbon-footprint-value {
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 200;
    line-height: 1;
    background: linear-gradient(180deg, #FF9F43 0%, #F7971E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease 0.3s;
}

.slide-4.active .carbon-footprint-value {
    opacity: 1;
    transform: scale(1);
}

.carbon-footprint-unit {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.6s ease 0.6s;
}

.slide-4.active .carbon-footprint-unit {
    opacity: 1;
}

.carbon-offset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 16px 32px;
    background: rgba(0, 245, 160, 0.1);
    border: 1px solid rgba(0, 245, 160, 0.3);
    border-radius: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}

.slide-4.active .carbon-offset {
    opacity: 1;
    transform: translateY(0);
}

.carbon-offset-icon {
    font-size: 24px;
    color: var(--accent-cyan);
}

.carbon-offset-text {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
}

.carbon-offset-trees {
    font-weight: 500;
    color: var(--accent-cyan);
}

.carbon-footprint-note {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.slide-4.active .carbon-footprint-note {
    opacity: 1;
}

.orb-orange {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Slide 6: Plastic Stats */
.plastic-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.plastic-stat-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    width: 250px;
}

.slide-6.active .plastic-stat-card {
    opacity: 1;
    transform: translateY(0);
}

.slide-6.active .plastic-stat-card:nth-child(1) { transition-delay: 0.2s; }
.slide-6.active .plastic-stat-card:nth-child(2) { transition-delay: 0.4s; }
.slide-6.active .plastic-stat-card:nth-child(3) { transition-delay: 0.6s; }

.plastic-stat-icon {
    font-size: 48px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.plastic-stat-card:nth-child(1) .plastic-stat-icon {
    color: var(--accent-cyan);
}

.plastic-stat-card:nth-child(2) .plastic-stat-icon {
    color: var(--accent-green, #00F5A0);
}

.plastic-stat-value {
    font-family: var(--font-display);
    font-size: 100px;
    font-weight: 200;
    line-height: 1;
    background: linear-gradient(180deg, #00F5A0 0%, #00D9F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 200px;
    display: inline-block;
}

.plastic-stat-unit {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 8px;
    text-align: center;
}

.plastic-stat-label {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 16px;
    max-width: 180px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Slide 7: Waste Collected */
.waste-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.waste-stat-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    width: 220px;
}

.slide-7.active .waste-stat-card {
    opacity: 1;
    transform: translateY(0);
}

.slide-7.active .waste-stat-card:nth-child(1) { transition-delay: 0.2s; }
.slide-7.active .waste-stat-card:nth-child(2) { transition-delay: 0.4s; }

.waste-stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.waste-stat-card.bio .waste-stat-icon {
    color: #00F5A0;
}

.waste-stat-card.non-bio .waste-stat-icon {
    color: #FF6B6B;
}

.waste-stat-value {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 200;
    line-height: 1;
}

.waste-stat-card.bio .waste-stat-value {
    background: linear-gradient(180deg, #00F5A0 0%, #00D9F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waste-stat-card.non-bio .waste-stat-value {
    background: linear-gradient(180deg, #FF6B6B 0%, #EE5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waste-stat-unit {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 8px;
}

.waste-stat-label {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 16px;
}

/* Slide 8: AQI */
.slide-10.active .aqi-card {
    opacity: 1;
    transform: translateY(0);
}

.slide-10.active .aqi-event { transition-delay: 0.3s; }

.aqi-single {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 80px;
}

.aqi-single .aqi-card {
    padding: 10px 10px;
}

.aqi-single .aqi-value {
    font-size: 120px;
}

.aqi-single .aqi-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.aqi-event { border: none; }

.aqi-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(255 255 255);
    margin-bottom: 16px;
}

.aqi-value {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 12px;
}

.aqi-outside .aqi-value { color: var(--accent-pink); }
.aqi-event .aqi-value { color: var(--accent-cyan); }

.aqi-status {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.aqi-status.bad {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-pink);
}

.aqi-status.good {
    background: rgba(0, 245, 160, 0.2);
    color: var(--accent-cyan);
}

.aqi-icon {
    font-size: 40px;
}

.aqi-outside .aqi-icon {
    color: var(--accent-pink);
}

.aqi-event .aqi-icon {
    color: var(--accent-cyan);
}

.aqi-vs {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.6s ease 0.4s;
}

.slide-10.active .aqi-vs {
    opacity: 1;
}

.aqi-message {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
}

.slide-10.active .aqi-message {
    opacity: 1;
}

.orb-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 245, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   SLIDE 10: TRAVEL CHART
   ============================================ */

.travel-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    height: 450px;
    padding-bottom: 100px;
    margin-top: 100px;
}

.travel-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    height: 100%;
    position: relative;
}

.travel-bar .bar-fill {
    position: absolute;
    bottom: 100px;
    width: 110px;
    height: 0;
    border-radius: 16px 16px 0 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
}

.slide-3.active .travel-bar .bar-fill {
    height: var(--target-height);
}

.bar-fill.orange { background: linear-gradient(180deg, #FF9F43, #F7971E); }
.bar-fill.blue { background: linear-gradient(180deg, #4A90D9, #2E5BFF); }
.bar-fill.purple { background: linear-gradient(180deg, #8B5CF6, #6B21A8); }
.bar-fill.pink { background: linear-gradient(180deg, #EC4899, #BE185D); }
.bar-fill.green { background: linear-gradient(180deg, #10B981, #059669); }

.bar-icon {
    position: absolute;
    bottom: 50px;
    font-size: 36px;
    color: var(--text-primary);
}

.bar-label {
    position: absolute;
    bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    white-space: nowrap;
}

.bar-percent {
    position: absolute;
    top: 0;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.slide-3.active .bar-percent {
    opacity: 1;
}

/* ============================================
   SLIDE 6: DURATION CHART (VERTICAL BARS)
   ============================================ */

.duration-chart-vertical {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    height: 200px;
    margin-top: 200px;
}

.duration-bar-v {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    height: 100%;
    position: relative;
}

.duration-bar-fill-v {
    position: absolute;
    bottom: 100px;
    width: 110px;
    height: 0;
    border-radius: 16px 16px 0 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
}

.slide-11.active .duration-bar-fill-v {
    height: var(--target-height);
}

.duration-bar-fill-v.orange { background: linear-gradient(180deg, #FF9F43, #F7971E); }
.duration-bar-fill-v.blue { background: linear-gradient(180deg, #4A90D9, #2E5BFF); }
.duration-bar-fill-v.purple { background: linear-gradient(180deg, #8B5CF6, #6B21A8); }
.duration-bar-fill-v.green { background: linear-gradient(180deg, #10B981, #059669); }

.duration-bar-icon {
    position: absolute;
    bottom: 50px;
    font-size: 36px;
    color: var(--text-primary);
}

.duration-bar-label-v {
    position: absolute;
    bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
}

.duration-bar-percent-v {
    position: absolute;
    top: 0;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.slide-11.active .duration-bar-percent-v {
    opacity: 1;
}

.duration-note {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 300;
    color: var(--accent-cyan);
    text-align: center;
    opacity: 0.9;
}

/* ============================================
   SLIDE 8: POWER USAGE CHART
   ============================================ */

.power-chart-vertical {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    height: 300px;
    margin-top: 150px;
}

.power-bar-v {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    height: 100%;
    position: relative;
}

.power-bar-fill-v {
    position: absolute;
    bottom: 100px;
    width: 110px;
    height: 0;
    border-radius: 16px 16px 0 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
}

.slide-8.active .power-bar-fill-v {
    height: var(--target-height);
}

.power-bar-fill-v.yellow { background: linear-gradient(180deg, #E04545, #C23A3A); }
.power-bar-fill-v.orange { background: linear-gradient(180deg, #4A90D9, #2E5BFF); }
.power-bar-fill-v.red { background: linear-gradient(180deg, #8B5CF6, #6B21A8); }

.power-bar-icon {
    position: absolute;
    bottom: 50px;
    font-size: 36px;
    color: var(--text-primary);
}

.power-bar-label-v {
    position: absolute;
    bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
}

.power-bar-value-v {
    position: absolute;
    top: 0;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.power-unit {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
}

.slide-8.active .power-bar-value-v {
    opacity: 1;
}

.power-note {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 300;
    color: var(--accent-cyan);
    text-align: center;
    opacity: 0.9;
}

/* ============================================
   SLIDE 9: DRINKING WATER CONSUMED
   ============================================ */

.water-display {
    text-align: center;
    margin-top: 60px;
}

.water-icon {
    font-size: 80px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-9.active .water-icon {
    opacity: 1;
    transform: translateY(0);
}

.water-value {
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 200;
    line-height: 1;
    background: linear-gradient(180deg, #00D9F5 0%, #00A8CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease 0.3s;
}

.slide-9.active .water-value {
    opacity: 1;
    transform: scale(1);
}

.water-unit {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.6s ease 0.6s;
}

.slide-9.active .water-unit {
    opacity: 1;
}

.water-note {
    font-size: 18px;
    font-weight: 300;
    color: var(--accent-blue);
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.slide-9.active .water-note {
    opacity: 1;
}

/* ============================================
   SLIDE 7: SUSTAINABILITY NOTICED
   ============================================ */

.noticed-display {
    margin-bottom: 40px;
}

.noticed-percent {
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 200px);
    font-weight: 200;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease 0.3s;
}

.slide-12.active .noticed-percent {
    opacity: 1;
    transform: scale(1);
}

.noticed-label {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--accent-cyan);
}

.noticed-message {
    padding: 32px 48px;
    background: rgba(0, 245, 160, 0.1);
    border: 1px solid rgba(0, 245, 160, 0.3);
    border-radius: 24px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}

.slide-12.active .noticed-message {
    opacity: 1;
    transform: translateY(0);
}

.noticed-icon {
    font-size: 32px;
    color: var(--accent-cyan);
    margin: 0 auto 16px;
    display: block;
    text-align: center;
}

.noticed-message p {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-primary);
    margin: 0;
}

.noticed-message p.sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ============================================
   SLIDE 9: SAVINGS DISPLAY
   ============================================ */

.savings-display {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.saving-card {
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.slide-14.active .saving-card {
    opacity: 1;
    transform: translateY(0);
}

.slide-14.active .saving-card.bottles { transition-delay: 0.3s; }
.slide-14.active .saving-card.papers { transition-delay: 0.5s; }

.saving-card.bottles { border-color: rgba(255, 159, 67, 0.3); }
.saving-card.papers { border-color: rgba(0, 217, 245, 0.3); }

.saving-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.saving-card.bottles .saving-icon {
    color: var(--accent-orange);
}

.saving-card.papers .saving-icon {
    color: var(--accent-blue);
}

.saving-value {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 8px;
}

.saving-card.bottles .saving-value { color: var(--accent-orange); }
.saving-card.papers .saving-value { color: var(--accent-blue); }

.saving-unit {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.saving-formula {
    font-size: 12px;
    font-weight: 300;
    color: rgb(255 255 255);
    padding: 8px 16px;
    background: rgb(55 55 55 / 76%);
    border-radius: 100px;
    display: inline-block;
}

.thank-you-message {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent-cyan);
    opacity: 0;
    transition: opacity 0.6s ease 1s;
}

.slide-14.active .thank-you-message {
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet breakpoint */
@media (max-width: 768px) {
    /* Header Elements */
    .logo {
        top: 12px;
        left: 12px;
    }

    .logo-img {
        width: 81px;
    }

    .live-badge {
        display: none; /* Hide on mobile to save space */
    }

    /* Navigation Dots - Hide on mobile */
    .slide-nav {
        display: none;
    }

    /* Slide Content */
    .slide-content {
        padding: 80px 20px 100px;
        max-width: 100%;
    }

    /* Title Slide */
    .hero-logo-img {
        width: 160px;
    }

    .mega-title {
        font-size: 48px;
    }

    .year-display {
        font-size: 80px;
    }

    .title-badge {
        padding: 6px 14px;
        font-size: 9px;
        margin-bottom: 24px;
    }

    /* Metrics */
    .giant-number {
        font-size: 80px;
    }

    .metric-suffix {
        font-size: 40px;
    }

    .metric-unit {
        font-size: 32px;
    }

    /* Headlines */
    .headline {
        font-size: 28px;
    }

    .statement {
        font-size: 32px;
    }

    .statement-sub {
        font-size: 16px;
        padding: 0 10px;
    }

    /* Icon Container */
    .icon-container {
        width: 80px;
        height: 120px;
        margin-bottom: 30px;
    }

    .cross-line {
        width: 100px;
        height: 4px;
    }

    /* Plastic Stats */
    .plastic-stats {
        gap: 30px;
        margin-top: 40px;
    }

    .plastic-stat-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .plastic-stat-value {
        font-size: 60px;
        min-width: 120px;
    }

    .plastic-stat-unit {
        font-size: 18px;
    }

    .plastic-stat-label {
        font-size: 14px;
        max-width: 140px;
    }

    /* Carbon Footprint (Slide 4) */
    .carbon-footprint-display {
        margin-top: 40px;
    }

    .carbon-footprint-value {
        font-size: 100px;
    }

    .carbon-footprint-unit {
        font-size: 26px;
    }

    .carbon-offset {
        gap: 10px;
        margin-top: 24px;
    }

    .carbon-offset-icon {
        font-size: 20px;
    }

    .carbon-offset-text {
        font-size: 16px;
    }

    .carbon-footprint-note {
        font-size: 14px;
        margin-top: 16px;
    }

    /* Waste Collected (Slide 7) */
    .waste-stats {
        gap: 40px;
        margin-top: 50px;
    }

    .waste-stat-card {
        width: 180px;
    }

    .waste-stat-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .waste-stat-value {
        font-size: 60px;
    }

    .waste-stat-unit {
        font-size: 18px;
    }

    .waste-stat-label {
        font-size: 14px;
    }

    /* Power Usage Chart (Slide 8) */
    .power-chart-vertical {
        gap: 20px;
        height: 280px;
        margin-top: 0;
    }

    .power-bar-v {
        width: 80px;
    }

    .power-bar-fill-v {
        width: 60px;
        bottom: 70px;
    }

    .power-bar-icon {
        font-size: 22px;
        bottom: 40px;
    }

    .power-bar-label-v {
        font-size: 11px;
        bottom: 8px;
    }

    .power-bar-value-v {
        font-size: 16px;
    }

    .power-note {
        font-size: 14px;
        margin-top: 20px;
    }

    /* Drinking Water (Slide 9) */
    .water-display {
        margin-top: 40px;
    }

    .water-icon {
        font-size: 60px;
        margin-bottom: 16px;
    }

    .water-value {
        font-size: 100px;
    }

    .water-unit {
        font-size: 26px;
    }

    .water-note {
        font-size: 14px;
        margin-top: 20px;
    }

    /* ESG Score */
    .score-container {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }

    .score-value {
        font-size: 56px;
    }

    .score-label {
        font-size: 10px;
    }

    .score-breakdown {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .breakdown-pill {
        padding: 10px 20px;
        gap: 8px;
    }

    .pill-label {
        font-size: 11px;
    }

    .pill-value {
        font-size: 16px;
    }

    /* Counter Display */
    .counter-display {
        gap: 8px;
    }

    .counter-digit {
        width: 60px;
        height: 90px;
        font-size: 48px;
        border-radius: 12px;
    }

    .milestone-badge {
        padding: 12px 20px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* AQI Comparison */
    .aqi-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .aqi-card {
        padding: 24px 40px;
        width: 100%;
        max-width: 280px;
    }

    .aqi-value {
        font-size: 56px;
    }

    .aqi-vs {
        font-size: 24px;
    }

    .aqi-message {
        font-size: 16px;
    }

    /* AQI Single */
    .aqi-single {
        margin-top: 0;
    }

    .aqi-single .aqi-value {
        font-size: 80px;
    }

    .aqi-single .aqi-icon {
        font-size: 40px;
    }

    /* QR Code */
    .qr-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }

    .qr-cta {
        font-size: 16px;
    }

    /* Travel Chart */
    .travel-chart {
        gap: 12px;
        height: 340px;
        padding-bottom: 75px;
        margin-top: 0;
    }

    .travel-bar {
        width: 65px;
    }

    .travel-bar .bar-fill {
        width: 55px;
        bottom: 75px;
    }

    .bar-icon {
        font-size: 20px;
        bottom: 48px;
    }

    .bar-label {
        font-size: 11px;
        bottom: 26px;
        white-space: nowrap;
    }

    .bar-percent {
        font-size: 14px;
        bottom: 6px;
    }

    /* Duration Chart - Vertical Bars */
    .duration-chart-vertical {
        gap: 20px;
        height: 280px;
        margin-top: 0;
    }

    .duration-bar-v {
        width: 80px;
    }

    .duration-bar-fill-v {
        width: 60px;
        bottom: 70px;
    }

    .duration-bar-icon {
        font-size: 22px;
        bottom: 40px;
    }

    .duration-bar-label-v {
        font-size: 11px;
        bottom: 8px;
    }

    .duration-bar-percent-v {
        font-size: 16px;
    }

    .duration-note {
        font-size: 14px;
        margin-top: 20px;
    }

    /* Sustainability Noticed */
    .noticed-percent {
        font-size: 100px;
    }

    .noticed-label {
        font-size: 24px;
    }

    .noticed-message {
        padding: 20px 28px;
    }

    .noticed-message p {
        font-size: 15px;
    }

    .noticed-message p.sub {
        font-size: 12px;
    }

    /* Savings Display */
    .savings-display {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .saving-card {
        padding: 28px 40px;
        width: 100%;
        max-width: 280px;
    }

    .saving-value {
        font-size: 56px;
    }

    .saving-unit {
        font-size: 15px;
    }

    .saving-formula {
        font-size: 10px;
    }

    .thank-you-message {
        font-size: 16px;
    }

    /* Sustainability Partner */
    .sustainability-partner {
        top: 12px;
        right: 12px;
        gap: 4px;
    }

    .partner-label {
        font-size: 10px;
    }

    .partner-logo {
        height: 28px;
    }

    /* Progress Bar */
    .progress-bar {
        bottom: 0;
        height: 2px;
    }

    /* Slide Title - Remove fixed positioning for mobile/tablet */
    .slide-title {
        position: static;
        transform: none;
        width: auto;
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* Comparison Pill */
    .comparison {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .comparison-icon {
        font-size: 18px;
    }

    /* Floating Icons */
    .float-icon {
        font-size: 28px;
    }

    /* Glow Orbs - Reduce size on mobile */
    .glow-orb {
        filter: blur(60px);
    }

    .orb-1, .orb-2 {
        width: 300px;
        height: 300px;
    }

    .orb-center, .orb-cyan, .orb-green, .orb-purple, .orb-yellow, .orb-blue, .orb-multi {
        width: 350px;
        height: 350px;
    }

    /* Pulse Ring */
    .pulse-ring {
        width: 250px;
        height: 250px;
    }
}

/* Mobile Phone breakpoint */
@media (max-width: 480px) {
    .slide-content {
        padding: 70px 16px 90px;
    }

    .hero-logo-img {
        width: 120px;
    }

    .mega-title {
        font-size: 36px;
    }

    .year-display {
        font-size: 56px;
    }

    .giant-number {
        font-size: 56px;
    }

    .metric-suffix {
        font-size: 28px;
        margin-top: -10px;
    }

    .metric-unit {
        font-size: 24px;
    }

    .headline {
        font-size: 36px;
    }

    .statement {
        font-size: 40px;
    }

    .subtitle,
    .statement-sub,
    .metric-tagline {
        font-size: 13px;
    }

    .comparison {
        padding: 10px 16px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Counter */
    .counter-digit {
        width: 50px;
        height: 75px;
        font-size: 40px;
        border-radius: 10px;
    }

    /* Score */
    .score-container {
        width: 160px;
        height: 160px;
        margin-bottom: 24px;
    }

    .score-value {
        font-size: 44px;
    }

    .breakdown-pill {
        padding: 8px 16px;
    }

    /* Plastic Stats */
    .plastic-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 30px;
    }

    .plastic-stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .plastic-stat-value {
        font-size: 50px;
        min-width: 100px;
    }

    .plastic-stat-unit {
        font-size: 16px;
    }

    .plastic-stat-label {
        font-size: 13px;
    }

    /* Carbon Footprint (Slide 4) */
    .carbon-footprint-display {
        margin-top: 30px;
    }

    .carbon-footprint-value {
        font-size: 72px;
    }

    .carbon-footprint-unit {
        font-size: 22px;
    }

    .carbon-offset {
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .carbon-offset-icon {
        font-size: 18px;
    }

    .carbon-offset-text {
        font-size: 14px;
    }

    .carbon-footprint-note {
        font-size: 12px;
        margin-top: 14px;
        padding: 0 10px;
    }

    /* Waste Collected (Slide 7) */
    .waste-stats {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .waste-stat-card {
        width: auto;
    }

    .waste-stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .waste-stat-value {
        font-size: 50px;
    }

    .waste-stat-unit {
        font-size: 16px;
    }

    .waste-stat-label {
        font-size: 13px;
    }

    /* Power Usage Chart (Slide 8) */
    .power-chart-vertical {
        gap: 15px;
        height: 240px;
        margin-top: 0;
    }

    .power-bar-v {
        width: 70px;
    }

    .power-bar-fill-v {
        width: 50px;
        bottom: 60px;
    }

    .power-bar-icon {
        font-size: 18px;
        bottom: 35px;
    }

    .power-bar-label-v {
        font-size: 9px;
        bottom: 6px;
    }

    .power-bar-value-v {
        font-size: 14px;
    }

    .power-note {
        font-size: 12px;
        margin-top: 15px;
    }

    /* Drinking Water (Slide 9) */
    .water-display {
        margin-top: 30px;
    }

    .water-icon {
        font-size: 50px;
        margin-bottom: 12px;
    }

    .water-value {
        font-size: 72px;
    }

    .water-unit {
        font-size: 22px;
    }

    .water-note {
        font-size: 12px;
        margin-top: 16px;
    }

    /* AQI */
    .aqi-card {
        padding: 10px 20px;
    }

    .aqi-value {
        font-size: 44px;
    }

    .aqi-icon {
        font-size: 32px;
    }

    /* Travel Chart */
    .travel-chart {
        height: 300px;
        gap: 10px;
        padding-bottom: 70px;
    }

    .travel-bar {
        width: 60px;
    }

    .travel-bar .bar-fill {
        width: 50px;
        bottom: 70px;
    }

    .bar-icon {
        font-size: 18px;
        bottom: 44px;
    }

    .bar-label {
        font-size: 10px;
        bottom: 24px;
        white-space: nowrap;
    }

    .bar-percent {
        font-size: 12px;
        bottom: 6px;
    }

    /* Duration Chart - Vertical Bars */
    .duration-chart-vertical {
        gap: 15px;
        height: 240px;
    }

    .duration-bar-v {
        width: 70px;
    }

    .duration-bar-fill-v {
        width: 50px;
        bottom: 60px;
    }

    .duration-bar-icon {
        font-size: 18px;
        bottom: 35px;
    }

    .duration-bar-label-v {
        font-size: 9px;
        bottom: 6px;
    }

    .duration-bar-percent-v {
        font-size: 14px;
    }

    /* AQI Single */
    .aqi-single .aqi-value {
        font-size: 64px;
    }

    .aqi-single .aqi-icon {
        font-size: 32px;
    }

    .aqi-message {
        font-size: 14px;
    }

    /* QR Code */
    .qr-heading {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .qr-code {
        width: 140px;
        height: 140px;
    }

    .qr-cta {
        font-size: 14px;
    }

    .duration-note {
        font-size: 12px;
        margin-top: 15px;
    }

    /* Noticed */
    .noticed-percent {
        font-size: 72px;
    }

    .noticed-label {
        font-size: 20px;
    }

    .noticed-message {
        padding: 16px 20px;
    }

    /* Savings */
    .saving-card {
        padding: 20px 30px;
    }

    .saving-value {
        font-size: 44px;
    }

    .saving-icon {
        font-size: 36px;
    }

    /* Slide Title */
    .slide-title {
        position: static;
        transform: none;
        width: auto;
        font-size: 32px;
        margin-bottom: 100px;
        padding: 0 10px;
    }

    /* Charts - remove margin-top for mobile */
    .travel-chart {
        margin-top: 0;
        height: 280px;
    }

    .duration-chart-vertical {
        margin-top: 0;
        height: 220px;
    }

    .aqi-single {
        margin-top: 0;
    }

    /* Icon Container */
    .icon-container {
        width: 100px;
        height: 90px;
        margin-bottom: 24px;
    }

    .cross-line {
        width: 80px;
        height: 3px;
    }

    /* Partner Logo */
    .sustainability-partner {
        top: 10px;
        right: 10px;
    }

    .partner-label {
        font-size: 9px;
    }

    .partner-logo {
        height: 24px;
    }

    /* Glow Orbs */
    .orb-1, .orb-2 {
        width: 200px;
        height: 200px;
    }

    .orb-center, .orb-cyan, .orb-green, .orb-purple, .orb-yellow, .orb-blue, .orb-multi {
        width: 250px;
        height: 250px;
    }

    .pulse-ring {
        width: 180px;
        height: 180px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .slide-content {
        padding: 60px 12px 80px;
    }

    .giant-number {
        font-size: 70px;
    }

    .year-display {
        font-size: 70px;
    }

    .mega-title {
        font-size: 28px;
    }

    .headline {
        font-size: 40px;
    }

    .statement {
        font-size: 40px;
    }

    .counter-digit {
        width: 42px;
        height: 65px;
        font-size: 32px;
        border-radius: 8px;
    }

    .counter-display {
        gap: 6px;
    }

    .score-container {
        width: 140px;
        height: 140px;
    }

    .score-value {
        font-size: 36px;
    }

    .travel-chart {
        height: 260px;
        gap: 8px;
        padding-bottom: 65px;
    }

    .travel-bar {
        width: 52px;
    }

    .travel-bar .bar-fill {
        width: 44px;
        bottom: 65px;
    }

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

    .bar-label {
        font-size: 8px;
        bottom: 22px;
    }

    .bar-percent {
        font-size: 10px;
        bottom: 5px;
    }

    .noticed-percent {
        font-size: 56px;
    }

    .aqi-value, .saving-value {
        font-size: 36px;
    }

    /* Plastic Stats */
    .plastic-stats {
        gap: 20px;
        margin-top: 25px;
    }

    .plastic-stat-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .plastic-stat-value {
        font-size: 42px;
        min-width: 80px;
    }

    .plastic-stat-unit {
        font-size: 14px;
    }

    .plastic-stat-label {
        font-size: 12px;
    }

    /* Carbon Footprint (Slide 4) */
    .carbon-footprint-display {
        margin-top: 20px;
    }

    .carbon-footprint-value {
        font-size: 56px;
    }

    .carbon-footprint-unit {
        font-size: 18px;
    }

    .carbon-offset {
        gap: 6px;
        margin-top: 16px;
    }

    .carbon-offset-icon {
        font-size: 16px;
    }

    .carbon-offset-text {
        font-size: 12px;
    }

    .carbon-footprint-note {
        font-size: 10px;
        margin-top: 12px;
    }

    /* Waste Collected (Slide 7) */
    .waste-stats {
        gap: 20px;
        margin-top: 25px;
    }

    .waste-stat-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .waste-stat-value {
        font-size: 42px;
    }

    .waste-stat-unit {
        font-size: 14px;
    }

    .waste-stat-label {
        font-size: 12px;
    }

    /* Duration Chart - Vertical Bars */
    .duration-chart-vertical {
        gap: 10px;
        height: 200px;
    }

    .duration-bar-v {
        width: 60px;
    }

    .duration-bar-fill-v {
        width: 45px;
        bottom: 55px;
    }

    .duration-bar-icon {
        font-size: 16px;
        bottom: 32px;
    }

    .duration-bar-label-v {
        font-size: 8px;
        bottom: 5px;
    }

    .duration-bar-percent-v {
        font-size: 12px;
    }

    /* Slide Title */
    .slide-title {
        position: static;
        transform: none;
        width: auto;
        font-size: 16px;
        margin-bottom: 16px;
        padding: 0 8px;
    }

    /* Charts - remove margin-top */
    .travel-chart {
        margin-top: 0;
        height: 240px;
    }

    .duration-chart-vertical {
        margin-top: 0;
        height: 180px;
    }

    .aqi-single {
        margin-top: 0;
    }

    /* QR Code */
    .qr-heading {
        font-size: 24px;
    }

    .qr-code {
        width: 140px;
        height: 140px;
    }

    .qr-cta {
        font-size: 14px;
    }

    /* AQI */
    .aqi-single .aqi-value {
        font-size: 60px;
    }

    .aqi-single .aqi-icon {
        font-size: 36px;
    }

    .aqi-message {
        font-size: 14px;
    }

    .duration-note {
        font-size: 10px;
        margin-top: 10px;
    }

    /* Statement slide */
    .statement {
        font-size: 36px;
    }

    .highlight-orange {
        font-size: inherit;
    }
}

/* Safe area support for notched devices */
@supports (padding: env(safe-area-inset-top)) {
    .logo {
        left: max(12px, env(safe-area-inset-left));
    }

    .slide-nav {
        right: max(16px, env(safe-area-inset-right));
    }

    .sustainability-partner {
        right: max(12px, env(safe-area-inset-right));
    }

    .progress-bar {
        padding-bottom: env(safe-area-inset-bottom);
    }

    @media (max-width: 768px) {
        .slide-nav {
            bottom: max(80px, calc(env(safe-area-inset-bottom) + 60px));
        }
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .slide-content {
        padding: 60px 40px;
    }

    .giant-number {
        font-size: 64px;
    }

    .year-display {
        font-size: 60px;
    }

    .score-container {
        width: 150px;
        height: 150px;
        margin-bottom: 16px;
    }

    .score-value {
        font-size: 40px;
    }

    .score-breakdown {
        flex-direction: row;
    }

    .aqi-comparison {
        flex-direction: row;
        gap: 20px;
    }

    .aqi-card {
        padding: 16px 24px;
    }

    .aqi-value {
        font-size: 40px;
    }

    .savings-display {
        flex-direction: row;
    }

    .saving-card {
        padding: 16px 24px;
    }

    .saving-value {
        font-size: 40px;
    }

    .travel-chart {
        height: 200px;
    }

    .noticed-percent {
        font-size: 64px;
    }

    .slide-nav {
        right: 16px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        flex-direction: column;
    }

    .sustainability-partner {
        display: none;
    }
}
