/* ═══════════════════════════════════════════════════════════════════════
   TOUKIDOU AUTH.CSS — Design system Auth / Erreurs / Legal (2026-07-31)
   ═══════════════════════════════════════════════════════════════════════
   Consolidé depuis les CSS inline dispersés dans :
     • login.html (418 lignes de référence)
     • register.html + register_institution.html + register_corporate.html
     • password_reset_form / _confirm / _done / _complete .html
     • password_change_form / _done .html
     • activation_expired / _invalid / _sent / _success / _success_institution_user .html
     • pending_activation.html
     • initial_password_setup.html
     • merci.html + mobile_support.html
     • 400 / 403 / 404 / 500 .html
   Réutilise 100 % des tokens --tk-* (main.css:4997). Charger APRÈS main.css.
   ═══════════════════════════════════════════════════════════════════════ */


  .tk-site-login-page {
    background:
      radial-gradient(circle at top left, rgba(16, 188, 105, 0.08), transparent 34%),
      radial-gradient(circle at top right, rgba(31, 132, 198, 0.08), transparent 30%),
      linear-gradient(180deg, #f8fbfa 0%, #f4f8f7 100%);
  }

  .tk-site-login-page main.container {
    width: 100%;
    max-width: none;
    margin-top: 0 !important;
    padding: 0;
  }

  .tk-site-login-section {
    padding: 32px 20px 72px;
  }

  .tk-site-login-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
  }

  .tk-site-login-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(360px, 0.92fr);
    gap: 34px;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(215, 222, 231, 0.65);
    box-shadow:
      -10px -10px 22px rgba(255, 255, 255, 0.96),
      14px 18px 34px rgba(15, 23, 42, 0.10),
      0 28px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }

  .tk-site-login-card::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -18px;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.05) 44%, transparent 76%);
    filter: blur(14px);
    z-index: 0;
    pointer-events: none;
  }

  .tk-site-login-visual,
  .tk-site-login-panel {
    position: relative;
    z-index: 1;
  }

  .tk-site-login-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px 6px 0;
    overflow: hidden;
  }

  .tk-site-login-road {
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 92px;
    height: 16px;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(148, 163, 184, 0.22) 0%, rgba(148, 163, 184, 0.08) 100%),
      repeating-linear-gradient(
        90deg,
        rgba(31, 132, 198, 0.00) 0 22px,
        rgba(31, 132, 198, 0.24) 22px 54px,
        rgba(31, 132, 198, 0.00) 54px 88px
      );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      0 10px 20px rgba(15, 23, 42, 0.10);
    animation: tk-site-login-road-move 1s linear infinite;
  }

  .tk-site-login-road::before {
    content: "";
    position: absolute;
    inset: auto 8% -8px 8%;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.05) 48%, transparent 78%);
    filter: blur(8px);
  }

  .tk-site-login-visual img {
    position: relative;
    width: min(100%, 460px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 40px rgba(16, 188, 105, 0.16));
    animation: tk-site-login-van-drive 1.45s ease-in-out infinite;
  }

  .tk-site-login-panel {
    display: grid;
    gap: 20px;
  }

  .tk-site-login-brand {
    display: inline-flex;
    align-items: center;
  }

  .tk-site-login-brand img {
    width: min(220px, 100%);
    height: auto;
    object-fit: contain;
  }

  .tk-site-login-form {
    display: grid;
    gap: 18px;
  }

  .tk-site-login-field {
    display: grid;
    gap: 8px;
  }

  .tk-site-login-field label {
    font-weight: 700;
    color: #5f6c88;
    font-size: 14px;
  }

  .tk-site-login-field input[type="text"],
  .tk-site-login-field input[type="password"],
  .tk-site-login-field input[type="email"] {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(95, 108, 136, 0.24);
    background: #fff;
    padding: 0 18px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .tk-site-login-field input:focus {
    outline: none;
    border-color: #1f84c6;
    box-shadow: 0 0 0 4px rgba(31, 132, 198, 0.12);
  }

  .tk-site-login-field input::placeholder {
    color: rgba(95, 108, 136, 0.56);
  }

  .tk-site-password-wrap {
    position: relative;
  }

  .tk-site-password-wrap input {
    padding-right: 56px !important;
  }

  .tk-site-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(95, 108, 136, 0.78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
  }

  .tk-site-password-toggle:hover {
    background: rgba(16, 188, 105, 0.08);
    color: #24304a;
  }

  .tk-site-login-meta {
    display: flex;
    justify-content: center;
  }

  .tk-site-login-meta a {
    color: #5f6c88;
    font-weight: 600;
    text-decoration: none;
  }

  .tk-site-login-meta a:hover {
    color: #1f84c6;
  }

  .tk-site-login-submit {
    display: flex;
    justify-content: center;
  }

  .tk-site-login-submit button {
    min-width: 220px;
    min-height: 56px;
    border: 0;
    border-radius: 14px;
    padding: 0 24px;
    background: #10bc69;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(16, 188, 105, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }

  .tk-site-login-submit button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(16, 188, 105, 0.24);
  }

  .tk-site-login-submit button:disabled,
  .tk-site-login-submit button.is-submitting {
    opacity: .72;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    transform: none;
    filter: grayscale(.18);
  }

  .tk-site-login-social {
    display: grid;
    gap: 10px;
    padding-top: 4px;
  }

  #googleSignInBtn {
    display: flex;
    justify-content: center;
  }

  .tk-site-login-register {
    text-align: center;
    color: #5f6c88;
    margin: 0;
  }

  .tk-site-login-candidate-banner {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(31, 132, 198, 0.16);
    background: linear-gradient(135deg, rgba(31, 132, 198, 0.08), rgba(16, 188, 105, 0.08));
    color: #26415f;
  }

  .tk-site-login-candidate-banner strong {
    display: block;
    margin-bottom: 4px;
    color: #1b3553;
    font-size: 15px;
  }

  .tk-site-login-register a {
    color: #1f84c6;
    font-weight: 700;
    text-decoration: none;
  }

  .tk-site-login-errors .alert,
  .tk-site-login-errors .alert-danger {
    margin: 0;
    border-radius: 16px;
    border: 1px solid rgba(220, 53, 69, 0.22);
    background: rgba(220, 53, 69, 0.08);
    color: #a5273d;
  }

  .tk-site-login-field .text-danger,
  #socialAuthError {
    font-size: 13px;
  }

  @keyframes tk-site-login-van-drive {
    0%, 100% {
      transform: translate3d(0, 0, 0) rotate(0deg);
    }
    25% {
      transform: translate3d(8px, -5px, 0) rotate(-0.8deg);
    }
    50% {
      transform: translate3d(16px, 1px, 0) rotate(0.45deg);
    }
    75% {
      transform: translate3d(7px, 5px, 0) rotate(0.9deg);
    }
  }

  @keyframes tk-site-login-road-move {
    0% {
      transform: translateX(0);
      opacity: 0.75;
    }
    100% {
      transform: translateX(62px);
      opacity: 0.42;
    }
  }

  @media (max-width: 980px) {
    .tk-site-login-section {
      padding: 24px 0 56px;
    }

    .tk-site-login-card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 28px 22px;
    }

    .tk-site-login-visual {
      min-height: auto;
      padding: 0 0 12px;
    }

    .tk-site-login-visual img {
      width: min(100%, 340px);
    }

    .tk-site-login-road {
      left: 18%;
      right: 18%;
      bottom: 72px;
    }
  }

  @media (max-width: 768px) {
    .tk-site-login-section {
      padding: 18px 14px 40px;
    }

    .tk-site-login-card {
      gap: 16px;
      padding: 22px 16px;
      border-radius: 24px;
    }

    .tk-site-login-brand {
      justify-content: center;
    }

    .tk-site-login-panel {
      gap: 18px;
    }

    .tk-site-login-visual img {
      width: min(100%, 260px);
    }

    .tk-site-login-road {
      left: 16%;
      right: 16%;
      bottom: 68px;
    }

    .tk-site-login-field input[type="text"],
    .tk-site-login-field input[type="password"],
    .tk-site-login-field input[type="email"] {
      min-height: 54px;
      font-size: 15px;
    }

    .tk-site-login-submit button {
      width: 100%;
      min-width: 0;
    }

    .tk-site-login-meta {
      justify-content: center;
    }
  }

  @media (max-width: 560px) {
    .tk-site-login-card {
      padding: 18px 14px;
      border-radius: 20px;
    }

    .tk-site-login-brand img {
      width: min(180px, 100%);
    }

    .tk-site-login-visual img {
      width: min(100%, 230px);
    }

    .tk-site-login-road {
      left: 14%;
      right: 14%;
      bottom: 60px;
    }
  }

