:root {
  --turquoise: #7fc3c0;
  --turquoise-deep: #2a7f86;
  --moutarde: #cfb845;
  --moutarde-soft: #f2ead0;
  --noir: #141414;
  --text: #1d2430;
  --muted: #5d6879;
  --bg: #f7f6f2;
  --bg-soft: #f3f7f7;
  --border: rgba(20, 20, 20, 0.08);
  --shadow: 0 16px 44px rgba(20, 20, 20, 0.10);
  --shadow-soft: 0 10px 26px rgba(20, 20, 20, 0.07);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-xs: 12px;
  --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f6f5f0 0%, #fbfaf7 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fff;
  color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }
label { display: block; font-weight: 600; margin-bottom: 8px; color: #263040; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-main { min-height: 68vh; }
.flash-stack { margin-top: 18px; }
.alert {
  padding: 16px 18px;
  border-radius: 18px;
  margin: 14px 0;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}
.alert-success { background: #eaf8ef; border-color: #a7d8b6; color: #1d6b38; }
.alert-error { background: #fff0f0; border-color: #f0c0c0; color: #9f1f1f; }
.alert-warning { background: #fff8e5; border-color: #ead38c; color: #725600; }
.alert-info { background: #eaf7fb; border-color: #bfe1ec; color: #185f70; }
.install-notice { margin-top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 243, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20,20,20,.06);
}
.site-header-admin {
  background: rgba(255,255,255,0.92);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 188px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: #2d3646;
  font-weight: 600;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.is-active {
  background: rgba(127,195,192,.16);
  color: var(--turquoise-deep);
}
.header-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.header-phone { font-weight: 700; color: var(--noir); }
.header-actions-admin .header-phone { display: none; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.1);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #232323; border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--noir) 0%, #2b2b2b 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20,20,20,.18);
}
.btn-secondary {
  background: #fff;
  color: #202020;
  border-color: rgba(20,20,20,.12);
  box-shadow: var(--shadow-soft);
}
.btn-outline { background: transparent; border-color: rgba(20,20,20,.16); color: var(--text); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.24); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(20,20,20,.08); color: var(--text); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366 0%, #1bb557 100%); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.22); }
.btn-outline-danger { background: #fff; border-color: rgba(180, 33, 33, .22); color: #b42121; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 24px; }
.btn-sm { padding: 10px 14px; font-size: .92rem; }
.compact { padding-inline: 14px; }
.text-link { color: var(--turquoise-deep); font-weight: 700; }

.section-shell { padding: 46px 0; }
.section-soft-gold {
  background: linear-gradient(180deg, rgba(207,184,69,.09) 0%, rgba(255,255,255,0) 100%);
  border-top: 1px solid rgba(207,184,69,.12);
  border-bottom: 1px solid rgba(207,184,69,.12);
}
.section-dark { background: linear-gradient(135deg, #161616 0%, #222 100%); color: #fff; }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  font-weight: 800;
  color: var(--turquoise-deep);
  margin: 0 0 12px;
}
.section-header h2, .hero-copy h1, .login-v2-copy h1, .login-v2-card h2, .page-hero-v2 h1 {
  margin: 0;
  line-height: 1.06;
}
.hero, .page-hero-v2 { padding: 54px 0 30px; }
.hero-grid-v2, .page-hero-grid, .hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: center; }
.hero-copy .lead, .page-hero-v2 .lead { font-size: 1.08rem; color: var(--muted); margin-top: 18px; }
.hero-copy h1, .page-hero-v2 h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); max-width: 14ch; }
.hero-copy.narrow h1 { max-width: none; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-visual-stack { display: grid; gap: 16px; }
.hero-visual-stack.simple { grid-template-columns: 1fr; }
.visual-grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.visual-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 10px;
  border: 1px solid rgba(20,20,20,.06);
  overflow: hidden;
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.visual-card-large { min-height: 340px; }
.visual-card-large img { aspect-ratio: 16/10; }
.highlight-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.highlight-stats article, .feature-card, .elegant-card, .module-showcase-card, .offer-highlight-card,
.module-private-card, .side-premium-card, .content-block, .table-card, .hubspot-panel-inner,
.login-v2-card, .dashboard-summary-card, .premium-card, .admin-stat, .admin-card, .offer-v2-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20,20,20,.07);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}
.highlight-stats article {
  padding: 22px 20px;
}
.highlight-stats strong { display: block; font-size: 1.9rem; line-height: 1.1; }
.highlight-stats span { color: var(--muted); }
.split-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: start; }
.feature-grid { display: grid; gap: 18px; }
.feature-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.feature-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.feature-card { padding: 26px; }
.feature-card h3, .feature-card h2, .elegant-card h2, .side-premium-card h3, .module-showcase-card h3, .offer-highlight-card h3, .offer-v2-card h2, .content-block h2, .dashboard-summary-card h3 { margin-top: 0; }
.side-premium-card, .dashboard-summary-card { padding: 28px; position: sticky; top: 106px; }
.bullet-list { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.bullet-list.clean { list-style: none; padding-left: 0; }
.bullet-list.clean li::before { content: '•'; color: var(--moutarde); font-weight: 900; margin-right: 10px; }
.bullet-list.light li::before { color: var(--moutarde); }
.offer-highlight-grid, .cards-elegant-grid, .module-private-grid, .offer-stack, .module-grid, .cards-grid, .content-grid { display: grid; gap: 20px; }
.cards-elegant-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.offer-highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.offer-highlight-card { padding: 24px; display: grid; gap: 16px; }
.offer-highlight-top h3 { margin-bottom: 8px; }
.offer-v2-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; padding: 20px; }
.offer-v2-copy { padding: 12px 8px 12px 12px; }
.offer-v2-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; aspect-ratio: 16/11; }
.offer-mini-label { color: var(--turquoise-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.module-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.module-showcase-card { display: grid; grid-template-columns: 68px 1fr; gap: 18px; padding: 22px; align-items: start; }
.module-showcase-order, .timeline-v2-index {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--turquoise-deep), var(--moutarde));
}
.module-inline-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; color: var(--muted); font-size: .95rem; }
.module-inline-meta span, .question-tags span, .module-index, .offer-mini-label {
  background: rgba(127,195,192,.12);
  border: 1px solid rgba(127,195,192,.18);
  border-radius: 999px;
  padding: 7px 10px;
}
.status-inline { background: rgba(207,184,69,.16) !important; border-color: rgba(207,184,69,.22) !important; color: #7f6a00; }
.timeline-v2 { display: grid; gap: 18px; }
.timeline-v2-card { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 24px; background: #fff; border-radius: var(--radius); border: 1px solid rgba(20,20,20,.07); box-shadow: var(--shadow-soft); }
.timeline-v2-card.locked { opacity: .86; }
.timeline-v2-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.module-private-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.module-private-card { padding: 24px; display: grid; gap: 16px; }
.module-private-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.module-index { display: inline-flex; margin-bottom: 8px; background: rgba(207,184,69,.14); border-color: rgba(207,184,69,.2); color: #7a5f00; }
.module-private-metrics, .module-private-score { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); }
.module-private-score small { display: block; color: var(--muted); }
.module-private-score strong { display: block; font-size: 1.2rem; }
.side-premium-card p:last-child { margin-bottom: 0; }
.hubspot-panel { background: rgba(255,255,255,.14); border-radius: var(--radius); padding: 10px; }
.hubspot-panel.compact { background: transparent; padding: 0; }
.hubspot-panel-inner { padding: 22px; background: #fff; }
.contact-cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: center; }
.section-dark .hubspot-panel-inner { background: rgba(255,255,255,.97); color: var(--text); }
.section-dark .section-kicker, .section-dark .text-link { color: var(--moutarde); }
.dark-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.08); box-shadow: none; }
.dark-card h2, .dark-card p, .dark-card li { color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.timeline-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.timeline-clean li { display: grid; gap: 4px; padding-left: 16px; border-left: 2px solid rgba(127,195,192,.38); }
.prose-reading p { margin: 0 0 18px; text-align: justify; }
.content-block { padding: 28px; }
.content-block.rich-content p { margin-top: 0; text-align: justify; }
.content-grid.two, .cards-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.quiz-launch-card { margin-top: 22px; padding: 28px; background: linear-gradient(180deg, rgba(127,195,192,.12), rgba(255,255,255,0.96)); border-radius: var(--radius); border: 1px solid rgba(127,195,192,.18); }

.login-v2-shell { padding: 56px 0; }
.login-v2-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.login-v2-grid.single { grid-template-columns: 1fr; justify-items: center; }
.login-v2-copy { padding: 20px 0; }
.login-v2-card { padding: 30px; width: 100%; max-width: 520px; }
.login-logo-large { width: 200px; margin-bottom: 18px; }
.login-links { margin-top: 14px; }

.quiz-shell-v2 { display: grid; gap: 18px; }
.quiz-toolbar-v2 {
  position: sticky;
  top: 100px;
  z-index: 5;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 24px; background: rgba(255,255,255,.95); border: 1px solid rgba(20,20,20,.08); border-radius: 24px; box-shadow: var(--shadow-soft);
}
.quiz-toolbar-v2 p { margin: 4px 0 0; color: var(--muted); }
.quiz-toolbar-meta { display: flex; align-items: center; gap: 14px; }
.quiz-timer { font-weight: 800; color: var(--turquoise-deep); }
.quiz-progress-bar { height: 10px; background: rgba(20,20,20,.08); border-radius: 999px; overflow: hidden; }
.quiz-progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--turquoise) 0%, var(--moutarde) 100%); width: 0; }
.quiz-list-v2 { display: grid; gap: 16px; }
.quiz-card-v2 { padding: 24px; background: #fff; border: 1px solid rgba(20,20,20,.06); border-radius: 26px; box-shadow: var(--shadow-soft); }
.quiz-card-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.question-number { color: var(--turquoise-deep); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.question-step { color: var(--muted); font-weight: 700; }
.question-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.answers-grid-v2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.answer-option-v2 { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border: 1px solid rgba(20,20,20,.08); border-radius: 18px; background: #fcfcfb; cursor: pointer; transition: .2s ease; }
.answer-option-v2:hover { border-color: rgba(127,195,192,.5); box-shadow: 0 8px 18px rgba(127,195,192,.12); }
.answer-option-v2 input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; }
.answer-option-v2.is-answered, .answer-option-v2:has(input:checked) { background: rgba(127,195,192,.12); border-color: rgba(127,195,192,.5); }
.quiz-submit-footer { display: flex; justify-content: center; padding: 14px 0 10px; }
.result-summary-v2 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.result-card-v2 { padding: 24px; background: #fff; border-radius: 26px; box-shadow: var(--shadow-soft); border: 1px solid rgba(20,20,20,.06); display: grid; gap: 10px; }
.result-card-v2 span { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.result-card-v2 strong { font-size: 2rem; }
.answer-review-v2 { padding: 24px; background: #fff; border-radius: 26px; border: 1px solid rgba(20,20,20,.06); box-shadow: var(--shadow-soft); }
.answer-review-head { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.review-choices-v2 { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.review-choices-v2 li { padding: 14px 16px; border-radius: 16px; background: #fafafa; border: 1px solid rgba(20,20,20,.06); }
.review-choices-v2 li.is-good { border-color: rgba(42,127,134,.35); background: rgba(127,195,192,.12); }
.review-choices-v2 li.is-user { box-shadow: inset 0 0 0 2px rgba(207,184,69,.4); }
.review-meta p { margin: 8px 0; }

.status-pill {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 8px 12px;
  font-weight: 800; font-size: .86rem; text-transform: uppercase; letter-spacing: .06em;
}
.status-pill-soft { background: rgba(127,195,192,.14); color: var(--turquoise-deep); border: 1px solid rgba(127,195,192,.2); }
.status-pill-block { margin: 12px 0 18px; }
.status-pill.valide { background: #e8f8ef; color: #1e7c42; }
.status-pill.non_valide, .status-pill.expire { background: #fff0f0; color: #9d2525; }
.status-pill.en_cours, .status-pill.disponible, .status-pill.actif { background: #eef6fb; color: #185f70; }
.status-pill.verrouillé, .status-pill.inactif { background: #f4f4f4; color: #6b7280; }
.status-pill.candidat { background: #eef6fb; color: #185f70; }
.status-pill.archive, .status-pill.suspendu { background: #f4f4f4; color: #6b7280; }

.table-card { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.data-table th, .data-table td { padding: 18px 16px; border-bottom: 1px solid rgba(20,20,20,.06); vertical-align: top; }
.data-table th { text-align: left; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #647083; }
.data-table tr:last-child td { border-bottom: 0; }
.table-actions-inline { display: flex; gap: 8px; flex-wrap: wrap; }
.premium-card { padding: 0; }
.admin-shell { padding: 30px 0 42px; }
.admin-welcome { padding: 26px; display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 22px; }
.admin-grid-top { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; margin-bottom: 22px; }
.admin-stat { padding: 22px; display: grid; place-items: center; text-align: center; min-height: 138px; }
.admin-stat span { color: var(--muted); text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.admin-stat strong { font-size: 2.25rem; line-height: 1; }
.admin-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-card { padding: 22px; }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.admin-toolbar.elevated { padding: 20px 22px; background: rgba(255,255,255,.88); border-radius: 26px; box-shadow: var(--shadow-soft); }
.filters { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filters input, .filters select { min-width: 190px; }
.toolbar-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.form-card { padding: 28px; background: rgba(255,255,255,.96); border-radius: var(--radius); border: 1px solid rgba(20,20,20,.07); box-shadow: var(--shadow-soft); }
.form-card.wide { max-width: 1180px; margin-inline: auto; }
.form-grid.two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.stack-md, .stack-lg { display: grid; gap: 16px; }
.stack-lg { gap: 22px; }
.inline-form { display: inline-flex; }
.checkbox { display: inline-flex; align-items: center; gap: 10px; }
.checkbox input { width: auto; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.checkbox-grid.compact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.checkbox-card { display: flex; gap: 10px; align-items: start; background: #fff; border-radius: 18px; border: 1px solid rgba(20,20,20,.08); padding: 14px 16px; }
.checkbox-card input { width: auto; margin-top: 3px; }
.checkbox-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.admin-checkbox-block { padding: 22px; }
.panel-head-between { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 18px; }
.session-warning {
  position: fixed; right: 16px; bottom: 16px; z-index: 120; max-width: 420px; padding: 16px 18px; border-radius: 18px;
  background: rgba(20,20,20,.92); color: #fff; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08);
}
.mobile-quick-actions { position: fixed; right: 14px; bottom: 14px; z-index: 90; display: none; flex-direction: column; gap: 10px; }
.quick-action { padding: 12px 16px; border-radius: 999px; color: #fff; font-weight: 800; box-shadow: var(--shadow); }
.quick-action-form { background: var(--noir); }
.quick-action-whatsapp { background: #25D366; }
.site-footer { padding: 38px 0; margin-top: 40px; border-top: 1px solid rgba(20,20,20,.06); background: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 20px; }
.footer-grid h4 { margin-top: 0; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.legal-page { padding: 40px 0 60px; }
.legal-page h1 { margin-top: 0; }
.small { font-size: .92rem; }
.muted { color: var(--muted); }
.mt-xl { margin-top: 32px; }

@media (max-width: 1120px) {
  .header-phone { display: none; }
  .hero-grid-v2, .login-v2-grid, .split-panel, .contact-cta-grid, .offer-v2-card, .admin-card-grid, .page-hero-grid, .hero-grid, .cards-elegant-grid, .feature-grid.two, .feature-grid.three, .module-private-grid, .offer-highlight-grid, .content-grid.two {
    grid-template-columns: 1fr;
  }
  .highlight-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .module-showcase-grid { grid-template-columns: 1fr; }
  .admin-grid-top { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .checkbox-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .site-header { position: sticky; }
  .header-wrap { min-height: 74px; }
  .brand img { width: 150px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); display: none;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 8px;
    background: rgba(255,255,255,.98); border-radius: 24px; box-shadow: var(--shadow); padding: 14px; border: 1px solid rgba(20,20,20,.08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .header-actions { margin-left: auto; gap: 8px; }
  .header-actions .btn-whatsapp, .header-actions .btn-outline, .header-actions .btn-ghost.compact { display: none; }
  .hero-copy h1, .page-hero-v2 h1 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .visual-grid-two, .highlight-stats, .result-summary-v2, .answers-grid-v2, .form-grid.two, .checkbox-grid, .checkbox-grid.compact-grid { grid-template-columns: 1fr; }
  .hero, .page-hero-v2, .section-shell { padding-top: 34px; }
  .quiz-toolbar-v2 { top: 84px; flex-direction: column; align-items: stretch; }
  .quiz-toolbar-meta { justify-content: space-between; }
  .admin-grid-top { grid-template-columns: 1fr; }
  .mobile-quick-actions { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .module-showcase-card, .timeline-v2-card { grid-template-columns: 1fr; }
  .timeline-v2-index, .module-showcase-order { width: 48px; height: 48px; }
}
@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .header-wrap { gap: 12px; }
  .brand img { width: 126px; }
  .header-actions .btn-ghost { padding-inline: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .feature-card, .elegant-card, .module-private-card, .module-showcase-card, .offer-highlight-card, .offer-v2-card, .content-block, .table-card, .hubspot-panel-inner, .login-v2-card, .dashboard-summary-card, .premium-card, .admin-stat, .admin-card, .side-premium-card { border-radius: 22px; }
  .side-premium-card { position: static; }
  .admin-welcome, .panel-head-between, .admin-toolbar { flex-direction: column; align-items: stretch; }
  .quiz-card-head, .timeline-v2-head, .module-private-head, .answer-review-head { flex-direction: column; align-items: flex-start; }
  .data-table { min-width: 620px; }
}


code { background: rgba(20,20,20,.05); padding: 2px 7px; border-radius: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.panel { padding: 24px; background: #fff; border-radius: 24px; border: 1px solid rgba(20,20,20,.06); box-shadow: var(--shadow-soft); }
.answer-review { padding: 24px; background: #fff; border-radius: 26px; border: 1px solid rgba(20,20,20,.06); box-shadow: var(--shadow-soft); }
.review-choices { list-style:none; padding:0; margin:18px 0; display:grid; gap:10px; }
.review-choices li { padding: 14px 16px; border-radius:16px; background:#fafafa; border:1px solid rgba(20,20,20,.06); }
.review-choices li.is-good { border-color: rgba(42,127,134,.35); background: rgba(127,195,192,.12); }
.review-choices li.is-user { box-shadow: inset 0 0 0 2px rgba(207,184,69,.4); }
.offer-card { display:grid; grid-template-columns: .95fr 1.05fr; gap:20px; padding:20px; }
.offer-card img { width:100%; height:100%; object-fit:cover; border-radius:22px; }
.offer-card-body { padding: 8px 10px; }
@media (max-width: 1120px){ .offer-card { grid-template-columns:1fr; } }


/* ===== V3 refinements ===== */
body {
  background: linear-gradient(180deg, #f7f4ee 0%, #fbfaf8 100%);
}
body.nav-open { overflow: hidden; }
.site-header {
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 10px 30px rgba(20,20,20,.04);
}
.site-header-admin {
  background: rgba(255,255,255,.96);
}
.header-wrap {
  min-height: 76px;
  gap: 18px;
  flex-wrap: nowrap;
}
.brand img { width: 172px; }
.main-nav {
  justify-content: flex-start;
  gap: 4px;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .96rem;
  white-space: nowrap;
}
.header-actions {
  flex-wrap: nowrap;
  gap: 10px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127,195,192,.16), rgba(207,184,69,.18));
  border: 1px solid rgba(127,195,192,.28);
  box-shadow: var(--shadow-soft);
  color: var(--noir);
  white-space: nowrap;
}
.contact-pill-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--turquoise-deep);
  font-weight: 700;
}
.contact-pill strong {
  font-size: .96rem;
}
.header-actions-admin { margin-left: auto; }
.header-actions-admin .contact-pill { display: none; }
.section-kicker,
.hero-overline,
.offer-mini-label-plain,
.module-index-plain {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  color: var(--turquoise-deep);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}
.hero,
.page-hero-v2 {
  padding: 42px 0 22px;
}
.hero-grid-balanced {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: 30px;
}
.hero-copy-wide,
.hero-copy {
  max-width: 760px;
}
.hero-copy h1,
.page-hero-v2 h1,
.login-v2-copy h1,
.login-v2-card h2,
.section-header h2 {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.08;
  max-width: none;
  letter-spacing: -.02em;
}
.page-hero-simple .hero-copy h1,
.page-hero-simple h1 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}
.lead,
.hero-copy .lead,
.page-hero-v2 .lead {
  font-size: 1.05rem;
  max-width: 62ch;
}
.section-header-v3 {
  align-items: end;
}
.section-subtitle {
  color: var(--muted);
  margin: 10px 0 0;
}
.highlight-stats-v3 {
  gap: 16px;
}
.highlight-stats-v3 article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.highlight-stats-v3 strong {
  font-size: 1.8rem;
}
.feature-grid-v3 .feature-card,
.offer-highlight-card-v3,
.module-showcase-card-v3,
.elegant-card,
.side-premium-card,
.dashboard-summary-card,
.module-private-card,
.content-block,
.offer-v2-card,
.table-card,
.form-card,
.admin-welcome,
.admin-stat,
.admin-card,
.hubspot-panel-inner {
  border-radius: 24px;
}
.feature-card,
.offer-highlight-card,
.elegant-card,
.side-premium-card,
.module-private-card,
.admin-card,
.content-block,
.hubspot-panel-inner {
  padding: 24px;
}
.feature-card h3,
.offer-highlight-card h3,
.elegant-card h2 {
  font-size: 1.35rem;
  line-height: 1.18;
  margin-bottom: 12px;
}
.cards-elegant-grid-v3 .elegant-card,
.feature-grid-v3 .feature-card,
.offer-highlight-card-v3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.offer-v2-card-v3 {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 18px;
  padding: 18px;
}
.offer-v2-card-v3 .offer-v2-copy {
  padding: 10px;
}
.offer-v2-card-v3 .offer-v2-copy h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 12px;
}
.offer-v2-card-v3 .offer-v2-visual img {
  border-radius: 18px;
}
.offer-highlight-grid-v3,
.module-showcase-grid-v3,
.module-private-grid-v3 {
  align-items: stretch;
}
.module-showcase-card-v3,
.module-private-card {
  min-height: 100%;
}
.module-showcase-card-v3 {
  grid-template-columns: 56px 1fr;
  padding: 20px;
}
.module-showcase-card-v3 h3,
.module-private-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.module-inline-meta-plain {
  gap: 12px 18px;
  margin-top: 12px;
  color: var(--muted);
  font-size: .93rem;
}
.module-inline-meta-plain span,
.offer-mini-label-plain,
.module-index-plain,
.question-tags span {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.module-private-score-v3,
.module-private-metrics-v3 {
  gap: 14px;
}
.dashboard-summary-card-v3 h3,
.side-premium-card h3,
.content-block h2,
.card-heading h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.side-premium-card-accent {
  border: 1px solid rgba(207,184,69,.24);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,247,232,.96));
}
.prose-reading-balanced p {
  text-align: justify;
  hyphens: auto;
}
.timeline-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.timeline-clean li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20,20,20,.08);
}
.timeline-clean li:last-child { border-bottom: 0; padding-bottom: 0; }
.timeline-clean strong {
  color: var(--noir);
}
.timeline-clean span {
  color: var(--muted);
}
.timeline-v3 .timeline-v2-card {
  padding: 22px;
}
.timeline-v3 .timeline-v2-head h2 {
  font-size: 1.3rem;
}
.hero-dashboard-v3 .dashboard-summary-card {
  position: static;
}
.admin-welcome-v3 {
  align-items: center;
}
.admin-welcome-v3 h1,
.admin-toolbar h1 {
  font-size: 1.95rem;
  margin: 0 0 10px;
}
.admin-grid-top {
  align-items: stretch;
}
.admin-stat {
  min-height: 128px;
  justify-items: center;
  align-content: center;
}
.admin-card-grid-v3,
.admin-card-grid {
  align-items: start;
}
.admin-card-grid > * {
  min-width: 0;
}
.table-card-tight {
  margin-top: 8px;
  overflow: hidden;
}
.data-table-fluid,
.data-table.compact {
  min-width: 0;
  width: 100%;
  table-layout: auto;
}
.data-table.compact td,
.data-table.compact th {
  padding: 14px 14px;
}
.card-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.card-heading p {
  margin: 0;
  color: var(--muted);
}
.editor-shell-v3 {
  padding: 24px;
}
.readonly-url {
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20,20,20,.03);
  border: 1px dashed rgba(20,20,20,.14);
  color: var(--turquoise-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.editor-split-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.editor-pane-v3 textarea {
  min-height: 620px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .96rem;
  line-height: 1.55;
}
.editor-preview-v3 {
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,248,.95));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.editor-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(20,20,20,.08);
  background: rgba(127,195,192,.08);
}
.editor-preview-head span {
  color: var(--muted);
  font-size: .92rem;
}
.editor-preview-canvas {
  min-height: 620px;
  padding: 24px;
}
.footer-grid-v3 {
  grid-template-columns: 1.1fr .9fr .9fr;
}
.quick-action-form {
  position: fixed;
  left: 14px;
  right: auto;
  bottom: 14px;
}
.quick-action-whatsapp {
  position: fixed;
  right: 14px;
  left: auto;
  bottom: 14px;
}
.quick-action {
  min-width: 118px;
  text-align: center;
}
.login-v2-grid {
  gap: 26px;
}
.login-v2-copy h1 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.login-v2-card {
  padding: 28px;
}
.site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.94));
}
@media (max-width: 1120px) {
  .header-wrap {
    gap: 14px;
  }
  .contact-pill-label {
    display: none;
  }
  .admin-card-grid,
  .admin-card-grid-v3,
  .offer-v2-card-v3,
  .editor-split-v3,
  .split-panel-v3,
  .hero-grid-balanced,
  .contact-cta-grid-v3,
  .cards-elegant-grid-v3,
  .module-private-grid-v3,
  .offer-highlight-grid-v3,
  .feature-grid-v3 {
    grid-template-columns: 1fr;
  }
  .admin-grid-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .header-wrap {
    min-height: 68px;
  }
  .brand img {
    width: 138px;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.98);
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(20,20,20,.08);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .header-actions {
    margin-left: auto;
  }
  .contact-pill {
    display: none;
  }
  .hero-copy h1,
  .page-hero-v2 h1,
  .login-v2-copy h1,
  .page-hero-simple h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.4rem);
  }
  .hero-copy .lead,
  .page-hero-v2 .lead {
    font-size: 1rem;
  }
  .highlight-stats,
  .highlight-stats-v3,
  .feature-grid.three,
  .feature-grid-v3,
  .offer-highlight-grid-v3,
  .module-showcase-grid-v3,
  .admin-grid-top,
  .visual-grid-two,
  .cards-elegant-grid,
  .cards-elegant-grid-v3 {
    grid-template-columns: 1fr;
  }
  .module-showcase-card-v3,
  .timeline-v2-card {
    grid-template-columns: 1fr;
  }
  .timeline-v2-index,
  .module-showcase-order {
    width: 46px;
    height: 46px;
  }
  .mobile-quick-actions-public {
    display: block;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 18px));
  }
  .site-header {
    box-shadow: 0 8px 20px rgba(20,20,20,.05);
  }
  .header-wrap {
    gap: 10px;
  }
  .brand img {
    width: 124px;
  }
  .header-actions .btn {
    padding: 10px 14px;
  }
  .hero,
  .page-hero-v2,
  .section-shell {
    padding-top: 28px;
  }
  .admin-welcome,
  .admin-toolbar,
  .panel-head-between {
    flex-direction: column;
    align-items: stretch;
  }
  .editor-preview-canvas,
  .editor-pane-v3 textarea {
    min-height: 420px;
  }
  .feature-card,
  .offer-highlight-card,
  .elegant-card,
  .side-premium-card,
  .content-block,
  .table-card,
  .hubspot-panel-inner,
  .login-v2-card,
  .dashboard-summary-card,
  .premium-card,
  .admin-stat,
  .admin-card,
  .form-card,
  .offer-v2-card {
    border-radius: 20px;
  }
  .quick-action {
    min-width: 108px;
    padding: 11px 14px;
  }
}

/* === Version 1.4 refinements === */
body {
  text-rendering: optimizeLegibility;
}
.site-main {
  overflow-x: clip;
}
.site-header {
  box-shadow: 0 8px 24px rgba(20,20,20,.04);
}
.header-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
}
.brand img {
  width: 210px;
}
.main-nav {
  min-width: 0;
  justify-content: flex-start;
  gap: 8px;
  padding-left: 8px;
}
.main-nav a {
  padding: 10px 12px;
  font-size: .98rem;
  white-space: nowrap;
}
.header-actions {
  gap: 10px;
  flex-wrap: nowrap;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127,195,192,.12), rgba(207,184,69,.18));
  border: 1px solid rgba(127,195,192,.24);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(20,20,20,.05);
  white-space: nowrap;
}
.contact-pill-label {
  color: var(--turquoise-deep);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .84rem;
}
.contact-pill strong {
  font-size: .95rem;
}
.header-actions .btn.compact,
.header-actions .btn {
  padding: 11px 16px;
  white-space: nowrap;
}
.admin-shortcut {
  border-color: rgba(127,195,192,.35);
  color: var(--turquoise-deep);
}
.footer-version {
  margin-top: 12px;
  color: var(--muted);
  font-size: .92rem;
}
.hero-copy h1,
.page-hero-v2 h1,
.login-v2-copy h1,
.login-v2-card h2,
.section-header h2 {
  font-size: clamp(1.82rem, 3vw, 3.15rem);
}
.page-about .page-hero-v2 h1,
.page-offers .page-hero-v2 h1,
.page-operations .page-hero-v2 h1,
.page-training .page-hero-v2 h1 {
  font-size: clamp(1.72rem, 2.7vw, 2.75rem);
  max-width: 13ch;
}
.page-about .hero-copy .lead,
.page-offers .hero-copy .lead,
.page-operations .hero-copy .lead,
.page-training .hero-copy .lead,
.page-home .hero-copy .lead {
  max-width: 60ch;
}
.lead,
.hero-copy .lead,
.page-hero-v2 .lead,
.feature-card p,
.offer-v2-copy p,
.elegant-card p,
.side-premium-card p,
.module-showcase-card p,
.module-private-card p,
.offer-highlight-card p {
  text-align: justify;
  text-wrap: pretty;
}
.highlight-stats-v3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.highlight-stats-v3 article {
  min-height: 154px;
  justify-content: flex-start;
  gap: 16px;
  padding: 22px 20px;
  text-align: left;
}
.highlight-stats-v3 strong {
  font-size: clamp(1.62rem, 2.2vw, 2rem);
}
.highlight-stats-v3 span {
  line-height: 1.5;
}
.split-panel-v3 {
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr);
  gap: 22px;
}
.feature-grid.three.feature-grid-v3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards-elegant-grid-v3,
.offer-highlight-grid-v3,
.module-showcase-grid-v3,
.module-private-grid-v3 {
  align-items: stretch;
}
.feature-card,
.offer-highlight-card,
.elegant-card,
.module-showcase-card,
.module-private-card,
.content-block,
.side-premium-card,
.dashboard-summary-card,
.admin-card,
.admin-stat,
.form-card,
.table-card,
.hubspot-panel-inner {
  border-radius: 26px;
}
.feature-card h3,
.offer-highlight-card h3,
.elegant-card h2,
.module-showcase-card h3,
.module-private-card h3 {
  line-height: 1.18;
}
.module-showcase-grid-v3 .module-showcase-card {
  min-height: 100%;
}
.module-showcase-grid-v3 .module-showcase-card,
.offer-highlight-grid-v3 .offer-highlight-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.module-showcase-grid-v3 .module-showcase-card:hover,
.offer-highlight-grid-v3 .offer-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(127,195,192,.24);
}
.module-showcase-grid-v3 .module-showcase-card h3 a,
.module-showcase-grid-v3 .module-showcase-card a.stretched-link {
  color: inherit;
}
.metric-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.metric-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20,20,20,.08);
}
.metric-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.metric-list li span {
  color: var(--muted);
  font-size: .98rem;
}
.metric-list li strong {
  color: var(--noir);
  font-size: 1rem;
  text-align: right;
}
.metric-list-tight li {
  align-items: center;
}
.module-detail-shell-v14 {
  padding-top: 18px;
}
.module-detail-grid-v14 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 22px;
  align-items: start;
}
.module-detail-main-v14 {
  display: grid;
  gap: 18px;
}
.module-detail-side-v14 {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 106px;
}
.module-status-card-v14,
.quiz-launch-card-v14 {
  padding: 24px;
}
.module-status-card-v14 .status-pill {
  margin-bottom: 18px;
}
.content-block-summary-v14 {
  background: linear-gradient(180deg, rgba(127,195,192,.08), rgba(255,255,255,.98));
}
.module-kpi-grid-v14 {
  align-items: stretch;
}
.module-kpi-grid-v14 .content-block {
  min-height: 100%;
}
.module-hero-v14 .hero-copy h1 {
  max-width: 12ch;
}
.module-hero-meta-v14 {
  margin-bottom: 6px;
}
.dashboard-summary-card-v3 {
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,247,242,.98));
  border: 1px solid rgba(127,195,192,.18);
}
.dashboard-summary-card-v3 .metric-list li strong {
  font-size: 1.05rem;
}
.quiz-toolbar-v14 {
  padding: 14px 16px;
  gap: 14px;
}
.quiz-toolbar-summary strong {
  font-size: .98rem;
}
.quiz-toolbar-summary p {
  margin: 4px 0 0;
  font-size: .92rem;
}
.quiz-timer.is-warning {
  color: #9d2525;
}
.quiz-card-v14 h2 {
  font-size: 1.26rem;
  line-height: 1.42;
  margin: 10px 0 0;
}
.quiz-card-head-v14 {
  margin-bottom: 8px;
}
.answers-grid-v14 {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.answer-option-v14 {
  padding: 14px 14px;
}
.quiz-card-v14.is-missing {
  box-shadow: 0 0 0 2px rgba(157,37,37,.25), var(--shadow-soft);
}
.toolbar-actions-selection {
  margin-bottom: 6px;
}
.layout-admin .container {
  width: min(1440px, calc(100% - 36px));
}
.layout-admin .admin-toolbar,
.layout-admin .admin-welcome,
.layout-admin .admin-card,
.layout-admin .table-card,
.layout-admin .form-card {
  min-width: 0;
}
.layout-admin .admin-grid-top {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.layout-admin .admin-card-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.layout-admin .table-card,
.layout-admin .premium-card {
  overflow: hidden;
}
.layout-admin .data-table-fluid,
.layout-admin .data-table.compact {
  width: 100%;
}
.layout-admin .data-table th,
.layout-admin .data-table td {
  word-break: normal;
}
.page-home .split-panel-side,
.page-home .side-premium-card {
  align-self: stretch;
}
.page-about .hero-grid-balanced {
  align-items: center;
}
.page-about .hero-visual-stack .visual-card,
.page-home .hero-visual-stack .visual-card,
.page-training .hero-visual-stack .visual-card,
.page-offers .hero-visual-stack .visual-card,
.page-operations .hero-visual-stack .visual-card {
  margin-inline: auto;
}
.page-home .module-showcase-grid-v3 .module-showcase-card {
  cursor: pointer;
}
.page-home .module-showcase-grid-v3 .module-showcase-card a {
  color: inherit;
}
@media (max-width: 1320px) {
  .brand img { width: 188px; }
  .main-nav a { padding: 9px 10px; font-size: .95rem; }
  .contact-pill { padding: 10px 14px; }
  .header-actions .btn { padding: 10px 14px; }
}
@media (max-width: 1120px) {
  .header-wrap { grid-template-columns: auto minmax(0, 1fr) auto; }
  .main-nav { justify-content: center; }
  .contact-pill strong { font-size: .88rem; }
  .split-panel-v3,
  .module-detail-grid-v14,
  .feature-grid.three.feature-grid-v3,
  .highlight-stats-v3 {
    grid-template-columns: 1fr 1fr;
  }
  .module-detail-side-v14 { position: static; }
  .page-about .page-hero-v2 h1,
  .page-offers .page-hero-v2 h1,
  .page-operations .page-hero-v2 h1,
  .page-training .page-hero-v2 h1,
  .module-hero-v14 .hero-copy h1 {
    max-width: none;
  }
}
@media (max-width: 820px) {
  .header-wrap {
    grid-template-columns: 48px 1fr auto;
    min-height: 68px;
  }
  .nav-toggle {
    display: inline-flex;
    order: 1;
    justify-self: start;
  }
  .brand {
    order: 2;
    justify-self: center;
  }
  .brand img { width: 146px; }
  .main-nav {
    order: 4;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.99);
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(20,20,20,.08);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .header-actions {
    order: 3;
    justify-self: end;
  }
  .contact-pill,
  .admin-shortcut,
  .header-actions .btn.btn-ghost:not(.header-login-btn),
  .header-actions .btn.btn-outline:not(.header-login-btn):not([href$='dashboard.php']) {
    display: none;
  }
  .header-actions .btn {
    padding: 10px 12px;
    font-size: .92rem;
  }
  .header-actions .btn[href$='dashboard.php'] {
    display: inline-flex;
  }
  .page-about .page-hero-v2 h1,
  .page-offers .page-hero-v2 h1,
  .page-operations .page-hero-v2 h1,
  .page-training .page-hero-v2 h1,
  .module-hero-v14 .hero-copy h1,
  .page-home .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    max-width: none;
  }
  .highlight-stats-v3,
  .split-panel-v3,
  .feature-grid.three.feature-grid-v3,
  .module-detail-grid-v14,
  .module-kpi-grid-v14,
  .module-showcase-grid-v3,
  .offer-highlight-grid-v3 {
    grid-template-columns: 1fr;
  }
  .module-detail-side-v14 {
    order: -1;
  }
  .quiz-toolbar-v14 {
    top: 78px;
    flex-direction: column;
    align-items: stretch;
  }
  .quiz-toolbar-meta {
    justify-content: space-between;
  }
  .answers-grid-v14 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 18px)); }
  .brand img { width: 128px; }
  .header-wrap { min-height: 62px; }
  .header-actions { gap: 8px; }
  .header-actions .btn {
    padding: 9px 11px;
    font-size: .88rem;
  }
  .header-login-btn,
  .header-actions .btn[href$='dashboard.php'] {
    border-radius: 14px;
  }
  .hero,
  .page-hero-v2,
  .section-shell {
    padding-top: 24px;
  }
  .highlight-stats-v3 article,
  .feature-card,
  .offer-highlight-card,
  .elegant-card,
  .content-block,
  .side-premium-card,
  .dashboard-summary-card,
  .module-private-card,
  .module-showcase-card,
  .quiz-card-v14,
  .quiz-toolbar-v14 {
    padding: 18px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .module-inline-meta {
    gap: 8px 12px;
  }
  .quiz-shell-v14 {
    gap: 12px;
  }
  .quiz-toolbar-summary strong {
    font-size: .92rem;
  }
  .quiz-toolbar-summary p,
  .quiz-timer {
    font-size: .86rem;
  }
  .quiz-card-head-v14 {
    gap: 8px;
    align-items: center;
  }
  .question-number {
    font-size: .78rem;
  }
  .question-step {
    font-size: .8rem;
  }
  .quiz-card-v14 h2 {
    font-size: 1.08rem;
    margin-top: 4px;
  }
  .answer-option-v14 {
    padding: 12px;
  }
  .metric-list li {
    gap: 10px;
  }
  .metric-list li span,
  .metric-list li strong {
    font-size: .95rem;
  }
  .quick-action-form { left: 10px; bottom: 12px; }
  .quick-action-whatsapp { right: 10px; bottom: 12px; }
}

/* ==== V1.5 refinements ==== */
.site-header { background: rgba(249,248,243,.94); }
.header-wrap-v15 { min-height: 78px; gap: 18px; }
.main-nav { min-width: 0; gap: 6px; }
.main-nav a { padding: 10px 12px; font-size: .96rem; }
.header-actions { gap: 10px; flex-wrap: nowrap; }
.contact-pill-v15 {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 16px;
  border-radius: 999px; background: linear-gradient(135deg, rgba(127,195,192,.14), rgba(207,184,69,.16));
  border: 1px solid rgba(207,184,69,.28); color: var(--turquoise-deep); font-weight: 800;
}
.contact-pill-v15 .contact-pill-label { text-transform: uppercase; letter-spacing: .08em; font-size: .92rem; }
.contact-pill-v15 .contact-pill-number { color: var(--noir); font-size: 1rem; }
.page-home .hero-copy h1, .page-about .hero-copy h1, .page-offers .hero-copy h1, .page-operations .hero-copy h1, .page-training .hero-copy h1, .page-module .hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  letter-spacing: -0.03em;
  max-width: 12.5ch;
}
.page-home .hero-copy h1 { max-width: 13.5ch; }
.page-hero-simple .hero-grid-v2 { align-items: center; }
.page-about .hero-grid-v2 { grid-template-columns: 1fr 0.92fr; }
.page-about .hero-copy .lead { max-width: 58ch; }
.page-about .split-panel-v3 { align-items: start; }
.page-home .highlight-stats article { min-height: 180px; display: grid; align-content: start; gap: 10px; }
.page-home .feature-card, .page-home .side-premium-card { min-height: 100%; }
.page-home .split-panel-v3 { align-items: stretch; }
.page-home .offer-highlight-card h3, .page-home .feature-card h3, .page-offers .offer-v2-card h2, .page-operations .feature-card h2, .page-about .elegant-card h2 { font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.15; }
.page-home .feature-card p, .page-home .side-premium-card p, .page-offers .offer-v2-card p, .page-operations .feature-card p, .page-about .elegant-card p, .page-about .prose-reading p, .page-module .content-block p { text-wrap: pretty; }
.page-home .module-showcase-grid-v3 { display: none; }
.page-module .page-hero-v2 { padding-bottom: 16px; }
.module-detail-grid-v15 { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 22px; align-items: start; }
.module-detail-main-v15 { display: grid; gap: 18px; }
.module-detail-side-v15 { display: grid; gap: 18px; position: sticky; top: 98px; }
.module-status-card-v15 { padding: 26px; }
.module-status-grid-v15 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.module-status-grid-v15 .kpi { background: rgba(127,195,192,.08); border: 1px solid rgba(127,195,192,.14); border-radius: 18px; padding: 14px; }
.module-status-grid-v15 .kpi span { display: block; color: var(--muted); font-size: .88rem; }
.module-status-grid-v15 .kpi strong { display: block; margin-top: 6px; font-size: 1.05rem; }
.module-detail-main-v15 .content-block { padding: 24px; }
.module-detail-main-v15 .content-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.module-access-card { padding: 24px; }
.final-access-card { border-color: rgba(207,184,69,.28); background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,247,232,.98)); }
.exercise-list-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.exercise-card { padding: 24px; background: rgba(255,255,255,.96); border: 1px solid rgba(20,20,20,.07); border-radius: var(--radius); box-shadow: var(--shadow-soft); display: grid; gap: 14px; }
.exercise-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); }
.exercise-form-card textarea { min-height: 280px; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 18px; z-index: 60; background: rgba(20,20,20,.96); color: #fff; border-radius: 20px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: 0 18px 40px rgba(20,20,20,.26); }
.cookie-banner p { margin: 0; font-size: .92rem; }
.contact-drawer{display:none;}
.contact-drawer-panel{display:none;}
.contact-drawer-close{display:none;}
.hubspot-drawer-form{display:none;}
.quick-action-form { background: linear-gradient(135deg, rgba(127,195,192,.18), rgba(207,184,69,.2)); color: var(--noir); border-color: rgba(207,184,69,.28); }
.quick-action-whatsapp { background: #1f8f4c; color: #fff; }
.mobile-quick-actions .quick-action { min-width: 140px; }
.question-step { display: none; }
.quiz-toolbar-v15 { gap: 10px; }
.quiz-toolbar-summary strong { font-size: .95rem; }
.quiz-toolbar-summary p { margin: 0; }
.quiz-card-head-v15 { margin-bottom: 6px; }
.quiz-card-v14 h2 { font-size: 1.16rem; }
.answer-option-v14 span { line-height: 1.4; }
.answer-option-v14 strong { margin-right: 6px; }
.status-pill-soft, .status-pill-block { text-transform: uppercase; letter-spacing: .06em; }
.footer-version { font-size: .92rem; color: var(--muted); }
@media (max-width: 1320px) {
  .main-nav a { font-size: .92rem; padding: 9px 10px; }
  .contact-pill-v15 .contact-pill-number { font-size: .92rem; }
}
@media (max-width: 1120px) {
  .contact-pill-v15 .contact-pill-number { display: none; }
  .module-detail-grid-v15, .exercise-list-grid { grid-template-columns: 1fr; }
  .module-detail-side-v15 { position: static; }
}
@media (max-width: 820px) {
  .header-wrap-v15 { grid-template-columns: 46px 1fr auto; }
  .main-nav a { font-size: 1rem; }
  .header-actions .header-login-btn { display: inline-flex; }
  .page-home .hero-copy h1, .page-about .hero-copy h1, .page-offers .hero-copy h1, .page-operations .hero-copy h1, .page-training .hero-copy h1, .page-module .hero-copy h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .contact-pill-v15 { display: none; }
  .module-detail-main-v15 .content-grid.two, .module-status-grid-v15 { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 76px; flex-direction: column; align-items: stretch; }
}
@media (max-width: 560px) {
  .brand img { width: 126px; height: auto; }
  .header-wrap-v15 { min-height: 60px; }
  .header-actions .btn { padding: 8px 11px; font-size: .86rem; }
  .hero-actions .btn { width: 100%; }
  .quiz-toolbar-v2 { top: 72px; }
  .quiz-toolbar-v14 { padding: 10px 12px; }
  .quiz-card-v14 { padding: 14px !important; }
  .question-number { font-size: .78rem; }
  .quiz-card-v14 h2 { font-size: 1rem; line-height: 1.35; }
  .answer-option-v14 { padding: 10px 11px; }
}


[hidden]{display:none !important;}
.header-wrap-v15{gap:18px;}
.contact-pill-v15{padding:12px 16px; gap:10px; min-width:auto;}
.contact-pill-v15 .contact-pill-label{font-size:.88rem;}
.contact-pill-v15 .contact-pill-number{font-size:.98rem; font-variant-numeric:tabular-nums;}
.floating-public-actions{position:fixed;left:16px;bottom:18px;z-index:85;display:flex;flex-direction:column;gap:10px;}
.floating-contact-trigger,.floating-whatsapp-trigger{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(20,20,20,.12);box-shadow:0 16px 30px rgba(20,20,20,.18);background:#fff;color:#1f2a3a;font-size:1.35rem;}
.floating-whatsapp-trigger{background:#25D366;color:#fff;border-color:rgba(0,0,0,.06);}
.contact-modal{position:fixed;inset:0;z-index:95;background:rgba(20,20,20,.45);display:grid;place-items:center;padding:18px;}
.contact-modal-dialog{width:min(560px,100%);max-height:min(88vh,960px);overflow:auto;background:#fff;border-radius:28px;box-shadow:0 26px 60px rgba(20,20,20,.3);padding:28px;position:relative;}
.contact-modal-close{position:absolute;top:12px;right:14px;border:0;background:transparent;font-size:2rem;line-height:1;color:#314053;cursor:pointer;}
.hubspot-modal-form{margin-top:18px;}
.cookie-banner{left:auto;right:18px;bottom:18px;max-width:440px;padding:14px 16px;display:flex;align-items:center;gap:12px;border-radius:18px;background:rgba(20,20,20,.94);} 
.cookie-banner p{font-size:.88rem;line-height:1.45;flex:1;}
.cookie-banner-actions{display:flex;align-items:center;justify-content:flex-end;}
body.modal-open, body.nav-open{overflow:hidden;}
.module-detail-grid-v15{grid-template-columns:minmax(0,1fr) 360px;gap:24px;}
.module-detail-main-v15 .content-grid.two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.module-status-grid-v15 .kpi strong{margin-top:4px;}
.status-pill-block{display:inline-flex; margin-top:8px; margin-bottom:10px;}
.metric-list li strong,.module-status-grid-v15 .kpi strong,.highlight-stats strong{font-variant-numeric:tabular-nums;}
.module-status-card-v15 .small{margin-top:14px;}
.rich-content ul li,.rich-content ol li{text-align:left;}
.page-about .page-hero-v2 h1,.page-operations .page-hero-v2 h1,.page-home .hero-copy h1{max-width:13ch; font-size:clamp(2rem,4.4vw,4rem);}
.page-about .hero-grid-v2,.page-home .hero-grid-v2{align-items:center;}
.section-header h2{font-size:clamp(1.7rem,3.2vw,2.5rem);} 
.quick-action, .mobile-quick-actions{display:none !important;}
@media (max-width: 1024px){
  .header-wrap-v15{min-height:82px;}
  .main-nav a{padding:10px 12px;}
  .contact-pill-v15 .contact-pill-number{font-size:.92rem;}
}
@media (max-width: 860px){
  .page-home .hero-copy h1,.page-about .page-hero-v2 h1,.page-operations .page-hero-v2 h1{font-size:clamp(1.8rem,9vw,3rem);max-width:none;}
  .module-detail-grid-v15,.module-detail-main-v15 .content-grid.two{grid-template-columns:1fr;}
  .floating-public-actions{left:12px;bottom:14px;}
  .cookie-banner{left:12px;right:12px;max-width:none;bottom:84px;}
  .contact-modal-dialog{padding:20px 18px 18px;border-radius:22px;max-height:84vh;}
}


/* ==== V1.7 refinements ==== */
.brand img{width:168px;height:auto;}
.header-wrap-v15{grid-template-columns:auto minmax(0,1fr) auto;min-height:72px;gap:14px;}
.main-nav{flex:1 1 auto;min-width:0;gap:4px;overflow:visible;}
.main-nav a{padding:8px 10px;font-size:.91rem;line-height:1.15;white-space:nowrap;}
.header-actions{gap:8px;flex:0 0 auto;}
.header-actions .btn{padding:9px 12px;font-size:.9rem;}
.contact-pill-v15{padding:10px 14px;gap:8px;}
.contact-pill-v15 .contact-pill-label{font-size:.82rem;letter-spacing:.06em;}
.contact-pill-v15 .contact-pill-number{font-size:.94rem;}
.page-home .hero-copy h1,.page-about .hero-copy h1,.page-offers .hero-copy h1,.page-operations .hero-copy h1,.page-training .hero-copy h1,.page-module .hero-copy h1{font-size:clamp(1.85rem,3.4vw,3rem);max-width:15ch;line-height:1.04;}
.page-home .hero-copy h1{max-width:14ch;}
.page-about .hero-copy h1{max-width:16ch;}
.page-offers .hero-copy h1,.page-operations .hero-copy h1{max-width:15ch;}
.hero-grid-v2,.page-about .hero-grid-v2{grid-template-columns:minmax(0,1.02fr) minmax(340px,.98fr);align-items:center;gap:28px;}
.hero-copy .lead,.page-about .hero-copy .lead{max-width:58ch;font-size:1.02rem;line-height:1.7;}
.section-shell{padding:38px 0;}
.feature-card,.side-premium-card,.offer-highlight-card,.elegant-card{padding:22px;}
.feature-card p,.side-premium-card p,.offer-highlight-card p,.elegant-card p,.prose-reading p,.content-block p{font-size:.99rem;line-height:1.7;text-align:left;}
.feature-card h3,.offer-highlight-card h3,.page-home .feature-card h3,.page-home .side-premium-card h3,.page-offers .offer-v2-card h2,.page-operations .feature-card h2,.page-about .elegant-card h2{font-size:clamp(1.2rem,1.8vw,1.6rem);line-height:1.18;}
.highlight-stats-v3{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.highlight-stats-v3 article{min-height:146px;padding:18px;}
.highlight-stats-v3 strong{font-size:clamp(1.65rem,2.4vw,2.2rem);}
.split-panel-v3{grid-template-columns:minmax(0,1.2fr) 360px;gap:24px;align-items:stretch;}
.side-premium-card-accent{padding:26px;position:sticky;top:102px;}
.section-header h2{font-size:clamp(1.55rem,2.3vw,2.1rem);}
.text-link{font-size:.96rem;}
.contact-modal-dialog{width:min(640px,100%);padding:26px 26px 22px;}
.contact-modal-dialog h3{font-size:1.6rem;margin-bottom:10px;}
.contact-modal-intro,.contact-modal-help{font-size:.96rem;line-height:1.6;color:var(--muted);}
.hubspot-modal-form{margin-top:16px;min-height:180px;}
.hubspot-modal-loading{display:flex;align-items:center;justify-content:center;min-height:140px;border:1px dashed rgba(127,195,192,.35);border-radius:18px;background:rgba(127,195,192,.05);padding:18px;text-align:center;color:var(--muted);}
.cookie-banner{max-width:360px;padding:12px 14px;}
.cookie-banner p{font-size:.82rem;}
.module-detail-grid-v15{grid-template-columns:minmax(0,1fr) 330px;gap:20px;}
.module-detail-main-v15 .content-grid.two{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.module-status-card-v15{padding:20px;}
.module-status-grid-v15{gap:10px;}
.module-status-grid-v15 .kpi{padding:12px;}
.module-status-grid-v15 .kpi strong{font-size:1rem;}
.page-module .page-hero-v2{padding-bottom:8px;}
.quiz-toolbar-v15{gap:8px;}
.quiz-card-v14{padding:18px !important;}
.question-number{margin-bottom:6px;}
.quiz-card-v14 h2{font-size:1.1rem;line-height:1.45;}
.answer-option-v14{padding:12px;}
@media (max-width:1280px){
  .brand img{width:152px;}
  .main-nav a{font-size:.87rem;padding:8px 8px;}
  .header-actions .btn{padding:8px 10px;font-size:.86rem;}
  .contact-pill-v15 .contact-pill-number{font-size:.88rem;}
}
@media (max-width:1080px){
  .contact-pill-v15 .contact-pill-number{display:none;}
  .contact-pill-v15{padding:10px 12px;}
  .main-nav a{font-size:.84rem;padding:8px 7px;}
  .hero-grid-v2,.page-about .hero-grid-v2,.split-panel-v3,.module-detail-grid-v15{grid-template-columns:1fr;}
  .side-premium-card-accent{position:static;}
}
@media (max-width:860px){
  .header-wrap-v15{grid-template-columns:46px 1fr auto;min-height:64px;gap:10px;}
  .brand{justify-self:center;}
  .brand img{width:132px;}
  .main-nav a{font-size:1rem;padding:12px 0;border-radius:0;border-bottom:1px solid rgba(20,20,20,.06);} 
  .header-actions .header-login-btn,.header-actions .btn-ghost,.header-actions .admin-shortcut{display:none;}
  .page-home .hero-copy h1,.page-about .hero-copy h1,.page-offers .hero-copy h1,.page-operations .hero-copy h1,.page-training .hero-copy h1,.page-module .hero-copy h1{font-size:clamp(1.65rem,8vw,2.35rem);max-width:none;}
  .highlight-stats-v3{grid-template-columns:repeat(2,minmax(0,1fr));}
  .split-panel-v3,.module-detail-main-v15 .content-grid.two{grid-template-columns:1fr;}
}
@media (max-width:560px){
  .site-header{top:0;}
  .header-wrap-v15{grid-template-columns:42px 1fr auto;}
  .brand img{width:118px;}
  .contact-pill-v15{display:none;}
  .hero-copy .lead,.page-about .hero-copy .lead{font-size:.98rem;}
  .highlight-stats-v3{grid-template-columns:1fr 1fr;}
  .feature-card,.side-premium-card,.offer-highlight-card,.elegant-card{padding:18px;}
  .contact-modal-dialog{padding:18px 16px 16px;}
}

/* ==== V1.7.1.4 refinements ==== */
.table-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  padding: 0;
}
.table-sort-indicator {
  font-size: .82rem;
  opacity: .55;
}
th[data-sort-direction="asc"] .table-sort-indicator,
th[data-sort-direction="desc"] .table-sort-indicator {
  opacity: 1;
}
th[data-sort-direction="asc"] .table-sort-indicator::before {
  content: "↑";
}
th[data-sort-direction="desc"] .table-sort-indicator::before {
  content: "↓";
}
th[data-sort-direction="asc"] .table-sort-indicator,
th[data-sort-direction="desc"] .table-sort-indicator {
  font-size: 0;
}
.access-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.access-summary-card {
  padding: 22px;
  display: grid;
  gap: 8px;
}
.access-summary-card span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
}
.access-summary-card strong {
  font-size: 1.25rem;
  line-height: 1.25;
}
.access-table-card .card-heading p,
.page-access .section-subtitle {
  color: var(--muted);
}
.site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(249,248,244,.92) 100%);
  border-top: 1px solid rgba(20,20,20,.05);
}
.site-footer strong {
  display: inline-block;
  margin-bottom: 10px;
}
.footer-grid > div {
  min-width: 0;
}
.footer-grid p,
.footer-grid li {
  color: var(--muted);
}
.cookie-banner {
  backdrop-filter: blur(12px);
}
@media (max-width: 1120px) {
  .access-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .access-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* ==== V1.7.1.5 refinements ==== */
.hero-home-v1715 .hero-copy h1,
.hero-about-v1715 .hero-copy h1,
.hero-offers-v1715 .hero-copy h1,
.hero-operations-v1715 .hero-copy h1,
.hero-training-v1715 .hero-copy h1 { max-width: 12ch; }
.hero-home-v1715 .lead,
.hero-about-v1715 .lead,
.hero-offers-v1715 .lead,
.hero-operations-v1715 .lead,
.hero-training-v1715 .lead { max-width: 70ch; }
.compact-stats { gap: 12px; }
.compact-stats article { min-height: 120px; }
.no-margin { margin-bottom: 0; }
.feature-grid-tight { gap: 16px; }
.feature-card-soft { background: rgba(255,255,255,.92); border: 1px solid rgba(20,20,20,.06); box-shadow: var(--shadow-soft); }
.visual-card-home img { aspect-ratio: 16/10; object-fit: cover; }
.cards-elegant-grid-home { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-grid-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.split-panel-home .split-panel-side, .split-panel-about .split-panel-side { align-self: stretch; }
.side-premium-card-home { height: 100%; }
.offer-v1715-card .offer-subtitle { color: var(--turquoise-deep); font-weight: 600; margin-bottom: 14px; }
.offer-stack-v1715 { gap: 26px; }
.module-cards-grid-v1715 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.module-card-v1715 { min-height: 100%; }
.module-card-v1715-final { border: 1px solid rgba(207,184,69,.28); background: linear-gradient(180deg, rgba(255,250,237,.98) 0%, #fff 100%); }
.module-inline-meta-center { justify-content: center; }
.profile-shell-v1715 { display: grid; grid-template-columns: 360px 1fr; gap: 22px; align-items: start; }
.profile-summary-grid-v1715 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.profile-form-grid-v1715 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.access-summary-grid-v1715 .access-summary-card { text-align: center; }
.access-summary-card strong { display: block; }
.access-accordion-shell-v1715 { display: grid; gap: 14px; }
.access-module-item-v1715 { background: #fff; border: 1px solid rgba(20,20,20,.08); border-radius: 22px; box-shadow: var(--shadow-soft); overflow: hidden; }
.access-module-item-v1715 summary { list-style: none; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; }
.access-module-item-v1715 summary::-webkit-details-marker { display: none; }
.access-module-order { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-weight: 800; background: linear-gradient(135deg, var(--turquoise-deep), var(--moutarde)); }
.access-module-title { font-weight: 700; }
.access-module-body { padding: 0 20px 20px; }
.dashboard-grid-v1715 { grid-template-columns: minmax(0,1fr) 340px; align-items: start; }
.dashboard-summary-card-v1715 .kpi strong { font-size: 1.45rem; }
.site-footer { background: linear-gradient(180deg, #0f1418 0%, #171d24 100%); color: rgba(255,255,255,.92); margin-top: 48px; }
.footer-shell { display: grid; grid-template-columns: minmax(280px, 1.05fr) 1.95fr; gap: 28px; padding: 34px 0 18px; }
.footer-brand-panel, .footer-cta-card { border-radius: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); padding: 24px; }
.footer-brand-panel p, .footer-cta-card p, .site-footer li a { color: rgba(255,255,255,.82); }
.footer-kicker { color: var(--turquoise); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .78rem; margin-bottom: 8px; }
.footer-brand-panel h4, .footer-links-grid h4, .footer-cta-card h4 { color: #fff; margin-bottom: 12px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.footer-links-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links-grid a:hover { color: #fff; }
.footer-brand-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-meta-row { padding: 0 0 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; color: rgba(255,255,255,.64); font-size: .92rem; }
.table-live-filter { display: flex; justify-content: flex-end; margin: 0 0 12px; }
.table-live-filter input { min-width: 220px; max-width: 320px; }
.table-sort-button { width: 100%; background: transparent; border: 0; padding: 0; display: inline-flex; align-items: center; justify-content: space-between; gap: 10px; font: inherit; color: inherit; cursor: pointer; text-align: left; }
.table-sort-indicator { opacity: .55; font-size: .9rem; }
th[data-sort-direction="asc"] .table-sort-indicator { opacity: 1; }
th[data-sort-direction="asc"] .table-sort-indicator::after { content: ' ↑'; }
th[data-sort-direction="desc"] .table-sort-indicator { opacity: 1; }
th[data-sort-direction="desc"] .table-sort-indicator::after { content: ' ↓'; }
.data-table th { white-space: nowrap; }
.data-table th.is-reorderable { cursor: move; }
.editor-preview-section { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(20,20,20,.08); }
.editor-toolbar-inline { display: flex; flex-wrap: wrap; gap: 8px; }
.site-editor-v1715 textarea { min-height: 96px; }
.admin-media-grid-v1715 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.admin-media-card-v1715 .admin-media-preview { background: #f4f6f8; border-radius: 18px; padding: 12px; margin-bottom: 16px; display: grid; place-items: center; min-height: 180px; }
.admin-media-card-v1715 .admin-media-preview img { max-width: 100%; max-height: 180px; object-fit: contain; border-radius: 12px; }
@media (max-width: 1080px) {
  .footer-shell, .profile-shell-v1715, .dashboard-grid-v1715 { grid-template-columns: 1fr; }
  .cards-grid-steps, .cards-elegant-grid-home, .module-cards-grid-v1715 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .profile-form-grid-v1715 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .cards-grid-steps, .cards-elegant-grid-home, .module-cards-grid-v1715, .profile-form-grid-v1715, .profile-summary-grid-v1715, .footer-links-grid, .admin-media-grid-v1715 { grid-template-columns: 1fr; }
  .access-module-item-v1715 summary { grid-template-columns: 42px 1fr; }
  .access-module-item-v1715 summary .status-pill { grid-column: 2; justify-self: start; }
  .footer-shell { padding-top: 26px; }
}


/* ==== V1.7.1.6 refinements ==== */

.lead,
.hero-copy .lead,
.page-hero-v2 .lead,
.feature-card p,
.offer-v2-copy p,
.elegant-card p,
.side-premium-card p,
.module-showcase-card p,
.module-private-card p,
.offer-highlight-card p,
.prose-reading p,
.content-block p {
  text-align: left;
}

.page-home .hero-grid-v2,
.page-about .hero-grid-v2,
.page-offers .hero-grid-v2,
.page-operations .hero-grid-v2,
.page-training .hero-grid-v2 {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
}
.page-home .hero-copy,
.page-about .hero-copy,
.page-offers .hero-copy,
.page-operations .hero-copy,
.page-training .hero-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
.page-home .hero-copy h1,
.page-about .page-hero-v2 h1,
.page-offers .page-hero-v2 h1,
.page-operations .page-hero-v2 h1,
.page-training .page-hero-v2 h1 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(1.95rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}
.page-home .hero-copy .lead,
.page-about .page-hero-v2 .lead,
.page-offers .page-hero-v2 .lead,
.page-operations .page-hero-v2 .lead,
.page-training .page-hero-v2 .lead {
  margin-inline: auto;
  max-width: 72ch;
}
.page-home .hero-actions,
.page-about .hero-actions,
.page-offers .hero-actions,
.page-operations .hero-actions,
.page-training .hero-actions,
.section-header-centered,
.compact-page-title {
  justify-content: center;
  text-align: center;
}
.page-home .section-header-v3,
.page-about .section-header-v3,
.page-offers .section-header-v3,
.page-operations .section-header-v3,
.page-training .section-header-v3 {
  justify-content: center;
  text-align: center;
}
.page-home .hero-visual-stack,
.page-about .hero-visual-stack,
.page-offers .hero-visual-stack,
.page-operations .hero-visual-stack,
.page-training .hero-visual-stack {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}
.page-home .visual-card,
.page-about .visual-card,
.page-offers .visual-card,
.page-operations .visual-card,
.page-training .visual-card {
  padding: 8px;
  border-radius: 28px;
}
.page-home .highlight-stats-v3 {
  margin-top: 22px;
  gap: 14px;
}
.page-home .highlight-stats-v3 article {
  min-height: 110px;
  padding: 18px;
  gap: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,248,246,.98) 100%);
}
.page-home .highlight-stats-v3 strong {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}
.page-home .feature-card-soft,
.page-home .elegant-card,
.page-training .module-private-card,
.page-dashboard .table-card,
.page-access .access-summary-card,
.page-profile .access-summary-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,249,247,.98) 100%);
  border: 1px solid rgba(20,20,20,.06);
  box-shadow: 0 12px 34px rgba(17,24,39,.06);
}
.page-home .feature-card,
.page-home .elegant-card,
.page-training .module-private-card {
  padding: 20px 20px 18px;
}
.page-home .feature-card h3,
.page-home .elegant-card h3,
.page-home .elegant-card h2,
.page-training .module-private-card h2 {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  margin-bottom: 10px;
}
.page-home .section-dark {
  background: linear-gradient(180deg, #f4f7f8 0%, #edf2f2 100%);
  color: var(--text);
  border-top: 1px solid rgba(20,20,20,.06);
  border-bottom: 1px solid rgba(20,20,20,.06);
}
.page-home .section-dark .section-header-light h2,
.page-home .section-dark .section-subtitle,
.page-home .section-dark .section-kicker {
  color: var(--text);
}
.page-home .section-dark .text-link {
  color: var(--turquoise-deep);
}
.page-home .dark-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border: 1px solid rgba(20,20,20,.07);
  box-shadow: var(--shadow-soft);
}
.page-home .dark-card h2,
.page-home .dark-card h3,
.page-home .dark-card p,
.page-home .dark-card li {
  color: var(--text);
}
.page-home .cards-grid-steps {
  gap: 16px;
}
.page-training .module-cards-grid-v1715 {
  gap: 18px;
}
.page-training .module-private-card {
  gap: 12px;
}
.page-training .module-private-head {
  gap: 10px;
}
.page-training .module-inline-meta {
  margin-top: 6px;
  gap: 8px 14px;
  font-size: .92rem;
}
.page-training .hero-actions {
  margin-top: 10px;
}
.page-access .access-summary-card,
.page-profile .access-summary-card {
  padding: 16px 14px;
}
.page-access .access-summary-card strong,
.page-profile .access-summary-card strong {
  font-size: 1.08rem;
}
.access-summary-grid-v1716 {
  margin-bottom: 16px;
}
.access-module-item-v1716 summary {
  grid-template-columns: 48px minmax(0,1fr) auto 22px;
  gap: 12px;
  padding: 14px 16px;
}
.access-module-title-wrap {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.access-module-meta-inline {
  font-size: .9rem;
  color: var(--muted);
}
.access-module-toggle-indicator {
  color: var(--muted);
  font-size: .95rem;
  transition: transform .16s ease;
}
.access-module-item-v1716[open] .access-module-toggle-indicator {
  transform: rotate(180deg);
}
.access-module-item-v1716 .access-module-body {
  padding: 0 16px 16px;
}
.access-module-item-v1716 .compact-actions {
  margin-top: 10px;
  gap: 10px;
}
.access-note-v1716 {
  margin: 10px 0 0;
}
.page-profile .profile-shell-v1715 {
  grid-template-columns: 320px 1fr;
  gap: 18px;
}
.page-profile .profile-summary-grid-v1715,
.page-profile .profile-form-grid-v1715 {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 14px;
}
.page-profile .profile-summary-v1716 .bullet-list.columns-2 {
  columns: 2;
  column-gap: 24px;
}
.page-profile .profile-summary-v1716 .bullet-list.columns-2 li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.page-profile .form-card label,
.page-access .form-card label {
  margin-bottom: 4px;
}
.page-dashboard .hero-dashboard-v1716 .dashboard-summary-card-v1716 {
  padding: 20px;
}
.page-dashboard .dashboard-summary-card-v1716 .module-status-grid-v15 {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.page-dashboard .dashboard-summary-card-v1716 .kpi strong {
  font-size: 1.08rem;
  line-height: 1.25;
  word-break: break-word;
}
.history-stack-v1716 {
  gap: 18px;
}
.compact-page-title h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}
.site-footer {
  margin-top: 34px;
}
.footer-shell {
  grid-template-columns: minmax(250px, .92fr) 1.78fr;
  gap: 20px;
  padding: 24px 0 12px;
}
.footer-brand-panel,
.footer-cta-card {
  padding: 18px;
  border-radius: 22px;
}
.footer-brand-panel h4,
.footer-links-grid h4,
.footer-cta-card h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.footer-brand-actions {
  margin-top: 14px;
}
.footer-links-grid {
  gap: 14px;
}
.footer-meta-row {
  justify-content: flex-start;
  padding-bottom: 16px;
}
@media (max-width: 980px) {
  .page-profile .profile-shell-v1715,
  .footer-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .page-home .hero-copy h1,
  .page-about .page-hero-v2 h1,
  .page-offers .page-hero-v2 h1,
  .page-operations .page-hero-v2 h1,
  .page-training .page-hero-v2 h1 {
    max-width: none;
  }
  .access-module-item-v1716 summary {
    grid-template-columns: 40px minmax(0,1fr) 18px;
  }
  .access-module-item-v1716 summary .status-pill {
    grid-column: 2;
    justify-self: start;
  }
  .access-module-title-wrap {
    gap: 6px;
  }
  .page-profile .profile-summary-v1716 .bullet-list.columns-2 {
    columns: 1;
  }
}


/* ==== V1.7.1.7 refinements ==== */
.brand-logo{height:auto;}
.floating-public-actions{gap:12px;}
.floating-contact-trigger,.floating-whatsapp-trigger{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(20,20,20,.08);box-shadow:0 16px 34px rgba(20,20,20,.16);background:linear-gradient(180deg,#fff 0%,#f7faf9 100%);color:#193246;}
.floating-contact-trigger{background:linear-gradient(135deg, rgba(127,195,192,.96) 0%, rgba(31,127,147,.98) 100%);color:#fff;border-color:rgba(31,127,147,.22);}
.floating-whatsapp-trigger{background:linear-gradient(135deg,#22c55e 0%,#16a34a 100%);color:#fff;border-color:rgba(22,163,74,.2);}
.floating-icon{display:grid;place-items:center;width:24px;height:24px;}
.floating-icon svg{width:24px;height:24px;display:block;}
.page-home .hero-copy h1,
.page-about .page-hero-v2 h1,
.page-offers .page-hero-v2 h1,
.page-operations .page-hero-v2 h1,
.page-training .page-hero-v2 h1,
.page-module .page-hero-v2 h1{font-size:clamp(1.9rem,3vw,2.85rem)!important;line-height:1.08;max-width:17ch;margin-inline:auto;}
.page-home .hero-copy .lead,
.page-about .page-hero-v2 .lead,
.page-offers .page-hero-v2 .lead,
.page-operations .page-hero-v2 .lead,
.page-training .page-hero-v2 .lead{font-size:1rem;max-width:66ch;margin-inline:auto;}
.compact-page-title h2,.section-header h2{font-size:clamp(1.45rem,2.2vw,2.05rem);line-height:1.12;}
.page-home .highlight-stats-v3{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.page-home .highlight-stats-v3 article{min-height:0;padding:16px 16px 14px;border-radius:22px;background:linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(248,250,249,.98) 100%);border:1px solid rgba(20,20,20,.06);box-shadow:0 14px 30px rgba(24,38,52,.06);}
.page-home .highlight-stats-v3 strong{font-size:clamp(1.35rem,2vw,1.75rem);}
.page-home .feature-grid-three,.page-home .feature-grid-v3,.page-home .cards-elegant-grid-home,.page-home .cards-grid-steps{gap:16px;}
.page-home .feature-card,.page-home .elegant-card,.page-home .dark-card,.page-training .module-private-card{padding:18px 18px 16px;border-radius:22px;}
.page-home .feature-card h3,.page-home .elegant-card h3,.page-home .dark-card h3,.page-training .module-private-card h2{margin-bottom:8px;font-size:1.08rem;}
.page-home .section-dark{background:linear-gradient(180deg,#f6f8f8 0%,#eef4f3 100%)!important;border-top:1px solid rgba(20,20,20,.05);border-bottom:1px solid rgba(20,20,20,.05);}
.page-home .section-dark .section-header-light h2,.page-home .section-dark .section-subtitle,.page-home .section-dark .section-kicker,.page-home .section-dark p,.page-home .section-dark li{color:var(--text)!important;}
.page-home .dark-card{background:linear-gradient(180deg,#fff 0%,#f8fbfa 100%)!important;border:1px solid rgba(20,20,20,.06);box-shadow:0 12px 28px rgba(24,38,52,.05);}
.site-footer{background:linear-gradient(180deg,#162028 0%,#1b2530 100%);margin-top:28px;}
.footer-shell{grid-template-columns:minmax(240px,.88fr) 1.7fr;gap:18px;padding:18px 0 8px;}
.footer-brand-panel,.footer-cta-card{padding:16px;border-radius:20px;background:rgba(255,255,255,.055);}
.footer-brand-panel p,.footer-cta-card p,.site-footer li a{font-size:.97rem;line-height:1.6;}
.footer-links-grid{gap:12px;}
.footer-meta-row{padding-bottom:12px;font-size:.9rem;}
.page-training .module-cards-grid-v1715{gap:16px;}
.page-training .module-private-card{gap:10px;}
.page-training .module-private-head{gap:8px;}
.page-training .module-inline-meta{margin-top:2px;gap:8px 12px;font-size:.9rem;}
.page-training .module-private-card p{margin-top:6px;line-height:1.55;}
@media (max-width: 980px){
  .page-home .highlight-stats-v3,.cards-grid-steps,.cards-elegant-grid-home,.page-training .module-cards-grid-v1715{grid-template-columns:repeat(2,minmax(0,1fr));}
  .footer-shell{grid-template-columns:1fr;}
}
@media (max-width: 860px){
  .header-actions .header-login-btn{display:inline-flex!important;}
  .header-actions .contact-pill-v15{display:none!important;}
  .header-actions .btn-ghost:not(.header-login-btn){display:none;}
  .page-home .hero-copy h1,.page-about .page-hero-v2 h1,.page-offers .page-hero-v2 h1,.page-operations .page-hero-v2 h1,.page-training .page-hero-v2 h1,.page-module .page-hero-v2 h1{font-size:clamp(1.7rem,7vw,2.35rem)!important;}
}
@media (max-width: 640px){
  .page-home .highlight-stats-v3,.cards-grid-steps,.cards-elegant-grid-home,.page-training .module-cards-grid-v1715{grid-template-columns:1fr;}
  .footer-links-grid{grid-template-columns:1fr;}
  .page-training .module-private-card{padding:16px 16px 14px;}
}

/* ==== V1.7.1.8 refinements ==== */
.hero-visual-image-smaller{width:min(100%,520px);margin-inline:auto;border-radius:22px;}
.visual-card-compact{max-width:540px;margin-inline:auto;padding:6px;border-radius:24px;}
.visual-card-training{max-width:560px;margin-inline:auto;padding:6px;border-radius:24px;}
.page-home .hero-grid-v2,.page-training .hero-grid-v2,.page-about .hero-grid-v2,.page-offers .hero-grid-v2,.page-operations .hero-grid-v2{grid-template-columns:minmax(0,1fr) minmax(320px,520px);gap:26px;}
.page-home .hero-copy h1,.page-about .page-hero-v2 h1,.page-offers .page-hero-v2 h1,.page-operations .page-hero-v2 h1,.page-training .page-hero-v2 h1,.page-module .page-hero-v2 h1{font-size:clamp(1.75rem,2.8vw,2.5rem)!important;line-height:1.1;max-width:20ch!important;text-align:center;margin-inline:auto;}
.page-home .hero-copy .lead,.page-about .page-hero-v2 .lead,.page-offers .page-hero-v2 .lead,.page-operations .page-hero-v2 .lead,.page-training .page-hero-v2 .lead{font-size:.98rem;max-width:64ch;}
.page-home .feature-card,.page-home .elegant-card,.page-home .dark-card{padding:16px 16px 14px;border-radius:20px;}
.page-home .feature-card p,.page-home .elegant-card p,.page-home .dark-card p{line-height:1.56;}
.page-home .cards-grid-steps{gap:14px;}
.page-home .cards-grid-steps .dark-card{background:linear-gradient(180deg,#ffffff 0%,#f4f9f8 100%)!important;box-shadow:0 10px 24px rgba(23,38,53,.05);}
.page-home .cards-grid-steps .module-index{display:grid;place-items:center;width:42px;height:42px;padding:0;border-radius:14px;font-weight:800;line-height:1;}
.page-home .highlight-stats-v3 article span{line-height:1.45;}
.page-training .module-private-card{padding:16px 16px 14px;gap:8px;min-height:0;}
.page-training .module-private-head{align-items:flex-start;gap:8px;}
.page-training .module-private-head > div{display:flex;align-items:center;gap:10px;}
.page-training .module-index{display:grid;place-items:center;width:40px;height:40px;padding:0;margin-bottom:0;border-radius:14px;line-height:1;}
.page-training .module-private-card h2{font-size:1.08rem;line-height:1.2;margin:0;}
.page-training .module-private-card p{line-height:1.48;margin:0;}
.page-training .module-inline-meta{margin-top:0;gap:6px 10px;font-size:.88rem;}
.page-training .module-inline-meta span{padding:7px 11px;border-radius:999px;}
.page-training .hero-actions{margin-top:10px;}
.page-access .access-summary-grid-v1716,.page-profile .access-summary-grid-v1716{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.page-access .access-summary-card,.page-profile .access-summary-card{padding:14px 14px 12px;min-height:0;}
.page-access .access-summary-card strong,.page-profile .access-summary-card strong{font-size:1rem;line-height:1.2;word-break:break-word;overflow-wrap:anywhere;}
.page-profile .profile-form-grid-v1715{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px 14px;}
.page-profile .profile-form-grid-v1715 .full{grid-column:1/-1;}
.page-profile .profile-summary-v1716 .bullet-list.compact li{margin-bottom:4px;}
.page-profile .profile-summary-v1716{padding:16px;}
.access-module-item-v1716 summary{padding:13px 14px;gap:10px;align-items:center;}
.access-module-item-v1716 .access-module-body{padding:0 14px 14px;}
.access-module-meta-inline{line-height:1.35;}
.page-history .history-stack-v1716 .table-card{padding-top:10px;}
.page-history .card-heading-spread{margin-bottom:10px;}
.page-history .data-table.compact td,.page-history .data-table.compact th{padding-top:10px;padding-bottom:10px;}
.footer-heading{margin:0 0 8px;font-size:1rem;font-weight:800;line-height:1.3;color:#fff;}
.site-footer{background:linear-gradient(180deg,#162028 0%,#1a232d 100%);margin-top:24px;padding:18px 0 10px;}
.footer-shell{grid-template-columns:minmax(220px,.8fr) 1.5fr;gap:14px;padding:8px 0 2px;align-items:start;}
.footer-brand-panel,.footer-cta-card{padding:12px 14px;border-radius:18px;background:rgba(255,255,255,.05);}
.footer-brand-panel p,.footer-cta-card p,.site-footer li a{font-size:.94rem;line-height:1.5;}
.footer-links-grid{gap:10px;align-items:start;}
.footer-links-grid ul{margin:0;padding:0;list-style:none;display:grid;gap:4px;}
.footer-brand-actions{margin-top:10px;}
.footer-phone-link{font-weight:700;display:inline-block;margin-top:4px;}
.footer-meta-row{padding:6px 0 0;font-size:.84rem;}
.login-v2-copy h1{font-size:clamp(1.8rem,3vw,2.4rem);}
.table-bulk-actions{display:flex;justify-content:flex-end;margin-bottom:10px;}
@media (max-width: 1100px){
  .page-profile .profile-form-grid-v1715{grid-template-columns:repeat(2,minmax(0,1fr));}
  .page-home .hero-grid-v2,.page-training .hero-grid-v2,.page-about .hero-grid-v2,.page-offers .hero-grid-v2,.page-operations .hero-grid-v2{grid-template-columns:1fr;}
}
@media (max-width: 860px){
  .page-access .access-summary-grid-v1716,.page-profile .access-summary-grid-v1716{grid-template-columns:repeat(2,minmax(0,1fr));}
  .site-footer{padding:16px 0 8px;}
}
@media (max-width: 640px){
  .page-profile .profile-form-grid-v1715,.page-access .access-summary-grid-v1716,.page-profile .access-summary-grid-v1716{grid-template-columns:1fr;}
  .footer-shell,.footer-links-grid{grid-template-columns:1fr;}
}
