.ilj-page {
  --ilj-blue: #0b74c9;
  --ilj-blue-dark: #075b9d;
  --ilj-navy: #15344d;
  --ilj-text: #27445a;
  --ilj-muted: #6c8292;
  --ilj-line: #dbe7ef;
  --ilj-pale: #eef8ff;
  min-height: 60vh;
  padding: 22px 0 76px;
  color: var(--ilj-text);
  background: #fff;
}

.ilj-page *,
.ilj-page *::before,
.ilj-page *::after,
.ilj-footer *,
.ilj-footer *::before,
.ilj-footer *::after {
  box-sizing: border-box;
}

.ilj-shell {
  /* width controlled by shared .site-container rules in layout.css */
  width: min(100% - 28px, 1240px);
  max-width: 1240px;
  margin-inline: auto;
}

.ilj-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ilj-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(34px, 5vw, 58px);
  color: #8a9aa6;
  font-size: .84rem;
}

.ilj-breadcrumb a {
  color: var(--ilj-blue);
  text-decoration: none;
}

.ilj-breadcrumb a:hover { text-decoration: underline; }

.ilj-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 7vw, 70px);
  text-align: center;
}

.ilj-heading h1,
.ilj-legal-hero h1 {
  margin: 0;
  color: var(--ilj-navy);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.ilj-heading p,
.ilj-legal-hero p {
  margin: 16px auto 0;
  color: var(--ilj-muted);
  font-size: clamp(.98rem, 1.7vw, 1.12rem);
  line-height: 1.75;
}

.ilj-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--ilj-blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* How it works */
.ilj-journey {
  position: relative;
  display: grid;
  gap: 26px;
  margin: 0 auto;
  padding: 4px 0;
  list-style: none;
}

.ilj-journey::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  border-left: 2px dashed #6db8ec;
  transform: translateX(-1px);
}

.ilj-journey__item {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.ilj-journey__item:nth-child(even) { justify-content: flex-end; }

.ilj-journey__item::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ilj-blue);
  box-shadow: 0 0 0 2px #a8d7f5;
  transform: translate(-50%, -50%);
}

.ilj-step-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 19px;
  align-items: center;
  width: calc(50% - 34px);
  min-height: 122px;
  padding: 21px 24px 21px 18px;
  border: 1px solid #e4edf3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(28, 73, 105, .09);
}

.ilj-step-card__badge {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  width: 68px;
  height: 76px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #1186d9, #0868b2);
  box-shadow: 0 8px 20px rgba(11, 116, 201, .24);
}

.ilj-step-card__badge strong {
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: .06em;
}

.ilj-step-card__badge .ilj-icon { width: 20px; height: 20px; }
.ilj-step-card__copy h2 { margin: 0 0 7px; color: var(--ilj-navy); font-size: 1.1rem; line-height: 1.3; }
.ilj-step-card__copy p { margin: 0; color: var(--ilj-muted); font-size: .89rem; line-height: 1.62; }

.ilj-compact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: clamp(52px, 8vw, 84px) auto 0;
  padding: 25px 30px;
  border: 1px solid #d8eaf6;
  border-radius: 18px;
  background: linear-gradient(110deg, #f0f9ff, #fff);
}

.ilj-compact-cta h2 { margin: 0; color: var(--ilj-navy); font-size: 1.35rem; }
.ilj-compact-cta p { margin: 6px 0 0; color: var(--ilj-muted); }
.ilj-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.ilj-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ilj-btn:hover { transform: translateY(-1px); }
.ilj-btn--primary { color: #fff; background: var(--ilj-blue); box-shadow: 0 7px 18px rgba(11, 116, 201, .22); }
.ilj-btn--primary:hover { color: #fff; background: var(--ilj-blue-dark); }
.ilj-btn--outline { color: var(--ilj-blue); border-color: #9dcced; background: #fff; }
.ilj-btn--outline:hover { color: var(--ilj-blue-dark); background: var(--ilj-pale); }
.ilj-btn .ilj-icon { width: 18px; height: 18px; }

/* Support */
.ilj-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin-inline: auto;
}

.ilj-help-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 20px;
  gap: 17px;
  align-items: center;
  min-height: 104px;
  padding: 19px 22px;
  border: 1px solid #e1ebf2;
  border-radius: 15px;
  color: var(--ilj-text);
  background: #fff;
  box-shadow: 0 8px 28px rgba(24, 70, 102, .07);
  text-align: start;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ilj-help-card:hover {
  color: var(--ilj-text);
  border-color: #aad4f1;
  box-shadow: 0 12px 32px rgba(24, 92, 139, .11);
  transform: translateY(-2px);
}

.ilj-help-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--ilj-blue);
  background: #eaf6ff;
}

