@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Noto+Sans+Bengali:wght@400;500;700;900&display=swap');

:root {
  --bg-base: #030408;
  --bg-surface: #080A12;
  --bg-glass: rgba(255, 255, 255, 0.02);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(230, 57, 70, 0.3);
  --text-main: #FFFFFF;
  --text-muted: #8E9BAE;
  --accent-red: #E63946;
  --accent-glow: rgba(230, 57, 70, 0.5);
  --accent-blue: #1D3557;
  
  --font-en: 'Outfit', sans-serif;
  --font-bn: 'Noto Sans Bengali', sans-serif;
  
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Custom Premium Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(230,57,70,0.5); }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-bn); background-color: var(--bg-base); color: var(--text-main);
  line-height: 1.6; overflow-x: hidden; width: 100vw; max-width: 100%; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 5%; }

/* Ambient Glows */
.ambient-glow { position: absolute; border-radius: 50%; filter: blur(120px); z-index: 0; pointer-events: none; }
.glow-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(29, 53, 87, 0.5); }
.glow-2 { top: 20%; right: -10%; width: 40vw; height: 40vw; background: rgba(230, 57, 70, 0.15); }
.glow-3 { bottom: 10%; left: 20%; width: 60vw; height: 30vw; background: rgba(29, 53, 87, 0.3); }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 24px 0; transition: var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled { padding: 12px 0; background: rgba(3, 4, 8, 0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border-glass); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; position: relative; z-index: 101; }
.logo-container img { height: 60px; border-radius: 12px; transition: var(--transition); box-shadow: 0 0 20px rgba(255,255,255,0.05); }
.navbar.scrolled .logo-container img { height: 48px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 1rem; font-weight: 500; color: var(--text-muted); transition: var(--transition-fast); position: relative; }
.nav-links a::after { content:''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--accent-red); transition: var(--transition-fast); }
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--text-main); color: var(--bg-base) !important; padding: 12px 28px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; transition: var(--transition-fast); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }
.hamburger { display: none; background: none; border: none; color: white; font-size: 28px; cursor: pointer; z-index: 101; transition: var(--transition-fast); }
.hamburger:hover { color: var(--accent-red); transform: scale(1.1); }

/* ========== MARQUEE TICKER ========== */
.ticker-wrap { width: 100%; overflow: hidden; background: linear-gradient(90deg, #b91c1c, var(--accent-red), #b91c1c); color: white; padding: 10px 0; position: fixed; top: 108px; left: 0; z-index: 99; display: flex; transition: var(--transition); box-shadow: 0 4px 20px rgba(230,57,70,0.3); }
.navbar.scrolled ~ .ticker-wrap { top: 73px; }
.ticker { display: flex; white-space: nowrap; animation: ticker 25s linear infinite; font-family: var(--font-bn); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; }
.ticker-item { padding: 0 2rem; display: inline-flex; align-items: center; gap: 1rem; }
.ticker-item::after { content: "•"; opacity: 0.5; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== HERO SECTION (100VH FIT) ========== */
.hero { position: relative; height: 100vh; max-height: 1000px; min-height: 700px; display: flex; align-items: center; padding-top: 140px; overflow: hidden; }
.hero .container { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; height: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(230, 57, 70, 0.1); border: 1px solid rgba(230, 57, 70, 0.3); color: var(--accent-red); padding: 8px 18px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; margin-bottom: 24px; box-shadow: 0 0 20px rgba(230,57,70,0.1); }
.pulse-dot { width: 8px; height: 8px; background: var(--accent-red); border-radius: 50%; box-shadow: 0 0 12px var(--accent-red); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3); opacity: 0; } }

.hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero h1 span { display: block; color: var(--accent-red); -webkit-text-fill-color: var(--accent-red); font-size: clamp(2.8rem, 5vw, 4.5rem); margin-top: 5px; text-shadow: 0 0 40px rgba(230,57,70,0.3); }
.hero p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-muted); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent-red), #b91c1c); color: white; padding: 16px 36px; border-radius: 100px; font-size: 1.1rem; font-weight: 700; font-family: var(--font-bn); display: inline-flex; align-items: center; gap: 10px; transition: var(--transition-fast); border: none; cursor: pointer; position: relative; overflow: hidden; }
.btn-primary::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { box-shadow: 0 15px 35px var(--accent-glow); transform: translateY(-4px); }
.btn-secondary { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; padding: 16px 36px; border-radius: 100px; font-size: 1.1rem; font-weight: 700; font-family: var(--font-bn); display: inline-flex; align-items: center; gap: 10px; transition: var(--transition-fast); cursor: pointer; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

/* Hero Visuals (Logo Replaced) */
.hero-visual { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-main-logo { width: 100%; max-width: 380px; border-radius: 30px; box-shadow: 0 30px 80px rgba(230,57,70,0.2), 0 0 0 1px rgba(255,255,255,0.1); z-index: 2; transform: perspective(1000px) rotateY(-10deg) rotateX(5deg); animation: floatLogo 8s ease-in-out infinite alternate; }
@keyframes floatLogo { 0% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0); } 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-30px); } }
.hero-card { position: absolute; background: rgba(10, 12, 20, 0.85); backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.1); padding: 18px 24px; border-radius: 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 3; transition: var(--transition-fast); }
.hero-card:hover { transform: scale(1.05) translateZ(20px); border-color: var(--accent-red); }
.hc-1 { bottom: 20%; left: -5%; transform: translateZ(50px); animation: floatCard 6s ease-in-out infinite alternate-reverse; }
.hc-2 { top: 25%; right: -5%; transform: translateZ(80px); animation: floatCard 5s ease-in-out infinite alternate; }
@keyframes floatCard { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }
.hc-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, rgba(230,57,70,0.2), transparent); border: 1px solid rgba(230,57,70,0.3); color: var(--accent-red); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.hc-text h4 { font-family: var(--font-bn); font-weight: 800; font-size: 1.2rem; line-height: 1; margin-bottom: 6px; }
.hc-text p { font-family: var(--font-bn); font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1; }

