/*
 * Styles du wizard d'onboarding prestataire.
 * Chargé UNIQUEMENT sur les pages onboarding (via <link> dans le template).
 * Repris du mockup ressources/onboarding-prestataire.html.
 *
 * Cascade : Bootstrap est injecté au runtime par app.js (donc APRÈS ce fichier).
 * Les règles qui surchargent Bootstrap (.form-control, .form-select, .input-group*)
 * sont scopées sous « .ob » → spécificité (0,2,0) > Bootstrap (0,1,0), elles gagnent
 * quel que soit l'ordre. Les boutons / navbar / footer / variables --tnt-* viennent
 * déjà d'app.css (chargé sur tout le site) et ne sont pas redéfinis ici.
 */

/* ── Layout ── */
.ob.main-content { padding-top: 96px; padding-bottom: 64px; min-height: 70vh; }
.ob .form-card {
  background: var(--tnt-surface); border-radius: 20px;
  border: 1px solid var(--tnt-border); box-shadow: 0 4px 24px rgba(11, 37, 69, 0.03);
  padding: clamp(24px, 5vw, 40px);
}
.ob .hint { font-size: .82rem; color: var(--tnt-muted); }
.ob .hpot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.ob .btn-link-tnt { color: var(--tnt-teal); font-weight: 600; text-decoration: none; }
.ob .btn-link-tnt:hover { text-decoration: underline; }
.ob .btn-link-muted { color: var(--tnt-muted); font-weight: 500; text-decoration: none; font-size: .9rem; }
.ob .btn-link-muted:hover { color: var(--tnt-text); text-decoration: underline; }

