:root {
  --tbhs-blue: #1557b7;
  --tbhs-navy: #0b1f3a;
  --tbhs-black: #111418;
  --tbhs-gray: #f3f4f1;
  --tbhs-white: #ffffff;
  --tbhs-blue-soft: #eaf2ff;
  --tbhs-success: #21a67a;
  --tbhs-warning: #f2a900;
  --tbhs-danger: #d94a38;
  --tbhs-ai: #00a7d8;
  --tbhs-support: #8e7cf2;
  --tbhs-editorial: #d8c7a3;
  --tbhs-blue-80: rgba(21, 87, 183, 0.8);
  --tbhs-blue-60: rgba(21, 87, 183, 0.6);
  --tbhs-blue-20: rgba(21, 87, 183, 0.2);
  --tbhs-blue-10: rgba(21, 87, 183, 0.1);
  --tbhs-navy-90: rgba(11, 31, 58, 0.9);
  --tbhs-navy-70: rgba(11, 31, 58, 0.7);
  --tbhs-navy-30: rgba(11, 31, 58, 0.3);
  --tbhs-black-80: rgba(17, 20, 24, 0.8);
  --tbhs-black-60: rgba(17, 20, 24, 0.6);
  --tbhs-black-40: rgba(17, 20, 24, 0.4);
  --tbhs-black-12: rgba(17, 20, 24, 0.12);
  --tbhs-success-30: rgba(33, 166, 122, 0.3);
  --tbhs-success-12: rgba(33, 166, 122, 0.12);
  --tbhs-warning-30: rgba(242, 169, 0, 0.3);
  --tbhs-warning-12: rgba(242, 169, 0, 0.12);
  --tbhs-danger-35: rgba(217, 74, 56, 0.35);
  --tbhs-danger-12: rgba(217, 74, 56, 0.12);
  --tbhs-ai-30: rgba(0, 167, 216, 0.3);
  --tbhs-ai-12: rgba(0, 167, 216, 0.12);
  --tbhs-support-30: rgba(142, 124, 242, 0.3);
  --tbhs-support-12: rgba(142, 124, 242, 0.12);
  --tbhs-editorial-35: rgba(216, 199, 163, 0.35);
  --tbhs-editorial-15: rgba(216, 199, 163, 0.15);
  --gradient-authority-digital: linear-gradient(135deg, #1557b7 0%, #0b1f3a 100%);
  --gradient-clear-interface: linear-gradient(180deg, #ffffff 0%, #f3f4f1 100%);
  --gradient-ai-strategy: linear-gradient(135deg, #00a7d8 0%, #1557b7 100%);
  --gradient-controlled-growth: linear-gradient(135deg, #21a67a 0%, #1557b7 100%);
  --gradient-operational-alert: linear-gradient(135deg, #f2a900 0%, #1557b7 100%);
  --gradient-shrinkage-risk: linear-gradient(135deg, #d94a38 0%, #0b1f3a 100%);
  --gradient-human-mentorship: linear-gradient(135deg, #8e7cf2 0%, #1557b7 100%);
  --gradient-executive-editorial: linear-gradient(135deg, #d8c7a3 0%, #f3f4f1 100%);
  --blue: var(--tbhs-blue);
  --blue-d: var(--tbhs-navy);
  --blue-xl: var(--tbhs-blue-soft);
  --blue-l: var(--tbhs-blue-10);
  --ink: var(--tbhs-black);
  --ink2: var(--tbhs-black-80);
  --muted: var(--tbhs-black-60);
  --bg: var(--tbhs-gray);
  --white: var(--tbhs-white);
  --border: var(--tbhs-black-12);
  --border2: var(--tbhs-navy-30);
  --radius: 12px;
  --radius-lg: 20px;
  --fd: "Big Shoulders Display", sans-serif;
  --fb: "Bebas Neue", sans-serif;
  --body: "Inter", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--tbhs-ai-30);
  outline-offset: 3px;
}
.nav-links a,
.hero-tag,
.s-tag,
.trust-pill,
.btn-main,
.btn-ghost,
.btn-white,
.form-submit,
.tab-btn,
.pain-name,
.dif-name,
.mod-name,
.video-label,
.demo-bullet,
.paso-name,
.form-label,
.app-kpi,
.sop-pt-title {
  font-family: var(--fb);
  letter-spacing: 0.06em;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.scrolled {
  border-bottom-color: var(--tbhs-black-12);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  min-width: 180px;
}
.nav-logo img {
  width: 180px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a,
.nav-links button {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links button:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--tbhs-blue);
  color: var(--tbhs-white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border: 1px solid var(--tbhs-blue) !important;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--tbhs-navy) !important;
  border-color: var(--tbhs-navy) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
#hero {
  padding: 3rem 2.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background: var(--gradient-clear-interface);
}
.salon-carousel {
  margin-top: 96px;
  position: relative;
  width: 100%;
  border-top: 1px solid var(--tbhs-black-12);
  border-bottom: 1px solid var(--tbhs-black-12);
  overflow: hidden;
  background: var(--tbhs-navy);
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.14);
}
.salon-track {
  display: flex;
  transition: transform 0.55s ease;
}
.salon-slide {
  position: relative;
  min-width: 100%;
  height: 320px;
  overflow: hidden;
}
.salon-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.salon-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.1), rgba(11, 31, 58, 0.82));
}
.salon-caption {
  position: absolute;
  left: max(1.25rem, calc((100vw - 1200px) / 2 + 1.5rem));
  right: max(1.25rem, calc((100vw - 1200px) / 2 + 1.5rem));
  bottom: 1.25rem;
  z-index: 1;
  color: var(--tbhs-white);
}
.salon-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.55rem;
  color: var(--tbhs-warning);
  font-size: 15px;
}
.salon-name {
  font-family: var(--fb);
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.salon-quote {
  font-size: 0.96rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
}
.salon-controls {
  position: absolute;
  right: max(1rem, calc((100vw - 1200px) / 2 + 1rem));
  top: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
}
.salon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--tbhs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.18);
  transition:
    transform 0.2s,
    background 0.2s;
}
.salon-btn:hover {
  background: var(--tbhs-blue-soft);
  transform: translateY(-1px);
}
.salon-btn i {
  font-size: 18px;
}
.salon-dots {
  position: absolute;
  left: max(1rem, calc((100vw - 1200px) / 2 + 1rem));
  top: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
}
.salon-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition:
    width 0.25s,
    background 0.25s;
}
.salon-dot.active {
  width: 24px;
  background: var(--tbhs-white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-xl);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag i {
  font-size: 14px;
}
.hero-h {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--tbhs-navy);
  margin-bottom: 1.25rem;
}
.hero-h em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--tbhs-blue);
  color: var(--tbhs-white);
  border: 1px solid var(--tbhs-blue);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-main:hover {
  background: var(--tbhs-navy);
  border-color: var(--tbhs-navy);
  transform: translateY(-1px);
}
.btn-main i {
  font-size: 18px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: var(--tbhs-blue);
  border: 1px solid var(--tbhs-blue-20);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: var(--tbhs-blue-10);
  border-color: var(--tbhs-blue-20);
  color: var(--tbhs-blue);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.trust-pill i {
  font-size: 15px;
  color: var(--blue);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-video-card {
  position: relative;
  z-index: 1;
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-blue-20);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}
.hero-video-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.hero-video-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fb);
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-video-title i {
  font-size: 18px;
  color: var(--blue);
}
.hero-video-open {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--blue-xl);
  color: var(--blue);
  font-family: var(--fb);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}
