/* ═══════════════════════════════════════════════════════════════════
   EFP Landing Page – UC Offshore
   Font: Roboto | Colors: #173B64 / #FFDE70 / #A3C4EB / #F6FAFF
═══════════════════════════════════════════════════════════════════ */

/* ── Global Reset ────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}

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

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --lp-navy:    #173B64;
  --lp-yellow:  #FFDE70;
  --lp-powder:  #A3C4EB;
  --lp-alice:   #F6FAFF;
  --lp-dark:    #0d1e35;
  --lp-text:    #3a4a60;
  --lp-muted:   #5a6e82;
  --lp-radius:  10px;
  --lp-shadow:  0 4px 24px rgba(23,59,100,.12);
  --lp-trans:   .25s ease;
}

/* ── Reset / Base ────────────────────────────────────────────────── */
.ldp-page * { box-sizing: border-box; margin: 0; padding: 0; }
.ldp-page {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  color: var(--lp-text);
  background: #fff;
  overflow-x: hidden;
}
.ldp-page a { color: inherit; text-decoration: none; }
.ldp-page img { max-width: 100%; display: block; height: auto; }
.ldp-page ul { list-style: none; }
.ldp-page button { cursor: pointer; border: none; font-family: inherit; }

/* Container */
.lc {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.ls-hero__pretitle {
  margin: 30px 0 14px;
  color: var(--lp-navy);
  font-size: clamp(14px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.ls-hero__title {
  margin: 0 0 16px;
  color: var(--lp-navy);
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.ls-hero__body {
  max-width: 640px;
  margin: 0 auto;
  color: #2f2f2f;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 400;
  line-height: 1.45;
}

/* ── Shared components ───────────────────────────────────────────── */

.ls-sec-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--lp-navy);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.ls-sec-title--light { color: #fff; }

.ls-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 200px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.25s ease;
}

.ls-btn--primary {
  color: #0b4a8b;
  background: linear-gradient(
    to bottom,
    #f2da45 0%,
    #f4df63 14%,
    #f8eb96 28%,
    #fff4b8 50%,
    #f8eb96 72%,
    #f4df63 86%,
    #ebd137 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.08);
}

.ls-btn--submit {
  width: 100%;
  max-width: 340px;
  background: var(--lp-navy) !important;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 16px;
  border-radius: 8px;
  margin-inline: auto;
  display: flex;
  transition: var(--lp-trans);
}
.ls-btn--submit:hover { background: #1e4f8a; transform: translateY(-2px); }
.ls-btn--submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── HEADER ──────────────────────────────────────────────────────── */
.lh {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(23,59,100,.08);
  min-height: 80px;
}
.lh__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-block: 14px;
  min-height: 40px;
}
.lh__logo img { height: 60px; width: auto; }

.lh__nav ul {
  display: flex;
  gap: 28px;
}
.lh__nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-navy);
  padding-block: 4px;
  border-bottom: 3px solid transparent;
  transition: var(--lp-trans);
}
.lh__nav a:hover {
  color: var(--lp-navy);
  border-bottom-color: var(--lp-yellow);
}

.lh__nav .lh__nav__active {
  border-bottom-color: var(--lp-yellow);
}

.lh__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
  background: none;
  margin-left: auto;
}
.lh__toggle span {
  display: block;
  height: 2px;
  background: var(--lp-navy);
  border-radius: 2px;
  transition: var(--lp-trans);
}
.lh__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lh__toggle.is-open span:nth-child(2) { opacity: 0; }
.lh__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.lh__drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  padding: 20px 24px 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transform: translateY(-110%);
  transition: transform .3s ease;
  display: none;
}
.lh__drawer.is-open { 
  transform: translateY(0);
  display: block;
}
.lh__drawer li + li { margin-top: 4px; }
.lh__drawer a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-navy);
  border-bottom: 1px solid #eef4fb;
}
.lh__drawer-cta {
  display: inline-block !important;
  margin-top: 16px;
  background: var(--lp-yellow);
  color: var(--lp-navy) !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 8px;
  font-weight: 700 !important;
}
.lh__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 998;
}
.lh__overlay.is-open { display: block; }

