@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap");
/* =========================================================
   TinaHR · Hoja de estilos global  ·  v2 (adaptada a EBASNET / tema norma)
   -----------------------------------------------------------------
   ARCHIVO MAESTRO: este es el CSS que iremos actualizando siempre.
   Pegar su contenido en EBASNET (assets/styles.css o CSS global).

   Cambios de esta versión:
   - Página en blanco (se anula el fondo #0f172a del body).
   - Secciones a todo el ancho (full-bleed) dentro del contenedor de EBASNET.
   - Selectores con prefijo .thr- y mayor especificidad (.thr-section ...)
     para ganar a los estilos del tema (Bootstrap + norma).
   - Se neutraliza el doble padding de .container/.col de EBASNET.
   Todo va bajo .thr-section, por lo que NO afecta a la cabecera ni al
   pie nativos de EBASNET.
   ========================================================= */
:root {
  --thr-teal:#0d9488;
  --thr-teal-dark:#0b7f74;
  --thr-teal-bright:#14b3a5;
  --thr-teal-50:#ecf8f6;
  --thr-teal-100:#d9f0ec;
  --thr-mint:#5eead4;
  --thr-ink:#0c1a18;
  --thr-text:#47605d;
  --thr-muted:#7c8f8c;
  --thr-muted-2:#9aaba8;
  --thr-border:#e4eae8;
  --thr-border-2:#d5dedc;
  --thr-border-faint:#eef2f1;
  --thr-row-faint:#f2f5f4;
  --thr-bg-faint:#fbfdfc;
  --thr-bg-soft:#f6f9f8;
  --thr-dark:#0c1a18;
  --thr-dark-card:#122522;
  --thr-dark-border:#234340;
  --thr-dark-border-2:#2b403d;
  --thr-dark-border-3:#1c322f;
  --thr-dark-text:#a8bbb8;
  --thr-dark-text-2:#d3e0de;
  --thr-radius:14px;
  --thr-maxw:1180px;
}

/* ---------- Base común a cada widget/sección ---------- */
.thr-section {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif !important;
  color: var(--thr-ink);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  line-height: 1.5;
}

.thr-section,
.thr-section *,
.thr-section *::before,
.thr-section *::after {
  box-sizing: border-box;
}

.thr-section a {
  text-decoration: none;
  color: inherit;
}

.thr-section a:hover {
  text-decoration: none;
}

.thr-section h1, .thr-section h2, .thr-section h3, .thr-section h4 {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.thr-section p {
  margin: 0;
}

.thr-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thr-section li {
  margin: 0;
}

.thr-section img, .thr-section svg {
  max-width: none;
}

.thr-section .thr-container {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Tipografía compartida ---------- */
.thr-section .thr-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--thr-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thr-section .thr-eyebrow--mint {
  color: var(--thr-mint);
}

.thr-section .thr-h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
  text-wrap: balance;
}

.thr-section .thr-h2--light {
  color: #fff;
  font-size: 34px;
  line-height: 1.18;
}

.thr-section .thr-section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.thr-section .thr-section-head--sm {
  max-width: 640px;
  margin-bottom: 48px;
}

.thr-section .thr-section-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--thr-text);
  text-wrap: pretty;
}

.thr-section .thr-hl {
  color: #fff;
}

/* ---------- Botones ---------- */
.thr-section .thr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.thr-section .thr-btn-primary {
  background: var(--thr-teal);
  color: #fff;
}

.thr-section .thr-btn-primary:hover {
  background: var(--thr-teal-dark);
  color: #fff;
}

.thr-section .thr-btn-primary--bright:hover {
  background: var(--thr-teal-bright);
}

.thr-section .thr-btn-secondary {
  background: #fff;
  color: var(--thr-ink);
  border-color: var(--thr-border-2);
  font-weight: 600;
}

.thr-section .thr-btn-secondary:hover {
  border-color: var(--thr-teal);
  color: var(--thr-teal);
}

.thr-section .thr-btn-sm {
  font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* =========================================================
   01 · NAVEGACIÓN  (opcional: solo si usas el widget de nav)
   ========================================================= */
.thr-section.thr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--thr-border);
}

.thr-section .thr-nav {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.thr-section .thr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thr-section .thr-logo-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--thr-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  overflow: hidden;
}