/* ========== BIG METRICS ========== */
.metrics-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-glass); border: 1px solid var(--border-glass); border-radius: 32px; overflow: hidden; margin-top: -40px; position: relative; z-index: 11; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.metric-box { background: rgba(10, 12, 20, 0.9); backdrop-filter: blur(20px); padding: 50px; text-align: center; transition: var(--transition-fast); }
.metric-box:hover { background: rgba(20, 24, 38, 0.9); }
.metric-num { font-family: var(--font-en); font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: 12px; background: linear-gradient(135deg, #fff, #8E9BAE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 10px 20px rgba(255,255,255,0.1)); }
.metric-label { font-size: 1.2rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; }

/* ========== SECTIONS COMMON ========== */
.section { padding: 120px 0; position: relative; z-index: 10; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-badge { display: inline-block; background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2); padding: 8px 20px; border-radius: 100px; color: var(--accent-red); font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 650px; margin: 0 auto; line-height: 1.8; }

/* ========== REDESIGNED BENTO GRID (FEATURES) ========== */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 24px; }
.bento-item { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05); border-radius: 32px; padding: 40px; position: relative; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
/* Hover Effects for Bento */
.bento-item:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(230,57,70,0.3); box-shadow: 0 30px 60px rgba(230,57,70,0.15), inset 0 0 40px rgba(255,255,255,0.02); }
.bento-item::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255,255,255,0.08), transparent 40%); opacity: 0; transition: opacity 0.5s; z-index: 1; pointer-events: none; }
.bento-item:hover::before { opacity: 1; }
/* Overlay gradient on hover */
.bento-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(230,57,70,0.1), transparent); opacity: 0; transition: var(--transition); z-index: 0; }
.bento-item:hover::after { opacity: 1; }

.bento-large { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, rgba(230,57,70,0.05), transparent); border-color: rgba(230,57,70,0.15); }
.bento-wide { grid-column: span 2; grid-row: span 1; justify-content: center; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.bento-icon { width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--text-main); margin-bottom: auto; z-index: 2; transition: var(--transition-fast); }
.bento-item:hover .bento-icon { transform: scale(1.1) rotate(5deg); color: var(--accent-red); border-color: rgba(230,57,70,0.3); background: rgba(230,57,70,0.1); }
.bento-item h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; z-index: 2; position: relative; }
.bento-large h3 { font-size: 2.6rem; line-height: 1.1; }
.bento-item p { color: var(--text-muted); font-size: 1.05rem; z-index: 2; position: relative; line-height: 1.7; }
.bento-image-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.2; mix-blend-mode: luminosity; transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1); filter: grayscale(100%); }
.bento-item:hover .bento-image-bg { opacity: 0.6; transform: scale(1.1); filter: grayscale(0%); }

/* ========== SYMMETRICAL 2-COLUMN LAYOUTS ========== */
.split-section { border-top: 1px solid var(--border-glass); background: radial-gradient(circle at right, rgba(230,57,70,0.03) 0%, transparent 50%); position: relative; }
.split-section.reverse { background: radial-gradient(circle at left, rgba(29,53,87,0.1) 0%, transparent 50%); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.split-content { display: flex; flex-direction: column; justify-content: center; padding: 40px 0; }
.split-image-container { display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%); border-radius: 40px; padding: 40px; position: relative; border: 1px solid rgba(255,255,255,0.02); transition: var(--transition); }
.split-grid:hover .split-image-container { border-color: rgba(255,255,255,0.1); background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%); }
.split-image-container img { width: 100%; max-width: 450px; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)); border-radius: 24px; transition: var(--transition); }
.split-grid:hover .split-image-container img { transform: scale(1.05) translateY(-10px); filter: drop-shadow(0 40px 80px rgba(230,57,70,0.2)); }
.split-grid.reverse .split-content { order: 1; }
.split-grid.reverse .split-image-container { order: 2; }

