/* ==========================================================================
   Extrabite.io — Catalogue Design (based on GifGun Craftwork Redesign)
   Light & Dark Theme Support
   ========================================================================== */

/* --- CSS VARIABLES - LIGHT THEME (Default) --- */
:root {
  --bg-main: #FFFFFF;
  --bg-card: #F8F9FA;
  --bg-card-hover: #F0F1F3;
  --bg-elevated: #FFFFFF;
  --border-color: #E5E7EB;
  --border-subtle: #F3F4F6;
  --text-main: #111111;
  --text-secondary: #374151;
  --text-muted: #6B7280;
  --text-dim: #9CA3AF;
  --accent-lime: #84CC16;
  --accent-lime-hover: #65A30D;
  --accent-lime-dim: rgba(132, 204, 22, 0.12);
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  --container-width: 1200px;
  --container-padding: clamp(20px, 4vw, 40px);
  --section-spacing: clamp(64px, 8vw, 100px);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(132, 204, 22, 0.25);
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* --- DARK THEME --- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-main: #111111;
    --bg-card: #1C1C1C;
    --bg-card-hover: #252525;
    --bg-elevated: #1a1a1a;
    --border-color: #2A2A2A;
    --border-subtle: #222222;
    --text-main: #FFFFFF;
    --text-secondary: #E5E5E5;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --accent-lime: #D4FF00;
    --accent-lime-hover: #bce600;
    --accent-lime-dim: rgba(212, 255, 0, 0.15);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(212, 255, 0, 0.2);
  }
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; font-size: 16px; }

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

::selection { background: var(--accent-lime); color: #000; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; margin: 0;
}
h1 { font-size: clamp(2.5rem, 2rem + 3vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
h3 { font-size: clamp(1.25rem, 1rem + 0.5vw, 1.5rem); }
p { max-width: 65ch; }

/* --- UTILITIES --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-lime); }
.section-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.section-link { font-size: 0.9rem; color: var(--text-muted); transition: color var(--transition-base); }
.section-link:hover { color: var(--accent-lime); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 14px 28px; font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-sm);
  cursor: pointer; border: none; transition: all var(--transition-base);
  font-family: inherit; text-decoration: none;
}
.btn-primary { background-color: var(--accent-lime); color: #000; box-shadow: 0 2px 8px rgba(132, 204, 22, 0.25); }
.btn-primary:hover { background-color: var(--accent-lime-hover); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(132, 204, 22, 0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background-color: var(--bg-card); color: var(--text-main); border: 1px solid var(--border-color); }
.btn-secondary:hover { background-color: var(--bg-card-hover); border-color: #444; }
.btn-outline { background-color: transparent; color: var(--text-main); border: 1px solid #444; }
.btn-outline:hover { border-color: var(--text-main); background-color: rgba(255, 255, 255, 0.05); }

/* --- HEADER --- */
.header-redesign {
  padding: 16px 0; border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-main); position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.header-left { display: flex; align-items: center; gap: 40px; }
.logo-redesign { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.5rem; color: var(--text-main); }
.logo-redesign:hover { color: var(--accent-lime); }
.nav-links-redesign { display: flex; gap: 24px; }
.nav-links-redesign a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition-base); }
.nav-links-redesign a:hover { color: var(--text-main); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-cta { padding: 8px 16px; font-size: 0.875rem; border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-main); transition: all var(--transition-base); }
.header-cta:hover { border-color: var(--accent-lime); color: var(--accent-lime); }

/* Mobile Menu */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); transition: all var(--transition-base); }

/* --- HERO SECTION --- */
.hero { padding: var(--section-spacing) 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 36px; max-width: 540px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--accent-lime-dim); border-radius: var(--radius-full); font-size: 0.875rem; color: var(--accent-lime); margin-bottom: 24px; }

