/* ========================================
   Quick Plan Landing Page — Custom Styles
   Theme: Dark Luxury Fintech (Black + Gold)
   ======================================== */

:root {
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8902F;
  --dark: #0A0F1A;
  --dark-card: #111827;
  --dark-surface: #0F1629;
  --dark-border: #1E293B;
  --red-accent: #EF4444;
  --red-glow: rgba(239, 68, 68, 0.15);
  --green-accent: #22C55E;
  --gray-text: #94A3B8;
  --gray-light: #CBD5E1;
  --white: #F8FAFC;
}

/* ---- Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--dark);
  color-scheme: dark;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-light);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
}

/* ---- Noise Texture Overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---- Gold Gradient Text ---- */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Glassmorphism Cards ---- */
.glass-card {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 16px;
}

.glass-card-strong {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 20px;
}

/* ---- Problem Cards (Red accent) ---- */
.problem-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 3px solid var(--red-accent);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

/* ---- Solution Cards (Gold accent) ---- */
.solution-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.1);
}

/* ---- Primary CTA Button ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(212, 168, 83, 0.4);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* ---- Secondary / Outline Button ---- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid rgba(212, 168, 83, 0.4);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(212, 168, 83, 0.08);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.15);
  transform: translateY(-1px);
}

/* ---- WhatsApp Button ---- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: #25D366;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-green 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* ---- Mobile Sticky CTA Bar ---- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 168, 83, 0.2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta .price-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}

.mobile-sticky-cta .price-tag span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-text);
}

.mobile-sticky-cta .btn-primary {
  padding: 12px 24px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* ---- Limited Time Offer Banner ---- */
.offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 40px 10px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.offer-banner.hidden {
  transform: translateY(-100%);
}

.offer-banner .close-banner {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-size: 1.1rem;
  line-height: 1;
}

.offer-banner .close-banner:hover {
  opacity: 1;
}

/* ---- Hero Glow Effect ---- */
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero-glow {
    width: 900px;
    height: 900px;
  }
}

/* ---- Section Glow (reusable) ---- */
.section-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* ---- Urgency Badge Pulse ---- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(17, 24, 39, 0.4);
}

.faq-item:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.faq-item.active {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.05);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--gold-light);
}

.faq-trigger .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Testimonial Cards ---- */
.testimonial-card {
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card .quote-mark {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  color: rgba(212, 168, 83, 0.12);
  line-height: 1;
}

/* ---- Pricing Card Glow ---- */
.pricing-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(212, 168, 83, 0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Trust Badges ---- */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--gray-text);
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- Stat Counter ---- */
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .stat-number { font-size: 3rem; }
}

/* ---- Star Rating ---- */
.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}

/* ---- Animations / Keyframes ---- */
@keyframes pulse-badge {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.3); }
  50% { opacity: 0.85; box-shadow: 0 0 0 8px rgba(212, 168, 83, 0); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.15), 0 0 0 10px rgba(37, 211, 102, 0); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.animate-float {
  animation: float-y 4s ease-in-out infinite;
}

/* ---- Decorative grid lines ---- */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---- Before/After comparison arrows ---- */
.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
  margin: -4px auto;
}

@media (min-width: 640px) {
  .comparison-arrow {
    width: 36px;
    height: 36px;
    margin: 0;
  }
}

/* Mobile: visually group each before/after pair */
.comparison-pair {
  position: relative;
}

@media (max-width: 639px) {
  .comparison-pair {
    background: rgba(17, 24, 39, 0.3);
    border: 1px solid rgba(212, 168, 83, 0.08);
    border-radius: 18px;
    padding: 10px;
  }

  .comparison-pair .problem-card,
  .comparison-pair .solution-card {
    border-radius: 10px;
  }
}

/* ---- SEBI Trust Strip ---- */
.sebi-trust-strip {
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.95) 0%, rgba(20, 28, 50, 0.9) 50%, rgba(10, 15, 26, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 168, 83, 0.18);
  border-bottom: 1px solid rgba(212, 168, 83, 0.18);
  position: relative;
}

/* Animated gold glow lines */
.sebi-strip-glow-top,
.sebi-strip-glow-bottom {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, 0.6) 30%, rgba(212, 168, 83, 0.9) 50%, rgba(212, 168, 83, 0.6) 70%, transparent 100%);
  z-index: 2;
}
.sebi-strip-glow-top { top: 0; }
.sebi-strip-glow-bottom { bottom: 0; }

/* Individual trust cards */
.sebi-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, rgba(15, 22, 41, 0.8) 50%, rgba(212, 168, 83, 0.04) 100%);
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.sebi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at top, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sebi-card:hover {
  border-color: rgba(212, 168, 83, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.12), 0 0 0 1px rgba(212, 168, 83, 0.1);
}
.sebi-card:hover::before {
  opacity: 1;
}

.sebi-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 13px;
  background: rgba(10, 15, 26, 0.7);
  position: relative;
}

/* Logo container */
.sebi-logo-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border: 1px solid rgba(212, 168, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
}

.sebi-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.3), transparent 60%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
}

.sebi-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
}

.sebi-logo-wrap-bse {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
}
.sebi-logo-wrap-bse .sebi-logo-img {
  filter: brightness(0) invert(1) opacity(0.9);
}
.sebi-logo-wrap-company {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, rgba(212, 168, 83, 0.04) 100%);
}

/* Card text */
.sebi-card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.sebi-card-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}
.sebi-card-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sebi-card-sub {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.5);
  font-weight: 500;
}

/* Green verified star */
.sebi-verified-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  opacity: 0.85;
}

/* Validity footer bar */
.sebi-validity-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.05);
  border: 1px solid rgba(212, 168, 83, 0.12);
  font-size: 11px;
  color: rgba(148, 163, 184, 0.6);
  text-align: center;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 639px) {
  .sebi-card-value {
    font-size: 14px;
  }
  .sebi-logo-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 6px;
  }
  .sebi-validity-bar {
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
  }
  .sebi-validity-bar svg {
    display: none;
  }
}

.sebi-badge-item {
  transition: transform 0.3s ease;
}

.sebi-badge-item:hover {
  transform: translateY(-2px);
}

/* ---- Commodity Ticker ---- */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: rgba(10, 15, 26, 0.95);
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  padding: 10px 0;
  position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  white-space: nowrap;
}

.ticker-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.ticker-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.ticker-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.ticker-tag-green {
  background: rgba(34, 197, 94, 0.12);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.ticker-tag-gold {
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.ticker-divider {
  color: rgba(212, 168, 83, 0.2);
  font-size: 0.6rem;
  padding: 0 10px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    overflow-x: auto;
  }
}

/* ---- Footer Social Icons ---- */
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--dark-border);
  background: rgba(17, 24, 39, 0.5);
  color: var(--gray-text);
  transition: all 0.25s ease;
}

.footer-social-icon:hover {
  color: var(--gold);
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.08);
  transform: translateY(-2px);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(212, 168, 83, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 168, 83, 0.35); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---- Selection color ---- */
::selection {
  background: rgba(212, 168, 83, 0.3);
  color: var(--white);
}
