/* ===========================
   YouTube Localizer — Global CSS
   =========================== */

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

:root {
  --bg:        #07080f;
  --bg2:       #0d0f1c;
  --surface:   #111328;
  --surface2:  #181b35;
  --border:    rgba(255,255,255,0.07);
  --red:       #ff2d55;
  --red2:      #ff6b35;
  --blue:      #3d5afe;
  --purple:    #7c3aed;
  --text:      #e8eaf2;
  --muted:     #7b82a6;
  --white:     #ffffff;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 8px 40px rgba(0,0,0,0.5);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(255,45,85,0.35);
}
.btn-primary:hover { background: #e0243c; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,45,85,0.5); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 24px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.05); }

.btn-ghost-white {
  display: inline-flex; align-items: center;
  background: transparent; color: #fff;
  padding: 13px 26px; border-radius: 50px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #ff6b35 100%);
  color: #fff; padding: 17px 34px; border-radius: 50px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 36px rgba(255,45,85,0.4);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(255,45,85,0.55); }

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.07);
  color: #fff; padding: 17px 32px; border-radius: 50px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo-icon { color: var(--red); font-size: 18px; }
.logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -0.3px; }
.logo-accent { color: var(--red); }

.nav-links { display: flex; gap: 4px; list-style: none; flex: 1; margin-left: 20px; }
.nav-links a {
  display: block; padding: 7px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(7,8,15,0.97);
}
.mobile-menu a { padding: 10px 14px; border-radius: 10px; font-size: 15px; color: var(--muted); }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-menu.open { display: flex; }

/* ── Section helpers ── */
.section-label {
  display: inline-block;
  background: rgba(255,45,85,0.12);
  color: var(--red);
  border: 1px solid rgba(255,45,85,0.25);
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(28px,4vw,44px); color: #fff; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; }

.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, #ff8a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  max-width: 1180px; margin: 0 auto;
  position: relative; gap: 60px;
  flex-wrap: wrap;
}
.hero-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,30px); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner { flex: 1; min-width: 300px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.25);
  color: var(--red); padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: clamp(38px,5.5vw,70px); color: #fff; margin-bottom: 22px; letter-spacing: -1px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust span { font-size: 13px; color: var(--muted); }
.hero-trust span::before { content: ''; }

.hero-visual { flex: 1; min-width: 300px; position: relative; z-index: 1; display: flex; justify-content: center; }

