:root {
  --brown: #4b2f27;
  --brown-deep: #2e2320;
  --brown-soft: #75574e;
  --rose: #f6c8d8;
  --rose-deep: #b46a7e;
  --rose-faint: #f9e8ee;
  --cream: #fff8f1;
  --milk: #fffdf9;
  --sage: #b9c8b6;
  --white: #ffffff;
  --line: rgba(75, 47, 39, 0.13);
  --shadow: 0 28px 80px rgba(75, 47, 39, 0.14);
  --soft-shadow: 0 16px 44px rgba(75, 47, 39, 0.09);
  --radius-lg: 2.25rem;
  --radius-md: 1.5rem;
  --shell: 75rem;
  --sticky-height: 4.6rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  min-width: 20rem;
  padding-bottom: var(--sticky-height);
  overflow-x: hidden;
  background: var(--milk);
  color: var(--brown-deep);
  font-family: "Almarai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(20px) saturate(130%);
}

.nav-shell {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 7.2rem;
  height: 5.2rem;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.3rem, 3vw, 2.5rem);
}

.desktop-nav a {
  position: relative;
  color: var(--brown-deep);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--rose-deep);
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.3s ease;
}

.header-cta {
  min-height: 2.9rem;
  padding: 0.78rem 1.4rem;
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(75, 47, 39, 0.16);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--rose);
  color: var(--brown-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(180, 106, 126, 0.2);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.2rem 0 5.2rem;
  background: linear-gradient(125deg, #fffaf6 0%, #f9e9ee 45%, #fff5ef 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: radial-gradient(rgba(75, 47, 39, 0.06) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgba(180, 106, 126, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 11ch;
  color: var(--brown-deep);
  font-size: clamp(3rem, 6.8vw, 5.7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--rose-deep);
  font-weight: 600;
}

.hero-lede {
  max-width: 38rem;
  margin-top: 1.55rem;
  color: rgba(46, 35, 32, 0.7);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 400;
  line-height: 1.95;
}

.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin-top: 1.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(75, 47, 39, 0.1);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.credential-mark {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--brown);
  direction: ltr;
  font-size: 1.06rem;
  font-weight: 700;
}

.credential strong {
  display: block;
  font-size: 0.98rem;
}

.credential p {
  color: rgba(46, 35, 32, 0.63);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.65rem;
  padding: 1rem 1.65rem;
  font-size: 1rem;
}

.button-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(75, 47, 39, 0.2);
}

.button-primary svg {
  width: 1.35rem;
  fill: currentColor;
}

.button-secondary {
  border-color: rgba(75, 47, 39, 0.24);
  background: rgba(255, 255, 255, 0.55);
  color: var(--brown);
}

.button-secondary:hover {
  border-color: var(--brown);
  background: var(--white);
  transform: translateY(-3px);
}

.phone-ltr {
  display: inline-block;
  direction: ltr;
  font-variant-numeric: tabular-nums;
  unicode-bidi: isolate;
}

.microcopy {
  margin-top: 1rem;
  color: rgba(46, 35, 32, 0.58);
  font-size: 0.84rem;
}

.microcopy span {
  margin-left: 0.4rem;
  color: #58a06e;
  font-size: 0.62rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 29rem;
  margin-inline: auto;
}

.portrait-card {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 2.1rem -1.3rem -1.5rem 2.5rem;
  z-index: -1;
  border: 1px solid rgba(180, 106, 126, 0.2);
  border-radius: 2.7rem;
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 0.73;
  border-radius: 1.85rem;
  object-fit: cover;
  object-position: center 20%;
}

.hero-emblem {
  position: absolute;
  bottom: 1.3rem;
  left: -2.5rem;
  width: 7.4rem;
  height: 7.4rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(75, 47, 39, 0.15));
}

.portrait-orbit {
  position: absolute;
  inset: -2.4rem -3rem 3rem 4rem;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246, 200, 216, 0.7), rgba(185, 200, 182, 0.38));
  filter: blur(2px);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 9.5rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  color: var(--brown-soft);
  font-size: 0.72rem;
}

