/* =====================================================
   BSCGemsAlert Marketing Agency — Main Stylesheet
   ===================================================== */

:root {
  --yellow: #F0B90B;
  --yellow-light: #F3BA2F;
  --yellow-hover: #d4a209;
  --yellow-glow: rgba(240, 185, 11, 0.10);
  --yellow-glow-strong: rgba(240, 185, 11, 0.22);
  --bg-primary: #0B0E11;
  --bg-secondary: #161A1D;
  --bg-card: #1E2026;
  --bg-card2: #2B2F36;
  --text-primary: #EAECEF;
  --text-secondary: #848E9C;
  --text-muted: #5E6673;
  --border: #2B2F36;
  --border-light: #363C45;
  --success: #0ECB81;
  --danger: #F6465D;
  --gradient: linear-gradient(135deg, #F0B90B 0%, #F3BA2F 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-yellow: 0 4px 24px rgba(240,185,11,0.20);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }
::selection { background: var(--yellow); color: #000; }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 50px 0; }
.section-sm { padding: 32px 0; }

/* ── Section labels ──────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-glow);
  border: 1px solid rgba(240,185,11,0.28);
  color: var(--yellow);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900; line-height: 1.15;
  color: var(--text-primary); margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.75; max-width: 600px;
}
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-light); }
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-telegram { background: #229ED9; color: #fff; }
.btn-telegram:hover { background: #1a8fc0; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(34,158,217,0.35); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; display: flex; align-items: center;
  background: rgba(11,14,17,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(11,14,17,0.98); box-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 42px; height: 42px;
  border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text { font-size: 17px; font-weight: 800; }
.nav-logo-text span { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--yellow); transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 24px; z-index: 999; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--text-secondary);
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--yellow); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 20px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(240,185,11,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(240,185,11,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(240,185,11,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content { position: relative; z-index: 1; max-width: 840px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-glow); border: 1px solid rgba(240,185,11,0.28);
  color: var(--yellow); padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 26px; animation: fadeInDown 0.7s ease;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-size: clamp(36px, 6vw, 70px); font-weight: 900;
  line-height: 1.08; margin-bottom: 22px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight { color: var(--yellow); }
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 580px;
  line-height: 1.75; margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 60px; animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 44px; animation: fadeInUp 0.7s ease 0.4s both; }
.hero-stat-num { font-size: 32px; font-weight: 900; color: var(--yellow); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 3px; }

/* ── Marquee ─────────────────────────────────────────── */
.marquee-section {
  padding: 18px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-inner {
  display: flex; align-items: center;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}
.marquee-item i { color: var(--yellow); font-size: 11px; }
.marquee-item:hover { color: var(--yellow); }

/* ── Services ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 22px; margin-top: 48px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { border-color: rgba(240,185,11,0.30); transform: translateY(-4px); box-shadow: var(--shadow-yellow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: var(--yellow-glow); border: 1px solid rgba(240,185,11,0.2);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 22px; color: var(--yellow);
  margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--yellow); color: #000; border-color: var(--yellow); }
.service-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.service-features { display: flex; flex-direction: column; gap: 7px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.service-features li i { color: var(--yellow); font-size: 11px; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-size: 13px; font-weight: 600; color: var(--yellow); transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ── Why Us ──────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-top: 48px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition);
}
.feature-card:hover { border-color: rgba(240,185,11,0.28); transform: translateY(-4px); }
.feature-icon {
  width: 64px; height: 64px; background: var(--yellow-glow);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 26px; color: var(--yellow); margin: 0 auto 16px;
}
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── Stats counter ───────────────────────────────────── */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px 16px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); width: 1px; height: 55%; background: var(--border);
}
.stat-num { font-size: 50px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.stat-suffix { font-size: 32px; }
.stat-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.stat-icon { font-size: 18px; color: var(--yellow); opacity: 0.45; margin-bottom: 10px; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); gap: 22px; margin-top: 48px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
  display: flex; flex-direction: column;
}
.testimonial-card:hover { border-color: rgba(240,185,11,0.25); transform: translateY(-2px); }
.t-quote { font-size: 36px; color: var(--yellow); opacity: 0.45; line-height: 1; font-family: Georgia, serif; margin-bottom: 10px; }
.t-text { font-size: 15px; color: var(--text-secondary); line-height: 1.75; font-style: italic; flex: 1; }
.t-stars { display: flex; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--border); margin-top: 16px; }
.t-stars i { color: var(--yellow); font-size: 13px; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #000; flex-shrink: 0;
}
.t-name { font-size: 15px; font-weight: 700; }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.t-badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: 4px;
  background: rgba(14,203,129,0.1); color: var(--success);
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px;
}

