:root {
  --ink: #142527;
  --muted: #617174;
  --paper: #ffffff;
  --soft: #f2f6f5;
  --line: #d8e2e0;
  --primary: #103f42;
  --primary-deep: #0a3033;
  --accent: #b87c4c;
  --accent-soft: #f1e3d6;
  --shadow: 0 22px 60px rgba(16, 63, 66, 0.11);
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, blockquote, dl, dd { margin-top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 226, 224, 0.74);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled { background: rgba(255, 255, 255, 0.97); box-shadow: 0 10px 32px rgba(20, 37, 39, 0.07); }
.header-inner { width: min(calc(100% - 48px), var(--container)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: #fff;
  background: var(--primary);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-copy, .footer-brand > span:last-child { display: grid; line-height: 1.15; }
.brand-copy strong, .footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.04rem; font-weight: 600; }
.brand-copy small, .footer-brand small { margin-top: 3px; color: var(--muted); font-size: 0.73rem; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { position: relative; color: #35484b; font-size: 0.9rem; font-weight: 650; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a:focus-visible, .text-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.site-nav .nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; color: #fff; background: var(--primary); border-radius: 4px; transition: background 180ms ease; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { background: var(--primary-deep); outline: none; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 4px; background: #fff; cursor: pointer; }
.nav-toggle-lines { display: grid; gap: 6px; width: 18px; }
.nav-toggle-lines i { display: block; width: 18px; height: 1.5px; background: var(--primary); transition: transform 180ms ease; }
.nav-toggle[aria-expanded="true"] i:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.nav-backdrop { display: none; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, visibility 140ms ease, background 180ms ease, border-color 180ms ease;
}

.whatsapp-float svg { width: 29px; height: 29px; display: block; fill: currentColor; shape-rendering: geometricPrecision; }
.whatsapp-float::before {
  content: "WhatsApp";
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  padding: 7px 10px;
  color: #fff;
  background: var(--primary-deep);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37, 211, 102, 0.62);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.whatsapp-float.is-visible::after { animation: whatsapp-ring 820ms ease-out 120ms 1 both; }
.whatsapp-float:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; box-shadow: none; }
.whatsapp-float:focus-visible::before { opacity: 1; transform: translate(0, -50%); }

@media (hover: hover) {
  .whatsapp-float:hover { background: #1fba59; border-color: #e8fff0; box-shadow: none; }
  .whatsapp-float:hover::before { opacity: 1; transform: translate(0, -50%); }
}

@keyframes whatsapp-ring {
  0% { opacity: 0.66; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.42); }
}

.hero { position: relative; min-height: min(820px, 100svh); display: flex; align-items: center; overflow: hidden; background: #e8efed; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(242, 246, 245, 0.99) 0%, rgba(242, 246, 245, 0.93) 39%, rgba(242, 246, 245, 0.44) 62%, rgba(242, 246, 245, 0.05) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 132px; padding-bottom: 72px; }
.eyebrow { margin-bottom: 14px; color: var(--accent); font-size: 0.77rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
h1, h2 { color: #102224; font-family: Georgia, "Times New Roman", serif; font-weight: 500; text-wrap: balance; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: 4.75rem; line-height: 1.02; }
h2 { margin-bottom: 22px; font-size: 3.2rem; line-height: 1.08; }
h3 { margin-bottom: 10px; color: #122527; font-size: 1.08rem; line-height: 1.3; }
.hero-lead { max-width: 610px; margin-bottom: 30px; color: #385053; font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-bottom: 48px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button-primary { color: #fff; background: var(--primary); box-shadow: 0 16px 34px rgba(16, 63, 66, 0.2); }
.button-primary:hover, .button-primary:focus-visible { background: var(--primary-deep); box-shadow: 0 20px 40px rgba(16, 63, 66, 0.24); }
.text-link { padding-bottom: 4px; color: var(--primary); border-bottom: 1px solid rgba(16, 63, 66, 0.4); font-weight: 750; }
.text-link span { margin-left: 8px; }
.hero-credentials { display: flex; flex-wrap: wrap; align-items: center; gap: 0; color: #43575a; font-size: 0.82rem; }
.hero-credentials > * { padding: 0 20px; border-left: 1px solid rgba(16, 63, 66, 0.22); }
.hero-credentials > *:first-child { padding-left: 0; border-left: 0; }
.hero-credentials strong { color: var(--primary); }

.trust-strip { position: relative; z-index: 2; background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; min-height: 118px; padding: 28px 30px; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid span, .card-index { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 0.9rem; font-weight: 700; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.trust-grid strong { color: var(--ink); }

.section { padding: 108px 0; }
.doctor-layout { display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr); gap: 90px; align-items: center; }
.doctor-signature { position: relative; width: 100%; aspect-ratio: 3 / 4; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; margin: 0; padding: 38px; overflow: hidden; color: #fff; background: var(--primary); box-shadow: var(--shadow); }
.doctor-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.doctor-signature::before { content: ""; position: absolute; inset: 36% 0 0; z-index: 1; background: linear-gradient(180deg, rgba(10, 48, 51, 0) 0%, rgba(10, 48, 51, 0.5) 45%, rgba(10, 48, 51, 0.94) 100%); }
.doctor-signature::after { content: ""; position: absolute; inset: 12px; z-index: 1; border: 1px solid rgba(255, 255, 255, 0.24); pointer-events: none; }
.signature-copy { position: relative; z-index: 1; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.24); }
.signature-copy p { margin-bottom: 5px; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; line-height: 1.17; }
.signature-copy span { color: rgba(255, 255, 255, 0.68); font-size: 0.86rem; }
.doctor-signature dl { position: relative; z-index: 1; display: flex; gap: 30px; margin: 24px 0 0; }
.doctor-signature dl div { display: flex; gap: 8px; }
.doctor-signature dt { color: rgba(255, 255, 255, 0.58); font-size: 0.77rem; }
.doctor-signature dd { margin: 0; color: #fff; font-size: 0.82rem; font-weight: 750; }
.section-copy { max-width: 690px; }
.section-copy > p:not(.eyebrow), .section-heading > p, .journey-heading > p, .faq-heading > p { color: var(--muted); }
.section-copy .section-intro { color: #30474a; font-size: 1.13rem; }
.section-copy blockquote { margin: 32px 0 0; padding: 20px 0 20px 24px; color: var(--primary); border-left: 2px solid var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; line-height: 1.5; }

.care-section { background: var(--soft); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 70px; align-items: end; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin-bottom: 7px; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.care-card { min-height: 250px; padding: 30px; background: rgba(255, 255, 255, 0.86); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
@media (hover: hover) {
  .care-card:hover { position: relative; z-index: 1; transform: translateY(-3px); background: #fff; box-shadow: 0 18px 44px rgba(16, 63, 66, 0.09); }
}
.card-index { display: block; margin-bottom: 52px; }
.care-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; font-weight: 600; }
.care-card p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }
.care-disclaimer { margin: 22px 0 0; color: var(--muted); font-size: 0.82rem; }

.journey-section { color: #fff; background: var(--primary); }
.journey-layout { display: grid; grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr); gap: 90px; }
.journey-heading { max-width: 430px; }
.journey-heading .eyebrow { color: #e4ae80; }
.journey-heading h2 { color: #fff; }
.journey-heading > p { color: rgba(255, 255, 255, 0.66); }
.journey-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.journey-list li { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.journey-list > li > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--primary); background: #fff; border-radius: 50%; font-size: 0.85rem; font-weight: 800; }
.journey-list h3 { margin-bottom: 5px; color: #fff; }
.journey-list p { margin-bottom: 0; color: rgba(255, 255, 255, 0.67); }

.faq-layout { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); gap: 85px; align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 32px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; color: var(--ink); font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 32px; color: var(--primary); border: 1px solid var(--line); border-radius: 50%; font-size: 1.1rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; margin: -2px 48px 24px 0; color: var(--muted); }

.contact-section { padding: 74px 0; color: #fff; background: #b57949; }
.contact-layout { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.contact-section .eyebrow { color: #fff; opacity: 0.74; }
.contact-section h2 { margin-bottom: 10px; color: #fff; }
.contact-section p { max-width: 620px; margin-bottom: 0; color: rgba(255, 255, 255, 0.82); }
.contact-action { min-width: 260px; }
.button-light { width: 100%; color: var(--primary); background: #fff; }
.contact-action p { margin-top: 10px; text-align: center; font-size: 0.78rem; }

.site-footer { padding: 54px 0 26px; color: rgba(255, 255, 255, 0.68); background: #0c292c; }
.footer-main { display: grid; grid-template-columns: 1fr auto auto; gap: 56px; align-items: center; padding-bottom: 40px; }
.footer-brand .brand-mark { color: var(--primary); background: #fff; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: rgba(255, 255, 255, 0.58); }
.footer-credentials { display: flex; gap: 20px; color: #fff; font-size: 0.82rem; }
.footer-main nav { display: flex; gap: 22px; font-size: 0.82rem; }
.footer-main nav a:hover, .footer-main nav a:focus-visible { color: #fff; }
.footer-legal { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.13); }
.footer-legal p { margin: 0; font-size: 0.76rem; }

@media (max-width: 980px) {
  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.7rem; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-backdrop { position: fixed; inset: var(--header-height) 0 0; z-index: 28; border: 0; background: rgba(10, 48, 51, 0.28); opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
  body.menu-open .nav-backdrop { display: block; opacity: 1; pointer-events: auto; }
  .site-nav { position: fixed; top: var(--header-height); right: 24px; left: 24px; z-index: 31; display: none; gap: 0; max-height: calc(100svh - var(--header-height) - 20px); padding: 14px; overflow-y: auto; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 14px; }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: 8px; justify-content: center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(242, 246, 245, 0.98) 0%, rgba(242, 246, 245, 0.88) 58%, rgba(242, 246, 245, 0.35) 100%); }
  .doctor-layout, .journey-layout, .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .doctor-signature { width: min(100%, 520px); min-height: 0; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-heading { position: static; max-width: 620px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main nav { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-height: 68px; }
  .container, .header-inner { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { gap: 12px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-copy { min-width: 0; }
  .brand-copy strong { font-size: 0.98rem; white-space: nowrap; }
  .brand-copy small { font-size: 0.69rem; }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .nav-toggle { flex: 0 0 44px; }
  .site-nav { right: 0; left: 0; max-height: calc(100svh - var(--header-height)); padding: 10px 18px 18px; border-right: 0; border-left: 0; }
  .site-nav a { min-height: 52px; padding-inline: 2px; }
  .site-nav .nav-cta { margin-top: 6px; padding-inline: 16px; }
  .hero { min-height: min(720px, calc(100svh - 24px)); align-items: flex-end; }
  .hero-image { object-position: 63% center; }
  .hero-scrim { background: linear-gradient(180deg, rgba(242, 246, 245, 0.56) 0%, rgba(242, 246, 245, 0.84) 29%, rgba(242, 246, 245, 0.985) 67%); }
  .hero-content { padding-top: calc(var(--header-height) + 48px); padding-bottom: 30px; }
  h1 { margin-bottom: 18px; font-size: 2.35rem; line-height: 1.04; }
  h2 { margin-bottom: 18px; font-size: 2rem; line-height: 1.1; }
  .hero-lead { margin-bottom: 22px; font-size: 0.98rem; line-height: 1.55; }
  .hero-actions { display: grid; gap: 8px; margin-bottom: 27px; }
  .button { width: 100%; min-height: 54px; }
  .text-link { width: fit-content; min-height: 44px; display: inline-flex; align-items: center; }
  .hero-credentials { display: grid; grid-template-columns: repeat(2, auto); gap: 6px 16px; font-size: 0.78rem; }
  .hero-credentials > * { padding: 0; border: 0; }
  .hero-credentials span { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { grid-template-columns: 30px 1fr; gap: 12px; min-height: auto; padding: 18px 2px; border-left: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-right: 0; border-bottom: 0; }
  .section { padding: 64px 0; }
  .doctor-layout, .journey-layout, .faq-layout { gap: 34px; }
  .doctor-signature { width: 100%; min-height: 0; padding: 24px; }
  .signature-copy { padding-top: 20px; }
  .signature-copy p { font-size: 1.5rem; }
  .doctor-signature dl { margin-top: 18px; }
  .section-copy .section-intro { font-size: 1.04rem; }
  .section-copy blockquote { margin-top: 25px; padding: 16px 0 16px 18px; font-size: 1.06rem; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .section-heading > p { margin-bottom: 0; }
  .care-grid { grid-template-columns: 1fr; }
  .care-grid { border-left: 0; }
  .care-card { min-height: auto; display: grid; grid-template-columns: 32px 1fr; column-gap: 14px; padding: 21px 2px; background: transparent; border-right: 0; }
  .card-index { grid-row: 1 / span 2; margin: 2px 0 0; }
  .care-card h3, .care-card p { grid-column: 2; }
  .care-card h3 { margin-bottom: 6px; font-size: 1.16rem; }
  .care-card p { font-size: 0.9rem; }
  .care-disclaimer { margin-top: 18px; }
  .journey-heading > p { margin-bottom: 0; }
  .journey-list li { grid-template-columns: 40px 1fr; gap: 14px; padding: 23px 0; }
  .journey-list > li > span { width: 36px; height: 36px; }
  .journey-list p { font-size: 0.92rem; }
  .faq-heading > p { margin-bottom: 0; }
  .faq-list summary { min-height: 72px; gap: 14px; font-size: 0.95rem; line-height: 1.4; }
  .faq-list summary::after { width: 36px; height: 36px; flex-basis: 36px; }
  .faq-list details p { margin: 0 0 22px; font-size: 0.92rem; }
  .contact-section { padding: 58px 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-action { min-width: 0; }
  .contact-action p { margin-top: 12px; }
  .site-footer { padding: 46px 0 max(28px, env(safe-area-inset-bottom)); }
  .footer-main, .footer-legal { display: grid; grid-template-columns: 1fr; gap: 24px; }
  .footer-main { padding-bottom: 30px; }
  .footer-main nav { display: grid; grid-template-columns: repeat(2, 1fr); grid-column: auto; gap: 10px 24px; }
  .footer-main nav a { min-height: 42px; display: flex; align-items: center; }
  .footer-credentials { flex-wrap: wrap; }
  .footer-legal { padding-top: 20px; }
  .whatsapp-float { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 56px; height: 56px; }
  .whatsapp-float::before { display: none; }
}

@media (max-width: 380px) {
  .container, .header-inner { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.85rem; }
  .hero-content { padding-top: calc(var(--header-height) + 38px); }
  .button { gap: 14px; padding-inline: 18px; }
  .whatsapp-float { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); }
}

@media (max-width: 340px) {
  .brand-copy small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
