/* ============================================================
   WorldIDP — FAQ ("The Answer Engine")
   Standalone page styles. Scoped under .fq- to avoid any clash
   with styles.css. Relies on the shared design tokens declared
   on :root in styles.css (--blue-*, --ink, --muted, --soft …).
   ============================================================ */

.fq-page {
  --fq-navy: #07142a;
  --fq-navy-2: #0a1b3d;
  --fq-edge: rgba(16, 26, 51, 0.1);
  --fq-edge-2: rgba(16, 26, 51, 0.06);
  --fq-glow: rgba(21, 144, 255, 0.5);
  --fq-card: #ffffff;
  --fq-rad: 18px;
  --fq-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* keep the hero flush to the very top, under the fixed header */
.fq-page main { padding-top: 0; }

/* ---------- shared section frame ---------------------------- */
.fq-wrap {
  width: var(--container);
  margin-inline: auto;
}
.fq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-700);
}
.fq-kicker .fq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36d27a;
  box-shadow: 0 0 0 0 rgba(54, 210, 122, 0.7);
  animation: fq-live 2.4s ease-out infinite;
}
@keyframes fq-live {
  0% { box-shadow: 0 0 0 0 rgba(54, 210, 122, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(54, 210, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(54, 210, 122, 0); }
}

/* ============================================================
   HERO
   ============================================================ */
.fq-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #eaf2ff;
}
.fq-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  z-index: -3;
  transform: scale(1.06);
  animation: fq-kenburns 22s ease-out forwards;
}
@keyframes fq-kenburns {
  to { transform: scale(1); }
}
.fq-hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      104deg,
      rgba(5, 11, 26, 0.95) 0%,
      rgba(5, 11, 26, 0.78) 34%,
      rgba(5, 11, 26, 0.42) 62%,
      rgba(5, 11, 26, 0.12) 88%
    ),
    linear-gradient(to top, rgba(5, 11, 26, 0.92) 0%, transparent 46%);
}
.fq-hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 30%, rgba(21, 144, 255, 0.22), transparent 42%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* animated travel-route overlay */
.fq-hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}
.fq-hr-path {
  stroke: url(#fqRoute);
  stroke-width: 2;
  stroke-dasharray: 5 12;
  fill: none;
  stroke-linecap: round;
  animation: fq-dash 9s linear infinite;
}
@keyframes fq-dash { to { stroke-dashoffset: -340; } }
.fq-hr-pin .fq-ping {
  fill: none;
  stroke: #7ec0ff;
  stroke-width: 2;
  transform-origin: center;
  transform-box: fill-box;
  animation: fq-ping 2.8s ease-out infinite;
  animation-delay: var(--d, 0s);
}
.fq-hr-pin .fq-core { fill: #cfe6ff; }
@keyframes fq-ping {
  0% { opacity: 0.9; transform: scale(0.4); }
  80%, 100% { opacity: 0; transform: scale(2.1); }
}

.fq-hero-inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  padding: 11rem 0 4.2rem;
  max-width: 100%;
}
.fq-hero-stack { max-width: 46rem; }
.fq-hero .fq-kicker {
  color: #bfe0ff;
  margin: 0 0 1.1rem;
}
.fq-hero .fq-kicker { opacity: 0; animation: fq-rise 0.7s var(--fq-ease) 0.05s forwards; }
.fq-hero h1 {
  font-size: clamp(2.5rem, 1.4rem + 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 1.1rem;
  color: #ffffff;
  text-wrap: balance;
  opacity: 0;
  animation: fq-rise 0.8s var(--fq-ease) 0.16s forwards;
}
.fq-hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, #8fc7ff, #d9ecff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fq-hero-sub {
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.22rem);
  line-height: 1.6;
  color: #c4d6f2;
  max-width: 38rem;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fq-rise 0.8s var(--fq-ease) 0.28s forwards;
}

/* hero search — the page's thesis */
.fq-search {
  position: relative;
  max-width: 38rem;
  opacity: 0;
  animation: fq-rise 0.8s var(--fq-ease) 0.4s forwards;
}
.fq-search-field {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 0.5rem 0.5rem 0.5rem 1.15rem;
  box-shadow:
    0 24px 60px rgba(4, 10, 26, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.3s var(--fq-ease), transform 0.3s var(--fq-ease);
}
.fq-search-field:focus-within {
  transform: translateY(-2px);
  box-shadow:
    0 28px 70px rgba(4, 10, 26, 0.55),
    0 0 0 2px var(--blue-500),
    0 0 0 7px rgba(79, 134, 255, 0.22);
}
.fq-search-field > svg {
  width: 22px;
  height: 22px;
  color: var(--blue-700);
  flex: none;
}
.fq-search-field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 0.7rem 0;
  min-width: 0;
}
.fq-search-field input::placeholder { color: #8a99b5; }
.fq-search-go {
  flex: none;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 8px 20px rgba(7, 88, 216, 0.4);
  transition: transform 0.2s var(--fq-ease), box-shadow 0.2s var(--fq-ease);
}
.fq-search-go:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(7, 88, 216, 0.5); }
.fq-search-clear {
  position: absolute;
  right: 6.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #e7eefb;
  color: #5a6a87;
}
.fq-search.has-text .fq-search-clear { display: inline-flex; }
.fq-search-go:disabled { opacity: 0.55; cursor: default; box-shadow: none; }