/* ── Video section ───────────────────────────────────── */
.video-section { background: var(--bg-primary); position: relative; overflow: hidden; }
.video-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(240,185,11,0.05) 0%, transparent 65%);
}
.video-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.video-container {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--border); background: var(--bg-card);
  aspect-ratio: 16/9; position: relative;
}
.video-container iframe { width: 100%; height: 100%; border: none; display: block; }
.video-placeholder {
  width: 100%; height: 100%; position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  cursor: pointer; text-decoration: none;
}
.video-play-btn {
  width: 72px; height: 72px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #000; transition: var(--transition);
}
.video-play-btn:hover { transform: scale(1.12); box-shadow: var(--shadow-yellow); }
.video-placeholder p { font-size: 14px; color: var(--text-secondary); }
.video-metrics { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.v-metric { display: flex; align-items: center; gap: 10px; }
.v-metric i { color: var(--yellow); font-size: 20px; }
.v-metric-num { font-size: 22px; font-weight: 800; }
.v-metric-label { font-size: 12px; color: var(--text-secondary); }

/* ── Offers ──────────────────────────────────────────── */
.offers-section { background: var(--bg-secondary); }
.offer-banner {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid rgba(240,185,11,0.20);
  border-radius: var(--radius-lg); padding: 18px 26px;
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
  flex-wrap: wrap;
}
.offer-banner-icon { font-size: 28px; }
.offer-banner-text { flex: 1; }
.offer-banner-text h3 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.offer-banner-text p { font-size: 13px; color: var(--text-secondary); }
.offer-timer { display: flex; gap: 6px; align-items: center; }
.timer-block {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 12px; text-align: center; min-width: 52px;
}
.timer-num { font-size: 20px; font-weight: 900; color: var(--yellow); line-height: 1; }
.timer-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }
.timer-sep { font-size: 20px; font-weight: 900; color: var(--yellow); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.pricing-card {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative;
}
.pricing-card.featured { border-color: var(--yellow); box-shadow: var(--shadow-yellow); }
.pricing-card:hover { border-color: rgba(240,185,11,0.40); transform: translateY(-4px); }
.pricing-card.featured:hover { transform: translateY(-4px); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #000;
  font-size: 11px; font-weight: 800; padding: 4px 18px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}
.pricing-discount {
  background: rgba(246,70,93,0.10); color: var(--danger);
  border: 1px solid rgba(246,70,93,0.20); font-size: 12px; font-weight: 800;
  padding: 4px 11px; border-radius: 100px; display: inline-block; margin-bottom: 14px;
}
.pricing-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.pricing-features li i { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }

/* ── Blog cards ──────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 22px; margin-top: 48px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: rgba(240,185,11,0.25); transform: translateY(-4px); }
.blog-card-img {
  height: 175px; display: flex; align-items: center; justify-content: center;
  font-size: 54px; position: relative; overflow: hidden;
}
.blog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--bg-card)); }
.blog-card-body { padding: 22px; }
.blog-cat {
  display: inline-block; background: var(--yellow-glow); color: var(--yellow);
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}
.blog-title {
  font-size: 17px; font-weight: 700; margin-bottom: 9px; line-height: 1.4;
  color: var(--text-primary); transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--yellow); }
.blog-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
.blog-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 14px;
}
.blog-meta i { color: var(--yellow); }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--yellow); transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* ── CTA section ─────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(240,185,11,0.07) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner .section-title { font-size: clamp(26px, 4vw, 48px); }
.cta-inner .section-subtitle { margin: 14px auto 38px; font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.social-links { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 30px; }
.social-link {
  width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-secondary); transition: var(--transition);
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

/* ── Trust bar ───────────────────────────────────────── */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 28px;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.trust-item i { color: var(--yellow); }

/* ── Footer ──────────────────────────────────────────── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 14px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: var(--bg-card2);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-secondary); transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow-glow); border-color: rgba(240,185,11,0.30); color: var(--yellow); }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.6px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom-text { font-size: 13px; color: var(--text-muted); }
.footer-bottom-text a { color: var(--yellow); }

/* ── Floating Telegram ───────────────────────────────── */
.float-tg {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  width: 56px; height: 56px; background: #229ED9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: 0 4px 24px rgba(34,158,217,0.45);
  transition: var(--transition); animation: floatBob 3s ease-in-out infinite;
}
.float-tg:hover { transform: scale(1.12) !important; box-shadow: 0 8px 32px rgba(34,158,217,0.55); }
.float-tg-tooltip {
  position: absolute; right: 68px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.float-tg:hover .float-tg-tooltip { opacity: 1; }

/* ── Blog post page ──────────────────────────────────── */
.page-hero { padding: 120px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(240,185,11,0.08) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--yellow); }
.breadcrumb i { font-size: 10px; }
.post-content { max-width: 820px; margin: 0 auto; padding: 48px 0; }
.post-content h2 { font-size: 26px; font-weight: 800; margin: 40px 0 14px; color: var(--text-primary); }
.post-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--text-primary); }
.post-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 16px; }
.post-content li { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 8px; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content strong { color: var(--text-primary); }
.highlight-box {
  background: var(--yellow-glow); border: 1px solid rgba(240,185,11,0.22);
  border-left: 4px solid var(--yellow); border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 28px 0;
}
.highlight-box p { color: var(--text-primary) !important; margin-bottom: 0 !important; }
.post-author {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 40px;
}
.post-author-avatar {
  width: 52px; height: 52px; background: var(--gradient);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 800;
  color: #000; flex-shrink: 0;
}
.post-author-name { font-size: 15px; font-weight: 700; }
.post-author-role { font-size: 13px; color: var(--text-muted); }

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes floatBob   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes pulse      { 0%,100% { opacity:1; } 50% { opacity:0.35; } }
@keyframes marquee    { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.aos { opacity:0; transform:translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.aos.visible { opacity:1; transform:translateY(0); }
.aos.d1 { transition-delay:0.1s; }
.aos.d2 { transition-delay:0.2s; }
.aos.d3 { transition-delay:0.3s; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-item:nth-child(2)::after { display:none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:32px; }
  .video-wrapper { grid-template-columns: 1fr; gap:40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  .section { padding:36px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display:none !important; }
  .footer-grid { grid-template-columns: 1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .cta-actions { flex-direction:column; align-items:center; }
  .offer-timer { display:none; }
  .float-tg { bottom:20px; right:20px; }
}
