/* ================================================================
   fut-hero-new.css — Future Education Hero Section  v2
   Brand: Red #C0171D | Navy #1A2A5E
   Mobile-first | Full-viewport hero | Card-style mobile form
   ================================================================ */

:root {
  --fe-red:        #C0171D;
  --fe-red-dark:   #9e1218;
  --fe-navy:       #1A2A5E;
  --fe-navy-dark:  #111d42;
  --fe-grey:       #6B6B6B;
  --fe-white:      #ffffff;
  --fe-overlay:    rgba(10, 16, 42, 0.74);
  --fe-radius:     14px;
  --fe-radius-sm:  8px;
  --fe-shadow:     0 4px 24px rgba(0,0,0,0.18);
  --fe-shadow-lg:  0 8px 40px rgba(0,0,0,0.30);
  --fe-transition: all 0.26s cubic-bezier(0.4,0,0.2,1);
}

/* ================================================================
   OUTER WRAPPER — full viewport height
================================================================ */
.fut-hero-outer {
  position: relative;
  overflow: hidden; /* hard clip — section is exactly viewport */
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

.fut-hero-new {
  /* Same element as .fut-hero-outer — both classes on <section>
     flex column, height controlled by .fut-hero-outer (100dvh) */
  position: relative;
  width: 100%;
  background: var(--fe-navy-dark);
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
}

/* ================================================================
   BG SLIDESHOW — right-to-left auto-scroll (3 slides)
================================================================ */
.fut-hero-bg {
  position: absolute;
  inset: 0; /* covers full section including ticker area */
  z-index: 0;
  overflow: hidden;
}

.fut-hero-bg-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: fut-bg-slide 21s ease-in-out infinite;
  will-change: transform;
}

.fut-hero-bg-slide {
  width: 33.3333%;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@keyframes fut-bg-slide {
  0%   { transform: translateX(0); }
  28%  { transform: translateX(0); }
  35%  { transform: translateX(-33.3333%); }
  61%  { transform: translateX(-33.3333%); }
  68%  { transform: translateX(-66.6666%); }
  95%  { transform: translateX(-66.6666%); }
  100% { transform: translateX(0); }
}

/* Dark gradient overlay */
.fut-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,16,42,0.82) 0%,
    rgba(17,29,66,0.70) 60%,
    rgba(10,16,42,0.60) 100%
  );
  z-index: 1;
}

/* ================================================================
   HERO INNER — flex column on mobile, row on desktop
================================================================ */
.fut-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ================================================================
   HERO CONTENT — left col
================================================================ */
.fut-hero-content {
  width: 100%;
  max-width: 700px;
  text-align: center;
  color: var(--fe-white);
}

/* ── LIVE BADGE (no background, just blinking text) ── */
.fut-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 8px;
  color: #ffd166;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fut-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
  animation: fut-live-blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fut-live-blink {
  0%   { box-shadow: 0 0 0 0 rgba(255,68,68,0.8); opacity:1; }
  50%  { box-shadow: 0 0 0 7px rgba(255,68,68,0);  opacity:0.6; }
  100% { box-shadow: 0 0 0 0 rgba(255,68,68,0);    opacity:1; }
}
.fut-badge-text {
  animation: fut-text-blink 1.4s ease-in-out infinite;
}
@keyframes fut-text-blink {
  0%,100% { opacity:1; }
  50%     { opacity:0.55; }
}

/* ── HEADLINE ── */
.fut-hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.6rem, 5.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--fe-white);
  margin-bottom: 6px;
}
.fut-hero-title .accent-red  { color: #ff6b6b; }
.fut-hero-title .accent-gold { color: #ffd166; }

/* ── SUB-HEADLINE ── */
.fut-hero-sub {
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;
  line-height: 1.55;
}

/* ================================================================
   SEARCH BAR
================================================================ */
.fut-search-wrap {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto 10px;
}

.fut-search-bar {
  display: flex;
  align-items: center;
  background: var(--fe-white);
  border-radius: 10px;
  box-shadow: var(--fe-shadow-lg), 0 0 0 2px rgba(192,23,29,0.18);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.fut-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px 14px 22px;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: transparent;
  min-width: 0;
  caret-color: var(--fe-red);
}
.fut-search-bar input::placeholder {
  color: #bbb;
  font-size: 0.87rem;
}
.fut-search-bar:focus-within {
  box-shadow: var(--fe-shadow-lg), 0 0 0 3px rgba(192,23,29,0.35);
}

.fut-search-btn {
  flex-shrink: 0;
  background: var(--fe-red);
  color: var(--fe-white);
  border: none;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--fe-transition);
  white-space: nowrap;
  border-radius: 0 10px 10px 0;
}
.fut-search-btn:hover  { background: var(--fe-red-dark); }
.fut-search-btn:active { transform: scale(0.97); }
.fut-search-btn i { font-size: 1.05rem; }

/* ── Autocomplete Dropdown ── */
.fut-search-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
  z-index: 9999;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
  border-top: 2px solid var(--fe-red);
}
.fut-search-dropdown.open { display: block; }

