/* =========================================================
   Amigoz Academy landing page
   Plain CSS — same look as the original React page
   Fonts: Inter (body) + Outfit (headings)
   ========================================================= */

:root {
  --navy: #001d4a;
  --navy-deep: #001d4a;
  --ink: #1a233a;
  --blue: #1e417a;
  --blue-card: #f0f7ff;
  --blue-border: #d9e9ff;
  --blue-border-2: #e0efff;
  --red: #d32f2f;
  --red-hover: #b71c1c;
  --red-cta: #e32626;
  --red-cta-hover: #c91e1e;
  --gold: #f5a623;
  --amber: #f59e0b;
  --sky: #38bdf8;
  --popup-bg: #031326;
  --airlines-bg: #050b17;
  --pill-bg: rgba(11, 19, 43, 0.9);
  --bottom-cta-bg: #1a3b84;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --slate-500: #64748b;
  --emerald: #10b981;
  --max-7xl: 80rem;
  --max-5xl: 64rem;
  --max-4xl: 56rem;
  --max-md: 28rem;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: "Outfit", sans-serif;
}

::selection {
  background: #e0e7ff;
  color: #312e81;
}

button,
input,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: currentColor;
}

.page {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
}

/* ---------- Icons sprite helpers ---------- */
.icon-3 {
  width: 0.75rem;
  height: 0.75rem;
}

.icon-3_5 {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-4 {
  width: 1rem;
  height: 1rem;
}

.icon-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-8 {
  width: 2rem;
  height: 2rem;
}

.icon-10 {
  width: 2.5rem;
  height: 2.5rem;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--white);
  color: var(--navy);
  padding: 0.375rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  user-select: none;
  z-index: 30;
}

.marquee-track {
  display: inline-block;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: marqueeAnim 28s linear infinite;
}

@media (min-width: 768px) {
  .marquee-track {
    font-size: 0.875rem;
  }
}

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

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 600px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

@media (min-width: 1024px) {
  .hero-bg img {
    object-position: left;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(78, 96, 195, 0), #001d4a 82% 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-7xl);
  margin: 0 auto;
  padding: 0 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-top: 0.5rem;
}

.hero-logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  background: var(--white);
}

@media (min-width: 768px) {
  .hero-logo {
    height: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    height: 4rem;
  }
}

.hero-content {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .hero-content {
    padding-top: 250px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.hero-copy {
  flex: 1;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.hero-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.625;
  margin: 0 0 1.5rem;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 0.875rem;
  }
}

/* ---------- Lead form ---------- */
.enquiry-form {
  width: 100%;
  max-width: var(--max-md);
  scroll-margin-top: 6rem;
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--ink);
}

@media (min-width: 768px) {
  .form-card {
    padding: 1.25rem;
  }
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .form-heading {
    font-size: 1.875rem;
  }
}

.form-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0.25rem 0 0;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  position: relative;
}

.field-wide {
  grid-column: span 2;
}