.split-content h2 { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 24px; line-height: 1.15; }
.split-content > p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }

.feature-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.fl-item { display: flex; gap: 20px; align-items: flex-start; background: rgba(255,255,255,0.01); padding: 24px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); cursor: pointer; }
.fl-item:hover { background: rgba(255,255,255,0.03); transform: translateX(10px); border-color: rgba(230, 57, 70, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.fl-icon { width: 56px; height: 56px; min-width: 56px; border-radius: 16px; background: rgba(230, 57, 70, 0.1); display: flex; align-items: center; justify-content: center; color: var(--accent-red); font-size: 24px; transition: var(--transition-fast); }
.fl-item:hover .fl-icon { background: var(--accent-red); color: white; transform: rotate(10deg); }
.fl-text h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; transition: var(--transition-fast); }
.fl-item:hover .fl-text h4 { color: var(--accent-red); }
.fl-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.store-buttons { display: flex; gap: 20px; }
.store-btn { height: 56px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); background: rgba(255,255,255,0.02); cursor: pointer; }
.store-btn:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(255,255,255,0.4); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }

/* ========== REVIEWS ========== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05); border-radius: 32px; padding: 40px; transition: var(--transition); position: relative; display: flex; flex-direction: column; cursor: pointer; }
.review-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.review-stars { color: #F59E0B; font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 3px; }
.review-card p { font-size: 1.1rem; color: var(--text-muted); font-style: italic; margin-bottom: 30px; line-height: 1.8; flex-grow: 1; }
.reviewer { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; }
.reviewer-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-red), #8B1E28); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; font-family: var(--font-en); box-shadow: 0 4px 10px rgba(230,57,70,0.3); }
.reviewer-info h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.reviewer-info span { font-size: 0.9rem; color: var(--text-muted); }

/* ========== FAQ ========== */
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); }
.faq-item.active { border-color: rgba(230, 57, 70, 0.4); background: rgba(230, 57, 70, 0.03); box-shadow: 0 10px 30px rgba(230,57,70,0.05); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 28px; cursor: pointer; font-size: 1.2rem; font-weight: 800; transition: var(--transition-fast); }
.faq-item:hover .faq-q { color: var(--text-main); }
.faq-icon { font-size: 1.4rem; color: var(--accent-red); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); background: rgba(230,57,70,0.1); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--accent-red); color: white; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 28px; transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.5s ease; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
.faq-item.active .faq-a { max-height: 300px; padding: 0 28px 28px; }

/* ========== FOOTER ========== */
.footer { border-top: 1px solid var(--border-glass); padding: 100px 0 40px; background: #010204; position: relative; overflow: hidden; }
.footer::before { content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(230,57,70,0.5), transparent); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-brand img { height: 60px; margin-bottom: 24px; border-radius: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 1.1rem; max-width: 400px; line-height: 1.8; }
.footer h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: white; letter-spacing: 0.5px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer a { color: var(--text-muted); transition: var(--transition-fast); font-size: 1.05rem; position: relative; display: inline-block; width: max-content; }
.footer a::after { content:''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent-red); transition: var(--transition-fast); }
.footer a:hover { color: var(--text-main); transform: translateX(5px); }
.footer a:hover::after { width: 100%; }
.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.95rem; font-family: var(--font-en); }
.social-links { display: flex; gap: 20px; font-size: 1.4rem; }
.social-links a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--accent-red); color: white; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(230,57,70,0.3); }
.social-links a::after { display: none; }

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* Delay classes for staggered grid items */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-large { grid-column: span 3; grid-row: span 1; }
  .bento-wide { grid-column: span 3; }
  .bento-tall { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 992px) {
  .hero { height: auto; min-height: 100vh; padding: 180px 0 80px; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero p { margin: 0 auto 30px; }
  .hero-visual { margin-top: 40px; }
  
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse .split-content, .split-grid .split-content { order: 2; padding: 0; text-align: center; }
  .split-grid.reverse .split-image-container, .split-grid .split-image-container { order: 1; padding: 20px; }
  .fl-item { text-align: left; }
  .store-buttons { justify-content: center; }
  
  .metrics-wrap { grid-template-columns: 1fr; gap: 1px; margin-top: 0; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .logo-container img { height: 48px; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(3,4,8,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; transition: var(--transition); z-index: 100; }
  .nav-links.active { right: 0; }
  .hamburger { display: block; }
  
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-large, .bento-wide, .bento-tall, .bento-small { grid-column: span 1; grid-row: span 1; min-height: 240px; }
  
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  
  .metric-num { font-size: 2.8rem; }
  .metric-box { padding: 30px 20px; }
}
