:root {
  --truth-blue: #1d8fbd;
  --truth-blue-dark: #167a9c;
  --truth-aqua: #eaf8fb;
  --truth-navy: #10263a;
  --truth-ink: #071a33;
  --truth-muted: #60717e;
  --truth-coral: #ff6b6b;
  --truth-paper: #ffffff;
  --truth-light: #f4f9fb;
  --truth-line: rgba(7, 26, 51, 0.12);
  --truth-shadow: 0 20px 54px rgba(7, 26, 51, 0.1);
}

html {
  scroll-behavior: smooth;
}

.truth-dossier-body {
  margin: 0;
  color: var(--truth-ink);
  background: var(--truth-light);
  font-family: var(--font-main, "Manrope", sans-serif);
}

.truth-dossier-body * {
  box-sizing: border-box;
}

.truth-dossier-body img {
  display: block;
  max-width: 100%;
}

.truth-dossier-body .fixed-background {
  opacity: 0.22;
}

.truth-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--truth-navy);
  text-decoration: none;
  transform: translateY(-150%);
}

.truth-skip-link:focus {
  transform: translateY(0);
}

.truth-page {
  padding-top: 80px;
  overflow: hidden;
}

.truth-shell {
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
}

.truth-page h1,
.truth-page h2,
.truth-page h3,
.truth-page p,
.truth-page ul,
.truth-page ol,
.truth-page figure {
  margin-top: 0;
}

.truth-page h1,
.truth-page h2,
.truth-page h3 {
  color: var(--truth-ink);
  font-family: var(--font-main, "Manrope", sans-serif);
  letter-spacing: -0.035em;
}

.truth-page p,
.truth-page li {
  color: var(--truth-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.truth-page a,
.truth-page button {
  font-family: inherit;
}

.truth-hero {
  padding: 28px 0 22px;
}

.truth-hero__main {
  display: grid;
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1fr) 440px;
  grid-template-rows: 530px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 143, 189, 0.13);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--truth-shadow);
}

.truth-hero__copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  overflow: visible;
  padding: 36px 46px 30px;
}

.truth-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 3.55vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.truth-hero h1 span {
  display: block;
  color: var(--truth-blue);
}

.truth-hero__lead {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: 17px !important;
  line-height: 1.58 !important;
}

.truth-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.truth-hero__actions .btn,
.truth-copy-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--truth-coral);
  box-shadow: 0 10px 24px rgba(255, 107, 107, 0.25);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.truth-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid rgba(7, 26, 51, 0.16);
  border-radius: 999px;
  color: var(--truth-ink);
  background: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.truth-hero__media {
  position: relative;
  z-index: 1;
  grid-area: media;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #e7f5f8;
}

.truth-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 9%;
}

.truth-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: flex-start;
  width: calc(100% + 76px);
  max-width: none;
  margin: auto -76px 0 0;
  padding: 10px;
  border: 1px solid rgba(29, 143, 189, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(240, 250, 252, 0.98), rgba(225, 244, 249, 0.98));
  box-shadow: 0 18px 38px rgba(7, 52, 76, 0.13);
}

.truth-facts article {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 94px;
  padding: 13px 12px;
  border: 1px solid rgba(29, 143, 189, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.055);
}

.truth-facts i {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--truth-blue);
  background: var(--truth-aqua);
  font-size: 0.96rem;
}

.truth-facts strong,
.truth-facts span {
  display: block;
}

.truth-facts strong {
  margin-bottom: 4px;
  color: var(--truth-ink);
  font-size: 0.9375rem;
  line-height: 1.35;
}

.truth-facts span {
  color: var(--truth-muted);
  font-size: 0.875rem;
  line-height: 1.42;
}

.truth-section {
  padding: 64px 0;
  border-top: 1px solid rgba(7, 26, 51, 0.06);
}

.truth-section[id] {
  scroll-margin-top: 92px;
}

.truth-section--paper {
  background: rgba(255, 255, 255, 0.96);
}

.truth-section--light,
.truth-resources {
  background: var(--truth-light);
}

.truth-section--aqua {
  background: #eaf6f9;
}

.truth-section--dark,
.truth-section--questions {
  border-top: 0;
  background: var(--truth-navy);
}

