/* ═══════════════════════════════════════════════
   ASHISHTEK — Shared Stylesheet
   Theme: LIGHT — Patriotic Blue, Crimson, White
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&family=Inter+Tight:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --blue:        #1B5FAA;
  --blue-2:      #144985;
  --blue-hover:  #164d8f;
  --blue-light:  #2E78CA;
  --blue-pale:   #D6E7F8;
  --blue-bg:     #EEF4FC;

  --red:         #8B1C2C;
  --red-hover:   #6e1522;
  --red-light:   #C23045;
  --red-pale:    #FAE8EB;

  /* Light Theme Neutrals */
  --bg:          #F8FAFD;
  --bg-alt:      #EEF4FC;
  --bg-white:    #FFFFFF;
  --surface:     #FFFFFF;
  --surface-2:   #F3F7FD;

  --text-1:      #0D1B2A;   /* headlines */
  --text-2:      #2D3D50;   /* body */
  --text-3:      #5A6B80;   /* secondary */
  --text-4:      #94A3B8;   /* muted */

  --border:      #DDE8F4;
  --border-2:    #BFD0E8;
  --shadow-sm:   0 1px 4px rgba(27,95,170,0.07);
  --shadow-md:   0 4px 20px rgba(27,95,170,0.10);
  --shadow-lg:   0 12px 48px rgba(27,95,170,0.13);

  /* Radii */
  --r-xs:    6px;
  --r-sm:    10px;
  --r-md:    16px;
  --r-lg:    22px;
  --r-xl:    32px;
  --r-pill:  999px;

  /* Transition */
  --ease: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Tag / pill label ─── */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1px solid var(--blue-pale);
  border-radius: var(--r-pill);
  padding: 5px 14px;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); display: inline-block;
  animation: blink 2s ease infinite;
}
.tag-red { color: var(--red); background: var(--red-pale); border-color: #f0c0c8; }
.tag-red .tag-dot { background: var(--red); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-pill);
  padding: 12px 26px;
  border: none; cursor: pointer;
  transition: var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 18px rgba(27,95,170,0.25);
}
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,95,170,0.35); }

.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(139,28,44,0.22);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,28,44,0.32); }

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

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-ghost {
  background: var(--surface); color: var(--text-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* Arrow pointer */
.btn svg, .btn-arrow { cursor: pointer; }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,250,253,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo { height: 42px; width: auto; }
.nav-logo-fallback {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px; font-weight: 900; color: #fff;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px; font-weight: 900; letter-spacing: -.02em;
  color: var(--text-1);
}
.nav-brand-name .accent-red { color: var(--red); }
.nav-brand-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  display: flex; align-items: center; height: 70px; padding: 0 16px;
  font-size: 14px; font-weight: 500; color: var(--text-3);
  border-bottom: 3px solid transparent;
  transition: var(--ease);
}
.nav-links a:hover { color: var(--text-1); border-bottom-color: var(--blue-pale); }
.nav-links a.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-callback-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--red-pale); color: var(--red);
  border: 1px solid #f0c0c8; cursor: pointer; transition: var(--ease);
}
.nav-callback-btn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-1px); }
.nav-book-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--blue); color: #fff;
  border: none; cursor: pointer; transition: var(--ease);
  box-shadow: 0 3px 12px rgba(27,95,170,0.25);
}
.nav-book-btn:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,95,170,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: var(--ease); }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(248,250,253,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Inter Tight', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-3); transition: var(--ease); }
.mobile-nav a:hover { color: var(--blue); }
.mobile-close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--text-1); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #144985 100%);
  color: #fff;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--blue));
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900; letter-spacing: -.035em; line-height: 1.08;
  color: #fff; margin: 16px 0 18px;
}
.page-hero p { font-size: clamp(15px,1.8vw,18px); color: rgba(255,255,255,0.8); max-width: 540px; line-height: 1.7; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 24px; }
.page-breadcrumb a { color: rgba(255,255,255,0.85); transition: var(--ease); }
.page-breadcrumb a:hover { color: #fff; }

/* ─── Sections ─── */
.section { padding: 96px 0; }
.section-white { background: var(--bg-white); }
.section-bg { background: var(--bg); }
.section-blue-bg { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.left { text-align: left; }
.section-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px,4vw,48px); font-weight: 800;
  letter-spacing: -.03em; color: var(--red); line-height: 1.1;
  margin-top: 12px;
}
.section-sub { font-size: 17px; color: var(--text-3); max-width: 520px; margin: 14px auto 0; line-height: 1.7; }
.section-header.left .section-sub { margin-left: 0; }