/* ── HERO ────────────────────────────────────────────────────────── */
.ls-hero {
  position: relative;
  min-height: 580px;
  background: linear-gradient(135deg, #0d1e35 0%, #173B64 60%, #1e5090 100%);
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ls-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(220,240,255,.25) 0%, rgba(180,220,250,.1) 100%);
}
.ls-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
  gap: 40px;
  padding-block: 0 180px;
  width: 100%;
}

/* Slides */
.ls-hero__slide {
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.ls-hero__slide.is-active { opacity: 1; pointer-events: auto; }

.ls-badge-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  height: 48px;
  padding: 0 60px;
  z-index: 2;
}

.ls-badge-svg__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ls-badge-svg__text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  color: #0b4a8b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-2px);
}

/* Visa cards grid */
.ls-hero__cards-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 10px 0 30px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ls-hero__card {
  background: #dcf5ff;
  border: 1px solid #dddfe0;
  border-radius: 24px;
  padding: 8px 18px;
  text-align: center;
  transition: all var(--lp-trans);
  min-width: auto;
  flex: 0 1 auto;
  display: inline-block;
}

.ls-hero__card:hover {
  background: #d9f4ff;
  border-color: #b8d9f0;
  transform: translateY(-2px);
}

.ls-hero__card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: .02em;
  margin: 0;
}

/* Visa tabs in hero */
.ls-vtab {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-navy);
  border: 1.5px solid rgba(23,59,100,.35);
  transition: var(--lp-trans);
  background: rgba(255,255,255,.55);
}
.ls-vtab.is-active,
.ls-vtab:hover {
  background: var(--lp-yellow);
  color: var(--lp-navy);
  border-color: var(--lp-yellow);
}

.ls-hero__ctas {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero visual (right side) */
.ls-hero__city {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  max-width: none;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  display: block;
}
.ls-hero__visa-card-inner {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  padding: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ls-hero__visa-card-inner.is-active { opacity: 1; pointer-events: auto; }

/* ── STATS SECTION ───────────────────────────── */
.ls-stats {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background: #edf4fb;
}

.ls-stats__bg {
  position: absolute;
  inset: 0;
  background: #edf4fb;
  z-index: 0;
}

.ls-stats > .ls-stats__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.ls-stats__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE */
.ls-stats__content {
  padding-right: 16px;
}

.ls-stats__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ls-stats .ls-sec-title {
  margin: 0;
  color: #1f4579;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.ls-stats .ls-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 700;
  color: #294c7d;
  background: linear-gradient(180deg, #f5ea98 0%, #e5cf62 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.ls-stats__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(37, 76, 125, .35);
}

.ls-stats__metric {
  padding: 18px 18px 0 12px;
  min-height: 126px;
}

.ls-stats__metric + .ls-stats__metric {
  border-left: 1px solid rgba(37, 76, 125, .35);
}

.ls-stats__value {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 10px;
}

.ls-stats__num {
  font-size: clamp(52px, 5vw, 78px);
  line-height: .95;
  font-weight: 900;
  color: #1f4579;
  letter-spacing: -1px;
}

.ls-stats__plus {
  font-size: clamp(32px, 2.8vw, 46px);
  line-height: 1;
  font-weight: 900;
  color: #1f4579;
  margin-top: 6px;
}

.ls-stats__metric p {
  margin: 0;
  max-width: 180px;
  font-size: 18px;
  line-height: 1.35;
  color: #2f3d4e;
}
/* RIGHT SIDE */
.ls-stats__visual {
  position: relative;
  min-height: 448px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(64, 89, 130, 0.35);
  box-shadow: 0 8px 24px rgba(17, 43, 81, 0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ls-stats__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42);
  z-index: 1;
}

.ls-stats__visual-left,
.ls-stats__visual-right {
  position: relative;
  z-index: 2;
}

.ls-stats__visual-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 20px 18px 64px;
}

.ls-stats__visual-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 64px 20px 10px;
}

/* VISA INFO */
.ls-visa-info {
  text-align: center;
  transform: translateY(-4px);
}

.ls-visa-info__title {
  margin: 0 0 6px;
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(40px, 3.8vw, 50px);
  line-height: 1.05;
  white-space: nowrap;

  color: rgba(32, 32, 32, 0.78);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  text-shadow: 0 0 0.2px rgba(32, 32, 32, 0.18);
}

.ls-visa-info__subclass {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #2f4f83;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.ls-visa-info__number {
  font-size: clamp(100px, 9vw, 148px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -4px;
  margin-bottom: 18px;
  color: #faf2ad;
  -webkit-text-stroke: 3px #d9c564;
  paint-order: stroke fill;
  text-shadow: 0 4px 14px rgba(217, 197, 100, 0.25);
}

.ls-visa-info__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 42px;
  padding: 8px 28px;
  border-radius: 999px;
  border: 2px dashed #6a8fc0;
  background: rgba(255, 255, 255, 0.70);
  font-size: 17px;
  font-weight: 700;
  color: #1e3a6e;
  letter-spacing: 0.5px;
}

/* SLIDER */
.ls-stats__grant-slider {
  position: relative;
}
.ls-stats__grant-slide {
  border-radius: 12px !important;
  border: 2px solid #b8cfe8;
  opacity: 0;
  transition: opacity .5s ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: #fff;
}

.ls-stats__grant-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.ls-stats__grant-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ARROWS */
.ls-stats__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: auto;
  height: auto;
  display: block;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  color: #274b83;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.85;
}