.fq-suggests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
  opacity: 0;
  animation: fq-rise 0.8s var(--fq-ease) 0.5s forwards;
}
.fq-suggests span { color: #93a7c9; font-size: 0.82rem; align-self: center; }
.fq-suggests button {
  border: 1px solid rgba(180, 210, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: #d6e6ff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.fq-suggests button:hover {
  background: rgba(79, 134, 255, 0.22);
  border-color: rgba(180, 210, 255, 0.6);
  transform: translateY(-1px);
}

@keyframes fq-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STICKY CATEGORY BAR
   ============================================================ */
.fq-sticky {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--fq-edge);
  transform: translateY(-130%);
  opacity: 0;
  transition: transform 0.45s var(--fq-ease), opacity 0.3s ease;
}
.fq-sticky.is-shown { transform: translateY(0); opacity: 1; }
.fq-sticky-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.fq-sticky-inner::-webkit-scrollbar { display: none; }
.fq-sticky-lead {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex: none;
}
.fq-jump {
  flex: none;
  border: 1px solid var(--fq-edge);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.46rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s var(--fq-ease);
}
.fq-jump:hover { border-color: var(--blue-500); color: var(--blue-700); }
.fq-jump.is-active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
  box-shadow: 0 6px 16px rgba(7, 88, 216, 0.32);
}

/* ============================================================
   BODY — featured strip + route spine + categories
   ============================================================ */
.fq-body { padding: 4.5rem 0 1rem; position: relative; }