.thr-section .thr-logo-text {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--thr-ink);
}

.thr-section .thr-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 12px;
  flex: 1;
}

.thr-section .thr-nav-link {
  color: var(--thr-text);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.thr-section .thr-nav-link:hover {
  color: var(--thr-teal);
}

.thr-section .thr-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thr-section .thr-lang {
  color: var(--thr-muted);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--thr-border);
  border-radius: 6px;
  padding: 4px 8px;
}

.thr-section .thr-nav-login {
  color: var(--thr-ink);
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 14px;
  transition: color 0.15s ease;
}

.thr-section .thr-nav-login:hover {
  color: var(--thr-teal);
}

/* =========================================================
   02 · HERO
   ========================================================= */
.thr-section.thr-hero {
  padding: 76px 24px 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.thr-section .thr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--thr-teal-50);
  color: var(--thr-teal-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--thr-teal-100);
  margin-bottom: 22px;
}

.thr-section .thr-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--thr-teal);
  display: inline-block;
}

.thr-section .thr-hero-title {
  font-size: 50px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  text-wrap: balance;
}

.thr-section .thr-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0 0 30px;
  max-width: 540px;
  text-wrap: pretty;
}

.thr-section .thr-hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.thr-section .thr-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.thr-section .thr-check {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--thr-text);
  font-size: 13.5px;
  font-weight: 500;
}

.thr-section .thr-check-mark {
  color: var(--thr-teal);
  font-weight: 700;
}

/* Mock del panel */
.thr-section .thr-mock {
  position: relative;
  padding: 28px 0;
}

.thr-section .thr-mock-glow {
  position: absolute;
  inset: 24px -20px 24px 20px;
  background: linear-gradient(135deg, var(--thr-teal-50), var(--thr-teal-100));
  border-radius: 20px;
}

.thr-section .thr-mock-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: var(--thr-radius);
  box-shadow: 0 24px 60px -24px rgba(12, 26, 24, 0.25);
  overflow: hidden;
}

.thr-section .thr-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--thr-border-faint);
}

.thr-section .thr-mock-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--thr-ink);
}

.thr-section .thr-mock-day {
  font-size: 12px;
  color: var(--thr-muted);
  font-weight: 500;
}

.thr-section .thr-mock-rows {
  display: flex;
  flex-direction: column;
}

.thr-section .thr-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--thr-row-faint);
}

.thr-section .thr-mock-row:last-child {
  border-bottom: none;
}

.thr-section .thr-ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.thr-section .thr-ava-teal {
  background: var(--thr-teal-50);
  color: var(--thr-teal-dark);
}

.thr-section .thr-ava-blue {
  background: #eef2fb;
  color: #3b5bb8;
}

.thr-section .thr-ava-amber {
  background: #fbf3ec;
  color: #b0722e;
}

.thr-section .thr-ava-violet {
  background: #f1f0fa;
  color: #6355b3;
}

.thr-section .thr-mock-person {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.thr-section .thr-mock-name {
  font-size: 13.5px;
  font-weight: 600;
}

.thr-section .thr-mock-meta {
  font-size: 12px;
  color: var(--thr-muted);
}

.thr-section .thr-tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.thr-section .thr-tag-teal {
  color: var(--thr-teal-dark);
  background: var(--thr-teal-50);
}

.thr-section .thr-tag-blue {
  color: #3b5bb8;
  background: #eef2fb;
}

.thr-section .thr-tag-amber {
  color: #b0722e;
  background: #fbf3ec;
}

.thr-section .thr-tag-violet {
  color: #6355b3;
  background: #f1f0fa;
}

.thr-section .thr-mock-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--thr-bg-soft);
  border-top: 1px solid var(--thr-border-faint);
}

.thr-section .thr-mock-foot-label {
  font-size: 12.5px;
  color: var(--thr-text);
  font-weight: 500;
}

.thr-section .thr-mock-foot-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--thr-ink);
  font-variant-numeric: tabular-nums;
}

