/* Page-specific styles for industries/automotive.html */
:root {
            --signal-red: #E63946;
            --warm-gold: #D4A84B;
            --deep-navy: #1D3557;
            --cream: #FAF8F5;
            --warm-white: #FFFFFF;
            --soft-gray: #6B7280;
            --charcoal: #2D3748;
            --blush: #FDF2F0;
            
            /* Automotive accents */
            --auto-steel: #374151;
            --auto-chrome: #9CA3AF;
            --auto-black: #111827;
            
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Space Grotesk', system-ui, sans-serif;
            
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            --space-5xl: 128px;
            
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 24px rgba(230,57,70,0.15);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--charcoal);
            background: var(--cream);
            -webkit-font-smoothing: antialiased;
        }
        
        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */
        
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-lg) var(--space-2xl);
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            transition: box-shadow 0.3s ease;
        }
        
        .nav.scrolled { box-shadow: var(--shadow-md); }
        
        .nav-logo {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-navy);
            text-decoration: none;
        }
        
        .nav-logo span { color: var(--signal-red); }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }
        
        .nav-links a {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .nav-links a:hover { color: var(--signal-red); }
        
        .nav-cta {
            background: var(--signal-red) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.2s ease !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md), var(--shadow-glow);
        }
        
        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
        }
        
        .nav-mobile svg {
            width: 24px;
            height: 24px;
            stroke: var(--charcoal);
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cream);
            z-index: 999;
            padding: 100px var(--space-xl) var(--space-xl);
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .mobile-menu.open { display: flex; }
        
        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--charcoal);
            text-decoration: none;
            padding: var(--space-md) 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        /* ═══════════════════════════════════════════════════════════
           HERO
           ═══════════════════════════════════════════════════════════ */
        
        .hero {
            padding: 160px var(--space-2xl) var(--space-4xl);
            background: url('/images/automotive-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            display: none;
        }
        
        .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 100px;
            margin-bottom: var(--space-xl);
            backdrop-filter: blur(4px);
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
        }
        
        .hero-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--warm-gold);
        }
        
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: var(--space-xl);
            text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 4px 20px rgba(0,0,0,0.5);
        }
        
        .hero h1 em {
            font-style: italic;
            color: var(--signal-red);
            text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 4px 20px rgba(0,0,0,0.5);
        }
        
        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 20px;
            color: rgba(255,255,255,0.95);
            line-height: 1.7;
            margin-bottom: var(--space-2xl);
            max-width: 700px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
        }
        
        .hero-cta {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--signal-red);
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }
        
        .btn-primary svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }
        
        /* ═══════════════════════════════════════════════════════════
           CREDIBILITY STRIP
           ═══════════════════════════════════════════════════════════ */
        
        .cred-strip {
            background: var(--deep-navy);
            padding: var(--space-2xl) var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .cred-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: var(--space-2xl);
        }
        
        .cred-icon {
            width: 64px;
            height: 64px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }
        
        .cred-text {
            flex: 1;
        }
        
        .cred-text h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 600;
            color: white;
            margin-bottom: var(--space-sm);
        }
        
        .cred-text p {
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        
        .cred-text strong {
            color: var(--warm-gold);
        }
        
        /* ═══════════════════════════════════════════════════════════
           THE PROBLEM
           ═══════════════════════════════════════════════════════════ */
        
        .problem-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--cream);
        }
        
        .problem-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .section-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--signal-red);
            margin-bottom: var(--space-md);
            display: inline-block;
        }
        
        .section-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: var(--space-xl);
        }
        
        .section-headline em {
            font-style: italic;
            color: var(--signal-red);
        }
        
        .problem-text {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            line-height: 1.8;
            margin-bottom: var(--space-lg);
        }
        
        .problem-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
        }
        
        .problem-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-lg);
            background: var(--warm-white);
            border-radius: 12px;
            border-left: 4px solid var(--signal-red);
        }
        
        .problem-item svg {
            width: 24px;
            height: 24px;
            stroke: var(--signal-red);
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .problem-item p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        /* ═══════════════════════════════════════════════════════════
           THREE PILLARS
           ═══════════════════════════════════════════════════════════ */
        
        .pillars-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--warm-white);
        }
        
        .pillars-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .pillars-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }
        
        .pillars-intro {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            text-align: center;
            max-width: 700px;
            margin: var(--space-xl) auto 0;
            line-height: 1.7;
        }
        
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }
        
        .pillar-card {
            background: var(--cream);
            border-radius: 20px;
            padding: var(--space-2xl);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .pillar-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--signal-red);
        }
        
        .pillar-icon {
            width: 72px;
            height: 72px;
            background: var(--deep-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
            font-size: 32px;
        }
        
        .pillar-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }
        
        .pillar-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.7;
        }
        
        /* ═══════════════════════════════════════════════════════════
           AGENTIC INVENTORY (THE BIG IDEA)
           ═══════════════════════════════════════════════════════════ */
        
        .agentic-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--auto-black);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .agentic-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212,168,75,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .agentic-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .agentic-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }
        
        .agentic-section .section-label {
            color: var(--warm-gold);
        }
        
        .agentic-section .section-headline {
            color: white;
        }
        
        .agentic-section .section-headline em {
            color: var(--warm-gold);
        }
        
        .agentic-intro {
            font-family: var(--font-body);
            font-size: 19px;
            color: rgba(255,255,255,0.8);
            text-align: center;
            max-width: 750px;
            margin: var(--space-xl) auto var(--space-3xl);
            line-height: 1.7;
        }
        
        .agentic-demo {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: var(--space-2xl);
            margin-bottom: var(--space-3xl);
        }
        
        .demo-header {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
            padding-bottom: var(--space-lg);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .demo-dots {
            display: flex;
            gap: 6px;
        }
        
        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
        }
        
        .demo-dot:nth-child(1) { background: #EF4444; }
        .demo-dot:nth-child(2) { background: #F59E0B; }
        .demo-dot:nth-child(3) { background: #22C55E; }
        
        .demo-title {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin-left: auto;
        }
        
        .demo-conversation {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .demo-message {
            display: flex;
            gap: var(--space-md);
            align-items: flex-start;
        }
        
        .demo-message.user {
            flex-direction: row-reverse;
        }
        
        .demo-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .demo-message.ai .demo-avatar {
            background: var(--signal-red);
        }
        
        .demo-message.user .demo-avatar {
            background: var(--deep-navy);
        }
        
        .demo-bubble {
            max-width: 70%;
            padding: var(--space-md) var(--space-lg);
            border-radius: 16px;
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.6;
        }
        
        .demo-message.ai .demo-bubble {
            background: rgba(255,255,255,0.1);
            color: white;
            border-bottom-left-radius: 4px;
        }
        
        .demo-message.user .demo-bubble {
            background: var(--deep-navy);
            color: white;
            border-bottom-right-radius: 4px;
        }
        
        .agentic-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }
        
        .agentic-benefit {
            text-align: center;
            padding: var(--space-xl);
        }
        
        .agentic-benefit-icon {
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-md);
            font-size: 24px;
        }
        
        .agentic-benefit h4 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: var(--space-sm);
        }
        
        .agentic-benefit p {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        
        /* ═══════════════════════════════════════════════════════════
           AI AGENTS FOR AUTOMOTIVE
           ═══════════════════════════════════════════════════════════ */
        
        .agents-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--cream);
        }
        
        .agents-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .agents-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }
        
        .agents-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
        }
        
        .agent-card {
            background: var(--warm-white);
            border-radius: 20px;
            padding: var(--space-2xl);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }
        
        .agent-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        .agent-icon {
            width: 64px;
            height: 64px;
            background: var(--deep-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            font-size: 28px;
        }
        
        .agent-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }
        
        .agent-card > p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--soft-gray);
            line-height: 1.7;
            margin-bottom: var(--space-lg);
        }
        
        .agent-features {
            list-style: none;
        }
        
        .agent-features li {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--charcoal);
            padding: var(--space-sm) 0;
        }
        
        .agent-features li svg {
            width: 18px;
            height: 18px;
            stroke: var(--signal-red);
            flex-shrink: 0;
        }
        
        /* ═══════════════════════════════════════════════════════════
           GEOFENCING TACTICS
           ═══════════════════════════════════════════════════════════ */
        
        .tactics-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--warm-white);
        }
        
        .tactics-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .tactics-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }
        
        .tactics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
        }
        
        .tactic-card {
            background: var(--cream);
            border-radius: 16px;
            padding: var(--space-xl);
            display: flex;
            gap: var(--space-lg);
            align-items: flex-start;
            transition: all 0.3s ease;
        }
        
        .tactic-card:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }
        
        .tactic-icon {
            width: 48px;
            height: 48px;
            background: var(--signal-red);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .tactic-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
        }
        
        .tactic-content h4 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
        }
        
        .tactic-content p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.6;
        }
        
        /* ═══════════════════════════════════════════════════════════
           CTA SECTION
           ═══════════════════════════════════════════════════════════ */
        
        .cta-section {
            padding: var(--space-5xl) var(--space-2xl);
            background: var(--deep-navy);
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: white;
            margin-bottom: var(--space-lg);
            line-height: 1.15;
        }
        
        .cta-headline em {
            font-style: italic;
            color: var(--warm-gold);
        }
        
        .cta-text {
            font-family: var(--font-body);
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }
        
        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */
        
        .footer {
            background: var(--charcoal);
            color: white;
            padding: var(--space-3xl) var(--space-2xl);
        }
        
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-2xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--space-md);
        }
        
        .footer-brand h3 span { color: var(--signal-red); }
        
        .footer-brand p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            border-radius: 100px;
        }
        
        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
            margin-bottom: var(--space-lg);
        }
        
        .footer-column a {
            display: block;
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-bottom: var(--space-md);
            transition: color 0.2s ease;
        }
        
        .footer-column a:hover { color: var(--warm-gold); }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }
        
        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */
        
        @media (max-width: 1024px) {
            .pillars-grid { grid-template-columns: 1fr; }
            .agentic-benefits { grid-template-columns: 1fr; }
            .agents-grid { grid-template-columns: 1fr; }
            .tactics-grid { grid-template-columns: 1fr; }
            .problem-list { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-mobile { display: block; }
            
            .hero { padding: 120px var(--space-lg) var(--space-3xl); }
            
            .cred-inner {
                flex-direction: column;
                text-align: center;
            }
            
            .demo-bubble { max-width: 85%; }
            
            .footer-main { grid-template-columns: 1fr; text-align: center; }
            
            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }
        }
        
        /* ═══════════════════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════════════════ */
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-inner { animation: fadeInUp 0.8s ease; }
        
        /* ═══════════════════════════════════════════════════════════
           SCROLL-TRIGGERED ANIMATIONS
           ═══════════════════════════════════════════════════════════ */

        /* Base animation state - elements start hidden */
        [data-animate] {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays */
        [data-animate-delay="1"] { transition-delay: 0.1s; }
        [data-animate-delay="2"] { transition-delay: 0.2s; }
        [data-animate-delay="3"] { transition-delay: 0.3s; }
        [data-animate-delay="4"] { transition-delay: 0.4s; }
        [data-animate-delay="5"] { transition-delay: 0.5s; }
        [data-animate-delay="6"] { transition-delay: 0.6s; }

        /* Scale animation */
        [data-animate="scale"] {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        [data-animate="scale"].animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Slide from left */
        [data-animate="slide-left"] {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="slide-left"].animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slide from right */
        [data-animate="slide-right"] {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="slide-right"].animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Fade only */
        [data-animate="fade"] {
            opacity: 0;
            transform: none;
            transition: opacity 0.8s ease;
        }

        [data-animate="fade"].animated {
            opacity: 1;
        }

        /* Flip animation for cards */
        [data-animate="flip"] {
            opacity: 0;
            transform: perspective(1000px) rotateY(-15deg) translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate="flip"].animated {
            opacity: 1;
            transform: perspective(1000px) rotateY(0) translateY(0);
        }

        /* Pop animation */
        [data-animate="pop"] {
            opacity: 0;
            transform: scale(0);
            transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        [data-animate="pop"].animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Accessibility: respect reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            [data-animate],
            [data-animate].animated {
                transition: none;
                animation: none;
                opacity: 1;
                transform: none;
            }
        }