.fq-featured { margin-bottom: 4rem; }
.fq-featured-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.fq-featured-head h2 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.fq-featured-head h2 em {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue-700);
}
.fq-featured-note { color: var(--muted); font-size: 0.92rem; }
.fq-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
}
.fq-pop {
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--fq-edge);
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--fq-ease), box-shadow 0.28s var(--fq-ease), border-color 0.28s;
}
.fq-pop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(21, 144, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fq-pop:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 134, 255, 0.5);
  box-shadow: 0 22px 44px rgba(10, 27, 61, 0.13);
}
.fq-pop:hover::after { opacity: 1; }
.fq-pop-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.fq-pop-q {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.32;
  color: var(--ink);
}
.fq-pop-go {
  margin-top: auto;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.fq-pop-go span { transition: transform 0.25s var(--fq-ease); }
.fq-pop:hover .fq-pop-go span { transform: translateX(4px); }

/* the journey layout: spine + categories */
.fq-journey {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 2.4rem;
  position: relative;
}
.fq-spine {
  position: relative;
  width: 3px;
  margin-left: 7px;
  border-radius: 3px;
  background: linear-gradient(to bottom, transparent, var(--fq-edge) 6%, var(--fq-edge) 94%, transparent);
}
.fq-spine-fill {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: var(--fill, 0%);
  border-radius: 3px;
  background: linear-gradient(to bottom, #7ec0ff, var(--blue-600), var(--blue-800));
  box-shadow: 0 0 14px rgba(21, 144, 255, 0.55);
  transition: height 0.15s linear;
}
.fq-spine-bead {
  position: absolute;
  left: 50%;
  top: var(--fill, 0%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-600);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(21, 144, 255, 0.18), 0 4px 10px rgba(7, 88, 216, 0.4);
  transition: top 0.15s linear;
}

.fq-cats { display: flex; flex-direction: column; gap: 3.4rem; }
.fq-cat-block { scroll-margin-top: 130px; }
.fq-cat-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}
.fq-cat-ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-800));
  box-shadow: 0 10px 22px rgba(7, 88, 216, 0.32);
}
.fq-cat-ic svg { width: 23px; height: 23px; }
.fq-cat-titles h2 {
  font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.fq-cat-titles p { margin: 0.18rem 0 0; color: var(--muted); font-size: 0.9rem; }

/* ---------- accordion items -------------------------------- */
.fq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.fq-item {
  border: 1px solid var(--fq-edge);
  border-radius: var(--fq-rad);
  background: var(--fq-card);
  overflow: hidden;
  transition:
    border-color 0.3s var(--fq-ease),
    box-shadow 0.3s var(--fq-ease),
    transform 0.5s var(--fq-ease),
    opacity 0.5s var(--fq-ease);
}
/* scroll reveal */
.fq-item.fq-reveal { opacity: 0; transform: translateY(18px); }
.fq-item.fq-reveal.is-in { opacity: 1; transform: translateY(0); }

.fq-item:hover { border-color: rgba(79, 134, 255, 0.45); }
.fq-item.is-open {
  border-color: rgba(79, 134, 255, 0.55);
  box-shadow: 0 18px 40px rgba(10, 27, 61, 0.1);
}
.fq-q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.18rem 1.3rem;
  color: var(--ink);
}
.fq-q-text {
  flex: 1;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.fq-q-text mark {
  background: rgba(255, 214, 102, 0.55);
  color: inherit;
  border-radius: 3px;
  padding: 0 1px;
}
/* plus → minus morph icon */
.fq-ic {
  flex: none;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #eef4ff;
  transition: background 0.3s var(--fq-ease);
}
.fq-item.is-open .fq-ic { background: var(--blue-700); }
.fq-ic i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2.4px;
  border-radius: 2px;
  background: var(--blue-700);
  transform: translate(-50%, -50%);
  transition: transform 0.34s var(--fq-ease), background 0.3s ease;
}
.fq-ic i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.fq-item.is-open .fq-ic i { background: #fff; }
.fq-item.is-open .fq-ic i:last-child { transform: translate(-50%, -50%) rotate(0deg); }

.fq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--fq-ease);
}
.fq-item.is-open .fq-a { grid-template-rows: 1fr; }
.fq-a-inner { overflow: hidden; }
.fq-a-inner > div {
  padding: 0 1.3rem 1.35rem;
  border-top: 1px solid transparent;
}
.fq-a p {
  margin: 0.2rem 0 0;
  color: #41506e;
  line-height: 1.62;
  font-size: 0.98rem;
}
.fq-a p + p { margin-top: 0.7rem; }
.fq-a strong { color: var(--ink); font-weight: 700; }
.fq-a a { color: var(--blue-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* empty state */
.fq-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: 1rem;
  display: none;
}
.fq-empty.is-shown { display: block; }
.fq-empty strong { color: var(--ink); }
.fq-empty a { color: var(--blue-700); font-weight: 700; }

/* category hidden during a global search */
.fq-cat-block[hidden] { display: none; }

/* during an active search, collapse the journey scaffolding */
.fq-page.fq-searching .fq-journey { grid-template-columns: 1fr; }
.fq-spine[hidden],
.fq-featured[hidden] { display: none; }
.fq-item.fq-flash { box-shadow: 0 0 0 3px rgba(79, 134, 255, 0.55), 0 18px 40px rgba(10, 27, 61, 0.14); }

/* ============================================================
   COUNTRY GRID
   ============================================================ */
.fq-countries {
  margin-top: 5rem;
  padding: 3rem 0 3.4rem;
  border-radius: 28px;
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(21, 144, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #0a1b3d, #07142a);
  color: #e8f1ff;
  position: relative;
  overflow: hidden;
}
.fq-countries-inner { width: min(1100px, calc(100% - 3rem)); margin-inline: auto; }
.fq-countries .fq-kicker { color: #8fc7ff; }
.fq-countries h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0.7rem 0 0.5rem;
  color: #fff;
}
.fq-countries h2 em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: #9fceff; }
.fq-countries-lead { color: #aec5e6; max-width: 40rem; margin: 0 0 1.8rem; line-height: 1.6; }
.fq-cgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.7rem;
}
.fq-country {
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(143, 199, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  color: #eaf2ff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s var(--fq-ease), border-color 0.25s, transform 0.25s var(--fq-ease);
}
.fq-country:hover {
  background: rgba(79, 134, 255, 0.16);
  border-color: rgba(143, 199, 255, 0.5);
  transform: translateY(-2px);
}
.fq-country.is-active {
  background: rgba(79, 134, 255, 0.22);
  border-color: #7ec0ff;
}
.fq-flag { font-size: 1.3rem; line-height: 1; flex: none; }
.fq-country-go { margin-left: auto; color: #8fc7ff; transition: transform 0.25s var(--fq-ease); }
.fq-country.is-active .fq-country-go { transform: rotate(90deg); }

.fq-country-panel {
  margin-top: 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(143, 199, 255, 0.22);
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--fq-ease);
}
.fq-country-panel.is-open { grid-template-rows: 1fr; }
.fq-country-panel > div { overflow: hidden; }
.fq-country-panel-body { padding: 1.3rem 1.4rem; }
.fq-country-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fq-country-panel p { margin: 0; color: #bcd2ef; line-height: 1.62; font-size: 0.96rem; }
.fq-country-hint { margin-top: 1.1rem; font-size: 0.85rem; color: #8ea6c9; }
.fq-hint-row {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(126, 192, 255, 0.12), rgba(36, 86, 230, 0.1));
  border: 1px solid rgba(143, 199, 255, 0.24);
}
.fq-hint-copy { flex: 1; min-width: 240px; }
.fq-hint-lead { margin: 0 0 0.25rem; font-size: 1.08rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.fq-hint-row .fq-country-hint { margin: 0; font-size: 0.92rem; color: #aec5e6; line-height: 1.55; }
.fq-hint-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.15rem 1.9rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: #07142a;
  background: linear-gradient(180deg, #d7ecff, #7ec0ff);
  box-shadow: 0 16px 36px rgba(21, 144, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--fq-ease), box-shadow 0.22s var(--fq-ease);
}
.fq-hint-cta svg { width: 21px; height: 21px; color: #0a4fb0; }
.fq-hint-cta span { transition: transform 0.22s var(--fq-ease); }
.fq-hint-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-18deg);
  animation: fq-shine 4.5s ease-in-out infinite;
}
@keyframes fq-shine {
  0%, 62% { left: -120%; }
  82%, 100% { left: 160%; }
}
.fq-hint-cta:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 24px 48px rgba(21, 144, 255, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
.fq-hint-cta:hover span { transform: translateX(5px); }

/* ============================================================
   STILL-NEED-HELP CTA
   ============================================================ */
.fq-help {
  margin: 4.5rem 0 5rem;
  border-radius: 24px;
  border: 1px solid var(--fq-edge);
  background: linear-gradient(120deg, #ffffff, #f3f8ff);
  padding: 2.4rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.fq-help::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(21, 144, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.fq-help-ic {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-800));
  box-shadow: 0 12px 26px rgba(7, 88, 216, 0.34);
}
.fq-help-ic svg { width: 27px; height: 27px; }
.fq-help-text { flex: 1; min-width: 230px; }
.fq-help-text h2 { margin: 0 0 0.3rem; font-size: 1.32rem; font-weight: 800; letter-spacing: -0.01em; }
.fq-help-text p { margin: 0; color: var(--muted); line-height: 1.55; }
.fq-help-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.fq-help-btn {
  border-radius: 13px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.2s var(--fq-ease), box-shadow 0.2s var(--fq-ease);
}
.fq-help-btn.is-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 12px 26px rgba(7, 88, 216, 0.36);
}
.fq-help-btn.is-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(7, 88, 216, 0.46); }
.fq-help-btn.is-ghost {
  color: var(--blue-700);
  background: #fff;
  border: 1px solid var(--fq-edge);
}
.fq-help-btn.is-ghost:hover { transform: translateY(-2px); border-color: var(--blue-500); }

/* ============================================================
   MOTION-REDUCE + RESPONSIVE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fq-hero-img { animation: none; transform: none; }
  .fq-hr-path, .fq-hr-pin .fq-ping, .fq-kicker .fq-dot { animation: none; }
  .fq-hero .fq-kicker, .fq-hero h1, .fq-hero-sub, .fq-search, .fq-suggests { animation: none; opacity: 1; }
  .fq-item.fq-reveal { opacity: 1; transform: none; }
  .fq-a, .fq-country-panel, .fq-sticky { transition: none; }
}

@media (max-width: 900px) {
  .fq-journey { grid-template-columns: 1fr; gap: 0; }
  .fq-spine { display: none; }
}

@media (max-width: 760px) {
  .fq-hero { min-height: 84vh; }
  .fq-hero-inner { padding: 9rem 0 3rem; }
  .fq-hero-img { object-position: 64% center; }
  .fq-search-clear { right: 0.7rem; }
  .fq-search-go { padding: 0.72rem 0.95rem; }
  .fq-sticky { top: 58px; }
  .fq-body { padding-top: 3rem; }
  .fq-help { padding: 1.8rem 1.4rem; }
  .fq-countries { border-radius: 20px; }
  .fq-countries-inner { width: calc(100% - 2rem); }
}

@media (max-width: 480px) {
  .fq-hero h1 { font-size: clamp(2.1rem, 1.4rem + 5vw, 2.7rem); }
  .fq-search-go span { display: none; }
  .fq-q { padding: 1rem 1rem; gap: 0.7rem; }
  .fq-q-text { font-size: 0.98rem; }
  .fq-a-inner > div { padding: 0 1rem 1.15rem; }
}