.thr-section .thr-mock-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: 10px;
  box-shadow: 0 10px 30px -12px rgba(12, 26, 24, 0.2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.thr-section .thr-mock-float--tl {
  top: -18px;
  left: -18px;
}

.thr-section .thr-mock-float--br {
  bottom: 8px;
  right: -14px;
}

.thr-section .thr-mock-float-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.thr-section .thr-mock-float-icon--teal {
  background: var(--thr-teal-50);
  color: var(--thr-teal);
}

.thr-section .thr-mock-float-icon--violet {
  background: #f1f0fa;
  color: #6355b3;
}

.thr-section .thr-mock-float-text {
  display: flex;
  flex-direction: column;
}

.thr-section .thr-mock-float-name {
  font-size: 12.5px;
  font-weight: 700;
}

.thr-section .thr-mock-float-meta {
  font-size: 11px;
  color: var(--thr-muted);
}

/* =========================================================
   03 · LOGOS DE CLIENTES
   ========================================================= */
.thr-section.thr-logos {
  background: var(--thr-bg-faint);
  border-top: 1px solid var(--thr-border-faint);
  border-bottom: 1px solid var(--thr-border-faint);
}

.thr-section .thr-logos-inner {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.thr-section .thr-logos-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--thr-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thr-section .thr-logo-client {
  font-size: 17px;
  font-weight: 700;
  color: var(--thr-muted-2);
}

.thr-section .thr-logo-client--tight {
  letter-spacing: -0.01em;
}

.thr-section .thr-logo-client--wide {
  letter-spacing: 0.04em;
}

.thr-section .thr-logo-client--italic {
  font-style: italic;
}

.thr-section .thr-logo-client--caps {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Logos como imagen (alternativa al texto) */
.thr-section .thr-logo-img {
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.15s ease, opacity 0.15s ease;
}

.thr-section .thr-logo-img:hover {
  filter: none;
  opacity: 1;
}

/* =========================================================
   04 · MÓDULOS / FUNCIONALIDADES
   ========================================================= */
.thr-section.thr-modulos {
  padding: 88px 24px 72px;
}

.thr-section .thr-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.thr-section .thr-card {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: var(--thr-radius);
  padding: 28px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.thr-section .thr-card:hover {
  border-color: var(--thr-teal);
  box-shadow: 0 12px 32px -18px rgba(13, 148, 136, 0.35);
}

.thr-section .thr-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--thr-teal-50);
  color: var(--thr-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}

.thr-section .thr-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.thr-section .thr-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0;
  text-wrap: pretty;
}

/* =========================================================
   05 · CUMPLIMIENTO LEGAL (fondo oscuro)
   ========================================================= */
.thr-section.thr-compliance {
  background: var(--thr-dark);
}

.thr-section .thr-compliance-grid {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 84px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.thr-section .thr-compliance-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--thr-dark-text);
  margin: 14px 0 26px;
  text-wrap: pretty;
}

.thr-section .thr-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 30px;
}

.thr-section .thr-check-item {
  display: flex;
  gap: 12px;
  color: var(--thr-dark-text-2);
  font-size: 15px;
  line-height: 1.5;
}

.thr-section .thr-check-mark--mint {
  color: var(--thr-mint);
  font-weight: 700;
}

.thr-section .thr-compliance-actions {
  display: flex;
  gap: 14px;
}

.thr-section .thr-btn--dark-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--thr-teal);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}

.thr-section .thr-btn--dark-primary:hover {
  background: var(--thr-teal-bright);
  color: #fff;
}

.thr-section .thr-btn--dark-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--thr-dark-text-2);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 9px;
  border: 1px solid var(--thr-dark-border-2);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.thr-section .thr-btn--dark-ghost:hover {
  border-color: var(--thr-mint);
  color: var(--thr-mint);
}

.thr-section .thr-compliance-card {
  background: var(--thr-dark-card);
  border: 1px solid var(--thr-dark-border);
  border-radius: 16px;
  padding: 30px;
}

.thr-section .thr-compliance-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.thr-section .thr-dash-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0 0 22px;
}

.thr-section .thr-dash-item {
  display: flex;
  gap: 11px;
  color: var(--thr-dark-text);
  font-size: 14.5px;
}

.thr-section .thr-dash-mark {
  color: var(--thr-mint);
}

.thr-section .thr-note {
  background: var(--thr-dark);
  border: 1px solid var(--thr-dark-border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.thr-section .thr-note-icon {
  color: var(--thr-mint);
  font-size: 16px;
}

.thr-section .thr-note-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--thr-dark-text-2);
}

/* =========================================================
   06 · CIFRAS
   ========================================================= */