.truth-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.truth-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.15vw, 44px);
  font-weight: 800;
  line-height: 1.14;
  text-align: left;
}

.truth-heading p {
  margin-bottom: 0;
}

.truth-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.truth-result-grid article,
.truth-document-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--truth-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.055);
}

.truth-result-grid i,
.truth-document-grid > article > i {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 13px;
  color: var(--truth-blue);
  background: var(--truth-aqua);
  font-size: 1.05rem;
}

.truth-result-grid h3,
.truth-document-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.32;
}

.truth-result-grid p,
.truth-document-grid p {
  margin-bottom: 0;
  font-size: 1rem;
}

.truth-claims-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 42px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--truth-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--truth-shadow);
}

.truth-claims-intro figure {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.truth-claims-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.truth-ad-copy {
  align-self: center;
  padding: 10px 14px 10px 0;
}

.truth-ad-copy h3 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(29px, 2.45vw, 37px);
  line-height: 1.16;
}

.truth-ad-copy > p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.truth-ad-claims {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.truth-ad-claims span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(29, 143, 189, 0.14);
  border-radius: 16px;
  color: var(--truth-ink);
  background: var(--truth-light);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.42;
}

.truth-ad-claims span i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--truth-blue);
  background: var(--truth-aqua);
  font-size: 0.9rem;
  text-align: center;
}

.truth-ad-claims span:nth-child(1),
.truth-ad-claims span:nth-child(2),
.truth-ad-claims span:nth-child(5) {
  border-color: rgba(202, 91, 86, 0.14);
  background: #fff8f7;
}

.truth-ad-claims span:nth-child(1) i,
.truth-ad-claims span:nth-child(2) i,
.truth-ad-claims span:nth-child(5) i {
  color: #bd5d59;
  background: #fdeceb;
}

.truth-ad-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 0 !important;
  padding-top: 16px;
  border-top: 1px solid var(--truth-line);
  color: var(--truth-ink) !important;
  font-size: 0.9375rem !important;
  line-height: 1.55;
  font-weight: 700;
}

.truth-ad-note i {
  margin-top: 4px;
  color: var(--truth-blue);
}

.truth-ad-note strong {
  color: var(--truth-ink);
}

.truth-claim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  scroll-margin-top: 96px;
}

.truth-claim-grid:focus-visible {
  outline: 3px solid rgba(29, 143, 189, 0.42);
  outline-offset: 5px;
}

.truth-claim-context {
  display: flex;
  gap: 13px;
  align-items: center;
  max-width: 920px;
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 143, 189, 0.16);
  border-radius: 18px;
  color: var(--truth-muted);
  background: #eff9fb;
  font-size: 1rem;
  line-height: 1.55;
}

.truth-claim-context > i {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--truth-blue);
  background: var(--truth-aqua);
}

.truth-claim-context strong {
  color: var(--truth-ink);
}

.truth-claim-card {
  display: grid;
  height: 100%;
  min-width: 0;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  scroll-margin-top: 96px;
  border: 2px solid #12344d;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.085);
}

.truth-claim-card--wide {
  grid-column: auto;
}

.truth-claim-card__promise {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  min-height: 102px;
  padding: 22px 26px;
  border-bottom: 0;
  color: #fff;
  background: #0b2a42;
}

.truth-claim-card__promise > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--truth-coral);
  box-shadow: 0 8px 18px rgba(255, 107, 107, 0.2);
  font-size: 1rem;
}

.truth-claim-card__promise h3 {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.34;
}

.truth-claim-card__logic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 23px;
  align-content: start;
  margin: 0;
  padding: 30px 28px 32px 108px;
}

.truth-claim-card__logic::before {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 50px;
  width: 2px;
  border-radius: 999px;
  background: rgba(29, 143, 189, 0.2);
  content: "";
}