/* ─── Cards ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.card:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--blue-bg); border: 1px solid var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.card-icon-red { background: var(--red-pale); border-color: #f0c0c8; }
.card-title { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--text-3); line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 18px; transition: var(--ease); cursor: pointer; }
.card-link:hover { gap: 10px; color: var(--blue-hover); }

/* ─── Stats bar ─── */
.stats-bar {
  background: var(--blue);
  padding: 0;
  overflow: hidden;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.stat-cell {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 28px; font-weight: 900; color: #fff; line-height: 1;
}
.stat-cell-num sup { font-size: 16px; vertical-align: super; }
.stat-cell-lbl { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 5px; font-weight: 500; line-height: 1.4; }

/* ─── Marquee (companies) ─── */
.marquee-section { padding: 48px 0; background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-heading { text-align: center; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-4); margin-bottom: 28px; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; }
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-white), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-white), transparent); }
.marquee-track { display: flex; gap: 40px; animation: marqueeScroll 30s linear infinite; width: max-content; align-items: center; }
.company-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 22px;
  white-space: nowrap;
  transition: var(--ease);
}
.company-chip:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-md); }
.company-chip-icon { font-size: 20px; }
.company-chip-name { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-2); }

/* ─── CTA Strip ─── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, #144985 100%);
  border-radius: var(--r-xl);
  padding: 72px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-strip::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), var(--red-light), rgba(255,255,255,0.5));
}
.cta-strip h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(26px,4vw,44px); font-weight: 900;
  letter-spacing: -.03em; color: #fff; margin-bottom: 14px;
  line-height: 1.1; position: relative;
}
.cta-strip p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; position: relative; }
.cta-strip .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ─── Patriotic divider ─── */
.pat-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--blue), var(--red), var(--blue), transparent); opacity: 0.35; }

/* ─── Feature row ─── */
.feature-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--ease); box-shadow: var(--shadow-sm); }
.feature-row:hover { border-color: var(--blue-pale); box-shadow: var(--shadow-md); }
.feature-icon { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--blue-bg); border: 1px solid var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.feature-title { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-1); }
.feature-desc { font-size: 13px; color: var(--text-3); margin-top: 3px; line-height: 1.6; }