/* Homepage hero — centered variant */
.hero--home .hero-content { max-width: 720px; margin: 0 auto; text-align: center; }
.hero--home .hero-badge { justify-content: center; }
.hero--home .hero-content p { max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
.hero--home .hero-actions { justify-content: center; }

/* --- PRICING CARD --- */
.pricing-card { background-color: var(--bg-card); border: 1px solid var(--border-color); padding: 40px; border-radius: var(--radius-lg); transition: all var(--transition-slow); }
.pricing-card:hover { border-color: #444; box-shadow: var(--shadow-lg); }
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.pricing-card > p { color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; line-height: 1.6; }
.price-box { background-color: var(--bg-card-hover); padding: 20px; border-radius: var(--radius-sm); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.price-icon { width: 48px; height: 48px; background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-icon svg { stroke: var(--text-main); }
.price-details { flex: 1; }
.price-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price-large { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.price-sub { font-size: 0.9rem; color: var(--text-muted); }
.pricing-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.pricing-feature svg { color: var(--accent-lime); flex-shrink: 0; }
.pricing-card .btn-primary { width: 100%; padding: 16px 28px; }

/* --- FEATURES GRID --- */
.features-section { padding: var(--section-spacing) 0; }
.features-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background-color: var(--bg-card); border: 1px solid var(--border-color); padding: 24px; border-radius: var(--radius-lg); display: flex; align-items: flex-start; gap: 20px; transition: all var(--transition-base); cursor: default; }
.feature-card:hover { background-color: var(--bg-card-hover); transform: translateY(-2px); border-color: #3a3a3a; }
.icon-box { width: 52px; height: 52px; background-color: var(--accent-lime-dim); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--accent-lime); flex-shrink: 0; }
.feature-info { flex: 1; }
.feature-info h4 { font-weight: 600; margin-bottom: 6px; font-size: 1rem; }
.feature-info span { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* --- CATALOGUE GRID (Home page) --- */
.catalogue-section { padding: 0 0 var(--section-spacing); }
.catalogue-section .section-title { margin-bottom: 32px; }
.catalogue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

/* Card shell */
.catalogue-card { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.catalogue-card:hover { transform: translateY(-3px); border-color: var(--accent-lime); box-shadow: var(--shadow-glow); }

/* Poster image area */
.catalogue-card-poster { position: relative; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.catalogue-card-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; border-radius: 0; }
.catalogue-card:hover .catalogue-card-poster img { transform: scale(1.04); }
.catalogue-card-poster-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.55) 100%); pointer-events: none; }
.catalogue-card-poster-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); }

/* Card body */
.catalogue-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.catalogue-card-eyebrow { display: flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 0.75rem; margin-bottom: 10px; }
.catalogue-card-eyebrow svg { flex-shrink: 0; }
.catalogue-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.catalogue-card-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.catalogue-card-link { font-size: 0.82rem; color: var(--text-dim); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s ease; margin-top: auto; }
.catalogue-card:hover .catalogue-card-link { color: var(--accent-lime); }

/* --- SHOWCASE (product detail — alternating text+media) --- */
.showcase-detail-section { padding: var(--section-spacing) 0; }
.showcase-detail-section .section-title { text-align: center; margin-bottom: 48px; }
.showcase-item { display: flex; align-items: center; gap: 48px; margin-bottom: 56px; }
.showcase-item:last-child { margin-bottom: 0; }
.showcase-item.reverse,
.showcase-item-reverse { flex-direction: row-reverse; }
.showcase-media { flex: 1 1 50%; min-width: 0; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--border-color); background: var(--bg-card); }
.showcase-media img, .showcase-media video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }
.showcase-text { flex: 1 1 50%; min-width: 0; }
.showcase-text h3 { margin-bottom: 12px; }
.showcase-text p { color: var(--text-muted); line-height: 1.7; }

/* --- TESTIMONIALS --- */
.testimonials-section { padding: var(--section-spacing) 0; background: linear-gradient(180deg, transparent, rgba(132, 204, 22, 0.02)); }
.testimonials-header { margin-bottom: 32px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background-color: var(--bg-card); border: 1px solid var(--border-color); padding: 28px; border-radius: var(--radius-lg); }
.testimonial-content { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card-hover); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--accent-lime); font-size: 1.1rem; flex-shrink: 0; }
.testimonial-info h5 { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.testimonial-info span { font-size: 0.85rem; color: var(--text-muted); }

/* --- FAQ SECTION --- */
.faq-section { padding: var(--section-spacing) 0; }
.faq-section .section-title { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: var(--text-main); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; font-family: inherit; transition: background-color var(--transition-base); }
.faq-question:hover { background-color: var(--bg-card-hover); }
.faq-question svg { transition: transform var(--transition-base); color: var(--text-muted); }
.faq-item[open] .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }
.faq-answer a { color: var(--accent-lime); }
.faq-answer a:hover { text-decoration: underline; }

/* --- CTA SECTION --- */
.cta-section { padding: var(--section-spacing) 0; text-align: center; background: linear-gradient(180deg, transparent, rgba(132, 204, 22, 0.03)); }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.1rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- VIDEO SECTION --- */
.video-section { padding: var(--section-spacing) 0; }
.video-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); border: 1px solid var(--border-color); }
.video-wrapper video { width: 100%; display: block; border-radius: 0; aspect-ratio: 16/9; }
.video-credit { text-align: center; margin-top: 16px; }
.video-credit p { color: var(--text-muted); font-size: 0.9rem; }
.video-credit a { color: var(--accent-lime); }
.video-credit a:hover { text-decoration: underline; }

/* --- YOUTUBE VIDEO --- */
.youtube-video-section { padding: var(--section-spacing) 0; }
.youtube-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--border-color); }
.youtube-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: var(--radius-lg); }

