/* ============================================================
   BatWin India — Global Stylesheet
   assets/css/main.css
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  --bg-primary:    #070b18;
  --bg-secondary:  #0d1526;
  --bg-card:       #111e35;
  --bg-card2:      #0f1a2e;

  --gold:          #f5a623;
  --gold-dark:     #c8841a;
  --gold-light:    #ffd166;
  --gold-glow:     rgba(245,166,35,0.25);

  --white:         #ffffff;
  --gray:          #8892a4;
  --gray-light:    #b0bec5;
  --green:         #22c55e;
  --red:           #ef4444;
  --blue:          #3b82f6;

  --border:        rgba(245,166,35,0.15);
  --border-soft:   rgba(255,255,255,0.06);
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.6);
  --shadow-gold:   0 8px 30px rgba(245,166,35,0.35);

  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --font-sans:     'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height:    62px;
  --transition:    all 0.3s ease;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── 3. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-gray    { color: var(--gray); }
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.hidden { display: none !important; }

/* ── 4. TYPOGRAPHY ── */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-title span { color: var(--gold); }

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e1a;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0e1a;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border);
}

.btn-sm  { padding: 9px 18px; font-size: .85rem; }
.btn-lg  { padding: 18px 40px; font-size: 1.1rem; }
.btn-xl  { padding: 22px 52px; font-size: 1.2rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── 6. BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold  { background: rgba(245,166,35,0.12); color: var(--gold); border: 1px solid var(--border); }
.badge-green { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.badge-red   { background: rgba(239,68,68,0.12); color: var(--red);   border: 1px solid rgba(239,68,68,0.25); }
.badge-blue  { background: rgba(59,130,246,0.12); color: var(--blue); border: 1px solid rgba(59,130,246,0.25); }

/* ── 7. CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.3);
}

/* ── 8. DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── 9. URGENCY BANNER ── */
.urgency-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: #0a0e1a;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .9rem;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.2px;
}
.urgency-banner .pulse { animation: pulse 2s ease-in-out infinite; }

/* ── 10. NAVBAR — floating glass ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  background: transparent;
  border: none;
  transition: padding 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  padding: 7px 20px;
  background: rgba(7,11,24,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  height: 56px;
  padding: 0 20px;
  background: rgba(10,14,28,0.84);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.05);
  gap: 0;
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-inner {
  background: rgba(7,11,24,0.96);
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
}
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img.logo-img { height: 34px; width: auto; }
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #0a0e1a; font-weight: 900; flex-shrink: 0;
}
.nav-logo .logo-text { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: -0.3px; }
.nav-logo .logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(176,190,197,0.82);
  transition: color 0.22s ease, background 0.22s ease;
  position: relative;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.045); }
.nav-links a:hover::after { transform: scaleX(0.6); }
.nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.07); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 22px;
  font-size: .875rem;
  font-weight: 800;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5a623, #c8841a);
  color: #0a0e1a !important;
  box-shadow: 0 4px 18px rgba(245,166,35,0.3);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
  border: none;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 28px rgba(245,166,35,0.42); }
.nav-cta:hover::before { left: 150%; }
.nav-cta:hover::after { background: transparent; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,14,28,0.97);
  border-top: none;
  padding: 16px 20px;
  gap: 4px;
  margin: 0 20px;
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(245,166,35,0.15);
  border-top: none;
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 8px;
  font-weight: 500; color: var(--gray-light);
  display: block; transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(245,166,35,0.08); }
.mobile-menu .btn { margin-top: 8px; }

/* ── 11. BREADCRUMB ── */
.breadcrumb-bar {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.breadcrumb {
  font-size: .85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb .sep { opacity: 0.4; }

/* ── 12. PAGE HERO (inner pages) ── */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,166,35,0.08), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── 13. FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(245,166,35,0.25); }
.faq-item.open  { border-color: rgba(245,166,35,0.35); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(245,166,35,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.35s, background 0.3s, color 0.3s;
  color: var(--gold);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #0a0e1a;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--gray-light);
  font-size: .9rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-a-inner a { color: var(--gold); text-decoration: underline; }

/* ── 14. TRUST BADGES ROW ── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-light);
}
.trust-item .t-icon {
  width: 32px;
  height: 32px;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-item img.t-icon {
  padding: 6px;
  object-fit: contain;
}

/* ── 15. INTERNAL LINKS STRIP ── */
.internal-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.internal-strip-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.internal-strip-inner .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}
.internal-link-btn {
  padding: 11px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--gray-light);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.internal-link-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.05);
  transform: translateY(-1px);
}