/* ─── Footer ─── */
footer { background: #0D1B2A; color: rgba(255,255,255,0.85); padding: 64px 0 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-main-grid { display: grid; grid-template-columns: 1.3fr 1.7fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-main-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-logo { height: 44px; width: auto; }
.footer-brand-name { font-family: 'Inter Tight', sans-serif; font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.footer-brand-name .r { color: var(--red-light); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.footer-contact-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: var(--r-pill); background: var(--blue); color: #fff; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; transition: var(--ease); box-shadow: 0 4px 18px rgba(27,95,170,0.35); margin-bottom: 24px; }
.footer-contact-btn:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,95,170,0.5); color: #fff; }
.hero-everify-wrap { margin-top: 28px; display: inline-flex; align-items: center; justify-content: center; background: #ffffff; padding: 8px 16px; border-radius: 10px; box-shadow: 0 4px 18px rgba(0,0,0,0.12); width: fit-content; }
.hero-everify-wrap img { width: 140px; height: auto; object-fit: contain; display: block; }
.footer-everify-wrap { margin-top: 4px; display: inline-flex; align-items: center; justify-content: center; background: #ffffff; padding: 7px 14px; border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,0.12); width: fit-content; }
.footer-everify-logo { width: 130px; height: auto; object-fit: contain; display: block; }

.footer-nav-col { display: flex; flex-direction: column; gap: 36px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 600px) { .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.footer-col-title { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--red-light); margin-bottom: 16px; letter-spacing: .06em; text-transform: uppercase; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.footer-links-list a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--ease); }
.footer-links-list a:hover { color: #fff; }
.footer-address-block { margin-top: 6px; }
.footer-address-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--red-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.footer-address-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-refer-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 8px; background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%); color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; text-decoration: none; transition: var(--ease); box-shadow: 0 4px 14px rgba(139,28,44,0.3); }
.footer-refer-btn:hover { transform: translateY(-2px); color: #fff; background: var(--red-hover); }
.footer-stripe { height: 4px; background: linear-gradient(90deg, var(--blue) 0 50%, var(--red) 50% 100%); }

/* ─── Callback Modal ─── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(13,27,42,0.55); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--surface); border-radius: var(--r-xl); padding: 44px; max-width: 480px; width: 100%; box-shadow: 0 32px 80px rgba(13,27,42,0.2); border: 1px solid var(--border); position: relative; animation: modalIn .3s ease; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-3); transition: var(--ease); }
.modal-close:hover { background: var(--red-pale); color: var(--red); border-color: #f0c0c8; }
.modal-title { font-family: 'Inter Tight', sans-serif; font-size: 24px; font-weight: 800; color: var(--text-1); margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--text-3); margin-bottom: 28px; line-height: 1.65; }

/* ─── Form ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; color: var(--text-2); font-weight: 600; }
.form-control {
  background: var(--surface-2); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-1);
  outline: none; transition: var(--ease); width: 100%;
}
.form-control::placeholder { color: var(--text-4); }
.form-control:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(27,95,170,0.1); }
.form-control-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B5FAA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Toast ─── */
#toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--blue); color: #fff; font-size: 14px; font-weight: 500; padding: 13px 26px; border-radius: var(--r-pill); opacity: 0; transition: all .4s ease; z-index: 9999; box-shadow: 0 8px 28px rgba(27,95,170,0.35); white-space: nowrap; pointer-events: none; }

/* ─── Scroll Reveal ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-26px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.up { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.up { opacity: 1; transform: translateX(0); }

/* ─── Keyframes ─── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes modalIn { from{opacity:0;transform:scale(.95) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes arrowBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatUp { 0%{opacity:0;transform:translateY(40px) scale(.5)} 60%{opacity:1} 100%{opacity:0;transform:translateY(-80px) scale(1)} }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes countUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ─── Mobile Backdrop (tap outside to close menu) ─── */
.mobile-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 899;
  background: rgba(13,27,42,0.45);
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: opacity .3s ease;
}
.mobile-backdrop.open { display: block; }

/* ─── Responsive ─── */
@media (max-width: 1050px) { .stats-bar-inner { grid-template-columns: repeat(3,1fr); } .stat-cell:nth-child(3) { border-right: none; } }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 700px) { .nav-links, .nav-actions { display: none; } .hamburger { display: flex; } .footer-top { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; } .section { padding: 64px 0; } .cta-strip { padding: 48px 24px; } .page-hero { padding: 110px 0 56px; } }
@media (max-width: 600px) { .stats-bar-inner { grid-template-columns: repeat(2,1fr); } .stat-cell:nth-child(2) { border-right: none; } }
@media (max-width: 380px) { .stats-bar-inner { grid-template-columns: 1fr; } .stat-cell { border-right: none; } }

/* ─── Shared Form (used in contact) ─── */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow-md); }
@media (max-width: 600px) { .form-card { padding: 28px 20px; } .form-row { grid-template-columns: 1fr; } }