.field-icon {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  color: #ef4444;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}

.field-star {
  position: absolute;
  right: 0.5rem;
  top: 0.375rem;
  color: #f87171;
  font-weight: 700;
  user-select: none;
  font-size: 10px;
}

.field-chevron {
  position: absolute;
  right: 1rem;
  top: 0.875rem;
  color: var(--gray-400);
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}

.field input,
.field select {
  width: 100%;
  padding: 0.75rem 1.5rem 0.75rem 2.75rem;
  background: var(--gray-100);
  border: none;
  border-radius: 0.75rem;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus {
  box-shadow: 0 0 0 1px var(--blue);
}

.field input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.field.is-invalid input,
.field.is-invalid select {
  background: #fef2f2;
  box-shadow: 0 0 0 1px #d32f2f;
}

.field-error {
  display: none;
  color: #d32f2f;
  font-size: 10px;
  font-weight: 700;
  margin: 4px 2px 0;
  line-height: 1.3;
}

.field.is-invalid .field-error {
  display: block;
}

.form-alert {
  display: none;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-alert.is-visible {
  display: block;
}

.scholarship-banner {
  background: rgba(245, 166, 35, 0.15);
  color: var(--navy);
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: all 0.15s ease;
}

@media (min-width: 640px) {
  .btn-submit {
    font-size: 16px;
  }
}

.btn-submit:hover {
  background: var(--red-hover);
}

.btn-submit:active {
  transform: scale(0.99);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hurry-text {
  font-size: 11px;
  text-align: center;
  font-weight: 700;
  color: #dc2626;
  margin: 0;
}

.form-success {
  padding: 2rem 1rem;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.form-success.is-visible {
  display: flex;
}

.success-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
}

.form-success p {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
  max-width: 20rem;
  margin: 0;
}

.reset-form-btn {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Countdown ---------- */
.countdown {
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, #0f172a, #001d4a, #1e293b);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 0.75rem 0.875rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: var(--white);
  position: relative;
}

.countdown-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #fbbf24, transparent);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.countdown-live {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ping-wrap {
  position: relative;
  display: flex;
  height: 0.625rem;
  width: 0.625rem;
}

.ping-ring {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background: #f87171;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.625rem;
  width: 0.625rem;
  background: #ef4444;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.countdown-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fcd34d;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .countdown-label {
    font-size: 0.75rem;
  }
}

.flame-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #fbbf24;
  fill: #fbbf24;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.closing-badge {
  background: rgba(220, 38, 38, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

@media (min-width: 640px) {
  .countdown-digits {
    gap: 0.75rem;
  }
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-value {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  width: 3.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

@media (min-width: 640px) {
  .time-value {
    width: 4rem;
  }
}

.time-value.is-secs {
  border-color: rgba(251, 191, 36, 0.4);
}

.time-value span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .time-value span {
    font-size: 1.5rem;
  }
}

.time-value.is-secs span {
  color: #fcd34d;
}

.time-label {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.time-label.is-secs {
  color: rgba(253, 224, 71, 0.8);
}

.time-colon {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fbbf24;
  margin-top: -0.875rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.countdown-meta {
  margin-top: 0.625rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
  .countdown-meta {
    font-size: 11px;
  }
}

.countdown-seats {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6ee7b7;
}

.zap-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: #fbbf24;
  fill: #fbbf24;
}

.booked-pct {
  color: rgba(253, 230, 138, 0.9);
  font-weight: 700;
}

.progress-track {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  height: 0.375rem;
  margin-top: 0.25rem;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(to right, #fbbf24, #f97316, #ef4444);
  height: 100%;
  width: 88%;
  border-radius: 9999px;
  transition: all 1s;
}

/* ---------- Trust badges ---------- */
.badges {
  width: 100%;
  margin-top: -1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: var(--max-4xl);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .badges {
    grid-template-columns: repeat(4, 1fr);
    margin-left: 0;
    margin-right: auto;
  }
}

.badge {
  background: var(--white);
  backdrop-filter: blur(12px);
  color: var(--blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 10px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

@media (min-width: 768px) {
  .badge {
    font-size: 0.75rem;
  }
}

.badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--blue);
  fill: var(--blue);
}

/* =========================================================
   AIRLINES
   ========================================================= */
.airlines {
  width: 100%;
  background: var(--airlines-bg);
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .airlines {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .airlines {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.airlines-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: rgba(37, 99, 235, 0.1);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  border-radius: 9999px;
}

.airlines-inner {
  max-width: var(--max-5xl);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.airlines-title {
  color: var(--white);
  text-align: center;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .airlines-title {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .airlines-title {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .airlines-title {
    font-size: 1.25rem;
  }
}

.airlines-mobile {
  width: 100%;
  max-width: var(--max-md);
  margin: 0 auto;
}

.airlines-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  width: 100%;
}

@media (min-width: 640px) {
  .airlines-mobile-grid {
    gap: 0.875rem;
  }
}

.airlines-mobile-last {
  grid-column: span 2;
  display: flex;
  justify-content: center;
}

.airlines-mobile-last .airline-pill-wrap {
  width: 100%;
  max-width: calc(50% - 5px);
}

@media (min-width: 640px) {
  .airlines-mobile-last .airline-pill-wrap {
    max-width: 200px;
  }
}

.airlines-desktop {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .airlines-mobile {
    display: none;
  }
  .airlines-desktop {
    display: flex;
  }
}

.airlines-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.airline-fixed {
  width: 210px;
}

.airline-pill {
  width: 100%;
  height: 54px;
  background: var(--pill-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
  border-radius: 18px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.4);
  cursor: default;
}

@media (min-width: 640px) {
  .airline-pill {
    height: 58px;
    border-radius: 20px;
    padding: 0 1rem;
    gap: 0.875rem;
  }
}

@media (min-width: 768px) {
  .airline-pill {
    padding: 0 1.25rem;
  }
}

.airline-pill:hover {
  background: #121e42;
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.airline-name {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .airline-name {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .airline-name {
    font-size: 16px;
  }
}

.airline-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  padding: 0.375rem;
}

@media (min-width: 640px) {
  .airline-logo {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.airline-logo svg {
  width: 100%;
  height: 100%;
}

.logo-indigo {
  background: #001c9e;
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.logo-airindia {
  background: #8e0b1a;
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.logo-spicejet {
  background: #a6192e;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.logo-vistara {
  background: #3d1022;
  border: 1px solid rgba(251, 113, 133, 0.2);
}
.logo-akasa {
  background: #3f526b;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.logo-qatar {
  background: #5c0632;
  border: 1px solid rgba(253, 164, 175, 0.2);
}
.logo-emirates {
  background: #d71921;
  border: 1px solid rgba(252, 165, 165, 0.2);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.section-white {
  background: var(--white);
}

.why {
  padding: 2.5rem 0;
  background: var(--white);
}

.wrap-7xl {
  max-width: var(--max-7xl);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .wrap-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .wrap-7xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.wrap-4xl {
  max-width: var(--max-4xl);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .wrap-4xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .wrap-4xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.eyebrow {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
  .eyebrow {
    font-size: 0.875rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.why-head {
  text-align: left;
  margin-bottom: 1.5rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.usp-card {
  background: var(--blue-card);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: box-shadow 0.15s;
  min-height: 160px;
}

@media (min-width: 768px) {
  .usp-card {
    padding: 1.5rem;
    min-height: 0;
  }
}

.usp-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.usp-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.usp-icon-wrap .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .usp-icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.25rem;
  }
  .usp-icon-wrap .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.usp-card h3 {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 0.25rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .usp-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.usp-card p {
  color: var(--slate-500);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .usp-card p {
    font-size: 0.875rem;
  }
}

.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-red {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: all 0.15s;
}

@media (min-width: 768px) {
  .btn-red {
    width: auto;
    font-size: 1rem;
  }
}

.btn-red:hover {
  background: var(--red-hover);
}

.btn-red:active {
  transform: scale(0.95);
}

.urgency-note {
  color: #dc2626;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
}

@media (min-width: 768px) {
  .urgency-note {
    font-size: 0.875rem;
  }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  padding: 2.5rem 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
}

.reviews-head {
  margin-bottom: 1.5rem;
  text-align: left;
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.reviews-meta span {
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .reviews-meta span {
    font-size: 0.875rem;
  }
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  width: 0.875rem;
  height: 0.875rem;
  color: #facc15;
  fill: #facc15;
}

@media (min-width: 768px) {
  .star.star-lg {
    width: 1rem;
    height: 1rem;
  }
}

.reviews-scroller-wrap {
  position: relative;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .reviews-scroller-wrap {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .reviews-scroller-wrap {
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.reviews-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.review-card {
  flex: none;
  width: 85vw;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 32px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.15s;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .review-card {
    width: 380px;
  }
}

@media (min-width: 768px) {
  .review-card {
    width: 420px;
    padding: 1.75rem;
  }
}

.review-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.review-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(30, 65, 122, 0.2);
}

.review-comment {
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.625;
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .review-comment {
    font-size: 0.875rem;
  }
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.review-person img {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(30, 65, 122, 0.2);
}

.review-person h4 {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}

.review-person p {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

/* =========================================================
   TRAINING
   ========================================================= */
.training {
  padding: 3rem 0;
  background: var(--white);
  position: relative;
  border-top: 1px solid var(--gray-100);
}

.training-head {
  margin-bottom: 2rem;
  text-align: left;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .training-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .training-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .training-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.training-card {
  background: var(--blue-card);
  border: 1px solid var(--blue-border-2);
  border-radius: 24px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.15s;
}

@media (min-width: 768px) {
  .training-card {
    flex-direction: row;
    padding: 2rem;
    gap: 1.5rem;
  }
}

.training-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.training-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.training-icon-wrap .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue);
}

@media (min-width: 768px) {
  .training-icon-wrap {
    width: 4rem;
    height: 4rem;
  }
  .training-icon-wrap .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.training-card h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

@media (min-width: 768px) {
  .training-card h4 {
    font-size: 1.25rem;
  }
}

.training-card p {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.625;
  margin: 0;
}

@media (min-width: 768px) {
  .training-card p {
    font-size: 0.875rem;
  }
}

.training-cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .training .btn-red,
  .salary .btn-red,
  .roadmap .btn-red,
  .apply .btn-red {
    width: auto;
  }
}

/* =========================================================
   ELIGIBILITY
   ========================================================= */
.eligibility {
  padding: 3rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.eligibility-inner {
  max-width: var(--max-4xl);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .eligibility-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .eligibility-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.eligibility-head {
  text-align: center;
  margin-bottom: 2rem;
}

.eligibility-head .eyebrow {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  font-size: 10px;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .eligibility-head .eyebrow {
    font-size: 0.75rem;
  }
}

.eligibility-head h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  .eligibility-head h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .eligibility-head h2 {
    font-size: 2.25rem;
  }
}

.eligibility-card {
  background: rgba(30, 65, 122, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

@media (min-width: 768px) {
  .eligibility-card {
    padding: 2rem;
  }
}

.eligibility-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2.5rem;
  row-gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .eligibility-list {
    grid-template-columns: 1fr 1fr;
  }
}

.eligibility-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .eligibility-list li {
    border-bottom: 0;
  }
}

.check-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #10b981;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-circle .icon {
  width: 1rem;
  height: 1rem;
  fill: #10b981;
  color: var(--white);
  stroke: var(--white);
}

.eligibility-list span:first-of-type {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.375;
  display: block;
}

@media (min-width: 768px) {
  .eligibility-list span:first-of-type {
    font-size: 1.125rem;
  }
}

.eligibility-list span:last-of-type {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375;
  display: block;
}

@media (min-width: 768px) {
  .eligibility-list span:last-of-type {
    font-size: 0.875rem;
  }
}

.scholarship-callout {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fde68a;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .scholarship-callout {
    font-size: 0.875rem;
  }
}

.eligibility-foot {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-align: center;
  max-width: 32rem;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .eligibility-foot {
    font-size: 0.875rem;
  }
}

.eligibility .btn-red {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  letter-spacing: 0.025em;
}

@media (min-width: 640px) {
  .eligibility .btn-red {
    width: auto;
  }
}

/* =========================================================
   SALARY
   ========================================================= */
.salary {
  padding: 3rem 0;
  background: var(--white);
  color: var(--ink);
}

.salary-head {
  margin-bottom: 2rem;
  text-align: left;
}

.salary-head .eyebrow {
  color: var(--navy);
  letter-spacing: 0.2em;
}

.salary-head h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
}

@media (min-width: 768px) {
  .salary-head h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .salary-head h2 {
    font-size: 2.25rem;
  }
}

.table-wrap {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  margin-bottom: 1.5rem;
  background: var(--white);
}

.salary-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.salary-table thead {
  background: var(--blue);
  color: var(--white);
}

.salary-table th {
  padding: 0.75rem 1rem;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .salary-table th {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }
}

.salary-table th.center {
  text-align: center;
}

.salary-table th.right {
  text-align: right;
}

.salary-table tbody tr {
  border-top: 1px solid var(--gray-100);
}

.salary-table tbody tr:hover {
  background: rgba(239, 246, 255, 0.5);
}

.salary-table td {
  padding: 1rem;
}

@media (min-width: 768px) {
  .salary-table td {
    padding: 1rem 1.5rem;
  }
}

.role-title {
  color: var(--navy);
  font-weight: 900;
  font-size: 0.875rem;
  display: block;
}

@media (min-width: 768px) {
  .role-title {
    font-size: 1.125rem;
  }
}

.role-sub {
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .role-sub {
    font-size: 0.875rem;
  }
}

.pill-start {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .pill-start {
    font-size: 1rem;
  }
}

.pill-later {
  display: inline-block;
  background: rgba(30, 65, 122, 0.1);
  color: var(--blue);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .pill-later {
    font-size: 1rem;
  }
}

.td-center {
  text-align: center;
}

.td-right {
  text-align: right;
}

.salary-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .salary-note {
    font-size: 0.875rem;
  }
}

.salary-cta,
.roadmap-cta,
.apply-cta {
  display: flex;
  justify-content: center;
}

/* =========================================================
   ROADMAP
   ========================================================= */
.roadmap {
  padding: 3rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.roadmap-head {
  margin-bottom: 2.5rem;
  text-align: left;
}

.roadmap-head h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  .roadmap-head h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .roadmap-head h2 {
    font-size: 3rem;
  }
}

.timeline {
  position: relative;
  padding: 0 0.5rem;
}

.timeline-line {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  bottom: 2rem;
  width: 2px;
  background: rgba(26, 35, 58, 0.2);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 2.25rem;
  }
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .timeline-item {
    gap: 1.5rem;
  }
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border: 2px solid var(--white);
  background: var(--blue);
}

@media (min-width: 768px) {
  .step-num {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
}

.step-card {
  flex: 1;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: box-shadow 0.15s;
}

@media (min-width: 768px) {
  .step-card {
    padding: 1.5rem;
  }
}

.step-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 0.25rem;
  color: var(--ink);
}

@media (min-width: 768px) {
  .step-card h4 {
    font-size: 1.25rem;
  }
}

.step-card p {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}

@media (min-width: 768px) {
  .step-card p {
    font-size: 1rem;
  }
}

.roadmap-cta {
  margin-top: 2.5rem;
}

/* =========================================================
   APPLICATION STEPS
   ========================================================= */
.apply {
  padding: 3rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.apply-inner {
  max-width: var(--max-4xl);
  margin: 0 auto;
  padding: 0 1rem;
}

.apply-head {
  text-align: center;
  margin-bottom: 2rem;
}

.apply-head .eyebrow {
  color: var(--red);
  letter-spacing: 0.2em;
  font-style: italic;
  font-family: "Outfit", sans-serif;
}

.apply-head h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .apply-head h2 {
    font-size: 3rem;
  }
}

.apply-table-wrap {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 4px solid var(--blue);
  margin-bottom: 2rem;
}

.apply-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.apply-table thead tr {
  background: var(--blue);
  color: var(--white);
}

.apply-table th {
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.apply-table th:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  width: 33.333%;
}

@media (min-width: 768px) {
  .apply-table th {
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
  }
}

.apply-table tbody tr {
  border-top: 1px solid var(--gray-200);
}

.apply-table tbody tr:hover {
  background: rgba(239, 246, 255, 0.4);
}

.apply-table td {
  padding: 1rem;
}

@media (min-width: 768px) {
  .apply-table td {
    padding: 1.25rem 1.5rem;
  }
}

.apply-table td:first-child {
  border-right: 1px solid var(--gray-200);
  background: rgba(249, 250, 251, 0.5);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--blue);
}

@media (min-width: 768px) {
  .step-label {
    font-size: 1.125rem;
  }
}

.apply-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.625;
  margin: 0;
}

@media (min-width: 768px) {
  .apply-desc {
    font-size: 1rem;
  }
}

.apply .btn-red {
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  gap: 0.75rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 1.5rem 1rem 4rem;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--gray-100);
}

.faq-inner {
  max-width: var(--max-4xl);
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-head .eyebrow {
  letter-spacing: 0.2em;
}

.faq-head h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  font-family: "Outfit", sans-serif;
}

@media (min-width: 768px) {
  .faq-head h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .faq-head h2 {
    font-size: 3rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.3s;
}

.faq-btn {
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-btn {
    padding: 1.5rem;
  }
}

.faq-question {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.25;
}

.faq-btn:hover .faq-question {
  color: var(--blue);
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.125rem;
  }
}

.faq-toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--gray-400);
  transition: all 0.3s;
}

.faq-btn:hover .faq-toggle {
  background: var(--gray-100);
}

.faq-item.is-open .faq-toggle {
  color: var(--blue);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  animation: fadeIn 0.2s ease;
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (min-width: 768px) {
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

.faq-answer-line {
  height: 1px;
  width: 100%;
  background: var(--gray-100);
  margin-bottom: 1rem;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.625;
  margin: 0;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .faq-answer p {
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.faq-quote {
  color: #b91c1c;
  font-weight: 900;
  font-size: 0.75rem;
  text-align: center;
  max-width: 32rem;
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-quote {
    font-size: 1rem;
  }
}

.faq .btn-red {
  width: auto;
  font-weight: 900;
  letter-spacing: 0.025em;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  gap: 0.75rem;
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */
.bottom-cta {
  padding: 4rem 1rem;
  background: var(--bottom-cta-bg);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

@media (min-width: 640px) {
  .bottom-cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .bottom-cta {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.bottom-cta-inner {
  max-width: var(--max-4xl);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.bottom-cta h2 {
  font-size: 1.875rem;
  font-weight: 900;
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .bottom-cta h2 {
    font-size: 3rem;
  }
}

.bottom-cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .bottom-cta-sub {
    font-size: 1.25rem;
  }
}

.limited-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
  .limited-pill {
    font-size: 1rem;
  }
}

.limited-pill .bolt {
  color: #dc2626;
}

.bottom-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--max-md);
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .bottom-btns {
    flex-direction: row;
    max-width: 42rem;
  }
}

.btn-bottom {
  flex: 1;
  background: var(--red-cta);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

@media (min-width: 768px) {
  .btn-bottom {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

.btn-bottom:hover {
  background: var(--red-cta-hover);
  transform: translateY(-2px);
}

.btn-bottom:active {
  transform: scale(0.95);
}

.reassure,
.stats-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
  font-family: "Inter", sans-serif;
}

.reassure {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stats-line {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .reassure,
  .stats-line {
    font-size: 1rem;
  }
}

.pipe {
  opacity: 0.4;
}

/* =========================================================
   SUCCESS MODAL
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--white);
  color: var(--ink);
  max-width: 28rem;
  width: 100%;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .modal {
    padding: 2rem;
  }
}

.modal-close-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--gray-400);
  padding: 0.5rem;
  border-radius: 9999px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
}

.modal-close-x:hover {
  color: var(--gray-600);
  background: var(--gray-100);
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.modal-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
}

.modal h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
}

.modal-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  margin: 0 0 1rem;
  line-height: 1.625;
}

.modal-text strong {
  color: var(--navy);
}

.modal-centres {
  width: 100%;
  background: var(--blue-card);
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--blue-border);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
}

.modal-close-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: all 0.15s;
}

.modal-close-btn:hover {
  background: var(--red-hover);
}

.modal-close-btn:active {
  transform: scale(0.95);
}

/* =========================================================
   LIVE BOOKING POPUP
   ========================================================= */
.live-popup-wrap {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  pointer-events: none;
  max-width: 92vw;
}

@media (min-width: 640px) {
  .live-popup-wrap {
    max-width: 28rem;
  }
}

.live-popup {
  pointer-events: auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--popup-bg);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--white);
  padding: 0.625rem 0.75rem 0.625rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .live-popup {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.live-popup.is-visible {
  display: flex;
  animation: popupIn 0.35s ease-out;
}

.live-popup.is-hiding {
  display: flex;
  animation: popupOut 0.35s ease-out forwards;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popupOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }
}

.live-dot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.live-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: #38bdf8;
}

.live-dot-ping {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.3);
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
  padding-right: 0.25rem;
  user-select: none;
}

.live-line {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

@media (min-width: 640px) {
  .live-line {
    font-size: 14px;
  }
}

.live-name {
  font-weight: 700;
  color: var(--sky);
}

.live-city {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.live-time {
  font-size: 11px;
  font-weight: 600;
  color: #facc15;
  margin: 0.125rem 0 0;
}

@media (min-width: 640px) {
  .live-time {
    font-size: 12px;
  }
}

.live-dismiss {
  color: rgba(255, 255, 255, 0.3);
  padding: 0.25rem;
  border-radius: 9999px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.25rem;
  display: flex;
}

.live-dismiss:hover {
  color: rgba(255, 255, 255, 0.8);
}

.live-dismiss .icon {
  width: 0.875rem;
  height: 0.875rem;
}