/* Lite YouTube facade */
.lite-youtube { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lite-youtube img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.lite-youtube-play { position: relative; z-index: 1; border: none; background: none; cursor: pointer; opacity: 0.85; transition: opacity var(--transition-base), transform var(--transition-base); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.lite-youtube:hover .lite-youtube-play { opacity: 1; transform: scale(1.1); }

/* YouTube inside video-section uses .video-wrapper with responsive embed */
.video-section .youtube-wrapper { margin: 0; }

/* --- BREADCRUMBS --- */
.breadcrumbs { padding: 16px 0 0; }
.breadcrumbs ol { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0 max(20px, calc((100% - 1140px) / 2)); font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs a { color: var(--text-muted); transition: color var(--transition-base); }
.breadcrumbs a:hover { color: var(--accent-lime); }
.breadcrumbs [aria-current="page"] { color: var(--text-main); }

/* --- HERO PRODUCT NAME --- */
.hero-h1-product { display: block; font-size: 0.45em; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.6; margin-bottom: 8px; }

/* --- 404 PAGE --- */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-content h1 { font-size: 6rem; font-weight: 800; line-height: 1; margin-bottom: 16px; color: var(--accent-lime); }
.error-content p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 32px; }

/* --- FOOTER --- */
.footer-redesign { border-top: 1px solid var(--border-color); padding: 32px 0 28px; margin-top: 0; background-color: var(--bg-main); }
.footer-main { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand-link { font-weight: 700; font-size: 0.95rem; color: var(--text-main); text-decoration: none; letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0; }
.footer-brand-link:hover { color: var(--accent-lime); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 2px; flex: 1; min-width: 0; }
.footer-nav a { color: var(--text-muted); font-size: 0.85rem; padding: 4px 10px; border-radius: var(--radius-sm); transition: color var(--transition-base), background-color var(--transition-base); white-space: nowrap; text-decoration: none; }
.footer-nav a:hover { color: var(--text-main); background-color: var(--bg-card); }
.footer-socials { display: flex; gap: 2px; margin-left: auto; flex-shrink: 0; }
.footer-socials a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--text-dim); transition: color var(--transition-base), background-color var(--transition-base); }
.footer-socials a svg { width: 15px; height: 15px; }
.footer-socials a:hover { color: var(--text-main); background-color: var(--bg-card); }
.footer-bottom { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; color: var(--text-dim); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-dim); font-size: 0.8rem; text-decoration: none; transition: color var(--transition-base); }
.footer-bottom a:hover { color: var(--text-muted); }

/* --- ABOUT PAGE --- */
.about-section { padding: var(--section-spacing) 0; }
.about-inner { max-width: 720px; margin: 0 auto; }
.about-section h1 { text-align: center; margin-bottom: 16px; }
.about-lead { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 48px; }
.about-body { line-height: 1.8; color: var(--text-secondary); }
.about-body p { margin-bottom: 16px; }
.about-body h2 { margin-top: 48px; margin-bottom: 16px; }
.about-body a { color: var(--accent-lime); }
.about-body a:hover { text-decoration: underline; }
.about-product-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.about-product-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); text-decoration: none; transition: border-color 0.2s; }
.about-product-item:hover { border-color: var(--accent-lime); }
.about-product-icon { flex-shrink: 0; color: var(--accent-lime); }
.about-product-name { color: var(--text-main); font-weight: 700; }
.about-product-price { color: var(--text-muted); font-size: 0.9rem; margin-left: 8px; }
.about-product-tagline { color: var(--text-secondary); font-size: 0.9rem; margin-top: 2px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { max-width: 500px; }
}

@media (max-width: 768px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .pricing-card { padding: 28px; max-width: 100%; }
  .header-left { gap: 0; }
  .nav-links-redesign { display: none; }
  .header-right { gap: 8px; }
  .mobile-menu-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 16px; flex-direction: column; text-align: center; }
  .feature-card .icon-box { margin: 0 auto 8px; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; }
  .showcase-item,
  .showcase-item.reverse,
  .showcase-item-reverse { flex-direction: column; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-socials { margin-left: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .section-title { font-size: 1.1rem; }
  .cta-content p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .catalogue-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .price-box { flex-direction: column; text-align: center; gap: 12px; }
  .price-row { justify-content: center; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeInUp 0.6s ease forwards; }
.features-grid .feature-card,
.catalogue-grid .catalogue-card,
.testimonials-grid .testimonial-card { opacity: 0; animation: fadeInUp 0.5s ease forwards; }
.features-grid .feature-card:nth-child(1),
.catalogue-grid .catalogue-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2),
.catalogue-grid .catalogue-card:nth-child(2) { animation-delay: 0.15s; }
.features-grid .feature-card:nth-child(3),
.catalogue-grid .catalogue-card:nth-child(3) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(4),
.catalogue-grid .catalogue-card:nth-child(4) { animation-delay: 0.25s; }
.features-grid .feature-card:nth-child(5),
.catalogue-grid .catalogue-card:nth-child(5) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.35s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .header-redesign, .footer-redesign, .btn, video { display: none !important; }
  body { background: white; color: black; }
}
