:root {
  --ink: #182f2d;
  --text: #303433;
  --muted: #737777;
  --accent: #f04424;
  --accent-dark: #d93418;
  --mist: #cbd1dd;
  --soft: #e3e3e3;
  --white: #ffffff;
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1.15rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  color: var(--white);
  font-weight: 800;
  background: var(--accent);
  border: 0;
  border-radius: 13px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.social-links a:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid #56a8ff;
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding: 7px 17px;
  border-radius: 22px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 26px 0;
}

.site-header.scrolled {
  position: fixed;
  padding: 12px 0;
  background: rgba(20, 20, 20, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1210px, calc(100% - 56px));
  margin-inline: auto;
}

.brand img {
  width: 205px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-self: end;
  overflow: hidden;
  padding: 0 6px;
  background: rgba(92, 92, 92, 0.62);
  border-radius: 22px;
}

.main-nav a {
  padding: 8px 20px;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
  border-radius: 20px;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  font-size: 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
}

.hero {
  min-height: 930px;
  color: var(--white);
  background-color: #171717;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.05) 100%), url("../assets/images/hero-doctor-cv.webp");
  background-position: center bottom;
  background-size: cover;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 930px;
  padding-top: 90px;
}

.hero-copy {
  width: min(430px, 44%);
}