/* App Mockup */
.app-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  width: 100%; max-width: 460px;
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mockup-header {
  background: var(--surface2);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mockup-dots span:first-child { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }
.mockup-title { font-size: 13px; color: var(--muted); font-weight: 500; }
.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mockup-video-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2);
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border);
}
.mockup-thumb { width: 48px; height: 32px; background: linear-gradient(135deg, #1a1d3a, #2a2d5a); border-radius: 5px; flex-shrink: 0; }
.mockup-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mockup-bar { height: 7px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.w40 { width:40%; } .w50 { width:50%; } .w60 { width:60%; } .w70 { width:70%; } .w80 { width:80%; } .w90 { width:90%; }
.mockup-badge-done { font-size: 11px; font-weight: 700; color: #22d3a0; background: rgba(34,211,160,0.1); padding: 3px 10px; border-radius: 50px; white-space: nowrap; }
.mockup-badge-prog { font-size: 11px; font-weight: 700; color: #fbbf24; background: rgba(251,191,36,0.1); padding: 3px 10px; border-radius: 50px; white-space: nowrap; }
.mockup-badge-wait { font-size: 11px; font-weight: 700; color: var(--muted); background: rgba(255,255,255,0.05); padding: 3px 10px; border-radius: 50px; white-space: nowrap; }
.mockup-langs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.lang-chip { background: var(--surface2); border: 1px solid var(--border); padding: 5px 11px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--muted); transition: var(--transition); }
.lang-chip.active { border-color: var(--red); color: var(--red); background: rgba(255,45,85,0.08); }

.floating-stat {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex; flex-direction: column; align-items: center;
}
.stat1 { bottom: -20px; left: -40px; }
.stat2 { top: 30px; right: -30px; }
.stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; color: var(--red); }
.stat-label { font-size: 11px; color: var(--muted); text-align: center; }

/* ── Trust bar ── */
.trust-bar { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.trust-label { text-align: center; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.trust-flags { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-flags span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ── Features ── */
.features { padding: 100px 0; }
.features .container { display: flex; flex-direction: column; align-items: flex-start; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 52px; width: 100%; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(255,45,85,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.feature-card.featured { border-color: rgba(255,45,85,0.3); background: linear-gradient(135deg, rgba(255,45,85,0.08), rgba(255,107,53,0.04)); }
.feat-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── How it works ── */
.how-it-works { padding: 80px 0; background: var(--bg2); }
.how-it-works .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 52px; flex-wrap: wrap; justify-content: center; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 260px; }
.step-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: rgba(255,45,85,0.2); line-height: 1; margin-bottom: 12px; }
.step-content h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--muted); }
.step-line { width: 80px; height: 2px; background: linear-gradient(90deg, var(--red), transparent); margin-top: 28px; align-self: flex-start; margin-top: 36px; }

/* ── Stats ── */
.stats-section { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: rgba(255,45,85,0.25); }
.stat-big { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.stat-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(255,45,85,0.15) 0%, rgba(61,90,254,0.1) 100%);
  border-top: 1px solid rgba(255,45,85,0.15);
  border-bottom: 1px solid rgba(255,45,85,0.15);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(24px,3vw,36px); color: #fff; margin-bottom: 8px; }
.cta-text p { font-size: 16px; color: var(--muted); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Footer ── */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 14px; line-height: 1.6; max-width: 260px; }
.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--muted); padding: 3px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }

/* ── Page hero (inner pages) ── */
.page-hero { padding: 130px 0 70px; text-align: center; background: var(--bg2); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(32px,4vw,52px); color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Pricing page ── */
.pricing-section { padding: 80px 0; }
.trial-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,45,85,0.12), rgba(255,107,53,0.08));
  border: 1.5px solid rgba(255,45,85,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 52px;
  font-size: 17px; font-weight: 600; color: #fff;
}
.trial-banner span { color: var(--red); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 52px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: rgba(255,45,85,0.25); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(255,45,85,0.08), rgba(255,107,53,0.04));
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  padding: 5px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.plan-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-price-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: #fff; }
.plan-price-currency { font-size: 22px; font-weight: 700; color: var(--muted); align-self: flex-start; margin-top: 10px; }
.plan-price-period { font-size: 14px; color: var(--muted); }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
.plan-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.plan-cta { width: 100%; text-align: center; padding: 14px; border-radius: 50px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--transition); text-decoration: none; display: block; }
.plan-cta-primary { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(255,45,85,0.3); }
.plan-cta-primary:hover { background: #e0243c; transform: translateY(-2px); }
.plan-cta-ghost { background: transparent; color: #fff; border: 1.5px solid var(--border); }
.plan-cta-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition); }
.review-card:hover { border-color: rgba(255,45,85,0.2); transform: translateY(-3px); }
.review-stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--blue)); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 16px; }
.review-name { font-weight: 600; font-size: 15px; color: #fff; }
.review-role { font-size: 13px; color: var(--muted); }

.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px; }
.case-metric { display: flex; gap: 32px; margin: 24px 0; flex-wrap: wrap; }
.case-metric-item { display: flex; flex-direction: column; }
.case-metric-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--red); }
.case-metric-label { font-size: 13px; color: var(--muted); }
.case-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.case-col { background: var(--surface2); padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--border); }
.case-col-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.case-col-label.before { color: var(--muted); }
.case-col-label.after { color: var(--red); }
.case-col-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.case-col-desc { font-size: 13px; color: var(--muted); }