.truth-claim-card__row {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.truth-claim-card__row:last-child {
  border-bottom: 0;
}

.truth-claim-card__row dt {
  display: block;
  margin: 0;
  color: var(--truth-ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.truth-claim-card__row dt i {
  position: absolute;
  top: -3px;
  left: -82px;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(29, 143, 189, 0.2);
  border-radius: 50%;
  color: var(--truth-blue);
  background: #fff;
  box-shadow: 0 7px 18px rgba(7, 26, 51, 0.09);
  font-size: 0.94rem;
  text-align: center;
}

.truth-claim-card__row dt span {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.truth-claim-card__row dt b {
  flex: 0 0 auto;
  color: var(--truth-blue-dark);
  font-size: 1.78rem;
  font-weight: 700;
  line-height: 0.9;
}

.truth-claim-card__row dd {
  margin: 8px 0 0;
  color: var(--truth-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.truth-claim-card__row--question {
  background: transparent;
}

.truth-claim-card__row--answer {
  background: transparent;
  box-shadow: none;
}

.truth-claim-card__row--answer dt,
.truth-claim-card__row--answer dt b {
  color: var(--truth-blue-dark);
}

.truth-claim-card__row--answer dt i {
  border-color: rgba(29, 143, 189, 0.32);
  color: #fff;
  background: var(--truth-blue);
}

.truth-claim-card__row--meaning dt i {
  color: #71818b;
  background: #eef2f4;
}

.truth-claim-card__row--flag {
  background: transparent;
  box-shadow: none;
}

.truth-claim-card__row--flag dt,
.truth-claim-card__row--flag dt i,
.truth-claim-card__row--flag dt b {
  color: #b45d59;
}

.truth-claim-card__row--flag dt i {
  border-color: rgba(180, 93, 89, 0.2);
  background: #fbeceb;
}

.truth-home-card {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.2);
}

.truth-home-card__media {
  position: relative;
  min-height: 860px;
  margin: 0;
  overflow: hidden;
  background: #dbe9ed;
}

.truth-home-card__media img {
  position: absolute;
  top: 0;
  left: -8%;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: top left;
  transform: none;
}

.truth-home-card__copy {
  padding: 44px 42px;
}

.truth-home-card h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3vw, 43px);
  line-height: 1.14;
  text-align: left;
}

.truth-home-card__copy > p {
  font-size: 1rem;
}

.truth-salon-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 20px;
}

.truth-salon-proof article {
  padding: 20px;
  border: 1px solid rgba(29, 143, 189, 0.13);
  border-radius: 18px;
  background: var(--truth-light);
}

.truth-salon-proof h3 {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.35;
}

.truth-salon-proof h3 i {
  color: var(--truth-blue);
}

.truth-salon-proof ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.truth-salon-proof li {
  position: relative;
  padding-left: 17px;
  color: var(--truth-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.truth-salon-proof li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--truth-blue);
  content: "";
}

.truth-home-card__note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  margin: 20px 0 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: #fff;
  background: var(--truth-navy);
  box-shadow: 0 16px 34px rgba(7, 26, 51, 0.18);
  scroll-margin-top: 96px;
}

.truth-home-card__note-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--truth-coral);
  box-shadow: 0 8px 18px rgba(255, 107, 107, 0.23);
}

.truth-home-card__note h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.truth-home-card__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.truth-home-card__stop {
  margin-top: 14px !important;
  padding: 13px 14px;
  border-radius: 13px;
  color: var(--truth-ink) !important;
  background: #fff;
}

.truth-home-card__stop strong {
  color: #b24e4e;
}

.truth-device-overview,
.truth-service-panel,
.truth-diode-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--truth-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 26, 51, 0.075);
}

.truth-device-overview figure,
.truth-service-panel figure,
.truth-diode-feature figure {
  height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #e8f3f6;
}

.truth-device-overview figure img,
.truth-service-panel figure img,
.truth-diode-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.truth-device-overview h3,
.truth-service-panel h2,
.truth-diode-feature h3 {
  margin-bottom: 16px;
  font-size: clamp(29px, 2.65vw, 38px);
  line-height: 1.16;
  text-align: left;
}

.truth-device-overview p,
.truth-service-panel p,
.truth-diode-feature p {
  font-size: 1rem;
}

.truth-overview-list,
.truth-service-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.truth-overview-list {
  display: grid;
  gap: 4px;
}

.truth-overview-list li,
.truth-service-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--truth-line);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.truth-overview-list li > i,
.truth-service-list li > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--truth-blue);
  background: var(--truth-aqua);
}

.truth-overview-list strong,
.truth-overview-list span,
.truth-service-list strong,
.truth-service-list span {
  display: block;
}