.ls-stats__arrow--prev {
  left: 14px;
}

.ls-stats__arrow--next {
  right: 14px;
}

.ls-stats__arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.12);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ls-stats__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ls-stats__content {
    padding-right: 0;
  }

  /* Override global hide — keep slider visible on tablet */
  .ls-stats__grant-slider {
    display: block;
  }

  .ls-stats__visual {
    min-height: 380px;
    column-gap: 24px;
  }

  .ls-stats__visual-left {
    padding: 24px 16px 24px 52px;
  }

  .ls-stats__visual-right {
    padding: 24px 52px 24px 16px;
  }

  /* Use the extra width from the now-full-width visual */
  .ls-visa-info__number {
    font-size: clamp(80px, 9vw, 130px);
  }

  .ls-visa-info__title {
    font-size: clamp(34px, 4vw, 50px);
  }

  .ls-visa-info__name {
    font-size: 15px;
  }

  .ls-stats__metric p {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .ls-stats {
    padding: 40px 0;
  }

  .ls-stats__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Flex column so image + info stack cleanly */
  .ls-stats__visual {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  .ls-stats__grant-slider {
    display: block;
    max-width: 220px;
    margin: 0 auto;
  }

  /* Horizontal padding leaves room for the side arrows */
  .ls-stats__visual-left {
    padding: 20px 20px 12px;
  }

  .ls-stats__visual-right {
    padding: 12px 16px 20px;
    justify-content: center;
  }

  /* Compact horizontal strip: [Visa Grant title row] then [482] [Baker] inline */
  .ls-visa-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    transform: none;
    text-align: center;
  }

  .ls-visa-info__title {
    width: 100%;
    font-size: 22px;
    margin: 0 0 2px;
  }

  .ls-visa-info__subclass {
    display: none;
  }

  .ls-visa-info__number {
    font-size: 52px;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
  }

  .ls-visa-info__name {
    font-size: 13px;
    padding: 6px 14px;
    min-width: auto;
  }

  /* Align arrows with the image area (~38% from top of the flex container) */
  .ls-stats__arrow {
    font-size: 28px;
    top: 38%;
  }

  .ls-stats__arrow--prev {
    left: 8px;
  }

  .ls-stats__arrow--next {
    right: 8px;
  }

  .ls-stats .ls-sec-title {
    margin-bottom: 16px;
  }

  .ls-stats .ls-badge {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .ls-stats__metrics {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .ls-stats__metric {
    padding: 14px 0;
    min-height: auto;
    border-top: 1px solid rgba(37, 76, 125, .22);
  }

  .ls-stats__metric + .ls-stats__metric {
    border-left: 0;
  }

  .ls-stats__grant-slide {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    height: auto;
  }
}

/* ── SPONSOR ─────────────────────────────────────────────────────── */
.ls-sponsor {
  position: relative;
  padding: 20px 0;
  background: linear-gradient(180deg, #0d2240 0%, #173B64 100%);
  background-size: cover;
  background-position: center;
  height: 550px
}
.ls-sponsor > .lc {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ls-sponsor .ls-sec-title {
  margin-bottom: 20px;
}

.ls-sponsor__subtitle {
  color: #000;
  font-size: 15px;
  line-height: 1.65;
  max-width: 590px;
  margin: 0 auto 48px;
  font-weight: 500;
}
.ls-sponsor__cards {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
.ls-sponsor__card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--lp-radius);
  padding: 24px 21px 8px;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  cursor: default;
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* min-height: 200px; */
  max-width: 410px;
}
.ls-sponsor__card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.ls-sponsor__card-title {
  position: absolute;
  top: 0;
  left: -14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #0b4a8b;
  background: linear-gradient(
    to bottom,
    #f2da45 0%,
    #f4df63 14%,
    #f8eb96 28%,
    #fff4b8 50%,
    #f8eb96 72%,
    #f4df63 86%,
    #ebd137 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.ls-sponsor__card p {
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  font-weight: 500;
  text-align: left;
}

.ls-brand-note {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  max-width: 490px;
  padding: 30px 24px;
  background: #ffffff;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.ls-brand-note__text {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ls-brand-trapezoid {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 42px;
  z-index: 2;
}

.ls-brand-trapezoid__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  fill: #ffffff;
}

.ls-brand-trapezoid__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 138px;
  max-height: 28px;
  object-fit: contain;
  margin: 7px auto 0;
}

.ls-brand-note__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #2f3d4e;
}

/* ── JOBS ────────────────────────────────────────────────────────── */
.ls-jobs {
  padding: 80px 0;
  background: #fff;
}
.ls-jobs .ls-sec-title { text-align: center; margin-bottom: 32px; }

.ls-jobs__info-box {
  background: var(--lp-alice);
  border: 1.5px solid var(--lp-powder);
  border-radius: var(--lp-radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  max-width: 740px;
  margin-inline: auto;
}
.ls-jobs__info-box > p {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-navy);
  margin-bottom: 12px;
}
.ls-jobs__info-box ul { display: flex; flex-direction: column; gap: 8px; }
.ls-jobs__info-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-navy);
}
.ls-jobs__info-box li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* Job tabs */
.ls-jobs__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--lp-powder);
  width: fit-content;
  margin-inline: auto;
}
.ls-jtab {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--lp-navy);
  background: #fff;
  border-right: 1.5px solid var(--lp-powder);
  transition: var(--lp-trans);
}
.ls-jtab:last-child { border-right: none; }
.ls-jtab.is-active {
  background: var(--lp-yellow);
  color: var(--lp-navy);
}
.ls-jtab:hover:not(.is-active) { background: var(--lp-alice); }