.fut-sd-group-label {
  padding: 7px 16px 4px;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fe-grey);
  background: #f8f8f8;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
}
.fut-sd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  color: #222;
  font-size: 0.84rem;
  transition: background 0.14s;
  border-bottom: 1px solid #f5f5f5;
}
.fut-sd-item:last-child { border-bottom: none; }
.fut-sd-item:hover,
.fut-sd-item.highlighted { background: #fff4f4; color: var(--fe-red); }
.fut-sd-item i { color: var(--fe-red); font-size: 0.85rem; flex-shrink:0; }
.fut-sd-item .sd-text { flex:1; line-height:1.3; }
.fut-sd-item .sd-cat { font-size:0.64rem; color:var(--fe-grey); display:block; margin-top:1px; }

.fut-search-dropdown::-webkit-scrollbar { width:5px; }
.fut-search-dropdown::-webkit-scrollbar-track { background:#f5f5f5; }
.fut-search-dropdown::-webkit-scrollbar-thumb { background:#ddd; border-radius:4px; }

/* ================================================================
   QUICK TAGS
================================================================ */
.fut-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}
.fut-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--fe-transition);
  white-space: nowrap;
}
.fut-hero-tag:hover,
.fut-hero-tag:focus {
  background: var(--fe-red);
  border-color: var(--fe-red);
  color: var(--fe-white);
  transform: translateY(-2px);
}
.fut-hero-tag i { font-size: 0.68rem; }

/* ================================================================
   CTA BUTTONS
================================================================ */
.fut-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.fut-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--fe-red);
  color: var(--fe-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--fe-transition);
  border: 2px solid var(--fe-red);
  white-space: nowrap;
}
.fut-btn-primary:hover {
  background: var(--fe-red-dark);
  border-color: var(--fe-red-dark);
  color: var(--fe-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,23,29,0.4);
}
.fut-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--fe-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--fe-transition);
  border: 2px solid rgba(255,255,255,0.55);
  white-space: nowrap;
}
.fut-btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--fe-white);
  color: var(--fe-white);
  transform: translateY(-2px);
}

/* ================================================================
   STATS ROW
================================================================ */
.fut-hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 10px; /* matches form margin-top and ticker margin-top — equal gaps */
  width: 100%;
}
.fut-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 8px;
}
.fut-stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--fe-white);
  line-height: 1;
  white-space: nowrap;
}
.fut-stat-label {
  font-size: clamp(0.52rem, 1.2vw, 0.62rem);
  color: rgba(255,255,255,0.6);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1.2;
}
.fut-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  align-self: center;
  flex-shrink: 0;
}