.truth-overview-list strong,
.truth-service-list strong {
  margin-bottom: 2px;
  color: var(--truth-ink);
}

.truth-document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.truth-document-grid article {
  min-height: 260px;
}

.truth-document-grid .truth-document-card--primary {
  border-color: rgba(29, 143, 189, 0.34);
  background: #f0fbfe;
}

.truth-service-panel {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  margin-bottom: 0;
}

.truth-service-panel figure img {
  object-position: center 52%;
}

.truth-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.truth-service-list li {
  min-height: 88px;
}

.truth-diode-feature {
  grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1.05fr);
}

.truth-diode-feature figure img {
  object-position: center;
}

.truth-diode-feature figure {
  height: auto;
  aspect-ratio: 16 / 9;
}

.truth-system-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 12px;
}

.truth-system-points span {
  min-height: 78px;
  padding: 14px;
  border-radius: 14px;
  color: var(--truth-muted);
  background: var(--truth-light);
  font-size: 0.875rem;
  line-height: 1.45;
}

.truth-system-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--truth-blue-dark);
  font-size: 1rem;
}

.truth-text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 10px;
  color: var(--truth-blue-dark);
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.truth-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  scroll-margin-top: 96px;
}

.truth-tech-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  scroll-margin-top: 92px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.065);
}

.truth-tech-card--selected {
  border: 2px solid rgba(29, 143, 189, 0.68);
  background: #f7fcfe;
  box-shadow: 0 20px 44px rgba(22, 122, 156, 0.15);
}

.truth-tech-card--selected::after {
  content: none;
}

.truth-tech-card--alternative {
  border-color: rgba(7, 26, 51, 0.14);
  background: #fff;
}

.truth-tech-status {
  position: static;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  margin-bottom: 17px;
  padding: 6px 12px 6px 7px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
}

.truth-tech-status i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
}

.truth-tech-status--selected {
  border: 1px solid rgba(29, 143, 189, 0.18);
  color: #fff;
  background: var(--truth-blue-dark);
}

.truth-tech-status--selected i {
  color: var(--truth-blue-dark);
  background: #fff;
}

.truth-tech-status--alternative {
  border: 1px solid rgba(178, 78, 78, 0.12);
  color: #934b4b;
  background: #fff3f1;
}

.truth-tech-status--alternative i {
  color: #fff;
  background: #c96b66;
}

.truth-tech-card__media {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #e8f3f6;
}

.truth-tech-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.truth-tech-card--selected .truth-tech-card__media img {
  object-position: center 54%;
}

.truth-tech-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.truth-tech-card h3 {
  min-height: 2.65em;
  margin-bottom: 13px;
  font-size: 1.32rem;
  line-height: 1.3;
}

.truth-tech-card--selected h3 {
  color: var(--truth-blue-dark);
}

.truth-tech-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.truth-tech-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.truth-tech-card li {
  position: relative;
  padding-left: 19px;
  color: var(--truth-ink);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.truth-tech-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c96b66;
  content: "";
}

.truth-tech-card--selected li::before {
  background: var(--truth-blue);
  box-shadow: 0 0 0 3px rgba(29, 143, 189, 0.12);
}

.truth-tech-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
  padding: 18px 4px 0;
  border-top: 1px solid var(--truth-line);
}

.truth-tech-note i {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--truth-blue);
}

.truth-tech-note p {
  margin: 0;
  font-size: 1rem !important;
  line-height: 1.6;
}

.truth-tech-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--truth-ink);
  font-size: 1.08rem;
}

.truth-heading--inverse h2,
.truth-heading--inverse p {
  color: #fff;
}

.truth-heading--inverse {
  align-items: start;
}

.truth-heading--inverse p {
  color: rgba(255, 255, 255, 0.72);
}

.truth-heading--inverse > div {
  display: grid;
  justify-items: start;
}

.truth-copy-button {
  margin-top: 16px;
  cursor: pointer;
}

.truth-copy-status {
  min-height: 20px;
  margin: 8px 0 0 !important;
  color: #9ee2c8 !important;
  font-size: 0.875rem !important;
  font-weight: 800;
}

.truth-questions-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.truth-questions-card__media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #dfecef;
}