.thr-section.thr-stats {
  background: #fff;
  border-bottom: 1px solid var(--thr-border-faint);
}

.thr-section .thr-stats-grid {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.thr-section .thr-stat {
  text-align: center;
}

.thr-section .thr-stat-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--thr-ink);
}

.thr-section .thr-stat-label {
  font-size: 14px;
  color: var(--thr-text);
  margin-top: 6px;
}

/* =========================================================
   07 · PASOS / IMPLANTACIÓN
   ========================================================= */
.thr-section.thr-steps {
  background: var(--thr-bg-soft);
}

.thr-section .thr-steps-inner {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 84px 24px;
}

.thr-section .thr-step-card {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: var(--thr-radius);
  padding: 30px;
}

.thr-section .thr-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--thr-teal);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* =========================================================
   08 · CTA FINAL
   ========================================================= */
.thr-section.thr-cta {
  padding: 96px 24px;
  text-align: center;
}

.thr-section .thr-cta-title {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}

.thr-section .thr-cta-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0 auto 32px;
  max-width: 520px;
  text-wrap: pretty;
}

.thr-section .thr-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* =========================================================
   09 · FOOTER  (opcional: solo si usas el widget de footer)
   ========================================================= */
.thr-section.thr-footer {
  background: var(--thr-dark);
  color: var(--thr-dark-text);
}

.thr-section .thr-footer-grid {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 64px 24px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.thr-section .thr-logo--footer {
  margin-bottom: 16px;
}

.thr-section .thr-logo--footer .thr-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 16px;
}

.thr-section .thr-logo--footer .thr-logo-text {
  font-size: 18px;
  color: #fff;
}

.thr-section .thr-footer-desc {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 300px;
  text-wrap: pretty;
}

.thr-section .thr-socials {
  display: flex;
  gap: 10px;
}

.thr-section .thr-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--thr-dark-border);
  color: var(--thr-dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.thr-section .thr-social:hover {
  border-color: var(--thr-mint);
  color: var(--thr-mint);
}

.thr-section .thr-footer-head {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.thr-section .thr-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thr-section .thr-footer-link {
  color: var(--thr-dark-text);
  font-size: 14px;
  transition: color 0.15s ease;
}

.thr-section .thr-footer-link:hover {
  color: var(--thr-mint);
}

.thr-section .thr-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.thr-section .thr-footer-bottom {
  max-width: var(--thr-maxw);
  margin: 40px auto 0;
  padding: 22px 24px;
  border-top: 1px solid var(--thr-dark-border-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.thr-section .thr-footer-copy {
  font-size: 13px;
}

.thr-section .thr-footer-copy strong {
  color: #fff;
}

.thr-section .thr-footer-legal {
  display: flex;
  gap: 20px;
}

.thr-section .thr-footer-link--sm {
  font-size: 13px;
}

/* #########################################################
   PÁGINA FUNCIONALIDADES (Producto)
   ######################################################### */
/* --- F1 · Cabecera centrada --- */
.thr-section.thr-fhero {
  max-width: 860px;
  margin: 0 auto;
  padding: 76px 24px 56px;
  text-align: center;
}

.thr-section .thr-fhero-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 20px;
  text-wrap: balance;
}

.thr-section .thr-fhero-sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0 auto;
  max-width: 640px;
  text-wrap: pretty;
}

/* --- F2 · Resumen de módulos (reutiliza .thr-cards-3 / .thr-card) --- */
.thr-section.thr-resumen {
  background: #fff;
}

.thr-section .thr-resumen-inner {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 0 24px 72px;
}

.thr-section a.thr-card {
  display: block;
  color: inherit;
}

/* --- F3 · Módulos a dos columnas --- */
.thr-section.thr-module {
  background: #fff;
}

.thr-section.thr-module--soft {
  background: var(--thr-bg-soft);
  border-top: 1px solid var(--thr-border-faint);
}

.thr-section .thr-module-grid {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 84px 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.thr-section .thr-module-grid--rev {
  grid-template-columns: 0.95fr 1.05fr;
}

.thr-section .thr-module-title {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
  text-wrap: balance;
}

.thr-section .thr-module-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--thr-text);
  margin: 0 0 24px;
  text-wrap: pretty;
}

/* Lista de características con check */
.thr-section .thr-feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.thr-section .thr-feat-item {
  display: flex;
  gap: 12px;
  color: #2c403d;
  font-size: 15px;
  line-height: 1.5;
}

.thr-section .thr-feat-mark {
  color: var(--thr-teal);
  font-weight: 700;
}

.thr-section .thr-feat-mark--soon {
  color: var(--thr-muted);
  font-weight: 700;
}

/* Tarjeta-mock genérica (panel de la derecha/izquierda) */
.thr-section .thr-fcard {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: var(--thr-radius);
  box-shadow: 0 20px 50px -28px rgba(12, 26, 24, 0.25);
  overflow: hidden;
}

.thr-section .thr-fcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--thr-border-faint);
}