.hero-video-frame {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tbhs-navy);
  border: 1px solid var(--tbhs-black-12);
}
.hero-video-caption {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-video-caption i {
  font-size: 16px;
  color: var(--tbhs-success);
}

/* SECTION COMMON */
section {
  padding: 6rem 2.5rem;
}
.s-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-xl);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.s-tag i {
  font-size: 12px;
}
.s-h {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.97;
  color: var(--ink);
  margin-bottom: 0.875rem;
}
.s-h em {
  font-style: normal;
  color: var(--blue);
}
.s-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

/* DOLOR */
#dolor {
  background: var(--tbhs-white);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.pain-card {
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-black-12);
  border-left: 4px solid var(--tbhs-warning);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s;
  cursor: default;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.06);
}
.pain-card:nth-child(2),
.pain-card:nth-child(3) {
  border-left-color: var(--tbhs-danger);
}
.pain-card:nth-child(6) {
  border-left-color: var(--tbhs-ai);
}
.pain-card:hover {
  border-color: var(--tbhs-blue-20);
  border-left-color: var(--tbhs-blue);
  background: linear-gradient(180deg, var(--tbhs-white) 0%, var(--tbhs-blue-soft) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}
.pain-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--tbhs-gray);
  border: 1px solid var(--tbhs-black-12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--tbhs-blue);
  transition: all 0.25s;
}
.pain-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}
.pain-icon-wrap.img-icon {
  overflow: hidden;
  background: var(--tbhs-white);
  padding: 0;
}
.pain-card:hover .pain-icon-wrap {
  background: var(--tbhs-blue);
  color: var(--tbhs-white);
  border-color: var(--tbhs-blue);
}
.pain-card:hover .pain-icon-wrap.img-icon {
  background: var(--tbhs-white);
  border-color: var(--tbhs-blue);
}
.pain-name {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.pain-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* DEMO */
#demo {
  background: var(--gradient-authority-digital);
  overflow: hidden;
  position: relative;
}
#demo::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.demo-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.demo-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: none;
}
.demo-h {
  color: var(--tbhs-white);
}
.demo-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.demo-reserved-space {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
}
.video-wrap {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.video-wrap:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.play-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--tbhs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  z-index: 1;
}
.play-ring:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.12);
}
.play-ring i {
  font-size: 32px;
  color: var(--tbhs-blue);
  margin-left: 4px;
}
.video-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.demo-bullets {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.demo-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.demo-bullet i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--tbhs-white);
  color: var(--tbhs-navy);
  border: 1px solid var(--tbhs-white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-white:hover {
  background: var(--tbhs-blue-soft);
  border-color: var(--tbhs-blue-soft);
  transform: translateY(-1px);
}
.btn-white i {
  font-size: 18px;
}

/* VIDEO MODAL */
.vmodal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.vmodal.open {
  display: flex;
}
.vmodal-inner {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: var(--tbhs-navy);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vmodal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}
.vmodal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  color: var(--tbhs-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.vmodal-close i {
  font-size: 20px;
}

/* SOFTWARE TABS */
#software {
  background: var(--tbhs-gray);
}
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 2.5px solid transparent;
  position: relative;
  bottom: -1.5px;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn i {
  font-size: 20px;
}
.tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.tab-btn:hover:not(.active) {
  color: var(--ink);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.module-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.25rem;
}
.module-card {
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-black-12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.2s;
  cursor: default;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.04);
}
.module-card:hover {
  border-color: var(--tbhs-blue-20);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}