.truth-questions-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.truth-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  align-content: center;
  margin: 0;
  padding: 30px 34px;
  counter-reset: truth-question;
  list-style: none;
}

.truth-question-list li {
  position: relative;
  min-height: 106px;
  padding: 17px 0 17px 46px;
  border-bottom: 1px solid var(--truth-line);
  color: var(--truth-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.48;
  counter-increment: truth-question;
}

.truth-question-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--truth-blue);
  font-size: 0.8125rem;
  font-weight: 900;
  content: counter(truth-question, decimal-leading-zero);
}

.truth-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.truth-resource-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 25px;
  color: #fff;
  background: var(--truth-navy);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.09);
  text-decoration: none;
}

.truth-resource-card::after {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 22, 38, 0.88));
  content: "";
}

.truth-resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.truth-resource-card > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: end;
  padding: 28px;
}

.truth-resource-card strong,
.truth-resource-card small {
  display: block;
  color: #fff;
}

.truth-resource-card strong {
  grid-column: 1;
  font-size: 1.35rem;
  line-height: 1.25;
}

.truth-resource-card small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.truth-resource-card > span > i,
.truth-resource-card--coming em {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
}

.truth-resource-card > span > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.truth-resource-card--coming {
  opacity: 0.9;
  pointer-events: none;
}

.truth-resource-card--coming em {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--truth-ink);
  background: #fff;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 900;
}

.truth-sources {
  padding: 34px 0;
  border-top: 1px solid rgba(7, 26, 51, 0.08);
  background: #e7f4f8;
}

.truth-sources .truth-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: 42px;
  align-items: start;
}

.truth-sources h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.truth-sources p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.truth-source-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 20px;
}

.truth-source-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 0;
  border-bottom: 1px solid var(--truth-line);
  color: var(--truth-blue-dark);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

@media (hover: hover) {
  .truth-button-secondary,
  .truth-resource-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .truth-button-secondary:hover,
  .truth-resource-card:not(.truth-resource-card--coming):hover {
    transform: translateY(-2px);
  }

  .truth-resource-card:not(.truth-resource-card--coming):hover {
    border-color: rgba(29, 143, 189, 0.32);
    box-shadow: 0 20px 42px rgba(7, 26, 51, 0.13);
  }

  .truth-resource-card:not(.truth-resource-card--coming):hover img {
    transform: scale(1.025);
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .header__container {
    justify-content: flex-start;
  }

  .burger-menu {
    position: relative;
    z-index: 10001;
    display: flex;
    order: 1;
    margin-right: 15px;
  }

  .logo {
    order: 2;
    margin-right: auto;
    margin-left: 0;
  }

  .header__actions {
    order: 3;
  }

  .desktop-only-nav {
    display: none !important;
  }

  .mobile-nav-container {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 10000;
    display: block;
    width: 100%;
    max-height: 0;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  .mobile-nav-container.active {
    max-height: 80vh;
    padding-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-list,
  .mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu-list > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .mobile-link,
  .mobile-dropdown-header {
    padding: 16px 20px;
    color: var(--truth-ink);
    font-size: 1.05rem;
    font-weight: 600;
  }

  .mobile-link {
    display: block;
    text-decoration: none;
  }

  .mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: var(--truth-light);
    transition: max-height 0.3s ease;
  }

  .mobile-dropdown.active .mobile-submenu {
    max-height: 520px;
  }

  .mobile-submenu li a,
  .mobile-submenu li .disabled-link {
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--truth-muted);
    font-size: 0.95rem;
  }
}

@media (max-width: 1080px) {
  .truth-hero__main {
    grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
    grid-template-rows: 560px;
  }

  .truth-hero__copy {
    padding: 38px 36px 34px;
  }

  .truth-facts {
    width: calc(100% + 58px);
    margin-right: -58px;
  }

  .truth-heading {
    gap: 32px;
  }

  .truth-claims-intro {
    gap: 28px;
  }

  .truth-salon-proof,
  .truth-service-list {
    grid-template-columns: 1fr;
  }

  .truth-service-list li {
    min-height: 0;
  }

  .truth-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truth-document-grid article {
    min-height: 220px;
  }

  .truth-source-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truth-tech-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }

  .truth-tech-card,
  .truth-tech-card--selected {
    display: grid;
    grid-column: auto;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  }

  .truth-tech-card__media {
    height: 100%;
    min-height: 330px;
    aspect-ratio: auto;
  }
}