/* ═══════════════════════════════════════════════════════════════════════
   NOUVEAUX PATTERNS PARTAGÉS (2026-07-31)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Shell générique pour les pages non-login (register, password reset,
   activation, erreurs, statique) — plus étroit que le shell login 2-col. */
.tk-auth-page {
  min-height: calc(100vh - 200px);
  padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 24px);
  background:
    radial-gradient(circle at top left, rgba(16, 188, 105, 0.06), transparent 34%),
    radial-gradient(circle at top right, rgba(31, 132, 198, 0.06), transparent 30%),
    linear-gradient(180deg, #f8fbfa 0%, #f4f8f7 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.tk-auth-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.tk-auth-shell-narrow {
  max-width: 520px;
}
.tk-auth-shell-medium {
  max-width: 720px;
}

/* ── Card simple pour formulaires courts (register, password reset) ─── */
.tk-auth-simple-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border: 1px solid rgba(215, 222, 231, 0.65);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08),
              0 8px 16px rgba(15, 23, 42, 0.04);
  position: relative;
}
.tk-auth-simple-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--tk-blue) 0%, var(--tk-yellow) 100%);
}

/* ── En-tête de card auth (logo + titre + sous-titre) ─────────────── */
.tk-auth-header {
  text-align: center;
  margin-bottom: 24px;
}
.tk-auth-header img.tk-auth-brand {
  max-width: 140px;
  height: auto;
  margin-bottom: 16px;
}
.tk-auth-header h1 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--tk-navy);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.tk-auth-header p {
  color: var(--tk-muted);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin: 0;
  line-height: 1.5;
}