/* ── Contact / FAQ ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; }
.contact-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px;
  transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,45,85,0.12); }
.form-group textarea { min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: var(--red); color: #fff; border: none; border-radius: 50px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: #e0243c; transform: translateY(-2px); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 600; font-size: 15px; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { background: var(--surface2); }
.faq-icon { color: var(--red); font-size: 18px; transition: var(--transition); flex-shrink: 0; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Privacy page ── */
.privacy-content { max-width: 780px; margin: 0 auto; }
.privacy-content h2 { font-size: 24px; color: #fff; margin: 40px 0 14px; }
.privacy-content h3 { font-size: 18px; color: #e0e4f0; margin: 28px 0 10px; }
.privacy-content p, .privacy-content li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; }
.privacy-content li { margin-bottom: 8px; }
.privacy-date { font-size: 13px; color: var(--muted); margin-bottom: 36px; }

/* ── Product page ── */
.product-section { padding: 80px 0; }
.product-features-detailed { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.product-feature-block { display: flex; gap: 20px; }
.product-feat-icon { width: 52px; height: 52px; background: rgba(255,45,85,0.12); border: 1px solid rgba(255,45,85,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.product-feat-text h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.product-feat-text p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.tech-specs { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.tech-specs h3 { font-size: 20px; color: #fff; margin-bottom: 24px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spec-item { background: var(--surface2); padding: 16px; border-radius: 10px; border: 1px solid var(--border); }
.spec-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.spec-value { font-size: 15px; font-weight: 600; color: #fff; }

.how-works-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 20px; }
.flow-step-left { display: flex; flex-direction: column; align-items: center; }
.flow-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 14px; flex-shrink: 0; }
.flow-line { width: 2px; flex: 1; background: rgba(255,45,85,0.2); margin: 4px 0; min-height: 32px; }
.flow-step-right { padding-bottom: 28px; }
.flow-step-right h4 { font-size: 16px; color: #fff; margin-bottom: 4px; }
.flow-step-right p { font-size: 14px; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .hero { flex-direction: column; padding-top: 120px; }
  .hero-visual { width: 100%; }
  .floating-stat { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-features-detailed { grid-template-columns: 1fr; }
  .case-before-after { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-line { width: 2px; height: 40px; background: linear-gradient(180deg, var(--red), transparent); margin: 0; align-self: center; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   HERO TRANSLATOR WIDGET (animated)
   ═══════════════════════════════════════ */
.translator-widget {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 460px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  animation: mockupFloat 6s ease-in-out infinite;
}

.tw-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.tw-dots { display: flex; gap: 6px; }
.tw-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.tw-dots span:first-child { background: #ff5f56; }
.tw-dots span:nth-child(2) { background: #ffbd2e; }
.tw-dots span:nth-child(3) { background: #27c93f; }
.tw-title { font-size: 13px; color: var(--muted); font-weight: 500; flex: 1; }
.tw-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #22d3a0;
  background: rgba(34,211,160,0.1); padding: 4px 10px; border-radius: 50px;
}
.tw-live i { width: 7px; height: 7px; border-radius: 50%; background: #22d3a0; animation: twPulse 1.4s ease-in-out infinite; }
@keyframes twPulse { 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:0.4; transform:scale(0.7);} }

.tw-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

/* File row */
.tw-file {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 13px 15px;
}
.tw-file-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,45,85,0.12); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.tw-file-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tw-file-name { font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tw-file-size { font-size: 12px; color: var(--muted); }
.tw-file-tag {
  font-size: 12px; font-weight: 700; color: var(--red);
  background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.25);
  padding: 5px 11px; border-radius: 50px; white-space: nowrap;
}

/* Language flow */
.tw-flow { display: flex; align-items: center; gap: 12px; }
.tw-lang-box {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
}
.tw-lang-target { border-color: rgba(255,45,85,0.35); background: rgba(255,45,85,0.06); }
.tw-lang-flag { font-size: 22px; }
.tw-lang-name { font-size: 14px; font-weight: 600; color: #fff; }
.tw-arrow { color: var(--red); flex-shrink: 0; animation: twArrow 1.6s ease-in-out infinite; }
@keyframes twArrow { 0%,100%{ transform: translateX(0);} 50%{ transform: translateX(4px);} }

/* Progress */
.tw-progress-block { display: flex; flex-direction: column; gap: 9px; }
.tw-progress-top { display: flex; justify-content: space-between; align-items: center; }
.tw-progress-label { font-size: 13px; color: var(--text); font-weight: 500; }
.tw-progress-pct { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: var(--red); }
.tw-progress-track { height: 9px; background: var(--surface2); border-radius: 50px; overflow: hidden; border: 1px solid var(--border); }
.tw-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #ff8a65 100%);
  border-radius: 50px;
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(255,45,85,0.5);
}

/* Checklist */
.tw-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.tw-check {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--muted);
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 9px; padding: 9px 12px;
  transition: var(--transition);
}
.tw-check-ico {
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--muted);
  position: relative; transition: var(--transition);
}
.tw-check.done { color: #fff; border-color: rgba(34,211,160,0.3); background: rgba(34,211,160,0.06); }
.tw-check.done .tw-check-ico { background: #22d3a0; border-color: #22d3a0; }
.tw-check.done .tw-check-ico::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: #06281f;
}

/* Target chips */
.tw-langs { display: flex; gap: 6px; flex-wrap: wrap; }
.tw-chip {
  background: var(--surface2); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.tw-chip-more { color: var(--red); border-color: rgba(255,45,85,0.25); background: rgba(255,45,85,0.06); }

/* ═══════════════════════════════════════
   HOMEPAGE — Creator success video block
   ═══════════════════════════════════════ */
.showcase {
  padding: 90px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,45,85,0.10), transparent 60%);
  pointer-events: none;
}
.showcase .container { position: relative; z-index: 1; text-align: center; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 44px;
  text-align: left;
}
@media (max-width: 900px){ .showcase-grid { grid-template-columns: 1fr; } }

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  cursor: pointer;
}
.video-frame video,
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; object-fit: cover;
}
.video-poster {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1d3a 0%, #2a1535 60%, #3a1525 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
}
.video-poster::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(255,45,85,0.5);
  position: relative; z-index: 2;
  transition: var(--transition);
}
.play-btn::before {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,45,85,0.4);
  animation: playPulse 2s ease-out infinite;
}
@keyframes playPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.video-frame:hover .play-btn { transform: scale(1.08); background: #e0243c; }
.play-btn svg { margin-left: 4px; }
.video-poster-label { position: relative; z-index: 2; color: #fff; font-family: 'Syne',sans-serif; font-weight: 700; font-size: 16px; }
.video-poster-sub { position: relative; z-index: 2; color: var(--muted); font-size: 13px; margin-top: -10px; }

.showcase-stats { display: flex; flex-direction: column; gap: 18px; }
.showcase-stat {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.showcase-stat:hover { border-color: rgba(255,45,85,0.3); transform: translateX(4px); }
.showcase-stat-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,45,85,0.12); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.showcase-stat-num { font-family:'Syne',sans-serif; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.showcase-stat-label { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ═══════════════════════════════════════
   DEMO PAGE — video walkthrough
   ═══════════════════════════════════════ */
.demo-intro { padding: 70px 0 30px; text-align: center; }

.demo-steps-nav {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin: 40px 0 10px;
}
.demo-step-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 18px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.demo-step-pill:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
.demo-step-pill.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 20px rgba(255,45,85,0.35); }
.demo-step-pill .pill-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}

.demo-episode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.demo-episode:nth-child(even) .demo-ep-text { order: 2; }
.demo-episode:nth-child(even) .demo-ep-video { order: 1; }
@media (max-width: 900px){
  .demo-episode { grid-template-columns: 1fr; gap: 28px; padding: 50px 0; }
  .demo-episode:nth-child(even) .demo-ep-text,
  .demo-episode:nth-child(even) .demo-ep-video { order: initial; }
}

.demo-ep-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.25);
  color: var(--red); padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
.demo-ep-badge .ep-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.demo-ep-text h2 { font-size: clamp(24px,3vw,34px); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.demo-ep-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.demo-ep-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.demo-ep-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text);
}
.demo-ep-list li .ep-check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: rgba(34,211,160,0.12);
  color: #22d3a0; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}

.demo-ep-video, .demo-ep-text { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.demo-episode.visible .demo-ep-video,
.demo-episode.visible .demo-ep-text { opacity: 1; transform: none; }
.demo-episode.visible .demo-ep-text { transition-delay: .12s; }

.video-duration {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════
   REVIEWS PAGE — modern animated version
   ═══════════════════════════════════════ */

/* Animated counter stat cards */
.rv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px){ .rv-stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .rv-stats-grid { grid-template-columns: 1fr; } }

.rv-stat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 22px;
  text-align: center;
  overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease, border-color .25s ease, box-shadow .25s ease;
}
.rv-stat.visible { opacity: 1; transform: none; }
.rv-stat:hover { border-color: rgba(255,45,85,0.35); transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,0.4); }
.rv-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8a65);
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s ease .2s;
}
.rv-stat.visible::before { transform: scaleX(1); }
.rv-stat-num { font-family:'Syne',sans-serif; font-size: clamp(30px,3.4vw,42px); font-weight: 800; color: var(--red); line-height: 1; }
.rv-stat-label { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.5; min-height: 40px; display: flex; align-items: center; justify-content: center; }

/* Case study cards */
.rv-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 980px){ .rv-cases { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.rv-case {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(44px);
  transition: opacity .7s ease, transform .7s ease, border-color .25s ease, box-shadow .25s ease;
}
.rv-case.visible { opacity: 1; transform: none; }
.rv-case:hover { border-color: rgba(255,45,85,0.3); box-shadow: 0 18px 50px rgba(0,0,0,0.45); transform: translateY(-6px); }
.rv-case::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,45,85,0.07), transparent 55%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.rv-case:hover::after { opacity: 1; }

.rv-case-head { display: flex; align-items: center; gap: 14px; min-height: 56px; margin-bottom: 18px; position: relative; z-index: 1; }
.rv-case-avatar {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1);
}
.rv-case:hover .rv-case-avatar { transform: scale(1.12) rotate(-6deg); }
.rv-case-name { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.25; }
.rv-case-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }

.rv-case-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; position: relative; z-index: 1; flex-grow: 0; }

.rv-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; margin-bottom: 16px; position: relative; z-index: 1;
}
.rv-metric { padding: 16px 8px 14px; border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 6px; min-width: 0; text-align: center; }
.rv-metric:last-child { border-right: none; }
.rv-metric-num { font-family:'Syne',sans-serif; font-size: clamp(15px, 1.5vw, 19px); font-weight: 800; color: var(--red); line-height: 1.05; white-space: nowrap; max-width: 100%; }
.rv-metric-label { font-size: 10.5px; color: var(--muted); line-height: 1.3; min-height: 26px; display: flex; align-items: center; justify-content: center; }

.rv-ba { position: relative; z-index: 1; margin-top: auto; }
.rv-growth-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.rv-growth-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.rv-growth-val { font-family:'Syne',sans-serif; font-size: 13px; font-weight: 800; color: #22d3a0; }
.rv-growth-track { height: 8px; background: var(--surface2); border: 1px solid var(--border); border-radius: 50px; overflow: hidden; margin-bottom: 14px; }
.rv-growth-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red), #ff8a65);
  border-radius: 50px;
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1) .25s;
  box-shadow: 0 0 12px rgba(255,45,85,0.5);
}
.rv-case.visible .rv-growth-fill { width: var(--grow, 80%); }

