/* ===================================================
   GeoProof — Shared Stylesheet
   SEO: Critical CSS inlined per-page; this file handles layout & components
   =================================================== */

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

:root {
  --brand-dark: #1A1A2E;
  --brand-red: #E94560;
  --brand-light: #F8F9FC;
  --brand-green: #10B981;
  --brand-orange: #F5A623;
  --brand-blue: #0F3460;
  --brand-muted: #6B7280;
  --brand-surface: #ffffff;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brand-dark);
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- ACCESSIBILITY --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand-red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 2px;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- CONTAINER --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===================================================
   NAVIGATION (Sticky, accessible, responsive)
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nav.nav-solid {
  background: var(--brand-dark);
}
.nav.nav-solid.scrolled {
  background: #fff;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo svg { color: var(--brand-red); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo-text { color: var(--brand-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: #fff; }
.nav-links a.active { color: var(--brand-red); }
.nav.scrolled .nav-links a { color: var(--brand-dark); }
.nav.scrolled .nav-links a.active { color: var(--brand-red); }
.nav-cta { display: flex; align-items: center; }
.btn-nav {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-mobile-btn {
  display: none;
  color: #fff;
  padding: 8px;
  transition: color var(--transition);
}
.nav.scrolled .nav-mobile-btn { color: var(--brand-dark); }
.nav-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 24px;
  flex-direction: column;
  gap: 12px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-weight: 500; color: var(--brand-dark); padding: 8px 0; display: block; }
.nav-mobile-menu a.active { color: var(--brand-red); }
.nav-mobile-menu .btn-nav { text-align: center; margin-top: 8px; }

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* ===================================================
   BREADCRUMBS
   =================================================== */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--brand-muted);
}
.breadcrumb a { color: var(--brand-red); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===================================================
   PAGE HERO (Inner pages)
   =================================================== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.6;
}

/* ===================================================
   SECTION UTILITIES
   =================================================== */
.section { padding: 80px 0; }
.section-alt { background: var(--brand-light); }
.section-dark { background: var(--brand-dark); color: #fff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p {
  font-size: 18px;
  color: var(--brand-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ===================================================
   GRID SYSTEM
   =================================================== */
.grid-2 { display: grid; gap: 32px; }
.grid-3 { display: grid; gap: 32px; }
.grid-4 { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===================================================
   CARDS
   =================================================== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.card p { font-size: 15px; color: var(--brand-muted); line-height: 1.6; }

/* Icon color variants */
.icon-green { color: var(--brand-green); background: rgba(16,185,129,0.12); }
.icon-red { color: var(--brand-red); background: rgba(233,69,96,0.12); }
.icon-orange { color: var(--brand-orange); background: rgba(245,166,35,0.12); }
.icon-blue { color: var(--brand-blue); background: rgba(15,52,96,0.12); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--brand-red); color: #fff; box-shadow: 0 8px 20px rgba(233,69,96,0.3); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--brand-red); border: 2px solid var(--brand-red); }
.btn-secondary:hover { background: var(--brand-red); color: #fff; }
.btn-dark { background: var(--brand-dark); color: #fff; }
.btn-dark:hover { opacity: 0.9; }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-white:hover { background: var(--brand-light); }
.btn-ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--brand-red);
  margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: var(--brand-muted); }

/* ===================================================
   BLOG CARDS
   =================================================== */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(15,52,96,0.2));
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 13px; color: var(--brand-muted); margin-bottom: 8px; display: flex; gap: 16px; align-items: center; }
.blog-card-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(233,69,96,0.1);
  color: var(--brand-red);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p { font-size: 14px; color: var(--brand-muted); flex: 1; margin-bottom: 16px; }
.blog-card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 8px; }

/* ===================================================
   TESTIMONIAL CARDS
   =================================================== */
.testimonial-card {
  background: var(--brand-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { display: flex; gap: 4px; color: var(--brand-orange); margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text { font-size: 15px; color: var(--brand-dark); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--brand-dark); }
.testimonial-role { font-size: 13px; color: var(--brand-muted); }

/* ===================================================
   PORTFOLIO CARDS
   =================================================== */
.portfolio-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-img {
  height: 220px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  background: var(--brand-green);
  color: #fff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}
.portfolio-body { padding: 24px; }
.portfolio-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.portfolio-body p { font-size: 14px; color: var(--brand-muted); margin-bottom: 16px; }
.portfolio-stats { display: flex; gap: 24px; }
.portfolio-stat { text-align: center; }
.portfolio-stat strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--brand-red); }
.portfolio-stat span { font-size: 12px; color: var(--brand-muted); }

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  gap: 16px;
}
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--brand-muted);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--brand-red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--brand-muted); line-height: 1.7; }

/* ===================================================
   FORMS (Contact page)
   =================================================== */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: #374151; }
.form-input {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--brand-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(233,69,96,0.15); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-red) 0%, #C0392B 100%);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: var(--brand-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-desc { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo svg { color: var(--brand-red); }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
.social-btn svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-nap { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-nap strong { color: rgba(255,255,255,0.7); }

/* ===================================================
   LEGAL PAGES (Privacy, Terms)
   =================================================== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 40px 0 16px;
}
.legal-content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 12px; }
.legal-content p { font-size: 15px; color: #4B5563; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { font-size: 15px; color: #4B5563; line-height: 1.8; margin-bottom: 8px; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.about-text p { font-size: 16px; color: var(--brand-muted); line-height: 1.7; margin-bottom: 16px; }
.about-visual {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ===================================================
   CONTACT INFO
   =================================================== */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--brand-light);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(233,69,96,0.1);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-weight: 600; font-size: 15px; color: var(--brand-dark); margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--brand-muted); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .page-hero { padding: 120px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   TRUST BAR — Infinite Marquee Slider
   =================================================== */
.trust-bar {
  background: var(--brand-blue);
  padding: 18px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Gradient fade on left and right edges */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--brand-blue) 0%, transparent 100%);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--brand-blue) 0%, transparent 100%);
}

.trust-bar-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 24px;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.marquee-wrapper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  padding: 0 32px;
  transition: color 0.25s;
  cursor: default;
}

.marquee-item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.marquee-divider {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ===================================================
   HERO — Two-column split layout (homepage)
   =================================================== */
.hero-main-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Floating info badges on hero image */
.hero-badge {
  animation: badge-float 4s ease-in-out infinite;
}
.hero-badge-br {
  animation-delay: 2s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Live indicator pulse dot */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* On mobile — hide floating badges to avoid overflow */
@media (max-width: 899px) {
  .hero-visual-wrap .hero-badge,
  .hero-visual-wrap div[style*="99.8%"] {
    display: none !important;
  }
}