.mod-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-xl);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 22px;
  transition: all 0.2s;
}
.module-card:hover .mod-icon {
  background: var(--tbhs-blue);
  color: var(--tbhs-white);
}
.mod-name {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.mod-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

/* APP MOVIL */
#app-movil {
  background: var(--tbhs-white);
  overflow: hidden;
}
.mobile-app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.app-copy {
  max-width: 520px;
}
.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-black-12);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.04);
}
.app-feature i {
  font-size: 22px;
  color: var(--tbhs-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.app-feature:first-child i {
  color: var(--tbhs-success);
}
.app-feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.app-feature span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.app-kpi-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.app-kpi {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--tbhs-success-12);
  color: var(--tbhs-success);
  font-size: 0.78rem;
  font-weight: 700;
}
.phone-stage {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.phone-frame {
  position: relative;
  width: min(310px, 100%);
  flex: 0 0 auto;
  padding: 0.6rem;
  background: var(--tbhs-navy);
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.22);
  z-index: 1;
}
.phone-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 1600;
  object-fit: contain;
  border-radius: 28px;
  display: block;
  background: var(--tbhs-white);
}
/* DIFERENCIADOR */
#diferenciador {
  background: var(--tbhs-white);
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.dif-card {
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-blue-20);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.dif-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--tbhs-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--tbhs-blue);
  transition:
    background-color 0.25s,
    color 0.25s;
}
@media (hover: hover) and (pointer: fine) {
  .dif-card:hover {
    border-color: var(--tbhs-blue);
    box-shadow: 0 12px 32px rgba(11, 31, 58, 0.1);
  }
  .dif-card:hover .dif-icon-wrap {
    background: var(--tbhs-blue);
    color: var(--tbhs-white);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dif-card,
  .dif-icon-wrap {
    transition: none;
  }
}
.dif-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.dif-name {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.dif-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* FRASE STRIP */
.frase-strip {
  background: var(--gradient-authority-digital);
  padding: 3.5rem 2.5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.frase-strip::before,
.frase-strip::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.frase-strip::before {
  top: -150px;
  left: -80px;
}
.frase-strip::after {
  bottom: -150px;
  right: -80px;
}
.frase-strip p {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--tbhs-white);
  position: relative;
  z-index: 1;
}
.frase-strip p span {
  color: rgba(255, 255, 255, 0.55);
}

/* SOPORTE */
#soporte {
  background: var(--tbhs-support-12);
}
.sop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.sop-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.sop-pt {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-support-30);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: all 0.2s;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.04);
}
.sop-pt:hover {
  border-color: var(--tbhs-blue-20);
}
.sop-pt i {
  font-size: 22px;
  color: var(--tbhs-support);
  flex-shrink: 0;
  margin-top: 1px;
}
.sop-pt-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.sop-pt-desc {
  font-size: 0.82rem;
  color: var(--muted);
}