/* ── Boutons auth cohérents avec le design system TK ──────────────── */
.tk-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.tk-auth-btn:hover, .tk-auth-btn:focus-visible { transform: translateY(-2px); }

.tk-auth-btn-primary {
  background: linear-gradient(135deg, var(--tk-blue) 0%, var(--tk-blue-d) 100%);
  color: #ffffff !important;
  box-shadow: var(--tk-sh-blue);
}
.tk-auth-btn-primary:hover { box-shadow: 0 14px 32px rgba(48,137,197,.32); color: #ffffff !important; }

.tk-auth-btn-ghost {
  background: transparent;
  color: var(--tk-blue-d) !important;
  border: 2px solid var(--tk-blue);
}
.tk-auth-btn-ghost:hover { background: var(--tk-blue-50); color: var(--tk-blue-d) !important; }

.tk-auth-btn-block {
  display: flex;
  width: 100%;
}

/* ── Status card (activation, password_reset_done, merci) ─────────── */
.tk-auth-status-card {
  background: #ffffff;
  border: 1px solid rgba(215, 222, 231, 0.65);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 40px);
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
}
.tk-auth-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

/* Variantes tonales */
.tk-auth-status-success .tk-auth-status-icon {
  background: linear-gradient(135deg, #E6F9EF 0%, #D0F5DE 100%);
  color: var(--tk-green-d);
  box-shadow: 0 8px 20px rgba(16,188,105,.20);
}
.tk-auth-status-info .tk-auth-status-icon {
  background: linear-gradient(135deg, var(--tk-blue-50) 0%, #DBEEFB 100%);
  color: var(--tk-blue-d);
  box-shadow: 0 8px 20px rgba(48,137,197,.18);
}
.tk-auth-status-warning .tk-auth-status-icon {
  background: linear-gradient(135deg, #FFF7E4 0%, #FFEEBF 100%);
  color: var(--tk-yellow-d);
  box-shadow: 0 8px 20px rgba(249,193,59,.24);
}
.tk-auth-status-danger .tk-auth-status-icon {
  background: linear-gradient(135deg, #FDECEC 0%, #FBD5D5 100%);
  color: #dc2626;
  box-shadow: 0 8px 20px rgba(220,38,38,.20);
}

.tk-auth-status-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--tk-blue-d);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tk-auth-status-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--tk-navy);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.tk-auth-status-message {
  color: var(--tk-muted);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 24px;
}
.tk-auth-status-message p { margin: 0 0 8px; text-align: justify; hyphens: none; }
.tk-auth-status-message p:last-child { margin: 0; }
.tk-auth-status-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
@media (min-width: 480px) {
  .tk-auth-status-actions { flex-direction: row; justify-content: center; }
  .tk-auth-status-actions .tk-auth-btn { min-width: 200px; }
}
.tk-auth-status-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--tk-border);
  color: var(--tk-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── Error page (400/403/404/500) ──────────────────────────────────── */
.tk-error-card {
  background: #ffffff;
  border: 1px solid rgba(215, 222, 231, 0.65);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 40px);
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.tk-error-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tk-blue), var(--tk-yellow));
}
.tk-error-code {
  font-size: clamp(4rem, 20vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--tk-navy) 0%, var(--tk-blue) 50%, var(--tk-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tk-error-danger .tk-error-code {
  background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #7f1d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tk-error-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--tk-navy);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.2;
}
.tk-error-message {
  color: var(--tk-muted);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 24px;
}
.tk-error-message p { margin: 0 0 8px; text-align: justify; hyphens: none; }
.tk-error-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
@media (min-width: 480px) {
  .tk-error-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
.tk-error-help {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--tk-border);
  color: var(--tk-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Legal doc layout (contract, conditions, privacy) ──────────────── */
.tk-legal-page {
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 24px);
  background: #f8fbfa;
  min-height: calc(100vh - 200px);
}
.tk-legal-shell {
  max-width: 780px;
  margin: 0 auto;
}
.tk-legal-header {
  text-align: center;
  margin-bottom: 32px;
}
.tk-legal-header h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  color: var(--tk-navy);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.tk-legal-header p.tk-legal-meta {
  color: var(--tk-muted);
  font-size: 0.9rem;
  margin: 0;
}
.tk-legal-header::after {
  content: "";
  display: block;
  width: 68px; height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tk-blue), var(--tk-yellow));
  box-shadow: 0 6px 18px rgba(249,193,59,0.32);
}
.tk-legal-content {
  background: #ffffff;
  border: 1px solid rgba(215, 222, 231, 0.65);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  color: var(--tk-navy);
  font-size: clamp(0.95rem, 2.6vw, 1rem);
  line-height: 1.7;
}
.tk-legal-content h2 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 800;
  color: var(--tk-navy);
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tk-blue-50);
}
.tk-legal-content h2:first-child { margin-top: 0; }
.tk-legal-content h3 {
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  font-weight: 700;
  color: var(--tk-navy);
  margin: 20px 0 8px;
}
.tk-legal-content p {
  color: var(--tk-navy);
  text-align: justify;
  hyphens: none;
  margin: 0 0 12px;
}
.tk-legal-content ul, .tk-legal-content ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.tk-legal-content li {
  color: var(--tk-navy);
  margin: 4px 0;
  line-height: 1.6;
}
.tk-legal-content a {
  color: var(--tk-blue-d);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(48,137,197,.4);
}
.tk-legal-content a:hover { border-bottom-style: solid; }
.tk-legal-content strong { color: var(--tk-navy); font-weight: 700; }