/* ─── Form Validation ─── */
.form-control.error { border-color: var(--red) !important; background: #fff8f9; box-shadow: 0 0 0 3px rgba(139,28,44,0.10); }
.form-control.success { border-color: #22c55e; background: #f0fdf4; }
.field-error { font-size: 12px; color: var(--red); font-weight: 500; margin-top: 4px; display: none; align-items: center; gap: 5px; }
.field-error.show { display: flex; }
.field-error::before { content: '⚠'; font-size: 11px; }
.form-group.has-error label { color: var(--red); }
.validation-banner {
  background: #fff0f1; border: 1.5px solid #fbb0ba; border-radius: var(--r-md);
  padding: 12px 16px; display: none; align-items: center; gap: 10px;
  margin-bottom: 18px; font-size: 13px; color: var(--red); font-weight: 500;
}
.validation-banner.show { display: flex; }
.validation-banner-icon { font-size: 18px; flex-shrink: 0; }

/* ─── Auto Popup Nudge (6-7s) ─── */
.auto-nudge {
  position: fixed; bottom: 28px; right: 28px; z-index: 1800;
  background: var(--surface); border: 1.5px solid var(--blue-pale);
  border-radius: var(--r-xl); padding: 20px 22px;
  box-shadow: 0 12px 48px rgba(27,95,170,0.18);
  max-width: 320px; width: 100%;
  display: none; animation: nudgeIn .45s cubic-bezier(.34,1.56,.64,1);
  transition: var(--ease);
}
.auto-nudge.show { display: block; }
.auto-nudge-close {
  position: absolute; top: 10px; right: 12px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  cursor: pointer; font-size: 14px; color: var(--text-4);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.auto-nudge-close:hover { background: var(--red-pale); color: var(--red); }
.nudge-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.nudge-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--blue-bg); border: 1px solid var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.nudge-title { font-family: 'Manrope',sans-serif; font-size: 14px; font-weight: 700; color: var(--text-1); }
.nudge-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.nudge-text { font-size: 13px; color: var(--text-3); line-height: 1.65; margin-bottom: 14px; }
.nudge-btns { display: flex; gap: 8px; }
.nudge-btn-primary { flex: 1; padding: 9px 14px; background: var(--blue); color: #fff; border: none; border-radius: var(--r-md); font-size: 12px; font-weight: 700; cursor: pointer; transition: var(--ease); }
.nudge-btn-primary:hover { background: var(--blue-hover); }
.nudge-btn-secondary { padding: 9px 14px; background: transparent; color: var(--text-4); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--ease); }
.nudge-btn-secondary:hover { color: var(--text-2); border-color: var(--border-2); }
.nudge-timer-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.nudge-timer-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--red)); width: 100%; animation: timerShrink 6s linear forwards; transform-origin: left; }