/* TESTIMONIOS */
#testimonios {
  background: var(--tbhs-white);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.test-card {
  margin: 0;
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-blue-20);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
}
.test-quote {
  margin: 0;
  font-size: 0.925rem;
  color: var(--tbhs-black-80);
  line-height: 1.65;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.test-av {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tbhs-white);
  border: 2px solid var(--tbhs-blue-20);
  padding: 3px;
  flex-shrink: 0;
}
.test-av img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.test-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}
.test-meta {
  font-size: 0.775rem;
  color: var(--tbhs-black-60);
}

.test-av:hover {
  border-color: var(--tbhs-blue);
}
.test-av:focus-visible {
  outline: 2px solid var(--tbhs-blue);
  outline-offset: 4px;
}

/* PROCESO */
#proceso {
  background: var(--tbhs-gray);
}
.proceso-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.proceso-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tbhs-blue-20),
    var(--tbhs-blue-20),
    transparent
  );
}
.paso {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.paso-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tbhs-blue);
  color: var(--tbhs-white);
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px var(--tbhs-blue-20);
}
.paso-icon {
  font-size: 22px;
  color: var(--blue);
}
.paso-name {
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.paso-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* FAQ */
#faq {
  background: var(--tbhs-white);
}
.faq-inner {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--tbhs-black-12);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.375rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-q.open {
  color: var(--blue);
}
.faq-q-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-q-left i {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-arrow i {
  font-size: 15px;
  color: var(--muted);
  transition: transform 0.3s;
}
.faq-q.open .faq-arrow {
  background: var(--blue);
  border-color: var(--blue);
}
.faq-q.open .faq-arrow i {
  color: var(--tbhs-white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-a.open {
  max-height: 180px;
  padding-bottom: 1.25rem;
}
.faq-a p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 2.25rem;
}

/* FORMULARIO MODAL */
.lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--tbhs-navy-90);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lead-modal.open {
  display: flex;
}
.lead-modal-shell {
  width: min(680px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  position: relative;
  border-radius: var(--radius-lg);
}
.lead-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--tbhs-blue-soft);
  color: var(--tbhs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.lead-close:hover {
  background: var(--tbhs-blue-10);
  transform: translateY(-1px);
}
.lead-close i {
  font-size: 20px;
}
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--tbhs-white);
  border: 1px solid var(--tbhs-blue-20);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 22px 70px rgba(11, 31, 58, 0.24);
}
.form-h {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink2);
}
.form-label i {
  font-size: 14px;
  color: var(--blue);
}
.form-input,
.form-select,
.form-ta {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--tbhs-navy-30);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.925rem;
  color: var(--tbhs-black);
  background: var(--tbhs-gray);
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-ta:focus {
  border-color: var(--tbhs-blue);
  background: var(--tbhs-white);
  box-shadow: 0 0 0 3px var(--tbhs-blue-10);
}
.form-ta {
  resize: none;
  height: 90px;
}
.form-submit {
  width: 100%;
  background: var(--tbhs-blue);
  color: var(--tbhs-white);
  padding: 1.1rem;
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid var(--tbhs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.form-submit i {
  font-size: 20px;
}
.form-submit:hover {
  background: var(--blue-d);
  transform: translateY(-1px);
}
.form-legal {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.form-legal i {
  font-size: 13px;
  color: var(--blue);
}

/* FOOTER */
footer {
  background: var(--tbhs-navy);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.foot-logo {
  display: flex;
  align-items: center;
}
.foot-logo img {
  width: 170px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.72;
}
.foot-links {
  display: flex;
  gap: 1.5rem;
}
.foot-links a,
.foot-links button {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.foot-links a:hover,
.foot-links button:hover {
  color: var(--tbhs-blue-soft);
}
.foot-links i {
  font-size: 15px;
}
.foot-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ANIMATIONS */
.fu {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fu.vis {
  opacity: 1;
  transform: translateY(0);
}
.fu.d1 {
  transition-delay: 0.1s;
}
.fu.d2 {
  transition-delay: 0.2s;
}
.fu.d3 {
  transition-delay: 0.3s;
}
.fu.d4 {
  transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .pain-grid,
  .dif-grid,
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tab-panel.active {
    grid-template-columns: 1fr;
  }
  .mobile-app-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .proceso-steps {
    grid-template-columns: 1fr 1fr;
  }
  .proceso-steps::before {
    display: none;
  }
  .sop-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }
  nav {
    padding: 0.875rem 1.25rem;
  }
  .nav-logo {
    min-width: 126px;
  }
  .nav-logo img {
    width: 126px;
    height: 48px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 200;
  }
  .nav-links.open a,
  .nav-links.open button {
    font-size: 1.3rem;
  }
  #hero {
    padding: 3rem 1.25rem 3rem;
  }
  .pain-grid,
  .dif-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }
  .app-feature {
    padding: 0.95rem;
  }
  .sticky-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .sticky-cta .btn-main {
    width: 100%;
    justify-content: center;
    border-radius: 0;
    padding: 1.1rem;
  }
  .form-wrap {
    padding: 2rem 1.5rem;
  }
  .proceso-steps {
    grid-template-columns: 1fr;
  }
  .salon-slide {
    height: 218px;
  }
  .salon-caption {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.85rem;
  }
  .salon-quote {
    font-size: 0.82rem;
  }
  .salon-controls {
    right: 0.7rem;
    top: 0.7rem;
  }
  .lead-modal {
    padding: 0.75rem;
  }
  .lead-modal-shell {
    max-height: 88vh;
  }
  .hero-video-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Component details previously defined inline in HTML. */
.nav-icon {
  vertical-align: -2px;
  font-size: 14px;
  margin-right: 3px;
}
.nav-icon--cta {
  vertical-align: -2px;
  font-size: 14px;
  margin-right: 4px;
}
.pain-intro {
  max-width: 580px;
}
.software-intro {
  max-width: 560px;
  margin-top: 0.75rem;
}
.dif-intro {
  max-width: 600px;
}
.support-intro {
  max-width: 430px;
}
.support-actions {
  margin-top: 2rem;
}
.faq-list {
  margin-top: 2.5rem;
}

.form-submit.is-success {
  background: var(--tbhs-success);
  border-color: var(--tbhs-success);
}

/* Lightweight demo covers; the only player is loaded in the modal on demand. */
.video-preview {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  isolation: isolate;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.45);
  z-index: -1;
}
.video-preview .video-label {
  color: var(--tbhs-white);
}
.video-preview:hover .play-ring,
.video-preview:focus-visible .play-ring {
  transform: scale(1.08);
}
.vmodal-inner {
  max-width: min(960px, calc((100dvh - 8rem) * 16 / 9));
}

/* Accessible mobile navigation and modal surfaces. */
.hamburger {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.nav-close {
  display: none;
}
.vmodal,
.lead-modal {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border: 0;
}
.vmodal::backdrop,
.lead-modal::backdrop {
  background: transparent;
}
.sticky-cta {
  left: 2rem;
  right: auto;
}
html {
  scroll-padding-top: 7rem;
}
@media (max-width: 768px) {
  .nav-links.open {
    top: 76px;
    bottom: 0;
    overflow-y: auto;
    padding: 5rem 1.25rem 2rem;
  }
  .nav-links.open .nav-close {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    align-items: center;
    gap: 0.75rem;
    min-height: 44px;
  }
  .sticky-cta {
    left: 1rem;
    right: 100px;
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  .sticky-cta .btn-main {
    min-height: 52px;
    padding: 0.8rem 0.6rem;
    border-radius: 10px;
  }
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

/* Keep the SalesIQ greeting above the reserved mobile action row. */
@media (max-width: 768px) {
  #zs-fl-tip {
    transform: translateY(-76px) !important;
  }
}

/* Real product screenshots and shared image viewer. */
.product-shot {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.product-shot-open {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--blue);
}
.product-shot-open img {
  display: block;
  width: 100%;
  height: auto;
}
.product-shot-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: var(--blue-xl);
  font-weight: 600;
}
.product-shot figcaption {
  padding: 1rem 1.25rem;
}
.product-shot figcaption strong {
  color: var(--ink);
}
.product-shot figcaption p,
.product-shot figcaption small {
  color: var(--muted);
}
.product-shot-detail {
  margin: 0 1.25rem 1.25rem;
  color: var(--blue);
  text-decoration: underline;
  min-height: 44px;
}
.image-modal {
  margin: auto;
  width: min(96vw, 1500px);
  max-width: none;
  max-height: 94dvh;
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
}
.image-modal::backdrop {
  background: rgba(11, 31, 58, 0.88);
}
.image-modal-content {
  padding: 1rem;
}
.image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.image-modal-header h2 {
  font-size: 1.1rem;
}
.image-modal-close {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  flex-shrink: 0;
}
.image-modal-scroll {
  overflow: auto;
  max-height: 72dvh;
  border: 1px solid var(--border);
}
.image-modal-scroll img {
  display: block;
  width: 100%;
  height: auto;
}
.image-modal-content > p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .image-modal-scroll img {
    min-width: 1000px;
  }
}

@media (max-width: 768px) {
  .salon-carousel {
    margin-top: 76px;
  }
}

.app-screen-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.app-screen-controls button {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--tbhs-blue-20);
  border-radius: 999px;
  background: white;
  color: var(--tbhs-navy);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.app-screen-controls button[aria-pressed="true"] {
  background: var(--tbhs-blue);
  color: white;
}
.app-screen-caption {
  text-align: center;
  max-width: 340px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--tbhs-navy);
}

@media (min-width: 1025px) {
  .test-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .test-card {
    grid-column: span 2;
  }
  .test-card:nth-child(-n + 2) {
    grid-column: span 3;
  }
}

.headline-banner .salon-slide {
  height: auto;
  aspect-ratio: 2560 / 563;
}
.headline-banner .salon-slide img {
  object-fit: contain;
  filter: none;
}
.headline-banner .salon-slide::after,
.headline-banner .salon-caption,
.headline-banner .salon-controls {
  display: none;
}