/* ================================================================
   MOBILE FORM — card design (no oval/glass)
   Shown below content on mobile, inside the hero bg
================================================================ */
.fut-hero-mobile-form {
  /* Direct child of section flex column (between .fut-hero-inner and .fut-hero-ticker) */
  width: calc(100% - 28px); /* 14px padding each side matching inner */
  max-width: 660px;
  margin: 4px auto 0; /* minimal gap from stats to form */
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  background: rgba(8, 14, 36, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid var(--fe-red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  padding: 10px 14px 8px;
  overflow: hidden;
}
/* No top accent bar pseudo (border-top handles it) */
.fut-hero-mobile-form::before { display: none; }
.fut-hero-mobile-form .fut-mf-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fut-hero-mobile-form .fut-mf-title i { color: #ffd166; }
.fut-mf-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
}
.fut-mf-row .fut-mf-field { flex: 1; min-width: 0; }
.fut-mf-field label {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
}
.fut-mf-field input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  padding: 8px 11px;
  border-radius: 6px;
  font-size: 0.82rem;
  outline: none;
  transition: border 0.2s, background 0.2s;
  font-family: 'Poppins', sans-serif;
}
.fut-mf-field input::placeholder { color: rgba(255,255,255,0.4); }
.fut-mf-field input:focus {
  border-color: #ffd166;
  background: rgba(255,255,255,0.16);
  box-shadow: none;
}
.fut-mf-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--fe-red);
  color: var(--fe-white);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.80rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--fe-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.fut-mf-submit:hover { background: linear-gradient(135deg, var(--fe-red-dark), #7a0c10); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(192,23,29,0.35); }
.fut-mf-msg {
  order: -1; /* shows above submit button */
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 0.74rem;
  text-align: left;
  padding: 0 2px;
  display: none;
  color: rgba(255,255,255,0.90);
  background: none;
}
#fut-mobile-lead-form {
  display: flex;
  flex-direction: column;
}
#fut-mobile-lead-form .fut-mf-msg.error,
#fut-mobile-lead-form .fut-mf-msg.success {
  display: block;
  order: -1;
  color: rgba(255,255,255,0.90);
  background: none;
  padding: 0 2px;
  margin-bottom: 4px;
  font-size: 0.74rem;
}
.fut-mf-msg.success { background: #f0fdf4; color: #166534; display: block; }
.fut-mf-msg.error   { background: #fff0f0; color: #c0392b;  display: block; }

/* ================================================================
   DESKTOP COUNSELLING FORM CARD — right column (≥992px only)
================================================================ */
.fut-hero-form-col {
  display: none;
}
.fut-counsel-card {
  background: rgba(8, 14, 36, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--fe-red);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  padding: 24px 22px 20px;
  position: relative;
  overflow: hidden;
}
.fut-counsel-card::before { display: none; }
.fut-counsel-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}
.fut-counsel-card-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fut-counsel-card-sub i { color: #ffd166; }
.fut-counsel-card .form-label {
  font-size: 0.70rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.fut-counsel-card .form-control,
.fut-counsel-card .form-select {
  font-size: 0.85rem;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  transition: border 0.2s, background 0.2s;
}
.fut-counsel-card .form-control::placeholder { color: rgba(255,255,255,0.4); }
.fut-counsel-card .form-select option { color: #222; background: #fff; }
.fut-counsel-card .form-control:focus,
.fut-counsel-card .form-select:focus {
  border-color: #ffd166;
  background: rgba(255,255,255,0.16);
  box-shadow: none;
  outline: none;
  color: #fff;
}
.fut-counsel-submit {
  width: 100%;
  background: var(--fe-red);
  color: var(--fe-white);
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--fe-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.fut-counsel-submit:hover {
  background: linear-gradient(135deg, var(--fe-red-dark), #7a0c10);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,23,29,0.35);
}
.fut-counsel-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
.fut-counsel-trust i { color: #22c55e; }
.fut-form-loading,
.fut-form-error,
.fut-form-success { display:none; font-size:0.78rem; padding:7px 10px; border-radius:6px; margin-top:6px; text-align:center; }
.fut-form-loading { background:rgba(255,255,255,0.12); color:#fff; }
.fut-form-error   { background:rgba(239,68,68,0.25); color:#fca5a5; }
.fut-form-success { background:rgba(34,197,94,0.2); color:#86efac; }

/* ================================================================
   TICKER STRIP
================================================================ */
.fut-hero-ticker {
  background: var(--fe-navy);
  border-top: 2px solid var(--fe-red);
  overflow: hidden;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  width: 100%;
  margin-top: 12px; /* matches mobile form margin-top — equal gap both sides */
}
.fut-ticker-inner {
  display: flex;
  align-items: center;
}
.fut-ticker-label {
  flex-shrink: 0;
  background: var(--fe-red);
  color: var(--fe-white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fut-ticker-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: fut-live-blink 1.2s ease-in-out infinite;
  display: inline-block;
}
.fut-ticker-track { overflow: hidden; flex: 1; }
.fut-ticker-scroll {
  display: flex;
  animation: fut-ticker 45s linear infinite;
  will-change: transform;
  white-space: nowrap;
  /* 12 unique links × 2 sets = translateX(-50%) for seamless loop */
}
.fut-ticker-scroll a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.84);
  font-size: 0.73rem;
  padding: 8px 20px;
  text-decoration: none;
  transition: color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.fut-ticker-scroll a:hover { color: #ffd166; }
.fut-ticker-scroll a i { color: #ff9999; font-size: 0.68rem; }

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

/* ================================================================
   DESKTOP ≥ 992px — two-column layout
================================================================ */
@media (min-width: 992px) {
  .fut-hero-new {
    min-height: 0; /* flex:1 on .fut-hero-new handles fill */
  }
  .fut-hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px 48px 10px;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
  }
  .fut-hero-content {
    flex: 1 1 auto;
    max-width: 620px;
    text-align: left;
  }
  .fut-hero-tags      { justify-content: flex-start; }
  .fut-hero-ctas      { justify-content: flex-start; }
  .fut-hero-stats     { justify-content: flex-start; flex-wrap: nowrap; max-width: 600px; }
  .fut-search-wrap    { margin: 0 0 14px; }

  /* Show desktop form — pushed to far right */
  .fut-hero-form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 385px;
    max-width: 385px;
    margin-left: auto;
  }

  /* Hide mobile card form */
  .fut-hero-mobile-form { display: none; }
}

@media (min-width: 1280px) {
  .fut-hero-inner { padding: 86px 72px 36px; }
  .fut-hero-form-col { flex: 0 0 400px; max-width: 400px; }
  .fut-hero-content { max-width: 680px; }
}

@media (min-width: 1536px) {
  .fut-hero-inner { padding: 90px 96px 40px; max-width: 1600px; }
  .fut-hero-form-col { flex: 0 0 420px; max-width: 420px; }
}

/* ================================================================
   MOBILE TWEAKS
================================================================ */
@media (max-width: 575.98px) {
  /* Inner: padding-top accounts for fixed navbar (~60px) + small top breathing room */
  .fut-hero-inner { padding: 66px 14px 0; justify-content: flex-start; }

  /* Badge: smaller font + controlled wrap on mobile */
  .fut-hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 0;
    gap: 5px;
    line-height: 1.4;
  }

  /* TITLE: gap below notification, above headline */
  .fut-hero-title {
    font-size: clamp(1.25rem, 6.5vw, 1.7rem);
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 6px;
  }

  /* Sub: tight below title */
  .fut-hero-sub { font-size: 0.8rem; margin-bottom: 10px; line-height: 1.5; }

  /* Tags */
  .fut-hero-tags { margin-bottom: 8px; gap: 5px; }

  /* CTAs */
  .fut-hero-ctas { gap: 7px; margin-bottom: 8px; }
  .fut-btn-primary, .fut-btn-outline { font-size: 0.78rem; padding: 9px 14px; }

  /* Stats: tight, single row */
  .fut-hero-stats { margin-top: 6px; margin-bottom: 0; }
  .fut-stat-num { font-size: 1.05rem; }
  .fut-stat-label { font-size: 0.55rem; letter-spacing: 0.03em; }
  .fut-stat-divider { display: flex; height: 20px; }
  .fut-stat { padding: 0 6px; }

  /* Search */
  .fut-search-wrap { margin-bottom: 8px; }
  .fut-search-btn span { display: none; }
  .fut-search-btn { padding: 13px 16px; }

  /* Mobile form: equal gap above (12px) matching ticker gap below (12px) */
  .fut-hero-mobile-form { margin: 4px auto 0; width: calc(100% - 28px); padding: 8px 12px 7px; }
  .fut-mf-title { margin-bottom: 6px; font-size: 0.68rem; }
  .fut-mf-field input { padding: 7px 10px; font-size: 0.8rem; }
  .fut-mf-submit { padding: 7px 10px; font-size: 0.78rem; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .fut-hero-inner { padding: 76px 24px 16px; justify-content: flex-start; }
  .fut-hero-mobile-form { max-width: 520px; margin: 4px auto 0; }
  .fut-hero-title { font-size: clamp(1.4rem, 4vw, 2rem); }
  .fut-hero-sub { font-size: 0.87rem; margin-bottom: 14px; }
  .fut-hero-tags { margin-bottom: 12px; }
  .fut-hero-ctas { margin-bottom: 12px; }
}

/* ================================================================
   REDUCE MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  .fut-hero-bg-track,
  .fut-ticker-scroll { animation: none !important; }
  .fut-hero-badge .badge-dot,
  .fut-badge-text,
  .fut-ticker-live-dot { animation: none !important; }
}

/* ── Notification blink-swap animation ── */
@keyframes fut-notif-out {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes fut-notif-in {
  0%   { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fut-badge-text {
  display: inline-block;
}

/* Suppress browser native validation styling on mobile form */
#fut-mobile-lead-form input:invalid {
  box-shadow: none;
  outline: none;
  border-color: rgba(255,255,255,0.18);
}
#fut-mobile-lead-form input:focus:invalid {
  border-color: #ffd166;
}