
/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--header-h) + var(--topbar-h)); /* 130px */
  height: 100vh;
  min-height: 620px;
  background: linear-gradient(160deg, #0A1628 0%, #112240 45%, #1A3050 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

#starfield {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 70%);
  bottom: -150px; left: -100px; pointer-events: none;
}

.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}

.hero-inner {
  max-width: 1260px; width: 100%;
  margin: 0 auto; padding: 32px 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 2;
  max-height: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  color: #FF8C35; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 4.2vw, 50px); font-weight: 800;
  color: white; line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 14px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent { color: var(--saffron); }
.hero-title .underline-wave { display: inline-block; position: relative; }
.hero-title .underline-wave::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  border-radius: 99px;
}

.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6;
  max-width: 480px; margin-bottom: 24px; font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.search-box {
  background: #f2f2f2; border-radius: 16px; padding: 20px;
  display: flex; gap: 6px; box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  margin-bottom: 20px; animation: fadeUp 0.6s 0.3s ease both;
}
.search-field {
  display: flex; align-items: center; gap: 10px; flex: 1;
  padding: 15px 18px; border-radius: 11px; background: #ffffff;
  border: 1.5px solid var(--saffron); transition: 0.2s;
}
.search-field:focus-within { border-color: var(--saffron); background: var(--saffron-glow); }
.search-field i { color: var(--saffron); font-size: 15px; }
.search-field input { border: none; background: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); width: 100%; }
.search-field input::placeholder { color: var(--muted); }
.search-divider { width: 1px; background: var(--border); margin: 8px 0; }
.search-btn {
  padding: 15px 34px; border-radius: 11px;
  background: linear-gradient(135deg, var(--saffron), #FF3D00);
  color: white; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; white-space: nowrap; transition: 0.2s;
  box-shadow: 0 4px 14px rgba(255,107,0,0.4);
}
.search-btn:hover { transform: translateY(-1px); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; animation: fadeUp 0.6s 0.4s ease both; }
.hero-tags span { font-size: 12px; color: rgba(255,255,255,0.5); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); font-size: 12.5px; font-weight: 500;
  padding: 5px 12px; border-radius: 99px; cursor: pointer; transition: 0.2s;
}
.hero-tag:hover { background: rgba(255,107,0,0.2); border-color: var(--saffron); color: white; }

.hero-right { position: relative; animation: fadeUp 0.7s 0.2s ease both; }
.hero-right { padding: 22px 30px 30px 6px; display: flex; flex-direction: column; }
.hero-img-wrap { position: relative; }
.hero-img-inner {
  position: relative; border-radius: 24px; overflow: hidden;
  height: min(420px, 44vh);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-img-inner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 55%, rgba(10,22,40,0.55) 100%);
  pointer-events: none;
}
.hero-img-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-img-inner img.active { opacity: 1; }

.hero-img-dots {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; z-index: 3;
}
.hero-img-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: width 0.3s, background 0.3s;
}
.hero-img-dot.active { width: 24px; background: var(--saffron); }
.hero-img-dot:hover { background: var(--saffron-light); }

.hero-img-stats {
  display: flex; margin-top: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden;
  animation: fadeUp 0.6s 0.35s ease both;
}
.hero-img-stat {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
}
.hero-img-stat:first-child { border-right: 1px solid rgba(255,255,255,0.1); }
.hero-img-stat-ico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.hero-img-stat-ico.orange { background: rgba(255,107,0,0.18); color: var(--saffron-light); }
.hero-img-stat-ico.blue { background: rgba(59,130,246,0.18); color: #60A5FA; }
.hero-img-stat-num { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: white; line-height: 1.1; }
.hero-img-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; }

.hero-stats {
  display: flex; justify-content: center; gap: 36px; margin-top: 26px;
  animation: fadeUp 0.6s 0.5s ease both;
}
.h-stat-num { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: white; }
.h-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ══════════════════════════════════════════
   TRUST MARQUEE (brand strip)
══════════════════════════════════════════ */
.trust-section {
  background: white; padding: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }

.marquee-wrap {
  position: relative;
  width: 100%; 
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top:20px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-pill { display: flex; align-items: center; gap: 10px; padding: 12px 24px; border: 1.5px solid var(--border); border-radius: 99px; font-size: 14px; font-weight: 700; color: var(--muted); transition: 0.2s; white-space: nowrap; flex-shrink: 0; background: white; }
.brand-pill:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-glow); transform: translateY(-2px); box-shadow: var(--shadow); }
.brand-pill i { font-size: 18px; }

/* ══════════════════════════════════════════
   LAYOUT UTILITY
══════════════════════════════════════════ */
.container { max-width: 1260px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { height: auto; min-height: 100vh; padding-bottom: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  /* Keep the hero-right column (and its stat row) around on mobile —
     only the banner image itself is hidden to save vertical space. */
  .hero-right { padding: 0; }
  .hero-img-wrap { display: none; }
  .hero-stats { margin-top: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .top-bar-items { gap: 10px; }
  .top-bar-sep { display: none; }
  .top-bar-item:not(:first-child) { display: none; }
  /* "Trending: ..." tag row hidden on phones to keep the hero compact */
  .hero-tags { display: none; }
}

@media (max-width: 480px) {
  .search-box { flex-direction: column; }
  .search-divider { display: none; }
  .hero { padding-top: calc(var(--header-h) + var(--topbar-h) + 10px); }
}