.rv-ba-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.rv-ba-col { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; text-align: center; }
.rv-ba-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.rv-ba-label.before { color: var(--muted); }
.rv-ba-label.after { color: var(--red); }
.rv-ba-num { font-family:'Syne',sans-serif; font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.rv-ba-arrow { color: var(--red); font-size: 18px; }

/* Review cards */
.rv-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 980px){ .rv-reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .rv-reviews { grid-template-columns: 1fr; } }

.rv-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(32px) scale(0.98);
  transition: opacity .6s ease, transform .6s ease, border-color .25s ease, box-shadow .25s ease;
}
.rv-review.visible { opacity: 1; transform: none; }
.rv-review:hover { border-color: rgba(255,45,85,0.25); transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,0.4); }
.rv-stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.rv-quote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 22px; font-style: italic; flex-grow: 1; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--blue)); display: flex; align-items: center; justify-content: center; font-family:'Syne',sans-serif; font-weight: 700; color: #fff; font-size: 17px; flex-shrink: 0; }
.rv-author-name { font-weight: 600; font-size: 15px; color: #fff; }
.rv-author-role { font-size: 13px; color: var(--muted); }

/* staggered delays */
.rv-stagger-1 { transition-delay: .05s; }
.rv-stagger-2 { transition-delay: .12s; }
.rv-stagger-3 { transition-delay: .19s; }
.rv-stagger-4 { transition-delay: .26s; }

/* ═══════════════════════════════════════
   BLOG — listing + article pages
   ═══════════════════════════════════════ */

/* Blog listing grid */
.blog-section { padding: 70px 0 100px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px){ .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .blog-grid { grid-template-columns: 1fr; } }

/* Featured first post spans full width */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  transition: var(--transition);
}
.blog-featured:hover { border-color: rgba(255,45,85,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.45); }
@media (max-width: 820px){ .blog-featured { grid-template-columns: 1fr; } }
.blog-featured-media {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #1a1d3a 0%, #2a1535 60%, #3a1525 100%);
  overflow: hidden;
}
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: clamp(22px,2.4vw,30px); color: #fff; margin: 14px 0 14px; line-height: 1.25; }
.blog-featured-body p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }

/* Blog card */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(0.25,0.46,0.45,0.94), border-color .3s ease, box-shadow .4s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(255,45,85,0.3); box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.blog-card-media {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #1a1d3a 0%, #2a1535 60%, #3a1525 100%);
  overflow: hidden;
}
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-media .blog-play {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,45,85,0.92);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-body { padding: 20px 18px 22px; display: flex; flex-direction: column; min-height: 220px; }
.blog-card-body h3 { font-size: 15px; color: #fff; margin: 8px 0 8px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }

/* Category chip + meta */
.blog-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.25);
  color: var(--red); padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  align-self: flex-start;
}
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--muted); margin-top: auto; }
.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-readmore { display: inline-flex; align-items: center; gap: 7px; font-family:'Syne',sans-serif; font-weight: 700; font-size: 14px; color: var(--red); transition: var(--transition); }
.blog-readmore:hover { gap: 11px; }

/* Image graceful fallback (when file missing) */
.img-fallback::after {
  content: '🎬';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 46px; opacity: 0.5;
}

/* ── Article page ── */
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-head { text-align: center; padding: 120px 0 40px; }
.article-head .blog-chip { margin: 0 auto 18px; }
.article-head h1 { font-size: clamp(30px,4vw,48px); color: #fff; margin-bottom: 20px; line-height: 1.18; }
.article-meta-row { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.article-author { display: inline-flex; align-items: center; gap: 10px; }
.article-author .a-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--blue)); display: flex; align-items: center; justify-content: center; font-family:'Syne',sans-serif; font-weight: 700; color: #fff; font-size: 15px; }

.article-hero-img {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1d3a 0%, #2a1535 60%, #3a1525 100%);
  margin-bottom: 44px;
}
.article-hero-img img { width:100%; height:100%; object-fit: cover; position:absolute; inset:0; }

.article-body { font-size: 17px; color: var(--text); line-height: 1.85; }
.article-body h2 { font-size: 28px; color: #fff; margin: 44px 0 16px; }
.article-body h3 { font-size: 21px; color: #e6e9f5; margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; color: #c7cce0; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 22px; }
.article-body li { margin-bottom: 10px; color: #c7cce0; }
.article-body a { color: var(--red); text-decoration: underline; }
.article-body strong { color: #fff; }
.article-body blockquote {
  border-left: 3px solid var(--red);
  background: rgba(255,45,85,0.05);
  padding: 18px 24px; margin: 28px 0; border-radius: 0 12px 12px 0;
  font-style: italic; color: #e6e9f5;
}

/* Figure (photo) with caption */
.article-figure { margin: 34px 0; }
.article-figure .figure-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1d3a 0%, #2a1535 60%, #3a1525 100%);
}
.article-figure img { width:100%; height:100%; object-fit: cover; position:absolute; inset:0; }
.article-figure figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 10px; font-style: italic; }

/* Inline video embed in article */
.article-video { margin: 34px 0; }
.article-video .video-frame { aspect-ratio: 16/9; }

/* Article footer share / back */
.article-cta { margin: 60px 0 0; }

/* Related posts */
.related-section { padding: 70px 0 90px; background: var(--bg2); border-top: 1px solid var(--border); margin-top: 80px; }

/* Newsletter / subscribe box */
.blog-subscribe {
  background: linear-gradient(135deg, rgba(255,45,85,0.1), rgba(61,90,254,0.08));
  border: 1px solid rgba(255,45,85,0.2);
  border-radius: var(--radius-lg);
  padding: 40px; text-align: center; margin-top: 60px;
}
.blog-subscribe h3 { font-size: 24px; color: #fff; margin-bottom: 10px; }
.blog-subscribe p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.blog-subscribe form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.blog-subscribe input { flex: 1; min-width: 220px; padding: 14px 18px; background: var(--surface2); border: 1px solid var(--border); border-radius: 50px; color: var(--text); font-family:'DM Sans',sans-serif; font-size: 15px; }
.blog-subscribe input:focus { outline: none; border-color: var(--red); }