/* ── 16. SOCIAL PROOF POPUP ── */
.social-proof-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  z-index: 998;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 290px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: .82rem;
}
.social-proof-popup.show { transform: translateX(0); }

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a0e1a;
  font-size: .9rem;
  overflow: hidden;
}
.sp-avatar img { width: 100%; height: 100%; object-fit: cover; }

.sp-text strong { display: block; font-weight: 700; color: var(--white); margin-bottom: 2px; font-size: .85rem; }
.sp-text span   { color: var(--gray); font-size: .75rem; }

.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
  animation: blink 1.5s infinite;
}

.sp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s;
}
.sp-close:hover { color: var(--white); }

/* ── 17. EXIT INTENT POPUP ── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.exit-overlay.show { display: flex; }

.exit-popup {
  background: var(--bg-card);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.9);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--gray-light);
  font-size: 1.3rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.exit-popup-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.exit-popup h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 10px; }
.exit-popup h2 span { color: var(--gold); }
.exit-popup p  { color: var(--gray-light); font-size: .95rem; margin-bottom: 28px; line-height: 1.7; }

/* ── 18. MOBILE STICKY CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11,17,35,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  flex-direction: column;
  gap: 8px;
}

/* ── 19. FOOTER — premium ── */
footer { background: #02050c; border-top: none; padding: 0; }

/* Footer CTA strip */
.footer-cta-strip {
  background: linear-gradient(135deg, rgba(17,30,53,0.98), rgba(10,15,28,0.98));
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.08);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-strip::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 55% 80% at 50% 50%, rgba(245,166,35,0.038), transparent 65%); pointer-events:none; }
.footer-cta-strip-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; position:relative; flex-wrap:wrap; }
.fcta-text h3 { font-size:clamp(1.4rem,2.5vw,2rem); font-weight:900; margin-bottom:10px; letter-spacing:-0.4px; }
.fcta-text h3 span { color:var(--gold); }
.fcta-text p { color:var(--gray); font-size:.9rem; max-width:400px; line-height:1.72; }
.fcta-actions { display:flex; gap:12px; align-items:center; flex-wrap:wrap; flex-shrink:0; }
/* APK mini-card */
.apk-mini-card {
  background: rgba(7,11,24,0.9);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}
.apk-mini-card:hover { border-color:rgba(245,166,35,0.38); transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,0.4); }
.apk-card-icon { width:42px; height:42px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; box-shadow:0 4px 14px rgba(245,166,35,0.26); }
.apk-card-label { font-size:.63rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; color:var(--gray); display:block; margin-bottom:2px; }
.apk-card-title { font-size:.88rem; font-weight:800; color:var(--white); display:block; }