.thr-section .thr-fcard-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--thr-ink);
}

.thr-section .thr-fcard-sub {
  font-size: 12px;
  color: var(--thr-muted);
  font-weight: 500;
}

.thr-section .thr-fcard-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thr-section .thr-fcard-list {
  display: flex;
  flex-direction: column;
}

.thr-section .thr-fcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--thr-bg-soft);
  border-top: 1px solid var(--thr-border-faint);
}

.thr-section .thr-fcard-foot-label {
  font-size: 12.5px;
  color: var(--thr-text);
  font-weight: 500;
}

.thr-section .thr-fcard-foot-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--thr-ink);
  font-variant-numeric: tabular-nums;
}

.thr-section .thr-fcard-foot-val--teal {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--thr-teal-dark);
}

/* Barras de horas (registro) */
.thr-section .thr-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thr-section .thr-bar-day {
  width: 52px;
  font-size: 12px;
  font-weight: 600;
  color: var(--thr-muted);
}

.thr-section .thr-bar-track {
  flex: 1;
  height: 10px;
  border-radius: 100px;
  background: var(--thr-border-faint);
  overflow: hidden;
  display: flex;
}

.thr-section .thr-bar-fill {
  background: var(--thr-teal);
  border-radius: 100px;
}

.thr-section .thr-bar-fill--mint {
  background: var(--thr-mint);
}

.thr-section .thr-bar-val {
  width: 58px;
  text-align: right;
  font-size: 12.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.thr-section .thr-bar-val--live {
  color: var(--thr-teal-dark);
}

/* Filas de aprobación (ausencias) */
.thr-section .thr-appr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--thr-row-faint);
}

.thr-section .thr-appr-row:last-child {
  border-bottom: none;
}

.thr-section .thr-appr-actions {
  display: flex;
  gap: 6px;
}

.thr-section .thr-appr-btn {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--thr-teal);
  padding: 6px 12px;
  border-radius: 7px;
}

.thr-section .thr-appr-btn--ghost {
  font-size: 12px;
  font-weight: 600;
  color: var(--thr-text);
  border: 1px solid var(--thr-border-2);
  padding: 6px 12px;
  border-radius: 7px;
}

/* Filas de documentos (documental) */
.thr-section .thr-doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--thr-row-faint);
}

.thr-section .thr-doc-row:last-child {
  border-bottom: none;
}

.thr-section .thr-doc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thr-section .thr-doc-icon--teal {
  background: var(--thr-teal-50);
  color: var(--thr-teal);
}

.thr-section .thr-doc-icon--violet {
  background: #f1f0fa;
  color: #6355b3;
}

.thr-section .thr-doc-icon--amber {
  background: #fbf3ec;
  color: #b0722e;
}

/* --- F6 · Capacidades transversales --- */
.thr-section.thr-transversales {
  background: #fff;
}

.thr-section .thr-transversales-inner {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 84px 24px;
}

.thr-section .thr-transversales-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.thr-section .thr-transversales-head .thr-module-title {
  margin: 14px 0 0;
}

.thr-section .thr-tcard {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: var(--thr-radius);
  padding: 26px;
}

.thr-section .thr-tcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--thr-teal-50);
  color: var(--thr-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.thr-section .thr-tcard-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.thr-section .thr-tcard-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0;
  text-wrap: pretty;
}

/* --- F7 · CTA con fondo suave --- */
.thr-section.thr-cta-soft {
  background: var(--thr-bg-soft);
  border-top: 1px solid var(--thr-border-faint);
}

.thr-section .thr-cta-soft-inner {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}