/* ── Reset iOS zoom sur inputs auth ───────────────────────────────── */
.tk-auth-page input, .tk-auth-page textarea, .tk-auth-page select { font-size: max(16px, 1em); }

/* ── Legal / support pages polish (BizLand-style .terms-content markup)
   Ces règles s'appliquent aux pages contract, user_conditions, privacy_policy,
   mobile_support qui utilisent le markup BizLand hérité (service-details,
   terms-content, service-box). On ne touche pas au markup — juste au CSS. */

/* Paragraphes justifiés (règle DA TouKidou 2026) */
.terms-content p,
.terms-content li {
  text-align: justify;
  hyphens: none;
  color: var(--tk-navy);
  line-height: 1.7;
}
.terms-content h2,
.terms-content h3 {
  color: var(--tk-navy);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.terms-content .terms-section h3 {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 8px;
}
.terms-content .terms-header {
  border-left: 3px solid var(--tk-blue);
  background: linear-gradient(90deg, rgba(48,137,197,.06), transparent 90%) !important;
}
.terms-content .custom-ul {
  padding-left: 22px;
  margin: 0 0 16px;
}
.terms-content .custom-ul li {
  margin: 6px 0;
}

/* Mobile polish : cartes empilées, sidebar en premier, breadcrumb allégée */
@media (max-width: 991.98px) {
  .service-details.section { padding: 24px 0 32px !important; }
  .service-details .container { padding: 0 12px !important; }
  .service-details .row { --bs-gutter-y: 20px; }
  .service-details .col-lg-8.ps-lg-5 { padding-left: 0 !important; }
  .service-details .service-box,
  .service-details .help-box {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 18px rgba(13,34,55,.06) !important;
  }
  .service-details .service-box h4,
  .service-details .help-box h4 {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }
  .service-details .services-list a {
    padding: 10px 12px !important;
    font-size: 0.88rem !important;
    min-height: 44px;
  }
  .terms-content .terms-header {
    padding: 14px 16px !important;
    font-size: 0.88rem;
  }
  .terms-content .terms-section {
    margin-bottom: 24px !important;
  }
  /* Tables in legal → force scroll horizontal */
  .terms-content table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    font-size: 0.82rem;
  }
}