/* ── Champs (surcharge Bootstrap, scopée .ob) ── */
.ob .form-label { font-weight: 600; font-size: .9rem; color: var(--tnt-navy); margin-bottom: .35rem; }
.ob .form-control, .ob .form-select {
  border-radius: 14px; border: 2px solid transparent; background-color: var(--tnt-bg);
  box-shadow: inset 0 2px 4px rgba(11, 37, 69, 0.02); padding: 14px 18px;
  font-size: .95rem; transition: all 0.2s ease;
}
.ob .form-control::placeholder { color: #9ca3af; }
.ob .form-control:hover, .ob .form-select:hover { border-color: #cbd5e1; }
.ob .form-control:focus, .ob .form-select:focus {
  background-color: #fff; border-color: var(--tnt-teal);
  box-shadow: 0 0 0 5px var(--tnt-teal-light), 0 6px 16px rgba(11, 37, 69, 0.06); outline: none;
}
.ob .form-select { padding-right: 2.5rem; background-position: right 1rem center; }

.ob .input-group-text {
  background-color: var(--tnt-bg); border: 2px solid transparent; border-right: 0;
  color: var(--tnt-muted); font-size: .95rem; border-radius: 14px 0 0 14px;
  padding: 14px 4px 14px 14px; box-shadow: inset 0 2px 4px rgba(11, 37, 69, 0.02); transition: all 0.2s ease;
}
.ob .input-group-text i { font-size: 1.05rem; }
.ob .input-group > .form-control {
  border-left: 0; padding-left: 8px;
  border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important;
}
.ob .input-group:hover:not(:focus-within) > .input-group-text,
.ob .input-group:hover:not(:focus-within) > .form-control,
.ob .input-group:hover:not(:focus-within) > .form-select { border-color: #cbd5e1; }
.ob .input-group:focus-within > .input-group-text,
.ob .input-group:focus-within > .form-control,
.ob .input-group:focus-within > .form-select {
  background-color: #fff; border-color: var(--tnt-teal);
  box-shadow: inset 0 2px 4px rgba(11, 37, 69, 0.02);
}
.ob .input-group:focus-within {
  border-radius: 14px; box-shadow: 0 0 0 5px var(--tnt-teal-light), 0 6px 16px rgba(11, 37, 69, 0.06);
}
.ob .input-group:focus-within > .input-group-text { color: var(--tnt-teal); }
.ob .input-group-text-domain {
  padding: 0 8px 0 4px; color: var(--tnt-muted);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .88rem;
}
.ob .form-control.is-invalid, .ob .form-select.is-invalid { border-color: #ef4444; }
.ob .invalid-feedback, .ob .form-error { color: #ef4444; font-size: .82rem; margin-top: .25rem; }

/* ── Stepper ── */
.progress-thin { height: 6px; border-radius: 980px; background: #e5e9f0; }
.progress-thin .bar { height: 100%; border-radius: 980px; background: var(--tnt-teal); transition: width .3s ease; }
.step-counter {
  display: inline-block; font-size: .78rem; font-weight: 600;
  color: var(--tnt-teal); text-transform: uppercase; letter-spacing: .08em;
}
.step-title-h1 { font-size: 1.5rem; font-weight: 700; color: var(--tnt-navy); margin: 4px 0 0 0; line-height: 1.2; }

/* ── Sous-titre de section ── */
.sec-title {
  display: flex; align-items: center; gap: 12px;
  margin-top: 2.5rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--tnt-border);
}
.step-fields > .sec-title:first-child { margin-top: 0; }
.sec-title .sec-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; background: var(--tnt-teal-light); color: var(--tnt-teal);
}
.sec-title h3 { font-size: 1.02rem; font-weight: 700; color: var(--tnt-navy); margin: 0; line-height: 1.2; }

/* Note d'information de section : alert Bootstrap habillée aux couleurs TNT. */
.ob .alert-info {
  background: var(--tnt-teal-light); border: 1px solid rgba(35, 155, 150, 0.25);
  color: var(--tnt-navy); border-radius: 14px; padding: 14px 18px;
  font-size: .88rem; margin-bottom: 1.5rem;
}
.ob .alert-info i { color: var(--tnt-teal); font-size: 1.2rem; }

/* ── Cartes cocheables (services / certifs / consentements) ── */
.service-card, .cert-card, .consent-card {
  position: relative; border: 2px solid #e2e8f0; border-radius: 16px;
  background: var(--tnt-surface); cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); user-select: none;
}
.service-card:hover, .cert-card:hover, .consent-card:hover {
  border-color: #cbd5e1; background: #f8fafc; transform: translateY(-2px);
}
.service-card.is-selected, .cert-card.checked, .consent-card.checked {
  background: #f0fdfc; border-color: var(--tnt-teal); box-shadow: 0 8px 24px var(--tnt-teal-light);
}
.service-card input[type="checkbox"], .cert-card input[type="checkbox"], .consent-card input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
/* Le label du thème Bootstrap est supprimé (label: false) ; on neutralise son wrapper .form-check
   vide pour qu'il n'introduise pas de retrait fantôme dans la carte (flex). */
.cert-card .form-check, .consent-card .form-check, .service-card .form-check { padding: 0; min-height: 0; margin: 0; }
.custom-toggle, .cert-check-indicator {
  position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 980px;
  background: var(--tnt-bg); color: var(--tnt-navy); border: 1px solid var(--tnt-border);
  transition: all 0.2s ease; white-space: nowrap; pointer-events: none;
}
.custom-toggle .action-default, .cert-check-indicator .action-default { display: inline-flex; align-items: center; gap: 4px; }
.custom-toggle .action-selected, .cert-check-indicator .action-selected { display: none; align-items: center; gap: 4px; }
.service-card:hover .custom-toggle, .cert-card:hover .cert-check-indicator, .consent-card:hover .custom-toggle,
.service-card.is-selected .custom-toggle, .cert-card.checked .cert-check-indicator, .consent-card.checked .custom-toggle {
  background: var(--tnt-teal); color: #fff; border-color: var(--tnt-teal);
}
.service-card.is-selected .custom-toggle .action-default,
.cert-card.checked .cert-check-indicator .action-default,
.consent-card.checked .custom-toggle .action-default { display: none; }
.service-card.is-selected .custom-toggle .action-selected,
.cert-card.checked .cert-check-indicator .action-selected,
.consent-card.checked .custom-toggle .action-selected { display: inline-flex; }
.service-icon-wrapper, .cert-icon-wrapper {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: var(--tnt-bg); color: var(--tnt-navy); transition: all 0.25s ease; flex-shrink: 0;
}
.service-card.is-selected .service-icon-wrapper, .cert-card.checked .cert-icon-wrapper { background: var(--tnt-teal); color: #fff; }
.cert-icon-wrapper { margin-bottom: 12px; }
.service-title, .cert-title { font-weight: 600; color: var(--tnt-navy); font-size: 1rem; line-height: 1.2; }
.cert-title { font-weight: 700; margin-bottom: 4px; }
.cert-info { flex-grow: 1; }
.cert-desc { font-size: 0.8rem; color: var(--tnt-muted); line-height: 1.4; margin: 0; }
.cert-card { display: flex; flex-direction: column; padding: 16px 18px; padding-right: 130px; height: 100%; }

/* services (bascule lecture / édition) */
.service-card { margin-bottom: 1rem; }
/* vue lecture compacte (nom + description) */
.service-read { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
/* Zone cliquable de sélection (icône + texte + pill) ; le crayon d'édition reste en dehors. */
.service-select { display: flex; align-items: center; gap: 12px; min-width: 0; margin: 0; cursor: pointer; }
/* Dans la vue lecture, la pill « Ajouter/Ajouté » est en flux (et non absolue comme sur les certifs). */
.service-read .custom-toggle { position: static; }
.service-read-body { min-width: 0; }
.service-desc-read { font-size: 0.82rem; color: var(--tnt-muted); line-height: 1.35; margin: 2px 0 0; }
.service-desc-read:empty { display: none; }
.btn-edit-service { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; background: var(--tnt-bg); border: 1px solid var(--tnt-border); color: var(--tnt-navy); display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; }
.btn-edit-service:hover { background: var(--tnt-teal); color: #fff; border-color: var(--tnt-teal); }
/* vue édition */
.service-card-header { padding: 16px 20px; display: flex; align-items: center; gap: 12px; margin: 0; width: 100%; }
.service-info { display: flex; flex-direction: column; gap: 2px; }
.service-card-body { padding: 16px 20px 20px; border-top: 1px dashed var(--tnt-border); }
.service-card textarea.svc-desc { resize: none; }
/* Boutons compacts de la vue édition d'un service (Annuler / Enregistrer). */
.btn-service-save, .btn-service-cancel { display: inline-flex; align-items: center; border: none; border-radius: 8px; padding: 7px 16px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: background .2s, color .2s; }
.btn-service-save { background: var(--tnt-navy); color: #fff; }
.btn-service-save:hover { background: var(--tnt-navy-light); color: #fff; }
.btn-service-cancel { background: var(--tnt-bg); color: var(--tnt-muted); border: 1px solid var(--tnt-border); }
.btn-service-cancel:hover { background: #fff; color: var(--tnt-text); }

/* consentements (inline) */
.consent-card { display: flex; align-items: center; gap: 14px; padding: 22px 130px 22px 18px; margin-bottom: .75rem; }
.consent-card .custom-toggle { top: 50%; transform: translateY(-50%); }
.consent-card .consent-info { flex-grow: 1; font-size: .92rem; color: var(--tnt-text); }
.consent-card a { font-weight: 600; }

/* ── Étape Site — color tiles + mini-browser ── */
.color-tile {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-radius: 16px; border: 2px solid #e2e8f0; background: var(--tnt-surface);
  cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); user-select: none; overflow: hidden; margin-bottom: 12px;
}
.color-tile:hover { border-color: #cbd5e1; background: #f8fafc; transform: translateY(-2px); }
.color-tile-info { flex-grow: 1; }
.color-picker-wrapper { display: flex; align-items: center; gap: 10px; background: var(--tnt-bg); padding: 6px 12px 6px 6px; border-radius: 980px; position: relative; }
.color-swatch { width: 32px; height: 32px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); transition: background-color 0.3s ease; }
.color-hex { font-family: 'SF Mono', Menlo, Consolas, monospace; font-weight: 600; font-size: 0.9rem; color: var(--tnt-navy); }
.color-tile input[type="color"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.mini-browser { background: #fff; border-radius: 16px; border: 1px solid var(--tnt-border); box-shadow: 0 12px 32px rgba(11, 37, 69, 0.08); overflow: hidden; display: flex; flex-direction: column; height: 100%; min-height: 260px; }
.mini-browser-head { background: #f8fafc; border-bottom: 1px solid var(--tnt-border); padding: 12px 16px; display: flex; align-items: center; gap: 6px; }
.mini-browser-head .dot { width: 10px; height: 10px; border-radius: 50%; }
.mini-browser-head .dot:nth-child(1) { background: #ff5f56; }
.mini-browser-head .dot:nth-child(2) { background: #ffbd2e; }
.mini-browser-head .dot:nth-child(3) { background: #27c93f; }
.mini-browser-body { flex-grow: 1; display: flex; flex-direction: column; background: #f8fafc; }
.mock-hero { padding: 30px 20px; text-align: center; background-color: #1e4a8d; transition: background-color 0.4s ease; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mock-title { width: 60%; height: 12px; background: rgba(255, 255, 255, 0.9); border-radius: 6px; }
.mock-subtitle { width: 40%; height: 8px; background: rgba(255, 255, 255, 0.5); border-radius: 4px; }
.mock-btn { margin-top: 8px; width: 80px; height: 24px; border-radius: 980px; background-color: #e53935; transition: background-color 0.4s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }
.mock-content { padding: 20px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.mock-card { width: 30%; height: 40px; background: #fff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); }

/* ── Étape Photos — dropzones + chantiers ── */
.dz-box {
  border: 2px dashed #cbd5e1; border-radius: 16px; height: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--tnt-bg); cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
}
.dz-box:hover { border-color: var(--tnt-teal); background: var(--tnt-teal-light); transform: translateY(-2px); }
.dz-box input[type="file"] { position: absolute; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 2; }
.dz-text { z-index: 0; color: var(--tnt-muted); text-align: center; padding: 10px; transition: opacity 0.2s; }
.dz-text i { font-size: 28px; color: var(--tnt-navy); margin-bottom: 6px; display: block; transition: transform 0.2s, color 0.2s; }
.dz-box:hover .dz-text i { transform: scale(1.1); color: var(--tnt-teal); }
.dz-img-preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity 0.3s ease; }
.dz-img-preview.has-image { opacity: 1; }
.dz-box.is-uploading { opacity: .7; }

/* Composant live PhotoUpload (logo / équipe / véhicule) — habille le widget ux-dropzone. */
.photo-upload { position: relative; }
.photo-upload .dropzone-container {
  border: 2px dashed #cbd5e1; border-radius: 16px; min-height: 140px; padding: 14px;
  background: var(--tnt-bg); cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-upload .dropzone-container:hover { border-color: var(--tnt-teal); background: var(--tnt-teal-light); transform: translateY(-2px); }
.photo-upload .dropzone-placeholder { color: var(--tnt-muted); font-size: .8rem; font-weight: 500; line-height: 1.35; }
.photo-upload .dz-remove {
  position: absolute; top: 8px; right: 8px; z-index: 3; width: 32px; height: 32px;
  border: none; border-radius: 10px; display: grid; place-items: center; cursor: pointer;
  background: rgba(11, 37, 69, .55); color: #fff; transition: background 0.2s;
}
.photo-upload .dz-remove:hover { background: rgba(229, 57, 53, .92); }
.photo-upload .dz-error { color: #e53935; font-size: .78rem; margin: 6px 0 0; }
.chantier-card { border: 1px solid var(--tnt-border); border-radius: 16px; padding: 16px; background: #fff; margin-bottom: 16px; position: relative; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.chantier-card:hover { box-shadow: 0 4px 20px rgba(11, 37, 69, 0.05); border-color: #cbd5e1; }
.btn-close-custom { width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 1px solid var(--tnt-border); color: #ef4444; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.08); cursor: pointer; z-index: 10; transition: all 0.2s; }
.btn-close-custom:hover { background: #fee2e2; color: #dc2626; transform: translate(-50%, -50%) scale(1.1); }

/* ── Étape 0 — Recherche établissement ── */
.search-input-wrapper { position: relative; transition: all 0.3s ease; }
.search-input-wrapper input {
  height: 68px; padding-left: 56px !important; font-size: 1.05rem; border-radius: 16px;
  border: 2px solid transparent; background-color: var(--tnt-bg);
  box-shadow: inset 0 2px 4px rgba(11, 37, 69, 0.02); transition: all 0.2s ease; width: 100%;
}
.search-input-wrapper input:focus {
  background-color: #fff; border-color: var(--tnt-teal);
  box-shadow: 0 0 0 4px var(--tnt-teal-light), 0 4px 12px rgba(11, 37, 69, 0.05); outline: none;
}
.search-input-wrapper input::placeholder { color: #9ca3af; }
.search-icon-left { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: #9ca3af; transition: color 0.3s ease; pointer-events: none; }
.search-input-wrapper input:focus ~ .search-icon-left,
.search-input-wrapper input:not(:placeholder-shown) ~ .search-icon-left { color: var(--tnt-teal); }
.search-loader { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--tnt-teal); }
.gplace-result-card {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; margin-bottom: 12px;
  background: var(--tnt-surface); border: 2px solid #e2e8f0; border-radius: 16px; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.gplace-result-card:hover { border-color: #cbd5e1; background: #f8fafc; transform: translateY(-2px); }
.gplace-result-card.selected { border-color: var(--tnt-teal); background: #f0fdfc; box-shadow: 0 8px 24px var(--tnt-teal-light); }
.gplace-icon-box { width: 44px; height: 44px; border-radius: 12px; background: var(--tnt-bg); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--tnt-navy); flex-shrink: 0; transition: all 0.25s ease; }
.gplace-result-card.selected .gplace-icon-box { background: var(--tnt-teal); color: #fff; }
.gplace-action-btn { display: inline-flex; align-items: center; gap: 4px; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 980px; background: var(--tnt-bg); color: var(--tnt-navy); border: 1px solid var(--tnt-border); transition: all 0.2s ease; white-space: nowrap; }
.gplace-result-card:hover .gplace-action-btn, .gplace-result-card.selected .gplace-action-btn { background: var(--tnt-teal); color: #fff; border-color: var(--tnt-teal); }

/* ── Badges ── */
.legal-pill, .badge-pro {
  display: inline-flex; align-items: center; gap: 4px; background: #fef3c7; color: #92400e;
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; border: 1px solid #fde68a; white-space: nowrap;
}
.legal-pill { margin-top: 4px; }

/* ── Récap ── */
.recap-row { border-bottom: 1px dashed var(--tnt-border); padding: 8px 0; }
.recap-row:last-child { border-bottom: 0; }

/* ── Modale « Besoin d'aide ? » ──
 * Hors du conteneur .ob → on scope sous .help-modal avec une spécificité (0,2,0)
 * pour battre les styles Bootstrap (.modal-content / .modal-body) injectés au runtime. */
.help-modal .modal-content {
  border: none; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 37, 69, 0.18);
}
.help-modal .modal-body { padding: clamp(24px, 5vw, 36px); }

.help-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--tnt-border); background: var(--tnt-bg); color: var(--tnt-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: all 0.2s ease;
}
.help-modal-close:hover { background: var(--tnt-navy); color: #fff; border-color: var(--tnt-navy); }

.help-modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem; padding-right: 40px; }
.help-modal-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: var(--tnt-teal-light); color: var(--tnt-teal);
}
.help-modal-title { font-size: 1.25rem; font-weight: 700; color: var(--tnt-navy); margin: 0; line-height: 1.2; }
.help-modal-sub { font-size: .85rem; color: var(--tnt-muted); margin: 2px 0 0; }

.help-modal-intro { font-size: .9rem; font-weight: 600; color: var(--tnt-navy); margin-bottom: .6rem; }
.help-modal-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.help-modal-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: var(--tnt-text); padding: 3px 0;
}
.help-modal-list li i { color: var(--tnt-teal); font-size: 1.15rem; flex-shrink: 0; }

.help-contact {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  padding: 14px 16px; border-radius: 16px; border: 2px solid #e2e8f0;
  background: var(--tnt-surface); margin-bottom: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.help-contact:hover {
  border-color: var(--tnt-teal); background: #f0fdfc;
  transform: translateY(-2px); box-shadow: 0 8px 24px var(--tnt-teal-light);
}
.help-contact-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: var(--tnt-bg); color: var(--tnt-navy); transition: all 0.25s ease;
}
.help-contact:hover .help-contact-icon { background: var(--tnt-teal); color: #fff; }
.help-contact-body { display: flex; flex-direction: column; min-width: 0; flex-grow: 1; }
.help-contact-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--tnt-muted); }
.help-contact-value { font-size: 1rem; font-weight: 700; color: var(--tnt-navy); word-break: break-word; }
.help-contact-arrow { color: var(--tnt-muted); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s ease, color 0.2s ease; }
.help-contact:hover .help-contact-arrow { color: var(--tnt-teal); transform: translateX(3px); }

.help-modal-hours {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .85rem; color: var(--tnt-muted); margin: 1.25rem 0 0;
}
.help-modal-hours i { color: var(--tnt-teal); font-size: 1.05rem; }