/* Footer main */
.footer-main-wrap { padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-wrap {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.22rem; font-weight: 900;
  margin-bottom: 16px; text-decoration: none; color: var(--white);
}
.footer-brand .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,166,35,0.24);
}
.footer-brand .logo-icon img { width: 22px; height: 22px; object-fit: contain; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-tagline { color: var(--gray); font-size: .82rem; line-height: 1.84; margin-bottom: 18px; }
.footer-disclosure {
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .76rem; color: var(--gray); line-height: 1.75;
  margin-bottom: 22px;
}
.footer-disclosure strong { color: var(--gold); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gray);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); text-decoration: none;
}
.footer-social a:hover { background:rgba(245,166,35,0.1); border-color:rgba(245,166,35,0.28); color:var(--gold); transform:translateY(-4px) scale(1.1); box-shadow:0 8px 18px rgba(245,166,35,0.13); }
.footer-col h4 {
  font-size: .75rem; font-weight: 800;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after { content:''; position:absolute; bottom:0; left:0; width:26px; height:1.5px; background:linear-gradient(90deg,var(--gold),transparent); border-radius:2px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size:.83rem; color:var(--gray); transition:all 0.22s ease; display:inline-flex; align-items:center; gap:6px; }
.footer-col ul a:hover { color:var(--gold); padding-left:5px; }
.footer-contact-item { display:flex; align-items:center; gap:8px; font-size:.83rem; color:var(--gray); margin-bottom:11px; }
.footer-contact-item a { color:var(--gray); transition:color 0.2s; }
.footer-contact-item a:hover { color:var(--gold); }
.footer-contact-item img { width:18px; height:18px; object-fit:contain; opacity:0.6; }
/* Live support pill */
.live-support-pill { display:inline-flex; align-items:center; gap:6px; padding:5px 12px; background:rgba(34,197,94,0.08); border:1px solid rgba(34,197,94,0.18); border-radius:50px; font-size:.72rem; font-weight:700; color:var(--green); margin-bottom:14px; }
/* Animated divider */
.footer-anim-divider { height:1px; background:linear-gradient(90deg,transparent,rgba(245,166,35,0.18),transparent); position:relative; overflow:hidden; }
.footer-anim-divider::before { content:''; position:absolute; top:0; left:-60%; width:48%; height:100%; background:linear-gradient(90deg,transparent,rgba(245,166,35,0.75),transparent); animation:divSweep 5s ease-in-out infinite; }
@keyframes divSweep { 0%{left:-60%} 100%{left:110%} }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 28px 0 36px;
  display: flex; flex-direction: column;
  gap: 14px; align-items: center; text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
}
.age-badge-18 {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--red);
}
.age-badge-safe {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
}
.age-badge-ssl {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  color: var(--gray);
}

.restricted-note {
  font-size: .75rem;
  color: var(--gray);
  max-width: 720px;
  line-height: 1.65;
}
.restricted-note .states { color: var(--red); font-weight: 600; }

.footer-disclaimer {
  font-size: .75rem;
  color: var(--gray);
  max-width: 720px;
  line-height: 1.65;
}

.copyright {
  font-size: .8rem;
  color: var(--gray);
}
.copyright a { color: var(--gold); transition: opacity 0.2s; }
.copyright a:hover { opacity: 0.8; }

/* ── 20. NOTICE / ALERT BOXES ── */
.notice-box {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .875rem;
  line-height: 1.65;
}
.notice-box .notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notice-gold  { background: rgba(245,166,35,0.07); border: 1px solid rgba(245,166,35,0.2); color: var(--gray-light); }
.notice-green { background: rgba(34,197,94,0.07);  border: 1px solid rgba(34,197,94,0.2);  color: var(--gray-light); }
.notice-red   { background: rgba(239,68,68,0.07);  border: 1px solid rgba(239,68,68,0.2);  color: var(--gray-light); }

/* ── 21. SEO CONTENT BLOCK ── */
.seo-block { padding: 60px 0; background: var(--bg-secondary); }
.seo-inner { max-width: 900px; margin: 0 auto; }
.seo-inner h2 { font-size: clamp(1.3rem,3vw,1.9rem); font-weight: 800; margin-bottom: 16px; }
.seo-inner h2 span { color: var(--gold); }
.seo-inner h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; color: var(--gold-light); }
.seo-inner p  { color: var(--gray-light); line-height: 1.85; margin-bottom: 16px; font-size: .95rem; }
.seo-inner ul { padding-left: 0; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.seo-inner ul li {
  color: var(--gray-light);
  font-size: .95rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.seo-inner ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.seo-inner a { color: var(--gold); text-decoration: underline; }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-strip-inner { flex-direction: column; align-items: center; text-align: center; }
  .fcta-text p { margin: 0 auto; }
  .fcta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta  { display: none; }
  .hamburger            { display: flex; }
  .mobile-cta-bar       { display: flex; }
  .footer-grid          { grid-template-columns: 1fr; gap: 36px; }
  .footer-main-wrap     { padding: 52px 0 0; }
  .footer-cta-strip     { padding: 48px 0; }
  .navbar               { padding: 8px 14px; }
  .section-pad          { padding: 56px 0; }
  .section-pad-sm       { padding: 40px 0; }
  .exit-popup           { padding: 36px 24px; }
  .social-proof-popup   { max-width: 260px; font-size: .78rem; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 16px 28px; font-size: 1rem; }
  .btn-xl { padding: 16px 32px; font-size: 1.05rem; }
}
