/* ============================================================
   MAVERICK RIDES — Landing Page Custom CSS
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --electric:    #4C6EF5;
  --electric-2:  #4DCECC;
  --flame:       #C0392B;
  --racing:      #E03131;
  --neon:        #4DCECC;
  --dark-bg:     #0d0f1e;
  --dark-mid:    #161c38;
  --card-bg:     #ffffff;
  --bg:          #fafaff;
  --text:        #1a1c2e;
  --muted:       #6c7293;
  --border:      #e5e8f0;
  --orange:      #C0392B;

  --gradient-electric: linear-gradient(135deg, #4C6EF5, #4DCECC);
  --gradient-flame:    linear-gradient(135deg, #E03131, #C0392B);
  --gradient-hero:     linear-gradient(135deg, #4C6EF5 0%, #E03131 50%, #C0392B 100%);
  --gradient-aurora:   linear-gradient(120deg, #4C6EF5 0%, #7950F2 35%, #E03131 70%, #C0392B 100%);

  --shadow-glow:         0 0 60px -10px rgba(76,110,245,0.6);
  --shadow-glow-flame:   0 0 60px -10px rgba(192,57,43,0.6);
  --shadow-elevated:     0 20px 60px -20px rgba(26,28,46,0.2);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.object-cover { object-fit: cover; }
.inset-0      { top: 0; right: 0; bottom: 0; left: 0; }
.py-section   { padding: 7rem 1.5rem; }

/* ---------- Gradient text helpers ---------- */
.text-gradient-hero {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-electric {
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-flame {
  background: var(--gradient-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Colors ---------- */
.text-neon   { color: var(--neon); }
.text-orange { color: var(--orange); }
.text-electric { color: var(--electric); }
.bg-gradient-electric { background: var(--gradient-electric); }
.bg-gradient-flame    { background: var(--gradient-flame); }
.shadow-elevated      { box-shadow: var(--shadow-elevated); }

/* ---------- Glass ---------- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.glass-dark {
  background: rgba(26, 28, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Grid pattern ---------- */
.grid-pattern {
  background-image:
    linear-gradient(to right,  rgba(76,110,245,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(76,110,245,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar { z-index: 1050; }

.navbar-glass {
  background: rgba(26, 28, 46, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .3s;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid rgba(255,255,255,0.15);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 1.1rem;
  color: #fff;
}

.brand-dot { color: var(--neon); }

.nav-link-custom {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-link-custom:hover { color: #fff; }

.btn-join {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--text);
  border-radius: 50px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s;
}
.btn-join:hover { transform: scale(1.05); color: var(--text); }

.mobile-menu {
  background: rgba(26, 28, 46, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-link {
  display: block;
  padding: .6rem .75rem;
  color: #fff;
  text-decoration: none;
  border-radius: .5rem;
  font-size: .9rem;
  transition: background .2s;
}
.mobile-menu-link:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section { background: #0d0f1e; }

.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111424 0%, rgba(26,34,78,.55) 40%, transparent 100%);
}
.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,20,36,.8) 0%, transparent 50%, rgba(224,49,49,.25) 100%);
}

/* Orbs */
.orb {
  border-radius: 50%;
  filter: blur(80px);
  animation: float-slow 6s ease-in-out infinite;
  pointer-events: none;
}
.orb-electric {
  width: 400px;
  height: 400px;
  background: var(--gradient-electric);
  opacity: .4;
}
.orb-flame {
  width: 500px;
  height: 500px;
  background: var(--gradient-flame);
  opacity: .3;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26,28,46,.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .45rem 1rem;
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Hero title */
.hero-title {
  font-size: clamp(2.75rem, 8vw, 7rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  color: #fff;
  margin-top: 1.25rem;
}

.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 44rem;
}

/* Stat cards */
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
}

/* CTA buttons */
.btn-flame {
  position: relative;
  background: var(--gradient-flame);
  color: #fff;
  border-radius: 50px;
  padding: 1rem 1.75rem;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: var(--shadow-glow-flame);
  transition: transform .2s;
  overflow: hidden;
}
.btn-flame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: var(--gradient-flame);
  filter: blur(20px);
  opacity: .6;
  z-index: -1;
  transition: opacity .2s;
}
.btn-flame:hover { transform: scale(1.05); color: #fff; }
.btn-flame:hover::before { opacity: 1; }

.btn-glass {
  background: rgba(26,28,46,.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-glass:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Ticker */
.ticker-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: .9rem 0;
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-size: .8rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.65);
  font-family: 'Space Grotesk', sans-serif;
}
.ticker-item { display: inline-flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.ticker-dot {
  display: inline-block;
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: var(--neon);
}

/* ============================================================
   SECTIONS — Badges & Titles
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: .3rem .85rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge-electric {
  background: rgba(76,110,245,.12);
  color: #4C6EF5;
}
.badge-flame {
  background: rgba(224,49,49,.1);
  color: #c53030;
}
.badge-border {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.section-features { background: var(--bg); }

.feature-card {
  position: relative;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px -20px rgba(26,28,46,.22); }
.feature-card::before {
  content: '';
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity .5s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: .28; }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: .875rem;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.feature-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   LIVE RIDE SECTION
   ============================================================ */
.map-mockup { border: 1px solid #fff; }

.feature-icon-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .875rem;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   CAFÉS SECTION
   ============================================================ */
.place-card {
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.place-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px -20px rgba(26,28,46,.22); }

.place-img-wrap { height: 14rem; overflow: hidden; }
.place-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.place-card:hover .place-img { transform: scale(1.1); }

.place-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 100%);
}

.place-bookmark {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(26,28,46,.6);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform .2s;
  z-index: 2;
}
.place-bookmark:hover { transform: scale(1.1); }

.place-rating {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: #fff;
  color: var(--text);
  border-radius: 50px;
  padding: .25rem .75rem;
  font-size: .875rem;
  font-weight: 700;
  box-shadow: var(--shadow-elevated);
  z-index: 2;
}

.place-type {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #E07730;
  font-weight: 700;
}
.place-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: .25rem;
  margin-bottom: 0;
}
.place-dist { font-size: .85rem; }
.place-tag {
  background: #f1f3f5;
  border-radius: 50px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   SUNDAY RIDES
   ============================================================ */
.ride-card {
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .25s;
}
.ride-card:hover { transform: translateY(-4px); }

.ride-img-wrap { height: 11rem; overflow: hidden; position: relative; }
.ride-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.ride-card:hover .ride-img { transform: scale(1.08); }
.ride-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%); }

.ride-time {
  position: absolute;
  bottom: .75rem; left: .75rem;
  border-radius: 50px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  z-index: 2;
}

.ride-title { font-size: 1.15rem; font-weight: 700; margin: 0; }
.ride-host  { font-size: .85rem; color: var(--muted); margin-top: .25rem; }
.ride-going { font-size: .85rem; color: var(--muted); }

.btn-link-chat {
  background: none;
  border: none;
  color: var(--electric);
  font-size: .875rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: gap .2s;
}
.btn-link-chat:hover { opacity: .8; }

.btn-rsvp {
  background: var(--gradient-flame);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .75rem;
  font-weight: 600;
  font-size: .875rem;
  box-shadow: var(--shadow-glow-flame);
  cursor: pointer;
  transition: transform .2s;
}
.btn-rsvp:hover { transform: scale(1.02); }

/* ---------- Avatar stack ---------- */
.avatar-stack { align-items: center; }
.avatar-sm {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -.5rem;
}
.avatar-sm:first-child { margin-left: 0; }
.avatar-plus {
  background: #e9ecef;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text);
}

/* ============================================================
   SOCIAL FEED
   ============================================================ */
.phone-mockup { position: relative; }

.phone-frame {
  width: 300px;
  aspect-ratio: 9/19;
  border-radius: 2.5rem;
  background: #000;
  padding: .75rem;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: #111;
}

.phone-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  color: #fff;
  font-size: .6rem;
}
.phone-action-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(26,28,46,.65);
  backdrop-filter: blur(10px);
  font-size: 1rem;
}

.play-btn {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

.phone-float-card {
  position: absolute;
  width: 14rem;
  z-index: 2;
}
.phone-float-left  { left: -5rem; top: 2.5rem; }
.phone-float-right { right: -4rem; bottom: 3rem; }

/* ============================================================
   PROFILES SECTION
   ============================================================ */
.profile-card { border: 1px solid var(--border); }
.profile-avatar {
  width: 6rem; height: 6rem;
  border-radius: 1rem;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow-glow);
}

.tier-badge {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  box-shadow: var(--shadow-elevated);
}

/* ============================================================
   LEADERBOARD
   ============================================================ */
.lb-row {
  background: rgba(255,255,255,.05);
  transition: background .2s;
}
.lb-row:hover { background: rgba(255,255,255,.1); }
.lb-row-gold {
  background: linear-gradient(135deg, rgba(224,49,49,.25) 0%, rgba(192,57,43,.25) 100%) !important;
  border: 1px solid rgba(192,57,43,.35);
}

.lb-rank {
  width: 2.5rem; height: 2.5rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
}
.lb-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -16px rgba(26,28,46,.18); }

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.testimonial-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-featured { display: block; }
.blog-featured img { transition: transform .7s; }
.blog-featured:hover img { transform: scale(1.08); }

.blog-cat-badge {
  display: inline-block;
  border-radius: 50px;
  padding: .25rem .85rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}

.blog-featured-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.blog-story-card {
  transition: box-shadow .25s, transform .2s;
  overflow: hidden;
}
.blog-story-card:hover { transform: translateX(3px); box-shadow: 0 12px 40px -12px rgba(26,28,46,.18) !important; }

.blog-story-thumb {
  width: 6rem; height: 6rem;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-story-meta { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.blog-story-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text); line-height: 1.35; }
.blog-story-card:hover .blog-story-title { color: var(--electric); }

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-section { background: var(--gradient-aurora); }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s;
  box-shadow: var(--shadow-elevated);
}
.store-btn:hover { transform: scale(1.05); }

.store-btn-dark { background: #000; color: #fff; }
.store-btn-light { background: #fff; color: var(--text); }

.store-btn-sub  { font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; opacity: .7; }
.store-btn-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; line-height: 1.2; }

.email-form-wrap {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
}
.email-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: .875rem;
  padding: .5rem 1.25rem;
  flex: 1;
  min-width: 0;
}
.email-input::placeholder { color: rgba(255,255,255,.55); }

.email-submit-btn {
  background: #fff;
  color: var(--text);
  border: none;
  border-radius: 50px;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.email-submit-btn:hover { transform: scale(1.05); }

/* Download phone mockups */
.dl-phone {
  position: absolute;
  width: 18rem;
  aspect-ratio: 9/19;
  border-radius: 2.5rem;
  background: #000;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.1);
}
.dl-phone-right {
  right: 2.5rem;
  top: 0;
  transform: rotate(6deg);
  box-shadow: var(--shadow-glow);
}
.dl-phone-left {
  left: 0;
  top: 6rem;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-glow-flame);
}

.dl-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: #111;
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
}

.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.social-btn:hover { transform: scale(1.12); background: rgba(255,255,255,.15); color: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(2deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px -5px rgba(76,110,245,.5); }
  50%       { box-shadow: 0 0 60px 0 rgba(76,110,245,.8); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-float-slow  { animation: float-slow 6s ease-in-out infinite; }
.animate-pulse-glow  { animation: pulse-glow 3s ease-in-out infinite; }
.animate-ticker      { animation: ticker 40s linear infinite; }

/* Hero animations */
.fade-in    { animation: fadeIn    .7s ease forwards; }
.fade-in-up { animation: fadeInUp  .8s ease forwards; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(5rem);
  background: #fff;
  color: var(--text);
  border-radius: 50px;
  padding: .875rem 1.75rem;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 10px 40px rgba(26,28,46,.2);
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .py-section { padding: 4.5rem 1.25rem; }
  .section-title { font-size: clamp(2rem, 5vw, 3rem); }
  .phone-mockup { width: 100%; display: flex; justify-content: center; }
  .phone-frame { width: 260px; }
  .dl-phone { width: 14rem; }
  .dl-phone-right { right: 1rem; top: 0; }
  .dl-phone-left  { left: 1rem; top: 5rem; }
}

@media (max-width: 767.98px) {
  .py-section { padding: 3.5rem 1rem; }
  .hero-title  { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .phone-float-card { display: none !important; }
  .dl-phone { display: none !important; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.25rem; }
  .section-title { font-size: 2rem; }
  .blog-featured { min-height: 18rem !important; }
  .blog-featured-title { font-size: 1.5rem !important; }
}

/* ============================================================
   HOVER WHITE utility
   ============================================================ */
.hover-white:hover { color: #fff !important; }