@media (max-width: 900px) {
  .truth-page {
    padding-top: 80px;
  }

  .truth-hero__main,
  .truth-claims-intro,
  .truth-home-card,
  .truth-device-overview,
  .truth-service-panel,
  .truth-diode-feature,
  .truth-questions-card,
  .truth-sources .truth-shell {
    grid-template-columns: 1fr;
  }

  .truth-hero__main {
    grid-template-areas:
      "copy"
      "media";
    grid-template-rows: auto;
  }

  .truth-hero__media,
  .truth-hero__media img {
    height: 420px;
    min-height: 420px;
  }

  .truth-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .truth-claim-grid {
    grid-template-columns: 1fr;
  }

  .truth-result-grid,
  .truth-facts,
  .truth-tech-grid {
    grid-template-columns: 1fr;
  }

  .truth-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 24px 0 0;
  }

  .truth-result-grid article {
    min-height: 0;
  }

  .truth-claims-intro figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .truth-ad-copy {
    padding: 0 4px 6px;
  }

  .truth-home-card__media {
    min-height: 650px;
  }

  .truth-home-card__media img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% top;
    transform: scale(1.06);
    transform-origin: 40% top;
  }

  .truth-salon-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truth-device-overview figure,
  .truth-service-panel figure,
  .truth-diode-feature figure {
    height: 480px;
  }

  .truth-diode-feature figure {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .truth-diode-feature figure img {
    object-position: center;
  }

  .truth-system-points {
    max-width: 620px;
  }

  .truth-tech-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  }

  .truth-tech-card--selected {
    grid-column: auto;
  }

  .truth-tech-card__media {
    aspect-ratio: auto;
    min-height: 330px;
  }

  .truth-questions-card__media {
    height: 520px;
    min-height: 0;
  }

  .truth-sources .truth-shell {
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .header,
  .header__actions .btn {
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .burger-menu {
    margin-right: 8px;
  }

  .logo {
    font-size: 1.25rem !important;
  }

  .header__actions {
    gap: 7px;
    flex: 0 0 auto;
  }

  .header__actions .btn {
    min-height: 44px;
    padding: 11px 15px;
    font-size: 0.9375rem;
  }

  .header__actions .btn > span {
    position: relative;
    z-index: 1;
    display: block;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .lang-toggle-btn {
    width: 44px;
    height: 44px;
  }

  .truth-shell {
    width: calc(100% - 28px);
  }

  .truth-tech-grid {
    grid-auto-rows: auto;
  }

  .truth-hero {
    padding: 24px 0 22px;
  }

  .truth-hero__main {
    border-radius: 26px;
  }

  .truth-hero__copy {
    padding: 30px 24px 26px;
  }

  .truth-hero h1 {
    font-size: clamp(33px, 8.8vw, 42px);
    line-height: 1.12;
  }

  .truth-hero__lead {
    font-size: 17px !important;
  }

  .truth-hero__actions {
    align-items: stretch;
  }

  .truth-hero__actions .btn,
  .truth-button-secondary {
    width: 100%;
  }

  .truth-hero__media,
  .truth-hero__media img {
    height: 360px;
    min-height: 360px;
  }

  .truth-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin: 20px 0 0;
    padding: 9px;
    border-radius: 19px;
    overflow: visible;
  }

  .truth-facts article {
    min-height: 0;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .truth-section {
    padding: 42px 0;
  }

  .truth-heading {
    margin-bottom: 25px;
  }

  .truth-heading h2 {
    font-size: 31px;
  }

  .truth-result-grid {
    gap: 10px;
  }

  .truth-result-grid article,
  .truth-document-grid article {
    min-height: 0;
    padding: 22px;
    border-radius: 19px;
  }

  .truth-result-grid i,
  .truth-document-grid > article > i {
    margin-bottom: 18px;
  }

  .truth-claims-intro,
  .truth-device-overview,
  .truth-service-panel,
  .truth-diode-feature {
    gap: 24px;
    padding: 16px;
    border-radius: 23px;
  }

  .truth-claims-intro figure {
    aspect-ratio: 4 / 3;
  }

  .truth-ad-claims {
    grid-template-columns: 1fr;
  }

  .truth-ad-copy h3,
  .truth-device-overview h3,
  .truth-service-panel h2,
  .truth-diode-feature h3 {
    font-size: 29px;
  }

  .truth-ad-claims span {
    min-height: 66px;
  }

  .truth-claim-context {
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 17px;
  }

  .truth-claim-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 12px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .truth-claim-card__logic {
    grid-template-columns: 1fr;
  }

  .truth-claim-card,
  .truth-claim-card--wide {
    grid-column: auto;
  }

  .truth-claim-card__promise {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 88px;
    padding: 18px;
  }

  .truth-claim-card__promise > i {
    width: 40px;
    height: 40px;
  }

  .truth-claim-card__promise h3 {
    font-size: 1.08rem;
  }

  .truth-claim-card {
    border-radius: 23px;
  }

  .truth-claim-card__logic {
    gap: 25px;
    padding: 26px 19px 28px 78px;
  }

  .truth-claim-card__logic::before {
    top: 47px;
    bottom: 47px;
    left: 35px;
  }

  .truth-claim-card__row,
  .truth-claim-card--wide .truth-claim-card__row {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .truth-claim-card__row dt i {
    top: -2px;
    left: -63px;
    width: 44px;
    height: 44px;
  }

  .truth-claim-card__row dt span {
    gap: 8px;
  }

  .truth-claim-card__row dt b {
    font-size: 1.55rem;
  }

  .truth-claim-card__row dd {
    font-size: 1rem;
  }

  .truth-home-card {
    border-radius: 25px;
  }

  .truth-home-card__media {
    min-height: 0;
    aspect-ratio: 16 / 25;
  }

  .truth-home-card__media img {
    position: absolute;
    top: 0;
    left: -3.4%;
    width: 136%;
    height: auto;
    object-fit: contain;
    object-position: top left;
    transform: none;
  }

  .truth-home-card__copy {
    padding: 32px 22px 34px;
  }

  .truth-home-card h2 {
    font-size: 31px;
  }

  .truth-home-card__note {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
    border-radius: 17px;
  }

  .truth-home-card__note-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .truth-home-card__note h3 {
    font-size: 1.05rem;
  }

  .truth-home-card__stop {
    padding: 12px;
  }

  .truth-salon-proof {
    grid-template-columns: 1fr;
  }

  .truth-document-grid,
  .truth-tech-card,
  .truth-question-list,
  .truth-resource-grid,
  .truth-source-links {
    grid-template-columns: 1fr;
  }

  .truth-device-overview figure,
  .truth-service-panel figure,
  .truth-diode-feature figure {
    height: 340px;
  }

  .truth-diode-feature figure {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .truth-document-grid {
    margin-bottom: 24px;
  }

  .truth-system-points {
    grid-template-columns: 1fr;
  }

  .truth-system-points span {
    min-height: 0;
  }

  .truth-tech-card {
    display: block;
  }

  .truth-tech-card .truth-tech-card__media {
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .truth-tech-card__body {
    padding: 22px;
  }

  .truth-tech-status {
    min-height: 34px;
    margin-bottom: 15px;
    padding: 6px 12px 6px 7px;
  }

  .truth-tech-card h3 {
    min-height: 0;
    font-size: 1.25rem;
  }

  .truth-tech-note {
    gap: 13px;
    align-items: flex-start;
    padding: 17px 0 0;
  }

  .truth-tech-note i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .truth-questions-card {
    border-radius: 25px;
  }

  .truth-questions-card__media {
    height: 430px;
  }

  .truth-question-list {
    padding: 18px 22px 26px;
  }

  .truth-question-list li {
    min-height: 0;
    padding: 16px 0 16px 45px;
  }

  .truth-resource-grid {
    gap: 14px;
  }

  .truth-resource-card {
    border-radius: 21px;
  }

  .truth-resource-card > span {
    padding: 21px;
  }

  .truth-resource-card strong {
    font-size: 1.15rem;
  }

  .truth-sources {
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .truth-resource-card,
  .truth-resource-card img,
  .truth-button-secondary {
    transition: none;
  }
}