.hero h1 {
  margin-bottom: 12px;
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero p {
  margin-bottom: 94px;
  font-size: 19px;
  line-height: 1.48;
}

.diagnosis-section,
.trust-section {
  background: var(--mist);
}

.diagnosis-section {
  padding: 100px 0 88px;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.diagnosis-grid > * {
  min-width: 0;
}

.diagnosis-copy {
  position: relative;
  padding-left: 22px;
}

.diagnosis-copy::before {
  position: absolute;
  top: 0;
  bottom: 8px;
  left: 0;
  width: 2px;
  content: "";
  background: #397d91;
}

.eyebrow {
  margin-bottom: 0;
  font-size: 27px;
}

.diagnosis-copy h2 {
  max-width: 410px;
  margin-bottom: 38px;
  color: #23595f;
  font-size: clamp(54px, 6vw, 76px);
  letter-spacing: -0.04em;
}

.diagnosis-copy > p:not(.eyebrow) {
  max-width: 455px;
  font-size: 17px;
}

.diagnosis-copy .button {
  margin-top: 24px;
}

.phone-showcase {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
}

.phone-showcase img {
  width: min(100%, 580px);
}

.faq-section a {
  color: #4f99d4;
}

.pricing-section {
  scroll-margin-top: 76px;
  padding: 88px 0 78px;
  background: var(--white);
}

.pricing-container {
  width: min(1180px, calc(100% - 48px));
}

.pricing-section h2 {
  margin-bottom: 50px;
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 58px);
  letter-spacing: -0.035em;
  text-align: center;
  text-wrap: balance;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 26px 24px 38px;
  background: #e9e9e9;
  border-radius: 8px;
}

.pricing-card-featured {
  color: var(--white);
  background: var(--accent);
}

.plan-name {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.plan-price {
  margin: -2px 0 8px;
  font-size: 40px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.plan-price span {
  font-size: 31px;
  vertical-align: 4px;
}

.plan-level {
  margin-bottom: 20px;
  color: #4a4969;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card-featured .plan-level {
  color: var(--white);
}

.plan-description {
  font-size: 15px;
  line-height: 1.48;
}

.plan-description ol {
  margin: -8px 0 20px;
  padding-left: 20px;
}

.plan-description li {
  margin-bottom: 3px;
}

.plan-description a {
  color: #52a7e8;
}

.pricing-card-featured .plan-description a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-button {
  align-self: center;
  margin-top: auto;
  padding: 8px 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: #858585;
  border-radius: 22px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.pricing-card-featured .pricing-button {
  color: var(--ink);
  background: var(--white);
}

.pricing-button:hover {
  background: #686868;
  transform: translateY(-2px);
}

.pricing-card-featured .pricing-button:hover {
  background: #f1f1f1;
}

.pricing-button:active {
  transform: translateY(0) scale(0.98);
}

.pricing-button:focus-visible {
  outline: 3px solid #56a8ff;
  outline-offset: 4px;
}

.pricing-note {
  margin: 50px 0 0;
  font-size: 16px;
}

.trust-section {
  padding: 50px 0 86px;
}

.warning-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 470px;
  margin-bottom: 100px;
  padding: 48px 58px;
  color: var(--white);
  background: var(--accent);
  border-radius: 8px;
}

.warning-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.warning-card h2 {
  max-width: 430px;
  margin: 0 0 32px;
  font-size: clamp(48px, 4.7vw, 60px);
  letter-spacing: -0.04em;
}

.warning-card p {
  font-size: 17px;
}

.warning-card img {
  position: absolute;
  right: 0;
  bottom: -58px;
  width: 390px;
  max-height: 500px;
  object-fit: contain;
}

.impact {
  text-align: center;
}

.impact > p {
  margin-bottom: 26px;
  font-size: 24px;
}

.awards {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto 34px;
  filter: grayscale(1);
  opacity: 0.74;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logo-marquee 84s linear infinite;
  will-change: transform;
}

.logo-slide {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 34px;
  min-width: 0;
  margin-right: 34px;
  padding: 10px 0;
}

.logo-slide img {
  flex: 0 0 128px;
  width: 128px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

.logo-slider.is-paused .logo-track {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.slider-toggle:focus-visible {
  outline: 3px solid #327da4;
  outline-offset: 4px;
}

.slider-toggle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #51466c;
  font-size: 17px;
  background: transparent;
  border: 1px solid rgba(81, 70, 108, 0.36);
  border-radius: 50%;
  cursor: pointer;
}

.faq-section {
  scroll-margin-top: 78px;
  padding: 82px 0 70px;
}

.faq-section h2,
.testimonials-section > .container > h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 58px);
  letter-spacing: -0.03em;
}

.faq-intro {
  max-width: 940px;
  margin-bottom: 54px;
  font-size: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
}

details {
  margin-bottom: 24px;
  will-change: height;
}

summary {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

summary i {
  color: #526278;
  font-size: 23px;
}

details p,
.details-content {
  margin: 6px 0 0 44px;
  font-size: 16px;
  transform-origin: top;
  transition: opacity 220ms ease, transform 300ms ease;
}

details.is-closing > :not(summary) {
  opacity: 0;
  transform: translateY(-7px);
}

.details-content ol {
  margin-top: 8px;
  padding-left: 20px;
}

.testimonials-section {
  padding: 58px 0 90px;
}

.testimonials-section > .container {
  width: min(1280px, calc(100% - 48px));
}

.testimonials-section > .container > h2 {
  margin-bottom: 45px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.15fr;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  position: relative;
  min-height: 235px;
  padding: 25px;
  border: 2px solid #d4d4d4;
  border-radius: 10px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.4;
}

.testimonial-photo {
  display: block;
  padding-right: 43%;
  overflow: visible;
}

.testimonial-photo img {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 48%;
  height: calc(100% + 16px);
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.testimonial-lineth img {
  width: 50%;
}

.testimonial-rafael img {
  width: 55%;
}

.testimonial-accent {
  color: var(--white);
  background: #ef8168;
  border-color: #ef8168;
}

.success-card {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  align-items: end;
  gap: 34px;
  min-height: 430px;
  padding: 34px 62px 0 24px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 9px;
}

.success-card img {
  align-self: end;
  max-height: 420px;
  object-fit: contain;
  filter: grayscale(1);
}

.success-card > div {
  align-self: center;
  padding-bottom: 38px;
}

.success-card h3 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 44px);
}

.success-card .button {
  margin-top: 10px;
}

.site-footer {
  padding: 72px 0 28px;
  color: #666;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 60px;
}

.footer-grid h3 {
  margin: 10px 0 25px;
  color: #333;
  font-size: 20px;
}

.footer-grid > div > a {
  display: block;
  margin-bottom: 21px;
  overflow-wrap: anywhere;
}

.footer-grid > div > a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

.footer-brand img {
  width: 92px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 210px;
  font-size: 14px;
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #666;
  font-size: 20px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 30px;
  font-size: 13px;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  margin: 0;
  font-weight: 600;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.footer-consent-link {
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-consent-link:hover,
.footer-consent-link:focus-visible {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(760px, calc(100% - 48px));
  padding: 22px;
  color: #fff;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.consent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.consent-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-button {
  min-height: 42px;
  padding: 10px 17px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  cursor: pointer;
}

.consent-button:hover,
.consent-button:focus-visible {
  border-color: #fff;
}

.consent-accept {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.ad-consent-note {
  display: grid;
  min-height: 90px;
  margin: 0;
  padding: 18px;
  place-items: center;
  color: #666;
  font-size: 13px;
  text-align: center;
  background: #f3f3f3;
  border: 1px dashed #ccc;
  border-radius: 8px;
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #080c0b;
  border: 0;
  cursor: pointer;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-facade-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.54));
}

.video-play-icon {
  display: grid;
  width: 68px;
  height: 68px;
  color: #fff;
  font-size: 31px;
  background: var(--accent);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease;
}

.video-facade:hover .video-play-icon,
.video-facade:focus-visible .video-play-icon {
  transform: scale(1.08);
}

.video-consent-message {
  max-width: 360px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 7px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
  }

  .brand img {
    width: 180px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    padding: 16px;
    background: rgba(24, 24, 24, 0.98);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero {
    background-position: 58% bottom;
  }

  .hero-copy {
    width: 46%;
  }

  .hero p {
    margin-bottom: 55px;
    font-size: 17px;
  }

  .diagnosis-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .diagnosis-copy h2 {
    max-width: 580px;
  }

  .phone-showcase {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .warning-card {
    grid-template-columns: 1fr;
    padding-right: 315px;
  }

  .warning-card img {
    width: 350px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header {
    padding: 18px 0;
  }

  .header-inner {
    grid-template-columns: 150px 1fr;
    width: calc(100% - 32px);
  }

  .brand img {
    width: 150px;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.08) 72%), url("../assets/images/hero-doctor-cv.webp");
    background-position: 64% bottom;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 120px 0 52px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 470px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero p {
    max-width: 520px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .diagnosis-section {
    padding: 70px 0;
  }

  .pricing-section {
    padding: 68px 0 62px;
  }

  .pricing-container {
    width: min(100% - 32px, 1180px);
  }

  .pricing-section h2 {
    margin-bottom: 34px;
    font-size: clamp(40px, 11vw, 50px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-button {
    margin-top: 18px;
  }

  .pricing-note {
    margin-top: 36px;
  }

  .diagnosis-grid {
    gap: 45px;
  }

  .diagnosis-copy h2 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .phone-showcase {
    max-width: 100%;
  }

  .trust-section {
    padding-top: 70px;
  }

  .warning-card {
    display: block;
    min-height: 0;
    margin-bottom: 70px;
    padding: 38px 28px 310px;
  }

  .warning-card h2 {
    margin-top: 0;
    font-size: clamp(43px, 13vw, 56px);
  }

  .warning-card img {
    right: 50%;
    bottom: -22px;
    width: 315px;
    transform: translateX(50%);
  }

  .impact > p {
    font-size: 19px;
  }

  .logo-slide {
    gap: 24px;
    margin-right: 24px;
    min-height: 0;
  }

  .logo-track {
    animation-duration: 68s;
  }

  .logo-slide img {
    flex-basis: 96px;
    width: 96px;
    height: 44px;
  }

  .faq-section {
    padding-top: 64px;
  }

  .faq-section h2,
  .testimonials-section > .container > h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .testimonials-section {
    padding-top: 38px;
  }

  .testimonial-photo {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    padding-right: 0;
    overflow: hidden;
  }

  .testimonial-photo img,
  .testimonial-lineth img,
  .testimonial-rafael img {
    position: static;
    align-self: end;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: bottom;
  }

  .success-card {
    grid-template-columns: 1fr;
    padding: 34px 28px 0;
  }

  .success-card > div {
    grid-row: 1;
    padding-bottom: 0;
  }

  .success-card img {
    max-height: 340px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .consent-banner {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 32px);
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-photo {
    grid-template-columns: 1fr;
    padding-right: 25px;
  }

  .testimonial-photo img {
    justify-self: end;
    width: 55%;
    height: auto;
    margin-top: -35px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .logo-slider {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-track {
    animation: none;
    transform: none;
  }
}