/* #########################################################
   PÁGINA PRECIOS
   ######################################################### */
/* --- P1 · Cabecera (reutiliza .thr-fhero / .thr-fhero-title / -sub) --- */
.thr-section .thr-pricing-checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

/* --- P2 · Planes --- */
.thr-section.thr-plans {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.thr-section .thr-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.thr-section .thr-plan {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: 16px;
  padding: 36px;
}

.thr-section .thr-plan--featured {
  position: relative;
  border: 2px solid var(--thr-teal);
  box-shadow: 0 20px 50px -24px rgba(13, 148, 136, 0.35);
}

.thr-section .thr-plan-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--thr-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.thr-section .thr-plan-tier {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--thr-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.thr-section .thr-plan-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}

.thr-section .thr-plan-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--thr-text);
  margin: 0 0 24px;
}

.thr-section .thr-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.thr-section .thr-plan-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.thr-section .thr-plan-unit {
  font-size: 15px;
  color: var(--thr-text);
  font-weight: 500;
}

.thr-section .thr-plan-billing {
  font-size: 13px;
  color: var(--thr-muted);
  margin: 0 0 22px;
}

.thr-section .thr-tealstrong {
  color: var(--thr-teal-dark);
}

.thr-section .thr-plan-note {
  font-size: 14.5px;
  color: var(--thr-ink);
  margin: 0 0 26px;
  padding: 12px 16px;
  background: var(--thr-bg-soft);
  border-radius: 9px;
}

.thr-section .thr-plan-note--teal {
  background: var(--thr-teal-50);
}

.thr-section .thr-plan-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thr-section .thr-btn--block {
  width: 100%;
  padding: 13px 22px;
  font-size: 15px;
}

.thr-section .thr-plans-enterprise {
  margin-top: 24px;
  background: var(--thr-dark);
  border-radius: 14px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.thr-section .thr-ent-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.thr-section .thr-ent-text {
  font-size: 14px;
  color: var(--thr-dark-text);
  margin: 0;
}

.thr-section .thr-btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--thr-ink);
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 9px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}

.thr-section .thr-btn--white:hover {
  background: var(--thr-teal-100);
}

/* --- P3 · Qué incluye --- */
.thr-section.thr-included {
  background: var(--thr-bg-soft);
}

.thr-section .thr-included-inner {
  max-width: var(--thr-maxw);
  margin: 0 auto;
  padding: 80px 24px;
}

.thr-section .thr-included-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.thr-section .thr-included-head .thr-h2 {
  font-size: 34px;
}

.thr-section .thr-inc-card {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: var(--thr-radius);
  padding: 26px;
}

.thr-section .thr-inc-card--wide {
  grid-column: span 2;
}

.thr-section .thr-inc-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
}

.thr-section .thr-inc-title--badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thr-section .thr-badge-soft {
  font-size: 11px;
  font-weight: 700;
  color: var(--thr-teal-dark);
  background: var(--thr-teal-50);
  padding: 3px 9px;
  border-radius: 100px;
}

.thr-section .thr-inc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thr-section .thr-inc-list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.thr-section .thr-inc-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--thr-text);
}

.thr-section .thr-inc-mark {
  color: var(--thr-teal);
  font-weight: 700;
}

.thr-section .thr-inc-mark--soon {
  color: var(--thr-muted-2);
  font-weight: 700;
}

/* --- P4 · FAQ --- */
.thr-section.thr-faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 84px 24px;
}

.thr-section .thr-faq-head {
  text-align: center;
  margin-bottom: 44px;
}

.thr-section .thr-faq-head .thr-h2 {
  font-size: 34px;
  margin: 14px 0 0;
}

.thr-section .thr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thr-section .thr-faq-item {
  border: 1px solid var(--thr-border);
  border-radius: 12px;
  padding: 22px 26px;
}