/* Job list panels */
.ls-jobs__list { display: none; }
.ls-jobs__list.is-active { display: block; }

.ls-jobs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin-inline: auto;
}

.ls-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid #e2ecf5;
  border-radius: var(--lp-radius);
  background: #fff;
  transition: var(--lp-trans);
}
.ls-job-card:hover {
  border-color: var(--lp-powder);
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}
.ls-job-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ls-job-card__info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-navy);
  line-height: 1.35;
}
.ls-job-hot { font-style: normal; }
.ls-job-card__info span {
  font-size: 12.5px;
  color: var(--lp-muted);
}
.ls-job-card__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--lp-navy);
  opacity: .45;
  transition: var(--lp-trans);
}
.ls-job-card:hover .ls-job-card__arrow { opacity: 1; transform: translate(2px, -2px); }

/* ── RPL – Hình ảnh chứng chỉ RPL thực tế ───────────────────────── */
.ls-rpl {
  background: #fff;
  padding-top: 60px;
  max-width: 1160px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
.ls-rpl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.ls-rpl__heading-wrap {
  text-align: center;
  margin-bottom: 32px;
}

/* Desktop banner */
.ls-rpl__desk {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}
.ls-rpl__track {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.ls-rpl__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 60px clamp(16px, 5%, 80px);
}
.ls-rpl__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.ls-rpl__info {
  display: flex;
  flex-direction: column;
  min-width: 45%;
  max-width: 45%;
  height: 380px;
  justify-content: center;
}
.ls-rpl__level {
  display: inline-block;
  background: linear-gradient(to right, #2E5DA1, #dceafa);
  color: #fff;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 35px;
  width: fit-content;
  /* margin-bottom: auto; */
}
.ls-rpl__cert-name {
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 900;
  color: #ffde70;
  text-transform: uppercase;
  line-height: 1.1;
  /* margin-bottom: 10px; */
}
.ls-rpl__cert-exp {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}
.ls-rpl__slide > div:not(.ls-rpl__info) {
  flex-shrink: 0;
  position: relative;
}
.ls-rpl__cert-img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.ls-rpl__tag {
  position: absolute;
  top: -72px;
  right: -122px;
  width: 160px;
  height: auto;
}

/* Nav arrows */
.ls-rpl__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--lp-trans);
}
.ls-rpl__nav:hover { background: #fff; }
.ls-rpl__nav svg { width: 16px; height: 16px; fill: #173b64; }
.ls-rpl__nav--prev { left: 20px; }
.ls-rpl__nav--next { right: 20px; }

/* Mobile slider */
.ls-rpl__mob {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ls-rpl__mob-track { overflow: hidden; position: relative; }
.ls-rpl__mob-slide {
  opacity: 0;
  transition: opacity .5s ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ls-rpl__mob-slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.ls-rpl__mob-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  z-index: 3;
}
.ls-rpl__mob-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 16px 60px;
  gap: 20px;
  position: relative;
}
.ls-rpl__mob-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  text-align: center;
  gap: 8px;
  position: absolute;
  bottom: 10px;
  z-index: 3;
}
.ls-rpl__mob-content .ls-rpl__tag {
  height: auto;
  position: absolute;
  top: -26px;
  right: 2px;
  width: 125px;
}
.ls-rpl__mob-info .ls-rpl__cert-name {
  color: #ffde70;
  font-size: clamp(18px, 5vw, 26px);
  max-width: 70%;
}
.ls-rpl__mob-info .ls-rpl__level {
  font-size: clamp(11px, 3vw, 14px);
  padding: 4px 14px;
}
.ls-rpl__mob-info .ls-rpl__cert-exp {
  font-size: clamp(11px, 3vw, 13px);
  max-width: 60%;
}
.ls-rpl__mob-content .ls-rpl__cert-img {
  width: 70%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .ls-rpl__track {
    height: 380px;
  }
  .ls-rpl__info {
    max-width: 50%;
  }
  .ls-rpl__cert-name {
    font-size: clamp(22px, 3.5vw, 36px);
  }
  .ls-rpl__nav {
    width: 38px;
    height: 38px;
  }
  .ls-rpl__nav svg { width: 14px; height: 14px; }
}

/* Mobile ≤ 767px */
@media (max-width: 767px) {
  .ls-rpl {
    padding-top: 40px;
  }
  .ls-rpl__desk { display: none; }
  .ls-rpl__mob  { display: block; }
}

/* ── CHỨNG CHỈ NGHỀ ÚC RPL ──────────────────────────────────────── */
.ls-ccn {
  overflow: hidden;
  position: relative;
}

.ls-ccn__header {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.ls-ccn__header-content {
  position: relative;
  z-index: 2;
  padding-block: 48px;
  max-width: 54%;
  transform: translateX(-250px);
}

.ls-ccn__title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ls-ccn__intro {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

.ls-ccn__body {
  background: linear-gradient(160deg, #dceeff 0%, #eef6ff 100%);
  padding: 56px 0 72px;
}

.ls-ccn__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  max-width: 54%;
}

.ls-ccn__card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 6px 28px rgba(23, 59, 100, .10);
}

.ls-ccn__card > p {
  font-size: 14.5px;
  color: var(--lp-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ls-ccn__card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ls-ccn__card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-navy);
  line-height: 1.4;
}

.ls-ccn__card li svg {
  flex-shrink: 0;
}

.ls-ccn__visual {
  position: absolute;
  right: 190px;
  top: 0;
  width: 46%;
  height: 100%;
}

.ls-ccn__content {
  position: relative;
  z-index: 2;
  left: -250px;
  top: -20px;
}

.ls-ccn__content span {
  width: 300px;
  margin-bottom: 24px;
}

.ls-ccn__opera-img {
  /* width: 100%; */
  height: 100%;
  max-width: none !important;
  object-fit: cover;
  /* object-position: center top; */
  transform: scale(1.08);
  /* transform-origin: center top; */
}

@media (max-width: 1024px) {
  .ls-ccn__body {
    padding: 48px 0 64px;
  }
  .ls-ccn__layout {
    max-width: 100%;
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .ls-ccn__content {
    left: 0;
    top: 0;
  }
  .ls-ccn__header-content {
    max-width: 100%;
    transform: none;
  }
  .ls-ccn__visual {
    display: none;
  }
  .ls-ccn__card {
    background: #fff;
  }
}

@media (max-width: 768px) {
  .ls-ccn__header {
    min-height: 160px;
  }
  .ls-ccn__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 30, 53, 0.3);
    z-index: 1;
  }
  .ls-ccn__header-content {
    padding-block: 36px;
    margin-inline: auto;
    margin-left: auto;
  }

  .ls-ccn__body {
    padding: 32px 0 48px;
  }
  .ls-ccn__layout {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ls-ccn__visual {
    display: none;
  }
  .ls-ccn__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
  }
  .ls-ccn__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(220, 238, 255, 0.72);
    z-index: 1;
  }
  .ls-ccn__opera-img {
    width: 100%;
    height: 100%;
    max-width: 100% !important;
    object-fit: cover;
    transform: none;
  }
  .ls-ccn__content {
    left: 0;
    top: 0;
  }
  .ls-ccn__card {
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.92);
  }
}