.floating-note strong {
  font-size: 0.92rem;
}

.note-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-faint);
  color: var(--rose-deep);
}

.note-top {
  top: 3rem;
  right: -3.6rem;
}

.note-bottom {
  left: -4rem;
  bottom: 6.5rem;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: -9rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(246, 200, 216, 0.42);
}

.hero-glow-two {
  bottom: -10rem;
  left: 22%;
  width: 24rem;
  height: 24rem;
  background: rgba(185, 200, 182, 0.24);
}

.botanical {
  position: absolute;
  z-index: -1;
  width: 31rem;
  opacity: 0.1;
  pointer-events: none;
}

.botanical-one {
  right: -12rem;
  bottom: -7rem;
  transform: rotate(18deg);
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5.6rem;
  overflow: hidden;
  border: 1px solid rgba(75, 47, 39, 0.1);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.trust-strip > div {
  position: relative;
  padding: 1.4rem 1.35rem;
  text-align: center;
}

.trust-strip > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: var(--line);
}

.trust-strip span,
.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip span {
  margin-bottom: 0.2rem;
  color: var(--rose-deep);
  direction: ltr;
  font-size: 0.72rem;
  font-weight: 700;
}

.trust-strip strong {
  font-size: 0.94rem;
}

.trust-strip small {
  color: rgba(46, 35, 32, 0.58);
  font-size: 0.76rem;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 7.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.62fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-heading .eyebrow {
  margin-bottom: 0.8rem;
}

h2 {
  color: var(--brown-deep);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.section-heading > p,
.why-intro > p:not(.eyebrow) {
  color: rgba(46, 35, 32, 0.67);
  font-size: 1.05rem;
  line-height: 1.95;
}

.treatments {
  background: var(--milk);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.treatment-card {
  position: relative;
  min-height: 18.5rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(75, 47, 39, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.treatment-card::before {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(246, 200, 216, 0.22);
  transition: transform 0.4s ease;
}

.treatment-card:hover {
  z-index: 2;
  border-color: rgba(180, 106, 126, 0.28);
  box-shadow: 0 24px 60px rgba(75, 47, 39, 0.11);
  transform: translateY(-7px);
}

.treatment-card:hover::before {
  transform: scale(1.18);
}

.card-number {
  position: absolute;
  top: 1.45rem;
  left: 1.55rem;
  color: rgba(75, 47, 39, 0.35);
  direction: ltr;
  font-size: 0.72rem;
  font-weight: 700;
}

.card-icon {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #fff2f6);
  color: var(--brown);
}

.card-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.18rem;
  line-height: 1.4;
}

.treatment-card p {
  color: rgba(46, 35, 32, 0.65);
  font-size: 0.94rem;
  line-height: 1.85;
}

.why {
  overflow: hidden;
  background: linear-gradient(145deg, #f9ebf0 0%, var(--cream) 55%, #f8f1e9 100%);
}

.botanical-two {
  left: -10rem;
  bottom: -6rem;
  opacity: 0.09;
  transform: scaleX(-1) rotate(-12deg);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.why-intro {
  position: sticky;
  top: 9rem;
  align-self: start;
}

.why-intro h2 {
  margin-bottom: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.6rem;
  border-bottom: 2px solid var(--rose-deep);
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
}

.reasons {
  list-style: none;
}

.reasons li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(75, 47, 39, 0.14);
}

.reasons li:first-child {
  border-top: 1px solid rgba(75, 47, 39, 0.14);
}

.reason-number {
  color: var(--rose-deep);
  direction: ltr;
  font-size: 0.8rem;
  font-weight: 700;
}

.reasons h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.reasons p {
  color: rgba(46, 35, 32, 0.65);
  font-size: 0.95rem;
}

.visit-section {
  background: var(--milk);
}

.visit-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.1fr);
  gap: 4rem;
  padding: clamp(2.2rem, 6vw, 5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 34px 80px rgba(75, 47, 39, 0.18);
}

.visit-card::before,
.visit-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.visit-card::before {
  top: -15rem;
  left: -9rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(246, 200, 216, 0.22);
}

.visit-card::after {
  right: -8rem;
  bottom: -11rem;
  width: 26rem;
  height: 26rem;
  background: rgba(246, 200, 216, 0.08);
}

.eyebrow.light {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--rose);
}

.visit-copy h2 {
  margin-bottom: 1.3rem;
  color: var(--white);
  font-size: clamp(2.5rem, 4.7vw, 4rem);
}

.visit-copy > p:not(.eyebrow) {
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.66);
}

.map-link {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-weight: 600;
  text-decoration: none;
}

.visit-details {
  display: grid;
  align-content: center;
}

.visit-details > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-details > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-details dt {
  color: var(--rose);
  font-size: 0.84rem;
}

.visit-details dd {
  font-size: 1rem;
  font-style: normal;
}

.visit-details a {
  font-weight: 700;
  text-decoration: none;
}

.closing {
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--milk), #f9e9ef);
  text-align: center;
}

.closing-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-inner > img {
  width: 6.8rem;
  height: 6.8rem;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.closing h2 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.closing-inner > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 1rem;
  color: rgba(46, 35, 32, 0.65);
  font-size: 1.05rem;
}

.centered {
  justify-content: center;
}

.site-footer {
  padding: 2.4rem 0 3rem;
  border-top: 1px solid var(--line);
  background: var(--milk);
}

.footer-grid {
  display: grid;
  grid-template-columns: 7rem 1fr minmax(18rem, 0.75fr);
  align-items: center;
  gap: 2rem;
}

.footer-grid > img {
  width: 6.2rem;
  height: 5rem;
  object-fit: contain;
}

.footer-grid p {
  color: rgba(46, 35, 32, 0.62);
  font-size: 0.86rem;
}

.footer-grid > div p:first-child {
  color: var(--brown-deep);
  font-weight: 700;
}

.disclaimer {
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
}

.sticky-actions {
  position: fixed;
  right: 50%;
  bottom: 0.8rem;
  z-index: 200;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  width: min(calc(100% - 2rem), 29rem);
  padding: 0.42rem;
  border: 1px solid rgba(75, 47, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 55px rgba(75, 47, 39, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(50%);
}

.sticky-actions a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.sticky-whatsapp {
  background: #1da851;
  color: var(--white);
}

.sticky-call {
  color: var(--brown);
}

.status-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #c8f6d7;
  box-shadow: 0 0 0 0.28rem rgba(200, 246, 215, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 62rem) {
  .hero-grid {
    grid-template-columns: 1fr 22rem;
    gap: 3rem;
  }

  h1 {
    font-size: clamp(3rem, 7vw, 4.4rem);
  }

  .floating-note {
    display: none;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 48rem) {
  :root {
    --sticky-height: 5rem;
  }

  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .nav-shell {
    min-height: 4.75rem;
  }

  .brand img {
    width: 5.7rem;
    height: 4rem;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 2.65rem;
    padding: 0.7rem 1.05rem;
    font-size: 0.84rem;
  }

  .hero {
    padding: 2.4rem 0 3.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .credential {
    margin-inline: auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .microcopy {
    text-align: center;
  }

  .hero-visual {
    width: min(89%, 24rem);
  }

  .hero-emblem {
    left: -1.2rem;
    width: 5.7rem;
    height: 5.7rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4.2rem;
    border-radius: 1.35rem;
  }

  .trust-strip > div:nth-child(2)::after {
    display: none;
  }

  .trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

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

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

  .why-intro {
    position: static;
  }

  .visit-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    border-radius: 1.75rem;
  }

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

  .footer-grid > img {
    width: 4.8rem;
    height: 4rem;
  }

  .disclaimer {
    grid-column: 1 / -1;
    padding: 1.2rem 0 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
}

@media (max-width: 30rem) {
  .credential {
    align-items: flex-start;
    text-align: right;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip > div {
    padding: 1.15rem 0.7rem;
  }

  .visit-details > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .reasons li {
    grid-template-columns: 2rem 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