.ilj-help-card__icon .ilj-icon { width: 25px; height: 25px; }
.ilj-help-card strong { display: block; margin-bottom: 5px; color: var(--ilj-navy); font-size: 1rem; }
.ilj-help-card small { display: block; color: var(--ilj-muted); font-size: .84rem; line-height: 1.45; }
.ilj-help-card__arrow { width: 17px; height: 17px; color: #9db1bf; fill: none; stroke: currentColor; stroke-width: 2; }

.ilj-emergency-note {
  display: flex;
  max-width: 960px;
  gap: 12px;
  align-items: flex-start;
  margin: 22px auto 0;
  padding: 13px 16px;
  border-radius: 10px;
  color: #647886;
  background: #f7fafc;
  font-size: .82rem;
}

.ilj-emergency-note .ilj-icon { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; color: #7892a4; }
.ilj-emergency-note p { margin: 0; line-height: 1.55; }
.ilj-emergency-note strong { color: #4d6575; }

.ilj-support-panel {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: start;
  max-width: 960px;
  margin: clamp(48px, 8vw, 80px) auto 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #e1ebf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(24, 70, 102, .08);
}

.ilj-support-panel__intro h2 { margin: 0; color: var(--ilj-navy); font-size: clamp(1.55rem, 3vw, 2.15rem); }
.ilj-support-panel__intro p { margin: 12px 0 0; color: var(--ilj-muted); line-height: 1.7; }
.ilj-contact-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 18px; color: var(--ilj-blue); font-weight: 800; text-decoration: none; }
.ilj-contact-link .ilj-icon { width: 19px; height: 19px; }
.ilj-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.ilj-field { display: grid; gap: 6px; margin-bottom: 13px; color: #385267; font-size: .83rem; font-weight: 700; }
.ilj-field input,
.ilj-field select,
.ilj-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cddde7;
  border-radius: 9px;
  color: var(--ilj-navy);
  background: #fff;
  font: inherit;
}
.ilj-field textarea { min-height: 102px; resize: vertical; }
.ilj-field input:focus,
.ilj-field select:focus,
.ilj-field textarea:focus { outline: 3px solid rgba(11, 116, 201, .12); border-color: var(--ilj-blue); }
.ilj-consent { display: flex; gap: 9px; align-items: flex-start; margin: 2px 0 17px; color: var(--ilj-muted); font-size: .78rem; line-height: 1.5; }
.ilj-consent input { flex: 0 0 auto; margin-top: 3px; }
.ilj-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Legal */
.ilj-page--legal { padding-bottom: 88px; }
.ilj-legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 38px;
  align-items: center;
  max-width: 930px;
  margin: 0 auto clamp(34px, 6vw, 54px);
}
.ilj-legal-hero > div { max-width: 720px; }
.ilj-legal-hero p { margin-inline: 0; }
.ilj-legal-hero small { display: block; margin-top: 15px; color: #91a0aa; font-size: .73rem; }
.ilj-legal-hero__icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: var(--ilj-blue);
  background: linear-gradient(145deg, #eaf7ff, #f8fcff);
  box-shadow: inset 0 0 0 1px #d9edf9, 0 12px 34px rgba(26, 102, 151, .1);
}
.ilj-legal-hero__icon svg { width: 53px; height: 53px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }

.ilj-medical-notice,
.ilj-emergency-box {
  display: flex;
  max-width: 930px;
  gap: 16px;
  align-items: flex-start;
  margin: 0 auto 24px;
  padding: 18px 20px;
  border: 1px solid #f2b5b5;
  border-radius: 13px;
  color: #7f3030;
  background: #fff3f3;
}
.ilj-medical-notice__icon { display: grid; flex: 0 0 auto; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #d54141; background: #ffe0e0; }
.ilj-medical-notice__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ilj-medical-notice strong,
.ilj-emergency-box strong { color: #922f2f; }
.ilj-medical-notice p,
.ilj-emergency-box p { margin: 4px 0 0; color: #885151; font-size: .88rem; line-height: 1.6; }

.ilj-legal-list { display: grid; max-width: 930px; gap: 12px; margin-inline: auto; }
.ilj-legal-row {
  scroll-margin-top: 90px;
  border: 1px solid #dfe9f0;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(24, 70, 102, .045);
  overflow: clip;
}
.ilj-legal-row summary {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 14px 20px;
  color: var(--ilj-navy);
  font-size: .97rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
.ilj-legal-row summary::-webkit-details-marker { display: none; }
.ilj-legal-row__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ilj-blue); background: #eaf6ff; }
.ilj-legal-row__icon .ilj-icon { width: 18px; height: 18px; }
.ilj-legal-row__chevron { width: 19px; height: 19px; color: #7f96a6; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.ilj-legal-row[open] .ilj-legal-row__chevron { transform: rotate(180deg); }
.ilj-legal-row[open] summary { border-bottom: 1px solid #e5edf2; background: #fbfdff; }
.ilj-legal-row__body { padding: 4px 74px 22px; }
.ilj-legal-row__body p { margin: 12px 0 0; color: var(--ilj-muted); font-size: .91rem; line-height: 1.78; white-space: pre-line; }
.ilj-legal-meta { display: flex; flex-wrap: wrap; max-width: 930px; gap: 8px 22px; margin: 20px auto 0; color: #92a1ac; font-size: .72rem; }
.ilj-emergency-box { align-items: center; margin-top: 28px; margin-bottom: 0; }
.ilj-emergency-box__number { display: grid; flex: 0 0 auto; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: #d94646; font-size: 1.05rem; font-weight: 900; }

/* Legal readable column — outer page still uses full site grid */
.ilj-page--legal .ilj-legal-hero,
.ilj-page--legal .ilj-legal-list,
.ilj-page--legal .ilj-medical-notice,
.ilj-page--legal .ilj-emergency-box,
.ilj-page--legal .ilj-legal-meta {
  width: min(100%, 880px);
  max-width: 880px;
  margin-inline: auto;
}

/* Footer — premium navy mobile design matching reference */
.ilj-footer {
  --ft-navy: #062A4A;
  --ft-navy-deep: #041E38;
  --ft-line: rgba(255, 255, 255, 0.14);
  --ft-muted: rgba(220, 235, 250, 0.72);
  --ft-cyan: #7ED6E8;
  --ft-radius: 24px;
  color: #fff;
  background: transparent;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.ilj-footer__shell {
  background: linear-gradient(180deg, #083556 0%, var(--ft-navy) 28%, var(--ft-navy-deep) 100%);
  border-radius: var(--ft-radius) var(--ft-radius) 0 0;
  box-shadow: 0 -8px 28px rgba(4, 30, 56, 0.18);
  padding: 22px 0 18px;
  overflow: hidden;
}

/* Visual recovery: align footer with layout.css site-container (no phone-canvas !important lock). */
.ilj-footer__inner,
body.page-home .ilj-footer__inner {
  width: min(100% - 28px, 1240px);
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .ilj-footer__inner,
  body.page-home .ilj-footer__inner {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ilj-footer__inner,
  body.page-home .ilj-footer__inner {
    width: min(100% - 40px, 960px);
    max-width: 960px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .ilj-footer__inner,
  body.page-home .ilj-footer__inner {
    width: min(100% - 48px, 1120px);
    max-width: 1240px;
  }
}

@media (min-width: 1280px) {
  .ilj-footer__inner,
  body.page-home .ilj-footer__inner {
    width: min(100% - 64px, 1240px);
    max-width: 1240px;
  }
}

@media (min-width: 1600px) {
  .ilj-footer__inner,
  body.page-home .ilj-footer__inner {
    width: min(100% - 80px, 1320px);
    max-width: 1320px;
  }
}

.ilj-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 10px 12px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ft-line);
}

.ilj-footer__logo {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
}

.ilj-footer__logo:hover { color: #fff; }

.ilj-footer__logo img {
  width: auto;
  height: 44px;
  max-width: 160px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  flex-shrink: 0;
}

.ilj-footer__brand > p {
  max-width: 34ch;
  margin: 8px 0 0;
  color: var(--ft-muted);
  font-size: 0.7rem;
  line-height: 1.45;
  font-weight: 500;
}

.ilj-footer__contact {
  display: grid;
  gap: 8px;
  justify-items: end;
  padding-top: 2px;
}

.ilj-footer__contact-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ilj-footer__contact-link:hover { color: #fff; opacity: 0.92; }

.ilj-footer__contact-link .ilj-icon {
  width: 14px;
  height: 14px;
  color: #fff;
  stroke-width: 1.75;
}

.ilj-footer__contact-link--wa {
  color: #3DDC84;
}

.ilj-footer__contact-link--wa .ilj-footer__wa {
  width: 14px;
  height: 14px;
  color: #3DDC84;
}

/* Quick links row — collapsed accordions */
.ilj-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--ft-line);
}

.ilj-footer__group {
  position: relative;
  border: 0;
  min-width: 0;
}

.ilj-footer__group + .ilj-footer__group {
  border-inline-start: 1px solid var(--ft-line);
}

.ilj-footer__group summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 78px;
  padding: 10px 4px 12px;
  list-style: none;
  cursor: pointer;
  text-align: center;
}

.ilj-footer__group summary::-webkit-details-marker { display: none; }

.ilj-footer__group-ico {
  display: grid;
  place-items: center;
  color: #fff;
}

.ilj-footer__group-ico .ilj-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}

.ilj-footer__group-label {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 9ch;
}

.ilj-footer__group-chev {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
}

.ilj-footer__group-chev .ilj-icon {
  width: 12px;
  height: 12px;
}

.ilj-footer__group[open] .ilj-footer__group-chev {
  transform: rotate(180deg);
}

.ilj-footer__group ul {
  display: none;
  margin: 0;
  padding: 0 4px 10px;
  list-style: none;
  text-align: center;
}

.ilj-footer__group[open] ul {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--ft-line);
  margin-top: 2px;
  padding-top: 8px;
}

.ilj-footer__group a {
  display: block;
  padding: 5px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.25;
}

.ilj-footer__group a:hover { color: #fff; }

/* Accreditations */
.ilj-footer__accs {
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--ft-line);
}

.ilj-footer__accs h2 {
  margin: 0 0 12px;
  text-align: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.ilj-footer__accs-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.ilj-footer__acc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 4px 4px 2px;
  min-width: 0;
}

.ilj-footer__acc + .ilj-footer__acc {
  border-inline-start: 1px solid var(--ft-line);
}

.ilj-footer__acc img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ilj-footer__acc span {
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 11ch;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* Bottom legal row */
.ilj-footer__bottom {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 5px 6px;
  margin-top: 0;
  padding: 14px 2px 4px;
  border-top: 0;
  text-align: center;
  overflow: hidden;
}

.ilj-footer__bottom p,
.ilj-footer__bottom .ilj-footer__sep {
  margin: 0;
  color: rgba(200, 220, 235, 0.7);
  font-size: 0.58rem;
  font-weight: 600;
  white-space: nowrap;
}

.ilj-footer__bottom a {
  color: var(--ft-cyan);
  font-size: 0.58rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ilj-footer__bottom a:hover {
  color: #a8eaf5;
  text-decoration: underline;
}

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

/* Sticky bar clearance — do not redesign action bar */
body.pb-mobile-bar .ilj-footer__shell {
  padding-bottom: calc(18px + 68px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body.pb-mobile-bar .ilj-footer__shell {
    padding-bottom: 22px;
  }
}

@media (min-width: 480px) {
  .ilj-footer__group-label { font-size: 0.7rem; max-width: 11ch; }
  .ilj-footer__acc span { font-size: 0.58rem; }
  .ilj-footer__brand > p { font-size: 0.76rem; }
  .ilj-footer__contact-link { font-size: 0.78rem; }
}

@media (min-width: 900px) {
  .ilj-footer__shell {
    border-radius: 28px 28px 0 0;
    padding: 28px 0 24px;
  }

  .ilj-footer__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 40px;
    padding-bottom: 20px;
  }

  .ilj-footer__logo { font-size: 1.2rem; }
  .ilj-footer__logo img { width: auto; height: 48px; max-width: 180px; }
  .ilj-footer__brand > p {
    max-width: 52ch;
    font-size: 0.88rem;
    margin-top: 10px;
  }

  .ilj-footer__contact { gap: 10px; }
  .ilj-footer__contact-link { font-size: 0.88rem; }
  .ilj-footer__contact-link .ilj-icon,
  .ilj-footer__contact-link--wa .ilj-footer__wa {
    width: 16px;
    height: 16px;
  }

  .ilj-footer__group summary { min-height: 88px; gap: 7px; }
  .ilj-footer__group-ico .ilj-icon { width: 22px; height: 22px; }
  .ilj-footer__group-label { font-size: 0.82rem; max-width: none; }

  .ilj-footer__accs { padding: 22px 0 18px; }
  .ilj-footer__accs h2 { font-size: 1.1rem; margin-bottom: 16px; }
  .ilj-footer__acc img { width: 56px; height: 56px; }
  .ilj-footer__acc span { font-size: 0.7rem; max-width: 14ch; }

  .ilj-footer__bottom {
    padding-top: 16px;
    gap: 8px 12px;
  }

  .ilj-footer__bottom p,
  .ilj-footer__bottom .ilj-footer__sep,
  .ilj-footer__bottom a { font-size: 0.8rem; }
}

[dir="rtl"] .ilj-help-card__arrow { transform: rotate(180deg); }
[dir="rtl"] .ilj-step-card { padding: 21px 18px 21px 24px; }
[dir="rtl"] .ilj-footer__contact { justify-items: start; }

@media (min-width: 900px) {
  .ilj-help-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: none; }
  .ilj-help-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 148px;
    padding: 22px 16px;
  }
  .ilj-help-card__arrow { display: none; }
}

@media (max-width: 899px) {
  .ilj-journey::before { left: 25px; }
  .ilj-journey__item,
  .ilj-journey__item:nth-child(even) { justify-content: flex-end; }
  .ilj-journey__item::after { left: 25px; }
  .ilj-step-card { width: calc(100% - 58px); }
}

@media (max-width: 720px) {
  .ilj-page { padding: 14px 0 28px; }
  .ilj-shell { width: 100%; max-width: 100%; padding-inline: 14px; }
  .ilj-breadcrumb { margin-bottom: 18px; font-size: .8rem; }
  .ilj-heading { margin-bottom: 24px; }
  .ilj-heading h1,
  .ilj-legal-hero h1 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .ilj-heading p { margin-top: 10px; font-size: .92rem; }
  .ilj-help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ilj-help-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 118px;
    padding: 14px 10px;
  }
  .ilj-help-card__arrow { display: none; }
  .ilj-help-card strong { font-size: .88rem; }
  .ilj-help-card small { font-size: .72rem; }
  .ilj-support-panel { grid-template-columns: 1fr; padding: 18px 14px; margin-top: 28px; }
  .ilj-form__row { grid-template-columns: 1fr; gap: 0; }
  .ilj-legal-hero { grid-template-columns: minmax(0, 1fr) 72px; gap: 14px; margin-bottom: 22px; }
  .ilj-legal-hero__icon { width: 68px; height: 68px; }
  .ilj-legal-hero__icon svg { width: 32px; height: 32px; }
  .ilj-legal-row summary { grid-template-columns: 34px minmax(0, 1fr) 16px; gap: 10px; min-height: 56px; padding: 10px 12px; font-size: .9rem; }
  .ilj-legal-row__body { padding: 2px 14px 14px; }
  .ilj-legal-row__body p { font-size: .86rem; }
  .ilj-compact-cta { align-items: stretch; flex-direction: column; padding: 18px; margin-top: 36px; }
  .ilj-actions { width: 100%; }
  .ilj-actions .ilj-btn { flex: 1; }
}

@media (max-width: 360px) {
  .ilj-help-grid { grid-template-columns: 1fr; }
  .ilj-help-card {
    grid-template-columns: 50px minmax(0, 1fr);
    justify-items: stretch;
    text-align: start;
    min-height: 94px;
    padding: 15px;
  }
}

@media (max-width: 520px) {
  .ilj-step-card { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; min-height: 100px; padding: 14px 12px; }
  .ilj-step-card__badge { width: 50px; height: 62px; border-radius: 12px; }
  .ilj-step-card__copy h2 { font-size: .95rem; }
  .ilj-step-card__copy p { font-size: .78rem; }
  .ilj-help-card__icon { width: 46px; height: 46px; }
  .ilj-actions { flex-direction: column; }
  .ilj-medical-notice,
  .ilj-emergency-box { padding: 12px; }
  .ilj-emergency-box__number { width: 46px; height: 46px; font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ilj-page *,
  .ilj-footer * { scroll-behavior: auto !important; transition: none !important; }
}