/* ── CONTACT FORM ────────────────────────────────────────────────── */
.ls-form {
  padding: 80px 0;
  background: #fff;
}
.ls-form__wrap { max-width: 780px; }
.ls-form .ls-sec-title { text-align: center; margin-bottom: 12px; }
.ls-form__sub {
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
  margin-bottom: 40px;
}
.ls-contact-form { display: flex; flex-direction: column; gap: 20px; }
.ls-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ls-form__row--half { grid-template-columns: 1fr 1fr; }
.ls-form__field { display: flex; flex-direction: column; gap: 6px; }
.ls-form__field label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--lp-navy);
}
.ls-form__field label span { color: #d9453d; }
.ls-form__field input {
  padding: 12px 16px;
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--lp-text);
  transition: border-color .2s;
  background: #fff;
}
.ls-form__field input:focus {
  outline: none;
  border-color: var(--lp-navy);
}
.ls-form__field input.is-invalid { border-color: #d9453d; }
.ls-form__msg {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  display: none;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.ls-faq {
  padding: 80px 0;
  background: var(--lp-alice);
}
.ls-faq .ls-sec-title { text-align: center; margin-bottom: 12px; }
.ls-faq__sub {
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
  margin-bottom: 48px;
  max-width: 580px;
  margin-inline: auto;
}
.ls-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}
.ls-faq__item {
  background: #fff;
  border: 1.5px solid #dde8f2;
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.ls-faq__item:hover { box-shadow: var(--lp-shadow); }
.ls-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-navy);
  background: transparent;
  transition: background .2s;
}
.ls-faq__q:hover { background: var(--lp-alice); }
.ls-faq__q[aria-expanded="true"] { background: var(--lp-alice); }
.ls-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lp-navy);
  transition: transform .3s;
}
.ls-faq__q[aria-expanded="true"] .ls-faq__icon { transform: rotate(45deg); }
.ls-faq__a { border-top: 1px solid #dde8f2; }
.ls-faq__a-inner {
  padding: 16px 20px 20px;
  font-size: 13.5px;
  color: var(--lp-text);
  line-height: 1.7;
}

/* ── DISCLAIMER ─────────────────────────────────────────────────── */
.ls-disclaimer {
  padding: 40px 0;
  background: #fff;
}
.ls-disclaimer__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.ls-disclaimer__rule {
  border: none;
  border-top: 2px solid var(--lp-navy);
  width: 48px;
  margin: 0 0 14px 0;
}
.ls-disclaimer p {
  font-size: 13.5px;
  color: var(--lp-text);
  line-height: 1.7;
  max-width: 760px;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.lf {
  background: #a3c4eb;
  padding: 30px 0;
}
.lf__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #a3c4eb;
  padding: 30px 40px;
  border-radius: 33px;
}

/* Brand column */
.lf__brand {
  flex: 5;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lf__brand img {
  width: 60%;
  max-width: 280px;
  height: auto;
  margin-bottom: 12px;
}
.lf__office-label {
  font-size: 1.2rem;
  color: var(--lp-navy);
  margin-bottom: 10px;
}
.lf__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: var(--lp-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.lf__address svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--lp-navy); }
.lf__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.lf__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  transition: var(--lp-trans);
}
.lf__social a:hover { background: #fff; color: var(--lp-navy); }
.lf__social a svg { width: 16px; height: 16px; }

/* Staff cards */
.lf__staff {
  flex: 3;
  display: contents;
}
.lf__staff-card {
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 3px solid #b8cfe8;
  border-radius: 30px;
  padding: 20px 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.lf__staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(23, 59, 100, .12);
}
.lf__staff-photo {
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: #e8f1f9;
}
.lf__staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.lf__staff-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--lp-navy);
}
.lf__staff-info strong { font-size: 1rem; text-transform: uppercase; }
.lf__staff-info span { font-size: .8rem; line-height: 1.3; color: var(--lp-navy); }
.lf__staff-contacts { display: flex; gap: 10px; margin-top: 10px; justify-content: center; }
.lf__staff-contacts a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  transition: var(--lp-trans);
}
.lf__staff-contacts a:hover { background: #b8cfe8; color: var(--lp-navy); }
.lf__staff-contacts svg { width: 16px; height: 16px; }

/* ── STICKY SIDEBAR (DESKTOP) – giuseart-nav ─────────────────────── */
.giuseart-nav {
  position: fixed;
  right: 13px;
  bottom: 100px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  padding: 10px 0;
  width: 64px;
  z-index: 150;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.giuseart-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.giuseart-nav li {
  list-style: none;
  display: flex;
  justify-content: center;
}
.giuseart-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  font-size: 10px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color .2s;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
}
.giuseart-nav a:hover {
  color: var(--lp-navy);
}
.giuseart-nav a > i {
  font-size: 22px;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 1;
}
.giuseart-nav__icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(72%) saturate(1400%) hue-rotate(192deg) brightness(82%) contrast(101%);
}
@keyframes phone-ring {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* ── STICKY BOTTOM BAR (MOBILE) ──────────────────────────────────── */
.ls-sticky-mob {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid #d0dce8;
  box-shadow: 0 -4px 16px rgba(23,59,100,.1);
  height: 74px;
}
.ls-sticky-mob__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  font-size: 9px;
  font-weight: 600;
  color: var(--lp-navy);
  flex: 1;
  transition: var(--lp-trans);
  justify-content: center;
}
.ls-sticky-mob__item:hover { color: var(--lp-navy); background: var(--lp-alice); }
.ls-sticky-mob__item svg { width: 22px; height: 22px; }
.ls-sticky-mob__icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(72%) saturate(1400%) hue-rotate(192deg) brightness(82%) contrast(101%);
}