/* ─── Company Chip Colors ─── */
.company-chip { position: relative; }
.chip-amazon { border-color: #FF9900; } .chip-amazon .company-chip-name { color: #7a4600; }
.chip-microsoft { border-color: #00a1f1; } .chip-microsoft .company-chip-name { color: #005a8c; }
.chip-google { border-color: #4285F4; } .chip-google .company-chip-name { color: #1a56c4; }
.chip-ibm { border-color: #1f70c1; } .chip-ibm .company-chip-name { color: #1a5a9e; }
.chip-deloitte { border-color: #86BC25; } .chip-deloitte .company-chip-name { color: #4a6e10; }
.chip-accenture { border-color: #A100FF; } .chip-accenture .company-chip-name { color: #6e00b3; }
.chip-oracle { border-color: #F80000; } .chip-oracle .company-chip-name { color: #b30000; }
.chip-salesforce { border-color: #00A1E0; } .chip-salesforce .company-chip-name { color: #006fa8; }
.chip-stellar { border-color: #1B5FAA; } .chip-stellar .company-chip-name { color: #1B5FAA; }

/* ─── Team card stagger animations ─── */
.team-card { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease, box-shadow .3s ease, border-color .3s ease; }
.team-card.in { opacity: 1; transform: translateY(0); }
.team-card:hover .team-avatar { transform: scale(1.08); box-shadow: 0 6px 22px rgba(27,95,170,0.28); }
.team-avatar { transition: transform .3s ease, box-shadow .3s ease; }

/* ─── Journey section logo ─── */
.journey-logo-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.journey-logo-img { width: 100px; height: 100px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.15); padding: 12px; border: 2px solid rgba(255,255,255,0.25); animation: pulse 3s ease infinite; }
.journey-logo-fallback { width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-family: 'Inter Tight',sans-serif; font-size: 30px; font-weight: 900; color: #fff; }

/* ─── Section heading improvements (contrast) ─── */
.section-title strong { color: var(--blue); }
.section-title .red { color: var(--red); }

/* ─── Keyframes additions ─── */
@keyframes nudgeIn { from { opacity:0; transform:translateY(20px) scale(.95); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes timerShrink { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@keyframes teamIn { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }

/* ─── Navbar brand alignment fix ─── */
.nav-brand { align-items: center; }
.nav-brand-text { justify-content: center; }

/* ─── Better section contrast ─── */
.section-white { background: #FFFFFF; }
.section-bg { background: #F4F8FE; }
.section-blue-bg { background: #EDF3FC; }

/* ─── Footer consistency ─── */
.footer-top { padding-bottom: 48px; }

/* ─── Responsive additions ─── */
@media (max-width: 480px) {
  .auto-nudge { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
  .nudge-btns { flex-direction: column; }
}

/* ─── Loading Screen (Inverted: white bg, blue/red animation) ─── */
#loadingScreen {
  position: fixed; inset: 0; z-index: 99999;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loadingScreen.fade-out { opacity: 0; visibility: hidden; }
.loader-wrap { position: relative; width: 140px; height: 140px; display: flex; align-items: center; justify-content: center; }
.loader-logo-img { width: 84px; height: 84px; object-fit: contain; position: relative; z-index: 2; padding: 8px; border-radius: 50%; background: rgba(27,95,170,0.06); }
.loader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 4px solid #e8eef5; border-top-color: var(--blue);
  animation: spin 1s linear infinite;
}
.loader-ring-2 {
  position: absolute; inset: 10px; border-radius: 50%;
  border: 3px solid #f5e8ea; border-bottom-color: var(--red);
  animation: spin 1.6s linear infinite reverse;
}
.loader-ring-3 {
  position: absolute; inset: 20px; border-radius: 50%;
  border: 2px solid #e8eef5; border-left-color: #1B5FAA;
  animation: spin 2.4s linear infinite;
}
.loader-brand { font-family: 'Inter Tight',sans-serif; font-size: 28px; font-weight: 900; letter-spacing: -.03em; color: #0D2B5E; }
.loader-brand span { color: var(--red); }
.loader-dots { display: flex; gap: 7px; }
.loader-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-pale); animation: dotPulseLight 1.4s ease-in-out infinite; }
.loader-dot:nth-child(2) { animation-delay: .22s; }
.loader-dot:nth-child(3) { animation-delay: .44s; }
@keyframes dotPulseLight { 0%,100%{background:var(--blue-pale);transform:scale(1)} 50%{background:var(--blue);transform:scale(1.4)} }
@keyframes dotPulse { 0%,100%{background:rgba(255,255,255,0.3);transform:scale(1)} 50%{background:#fff;transform:scale(1.3)} }

/* ─── Centered Ad Popup (replaces old auto-nudge side popup) ─── */
.nudge-backdrop {
  position: fixed; inset: 0; z-index: 3998;
  background: rgba(10,18,35,0.72);
  backdrop-filter: blur(4px);
  display: none; opacity: 0;
  transition: opacity .3s ease;
}
.nudge-backdrop.show { display: block; opacity: 1; }
.center-nudge {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.92);
  z-index: 3999;
  background: #fff; border-radius: var(--r-xl);
  max-width: 480px; width: calc(100% - 40px);
  box-shadow: 0 32px 96px rgba(13,27,42,0.35);
  border: 1px solid var(--border);
  display: none; opacity: 0;
  transition: opacity .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
.center-nudge.show { display: block; opacity: 1; transform: translate(-50%,-50%) scale(1); }
.center-nudge-header {
  background: linear-gradient(135deg, #0D2B5E 0%, var(--blue) 100%);
  padding: 28px 32px 24px; position: relative;
}
.center-nudge-close {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.center-nudge-close:hover { background: rgba(255,255,255,0.28); }
.center-nudge-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.center-nudge-title { font-family: 'Inter Tight',sans-serif; font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 8px; }
.center-nudge-sub { font-size: 13px; color: rgba(255,255,255,0.72); }
.center-nudge-body { padding: 28px 32px; }
.center-nudge-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cnp-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.cnp-icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--blue-bg); border: 1px solid var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.center-nudge-btns { display: flex; gap: 10px; }
.cnb-primary { flex: 1; padding: 13px 16px; background: var(--blue); color: #fff; border: none; border-radius: var(--r-md); font-family: 'Manrope',sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--ease); }
.cnb-primary:hover { background: var(--blue-hover); }
.cnb-secondary { padding: 13px 16px; background: var(--red-pale); color: var(--red); border: 1.5px solid #f0c0c8; border-radius: var(--r-md); font-family: 'Manrope',sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--ease); }
.cnb-secondary:hover { background: #f9d0d7; }
.center-nudge-timer { height: 4px; background: var(--border); margin-top: 18px; border-radius: 2px; overflow: hidden; }
.center-nudge-timer-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--red)); animation: timerShrink 12s linear forwards; }
.center-nudge-footer { padding: 0 32px 20px; font-size: 11px; color: var(--text-4); text-align: center; }

/* ─── E-Verify Badge ─── */
.everify-wrap { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 14px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-md); width: fit-content; }
.everify-img { width: 60px; height: auto; object-fit: contain; }
.everify-text { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.everify-text strong { color: #fff; font-size: 13px; display: block; margin-bottom: 2px; }
.footer-everify { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); margin-top: 18px; width: fit-content; }
.footer-everify img { width: 44px; height: auto; }
.footer-everify-txt { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-everify-txt strong { color: rgba(255,255,255,0.8); display: block; }

/* ─── Animated Counter ─── */
.stat-cell-num { transition: all .3s ease; }
.stat-cell-num.counting { color: var(--red); }

/* ─── Resume Checker Page ─── */
.resume-upload-zone {
  border: 2.5px dashed var(--blue-pale); border-radius: var(--r-xl);
  padding: 56px 32px; text-align: center; cursor: pointer;
  transition: var(--ease); background: var(--surface-2);
  position: relative;
}
.resume-upload-zone:hover, .resume-upload-zone.dragover { border-color: var(--blue); background: var(--blue-bg); }
.ruz-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.ruz-title { font-family: 'Manrope',sans-serif; font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.ruz-sub { font-size: 14px; color: var(--text-3); margin-bottom: 20px; }
.ruz-formats { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ruz-format { padding: 4px 12px; background: var(--blue-bg); border: 1px solid var(--blue-pale); border-radius: var(--r-pill); font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .06em; }
.resume-score-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 40px; box-shadow: var(--shadow-lg); display: none;
}
.resume-score-card.show { display: block; animation: fadeUp .5s ease both; }
.score-circle-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 36px; }
.score-circle { width: 140px; height: 140px; position: relative; }
.score-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-circle-bg { fill: none; stroke: var(--border); stroke-width: 10; }
.score-circle-fill { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1); }
.score-circle-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-num { font-family: 'Inter Tight',sans-serif; font-size: 36px; font-weight: 900; color: var(--text-1); line-height: 1; }
.score-label { font-size: 12px; color: var(--text-4); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.score-grade { font-family: 'Inter Tight',sans-serif; font-size: 22px; font-weight: 800; }
.score-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.score-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--surface-2); border-radius: var(--r-md); border: 1px solid var(--border); }
.si-icon { font-size: 20px; flex-shrink: 0; }
.si-info { flex: 1; }
.si-title { font-family: 'Manrope',sans-serif; font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.si-bar-wrap { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.si-bar { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.si-score { font-size: 13px; font-weight: 700; color: var(--text-2); flex-shrink: 0; }
.resume-tips { background: var(--blue-bg); border: 1px solid var(--blue-pale); border-radius: var(--r-lg); padding: 24px; }
.resume-tips-title { font-family: 'Manrope',sans-serif; font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.tip-item { display: flex; gap: 10px; font-size: 13px; color: var(--text-2); margin-bottom: 10px; line-height: 1.6; }
.tip-item::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
@media (max-width: 600px) { .center-nudge-title { font-size: 20px; } .center-nudge-header { padding: 20px; } .center-nudge-body { padding: 20px; } .center-nudge-footer { padding: 0 20px 16px; } }

/* --- Cursor Follower Dot (pure solid red) --- */
#cursorDot {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: #c00000;
  border: none; outline: none; box-shadow: none;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .15s ease, height .15s ease;
  will-change: left, top;
}
#cursorDot.clicking { width: 22px; height: 22px; background: #900000; }
@media (hover:none) { #cursorDot { display:none; } }

/* --- Page Entry Arrow Beam --- */
.beam-line {
  position: fixed; bottom: -4px; left: -200px;
  width: 220px; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--blue) 40%, var(--red) 85%, transparent);
  transform-origin: right center; rotate: -38deg;
  pointer-events: none; z-index: 9998; opacity: 0;
  box-shadow: 0 0 18px rgba(27,95,170,0.6);
}
.beam-head {
  position: fixed; bottom: -16px; left: -20px;
  font-size: 28px; pointer-events: none; z-index: 9999;
  opacity: 0; filter: drop-shadow(0 0 10px rgba(27,95,170,0.9));
  transform: rotate(-38deg);
}
@keyframes beamShoot {
  0%   { opacity:0; transform: translate(0,0); }
  6%   { opacity:1; }
  92%  { opacity:1; }
  100% { opacity:0; transform: translate(calc(100vw + 200px), calc(-100vh - 20px)); }
}
@keyframes beamLineShoot {
  0%   { opacity:0; transform: translate(0,0) rotate(-38deg); }
  6%   { opacity:1; }
  90%  { opacity:1; }
  100% { opacity:0; transform: translate(calc(100vw + 200px), calc(-100vh - 20px)) rotate(-38deg); }
}
.beam-head.active { animation: beamShoot 2.4s cubic-bezier(.4,0,.6,1) forwards; }
.beam-line.active { animation: beamLineShoot 2.4s cubic-bezier(.4,0,.6,1) forwards; }

/* --- LinkedIn Popup --- */
#linkedinPopup {
  position: fixed; bottom: 28px; right: 28px; width: 300px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: 0 16px 56px rgba(13,27,42,0.22); z-index: 9990;
  overflow: hidden; opacity: 0; pointer-events: none;
  transform: translateY(24px) scale(.96);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
#linkedinPopup.show { opacity:1; transform:translateY(0) scale(1); pointer-events:all; }
.li-header-bar { background:#0A66C2; padding:14px 16px; display:flex; align-items:center; gap:12px; position:relative; }
.li-logo { width:36px; height:36px; background:#fff; border-radius:7px; display:flex; align-items:center; justify-content:center; font-family:'Inter Tight',sans-serif; font-size:18px; font-weight:900; color:#0A66C2; flex-shrink:0; }
.li-header-title { font-size:13px; font-weight:700; color:#fff; }
.li-header-sub   { font-size:11px; color:rgba(255,255,255,.72); margin-top:2px; }
.li-close-btn { position:absolute; top:10px; right:12px; width:24px; height:24px; border-radius:50%; background:rgba(255,255,255,.18); border:none; color:#fff; font-size:12px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.li-close-btn:hover { background:rgba(255,255,255,.32); }
.li-body { padding:16px; }
.li-desc { font-size:13px; color:var(--text-3); line-height:1.65; margin-bottom:14px; }
.li-stats-row { display:flex; gap:10px; margin-bottom:14px; }
.li-stat-box { flex:1; text-align:center; background:var(--surface-2); border:1px solid var(--border); border-radius:var(--r-md); padding:10px 6px; }
.li-stat-num { font-family:'Inter Tight',sans-serif; font-size:18px; font-weight:900; color:var(--text-1); display:block; }
.li-stat-lbl { font-size:10px; color:var(--text-4); font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
.li-follow-btn { display:block; width:100%; padding:11px; background:#0A66C2; color:#fff; border:none; border-radius:var(--r-md); font-family:'Manrope',sans-serif; font-size:14px; font-weight:700; text-align:center; text-decoration:none; cursor:pointer; }
.li-follow-btn:hover { background:#004e9a; color:#fff; }
.li-timer-bar { height:3px; background:var(--border); margin-top:12px; border-radius:2px; overflow:hidden; }
.li-timer-fill { height:100%; background:#0A66C2; width:100%; }
.li-timer-fill.running { transition:width 15s linear; width:0%; }

/* --- Marquee Logo Chips --- */
.marquee-logo-img { width:30px; height:30px; object-fit:contain; flex-shrink:0; border-radius:4px; }

/* --- Logo-Only Marquee Chips --- */
.company-chip.logo-only {
  padding: 10px 20px;
  min-width: unset;
  width: auto;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.company-chip.logo-only:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.company-chip.logo-only img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter .2s ease;
}
.company-chip.logo-only:hover img {
  filter: grayscale(0%);
}