.thr-section .thr-faq-q {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.thr-section .thr-faq-a {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0;
  text-wrap: pretty;
}

/* =========================================================
   INTEGRACIÓN CON EBASNET (tema norma / Bootstrap)
   -----------------------------------------------------------------
   1) Página en blanco (anula el fondo #0f172a del <body>).
   2) Secciones a todo el ancho (full-bleed) escapando del .container.
   3) Contenido centrado a 1180px con 24px de margen mínimo.
   Si prefieres mantener el fondo oscuro del body, borra el bloque (1).
   ========================================================= */
/* (1) Lienzo blanco */
body.homepage,
body.frontend {
  background-color: #fff !important;
  overflow-x: hidden;
}

.outercontainer,
.outercontainer .composition,
.outercontainer main {
  background: transparent;
  overflow: visible;
}

/* Evita que los contenedores de EBASNET recorten el full-bleed */
.compositionContainer,
.compositionContainer > .container,
.widgetscontainer_comp1_hero,
.widgetsContainer {
  overflow: visible;
}

/* (2) Full-bleed: todas las secciones ocupan el ancho de pantalla */
.thr-section.thr-hero,
.thr-section.thr-logos,
.thr-section.thr-modulos,
.thr-section.thr-compliance,
.thr-section.thr-stats,
.thr-section.thr-steps,
.thr-section.thr-cta,
.thr-section.thr-resumen,
.thr-section.thr-module,
.thr-section.thr-transversales,
.thr-section.thr-cta-soft,
.thr-section.thr-included {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* (3) Secciones cuyo contenido va directamente en la <section>
   (hero, módulos, CTA): centramos el contenido a 1180px con padding. */
.thr-section.thr-hero,
.thr-section.thr-modulos,
.thr-section.thr-cta {
  background: #fff;
  padding-left: max(24px, 50vw - 590px);
  padding-right: max(24px, 50vw - 590px);
}

/* (4) PIE NATIVO DE EBASNET en estilo oscuro
   (afecta solo al <footer> del tema, no a las secciones .thr-*) */
footer {
  background: var(--thr-dark) !important;
  color: var(--thr-dark-text);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

footer .site_footer,
footer .footer,
footer .widget {
  background: transparent !important;
}

footer a {
  color: var(--thr-dark-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

footer a:hover,
footer a:focus {
  color: var(--thr-mint);
  text-decoration: none;
}

footer .widget_menu a,
footer .widget_contact a {
  color: var(--thr-dark-text);
}

footer .widget_menu a:hover,
footer .widget_contact a:hover {
  color: var(--thr-mint);
}

footer .widget_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .widget_menu li {
  margin: 0 0 12px;
}

footer address {
  font-style: normal;
  color: var(--thr-dark-text);
}

footer address ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer address li {
  margin: 0 0 12px;
  line-height: 1.6;
}

footer address i,
footer .widget_contact i {
  color: var(--thr-mint);
  margin-right: 6px;
}

footer .footer {
  border-top: 1px solid var(--thr-dark-border-3);
}

footer .copyright {
  color: var(--thr-dark-text);
  font-size: 13px;
}

footer .by-ebasnet img {
  opacity: 0.85;
}

/* #########################################################
   PÁGINA CONTACTO (formulario nativo de EBASNET)
   -----------------------------------------------------------------
   No hay widget HTML: se estiliza el formulario que genera EBASNET.
   Todo va bajo body.contact -> no afecta al resto de páginas.
   Campos emparejados en 2 columnas para que quede compacto y corto.
   ######################################################### */
/* Sube ligeramente el carrusel vacío (sin tocar la cabecera) */
body.contact .carousel-outercontainer:empty {
  display: none;
}

/* Centra y estrecha el contenido — NO se toca <header> ni .site_header */
body.contact main.col-sm-12 {
  float: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

/* Título + intro centrados */
body.contact .page-header {
  border: 0;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
}

body.contact .page-header h1 {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--thr-ink);
}

body.contact #contact_text.well {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 auto 26px;
  max-width: 600px;
  text-align: center;
}

body.contact #contact_text p {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--thr-text);
  margin: 0;
}

/* Tarjeta del formulario */
body.contact .contact-form {
  background: #fff;
  border: 1px solid var(--thr-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px -34px rgba(12, 26, 24, 0.28);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

/* Rejilla: 2 columnas; empareja Nombre/Empresa y Email/Teléfono */
body.contact .form_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

body.contact .form_fields > input[type=hidden] {
  display: none;
}

body.contact .field {
  grid-column: 1/-1;
  margin-bottom: 16px;
}

body.contact .field:has(#contact_name) {
  grid-column: 1/2;
}

body.contact .field:has(#contact_company) {
  grid-column: 2/3;
}

body.contact .field:has(#contact_email) {
  grid-column: 1/2;
}

body.contact .field:has(#contact_phone) {
  grid-column: 2/3;
}

/* Filas horizontales -> etiqueta arriba, campo abajo */
body.contact .form-group {
  margin: 0;
}

body.contact .form-group::before,
body.contact .form-group::after {
  content: none;
}

body.contact .form-group > .control-label {
  width: 100%;
  float: none;
  margin: 0;
  padding: 0 0 6px;
  text-align: left;
}

body.contact .form-group > .col-sm-10 {
  width: 100%;
  float: none;
  padding: 0;
}

body.contact .form-group > .col-sm-offset-2 {
  width: 100%;
  float: none;
  padding: 0;
  margin-left: 0;
}

body.contact .control-label label {
  font-size: 13px;
  font-weight: 600;
  color: var(--thr-ink);
  margin: 0;
}

body.contact label .required {
  color: var(--thr-teal);
}

/* Campos de texto */
body.contact .form-control {
  width: 100%;
  height: auto;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--thr-ink);
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--thr-border-2);
  border-radius: 9px;
  box-shadow: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.contact .form-control::placeholder {
  color: var(--thr-muted);
}

body.contact .form-control:focus {
  border-color: var(--thr-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
  outline: none;
}

body.contact textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Captcha */
body.contact .captcha_container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.contact .captcha_container img {
  border: 1px solid var(--thr-border);
  border-radius: 8px;
}

body.contact .captcha_container input {
  flex: 1;
  min-width: 160px;
}

/* Checkboxes (privacidad / comercial) */
body.contact .field:has(#contact_privacy),
body.contact .field:has(#contact_commercial_info) {
  margin-bottom: 10px;
}

body.contact .checkbox {
  margin: 0;
}

body.contact .checkbox label {
  position: relative;
  display: block;
  padding-left: 26px;
  font-size: 13px;
  font-weight: 500;
  color: var(--thr-text);
  line-height: 1.5;
}

body.contact .checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 2px;
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--thr-teal);
}

body.contact .checkbox a {
  color: var(--thr-teal);
  font-weight: 600;
}

/* Botón enviar */
body.contact .field.text-center {
  margin-top: 6px;
  margin-bottom: 0;
  text-align: center;
}

body.contact #contact_submit,
body.contact .contact-form .btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--thr-teal);
  color: #fff;
  border: 0;
  border-radius: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 34px;
  cursor: pointer;
  transition: background 0.15s ease;
  box-shadow: none;
}

body.contact .contact-form .btn-success:hover {
  background: var(--thr-teal-dark);
  color: #fff;
}

@media (max-width: 600px) {
  body.contact .form_fields {
    grid-template-columns: 1fr;
  }
  body.contact .field {
    grid-column: 1/-1 !important;
  }
  body.contact .page-header h1 {
    font-size: 30px;
  }
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .thr-section.thr-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .thr-section .thr-hero-title {
    font-size: 40px;
  }
  .thr-section .thr-compliance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .thr-section .thr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .thr-section .thr-cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .thr-section .thr-nav-links {
    display: none;
  }
  .thr-section .thr-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .thr-section .thr-plans-grid {
    grid-template-columns: 1fr;
  }
  .thr-section .thr-inc-card--wide {
    grid-column: auto;
  }
  .thr-section .thr-inc-list--2col {
    grid-template-columns: 1fr;
  }
  .thr-section .thr-plans-enterprise {
    flex-direction: column;
    align-items: flex-start;
  }
  .thr-section .thr-module-grid,
  .thr-section .thr-module-grid--rev {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (max-width: 560px) {
  .thr-section .thr-cards-3 {
    grid-template-columns: 1fr;
  }
  .thr-section .thr-hero-title {
    font-size: 33px;
  }
  .thr-section .thr-h2,
  .thr-section .thr-cta-title {
    font-size: 28px;
  }
  .thr-section .thr-h2--light {
    font-size: 27px;
  }
  .thr-section .thr-footer-grid {
    grid-template-columns: 1fr;
  }
  .thr-section .thr-hero-actions,
  .thr-section .thr-cta-actions,
  .thr-section .thr-compliance-actions {
    flex-direction: column;
  }
  .thr-section .thr-mock-float {
    display: none;
  }
}