.ls-sticky-mob__item__position--whatsapp {
  position: relative;
  bottom: -15px;
}

.ls-sticky-mob__item--whatsapp {
  position: absolute;
  bottom: 48px;
  padding: 8px;
  background-color: var(--lp-navy);
  border-radius: 50%;
  border: 2px solid #fff;
}
.ls-sticky-mob__item--whatsapp img{
  height: 40px;
  width: 40px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(72%) saturate(1400%) hue-rotate(#fff) brightness(82%) contrast(101%);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .ls-hero__layout { grid-template-columns: 1fr; padding-block: 60px 40px; }
  .ls-hero__body { max-width: 440px; }
  .ls-sponsor__cards { flex-direction: column; align-items: center; gap: 14px; }
  .ls-sponsor__card { max-width: 520px; width: 100%; }
  .ls-sponsor__card:hover { transform: translateY(-6px); }

  .ls-rpl__slide { grid-template-columns: 1fr; gap: 32px; }

  .lf__top { flex-direction: column; padding: 24px 20px; border-radius: 20px; }
  .lf__staff { display: flex; gap: 16px; flex: none; width: 100%; }
  .lf__staff-card { padding: 16px; }
  .lf__brand { flex: none; width: 100%; }
  .lf__brand img { width: 50%; }

  .giuseart-nav { display: none; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .lh__nav { display: none; }
  .lh__toggle { display: flex; }

  .lf__office-label { font-size: .85rem; }
  .lf__address { font-size: 11px; }

  .ls-hero { min-height: 480px; }
  .ls-hero__title { font-size: clamp(22px, 7vw, 24px); }
  .ls-hero__city { display: none; }
  .ls-hero__layout { padding-block: 48px 60px; }
  .ls-hero__ctas { gap: 14px; }
  /* .ls-btn { justify-content: center; } */
  .ls-stats__grant-slider { display: block; }

  .ls-sponsor {
    padding: 40px 0 60px;
    min-height: auto;
    height: auto;
  }
  .ls-sponsor .ls-sec-title {
    font-size: clamp(20px, 6vw, 30px);
    margin-bottom: 12px;
  }
  .ls-sponsor__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .ls-sponsor__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ls-sponsor__card {
    max-width: 100%;
    margin-top: 0;
    padding: 20px 16px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .ls-sponsor__card-title {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .ls-brand-note {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: calc(100% - 32px);
    border-radius: 12px;
    margin: 20px auto 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .ls-brand-trapezoid {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 8px;
  }
  .ls-brand-trapezoid__bg {
    display: none;
  }

  .ls-jobs__grid { grid-template-columns: 1fr; }
  .ls-jobs__tabs { width: 100%; border-radius: 8px; }
  .ls-jtab { flex: 1; padding: 12px 8px; font-size: 12px; }

  .ls-faq__grid { grid-template-columns: 1fr; }

  .ls-form__row { grid-template-columns: 1fr; }
  .ls-form__row--half { grid-template-columns: 1fr; }

  .lf__top { flex-direction: column; padding: 20px 16px; }
  .lf__staff { display: flex; flex-direction: column; gap: 12px; flex: none; width: 100%; }
  .lf__staff-card { padding: 14px; }
  .lf__brand img { width: 55%; }

  .giuseart-nav { display: none; }
  .ls-sticky-mob {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .ls-form { padding-bottom: 100px; }
  .lf { padding-bottom: 80px; }

  
  .fluentform input,
  .fluentform select,
  .fluentform textarea,
  .fluentform_wrapper input,
  .fluentform_wrapper select,
  .fluentform_wrapper textarea {
    font-size: 16px !important;
  }
}

/* ── Scroll to top ─────────────────────────────────────────────────── */
.ls-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--lp-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(23,59,100,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .2s;
  z-index: 9999;
}

.ls-scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ls-scroll-top:hover {
  background: #1e4f8a;
  transform: translateY(-2px);
}

.ls-scroll-top--visible:hover {
  transform: translateY(-2px);
}

.ls-scroll-top svg { pointer-events: none; }

@media (max-width: 768px) {
  .ls-scroll-top { bottom: 80px; right: 20px; width: 42px; height: 42px; }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .ls-vtab { padding: 7px 14px; font-size: 12px; }
  .ls-sponsor__cards { gap: 12px; }
  .ls-sec-title { font-size: clamp(18px, 5.5vw, 19px); }
}


/* fluent form custom */
.fluentform .ff-message-success,
.fluentform .ff-message_container_success,
.fluentform_submission_success,
.ff-el-success {
  display: none !important;
}