:root {
  --teal-950: #174c4b;
  --teal-900: #205d5b;
  --teal-800: #286d6a;
  --teal-700: #2f7d7a;
  --teal-600: #3f918d;
  --teal-100: #dcefee;
  --teal-50: #f2f9f8;
  --purple-900: #43236c;
  --purple-800: #583384;
  --purple-700: #6a3b98;
  --purple-200: #d9c8e8;
  --purple-100: #eee5f5;
  --purple-50: #f8f4fb;
  --yellow: #f2c318;
  --yellow-soft: #fff4bd;
  --cream: #fffaf0;
  --ink: #273435;
  --muted: #687576;
  --white: #ffffff;
  --line: #dce7e6;
  --shadow-sm: 0 12px 34px rgba(24, 78, 75, 0.09);
  --shadow-md: 0 24px 70px rgba(24, 78, 75, 0.16);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 5.7vw, 5.65rem);
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple-900);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(47, 125, 122, 0.12);
  box-shadow: 0 10px 28px rgba(24, 78, 75, 0.08);
}

.header-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 118px;
  max-height: 72px;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-menu a {
  padding: 11px 13px;
  color: #465354;
  font-size: 0.92rem;
  font-weight: 750;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--teal-800);
  background: var(--teal-50);
}

.main-menu .menu-cta {
  margin-left: 8px;
  padding-inline: 22px;
  color: var(--white);
  background: var(--purple-800);
  box-shadow: 0 9px 22px rgba(88, 51, 132, 0.22);
}

.main-menu .menu-cta:hover,
.main-menu .menu-cta.active {
  color: var(--white);
  background: var(--purple-900);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--teal-50);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 78px 0 118px;
  background:
    radial-gradient(circle at 15% 14%, rgba(242, 195, 24, 0.14), transparent 24%),
    linear-gradient(135deg, var(--cream) 0%, #ffffff 45%, var(--purple-50) 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 58%, 18% 74%, 42% 36%, 66% 66%, 84% 30%, 100% 50%, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decor-one {
  width: 330px;
  height: 330px;
  top: 9%;
  right: -90px;
  background: rgba(106, 59, 152, 0.10);
}

.decor-two {
  width: 150px;
  height: 150px;
  left: 7%;
  bottom: 7%;
  background: rgba(242, 195, 24, 0.13);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow-soft);
}

.hero-copy {
  max-width: 690px;
}

.hero h1 span {
  color: var(--purple-800);
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--purple-800);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: #526061;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  box-shadow: 0 14px 28px rgba(88, 51, 132, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(88, 51, 132, 0.34);
}

.button-outline {
  color: var(--teal-800);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(47, 125, 122, 0.30);
}

.button-outline:hover {
  background: var(--white);
}

.button-light {
  color: var(--teal-900);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 55, 53, 0.18);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-contact > div {
  min-width: 210px;
  padding: 14px 17px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 125, 122, 0.13);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.hero-contact span,
.contact-data span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-contact strong,
.hero-contact a {
  color: var(--teal-900);
  font-size: 1rem;
  font-weight: 850;
}

.hero-media {
  position: relative;
  padding: 24px 14px 68px 30px;
}

.image-shell {
  position: relative;
  aspect-ratio: 1.12;
  overflow: hidden;
  background: var(--purple-100);
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 48px 48px 108px 48px;
  box-shadow: var(--shadow-md);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(67, 35, 108, 0.90);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 330px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 19px 21px;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(32, 93, 91, 0.24);
}

.hero-note span {
  color: var(--yellow);
  font-size: 1.25rem;
}

.hero-note p {
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.intro-image {
  position: relative;
  padding: 36px;
  background: linear-gradient(145deg, var(--purple-50), var(--teal-50));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.intro-image::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -48px;
  bottom: -65px;
  background: rgba(242, 195, 24, 0.16);
  border-radius: 50%;
}

.intro-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 24px;
}

.image-accent {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 10px solid rgba(106, 59, 152, 0.15);
  border-radius: 50%;
}

.section-copy .lead,
.section-heading > p:last-child {
  color: #536061;
  font-size: 1.13rem;
}

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

.observation-card {
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--purple-800);
  background: var(--purple-100);
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 900;
}

.observation-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.coordination-section {
  position: relative;
  padding: 108px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(242, 195, 24, 0.13), transparent 25%),
    linear-gradient(135deg, var(--teal-950), var(--teal-700));
  overflow: hidden;
}

.coordination-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -190px;
  border: 42px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.coordination-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.coordination-title p:last-child {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.08rem;
}

.coordination-card {
  position: relative;
  padding: 40px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 70px rgba(10, 46, 44, 0.24);
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 24px;
  color: var(--purple-100);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.coordination-quote {
  position: relative;
  z-index: 2;
  color: var(--purple-800);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.doctor-section {
  background: var(--teal-50);
}

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

.reminder-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(47, 125, 122, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--teal-900);
  background: var(--yellow-soft);
  border-radius: 18px;
  font-size: 0.9rem;
  font-weight: 900;
}

.reminder-card p {
  color: var(--muted);
}

.professionals-section {
  background: var(--white);
}

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

.professional-card {
  position: relative;
  min-height: 100%;
  padding: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.professional-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
}

.nutrition-card {
  background: linear-gradient(145deg, #f0f9f3, #ffffff);
  border: 1px solid #d8eadd;
}

.nutrition-card::after {
  background: rgba(47, 125, 122, 0.08);
}

.emotional-card {
  background: linear-gradient(145deg, var(--purple-50), #ffffff);
  border: 1px solid var(--purple-200);
}

.emotional-card::after {
  background: rgba(106, 59, 152, 0.08);
}

.card-label {
  display: inline-flex;
  margin-bottom: 19px;
  padding: 7px 12px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(47, 125, 122, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.emotional-card .card-label {
  color: var(--purple-800);
  border-color: rgba(106, 59, 152, 0.18);
}

.professional-card p {
  position: relative;
  z-index: 2;
  color: #596667;
}

.family-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 195, 24, 0.12), transparent 22%),
    linear-gradient(135deg, var(--purple-900), var(--purple-700));
}

.family-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.family-copy > p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.family-list {
  display: grid;
  gap: 14px;
}

.family-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.family-list span {
  color: var(--yellow);
  font-size: 1.15rem;
}

.family-list p {
  margin: 0;
}

.identity-section {
  background: linear-gradient(135deg, #ffffff, var(--purple-50));
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(52px, 7vw, 90px);
}

.identity-media {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.identity-media img {
  width: 100%;
  border-radius: 24px;
}

.identity-copy p:not(.eyebrow) {
  max-width: 700px;
  color: #596667;
  font-size: 1.08rem;
}

.contact-section {
  padding: 0 0 105px;
  background: linear-gradient(to bottom, var(--purple-50), var(--white));
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 195, 24, 0.15), transparent 22%),
    linear-gradient(135deg, var(--teal-950), var(--teal-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-panel h2 {
  margin-bottom: 8px;
}

.contact-panel > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.contact-data {
  min-width: 310px;
  display: grid;
  gap: 14px;
}

.contact-data > div {
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.contact-data span {
  color: rgba(255, 255, 255, 0.66);
}

.contact-data strong,
.contact-data a:not(.button) {
  font-size: 1.05rem;
  font-weight: 850;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.80);
  background: #173f3e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 100px;
  max-height: 70px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand p,
.footer-contact,
.footer-message {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 3px;
}

.footer-contact strong {
  color: var(--white);
}

.footer-message {
  color: var(--yellow-soft);
  font-weight: 850;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--purple-800);
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(67, 35, 108, 0.30);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-call:hover {
  background: var(--purple-900);
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 88px;
  z-index: 850;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .menu-button {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 8px;
    padding: 22px 20px 28px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(24, 78, 75, 0.15);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .main-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-menu a {
    padding: 13px 16px;
    border-radius: 12px;
  }

  .main-menu .menu-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-grid,
  .intro-grid,
  .coordination-grid,
  .family-grid,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .coordination-title,
  .family-copy {
    max-width: 800px;
  }

  .hero-media {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .intro-image,
  .identity-media {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-data {
    min-width: 0;
  }

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

  .footer-message {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .coordination-section,
  .family-section {
    padding: 78px 0;
  }

  .brand img {
    width: 102px;
    max-height: 62px;
  }

  .hero {
    padding: 48px 0 92px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-actions,
  .hero-contact {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-contact > div {
    min-width: 0;
  }

  .hero-media {
    padding: 10px 6px 70px 22px;
  }

  .image-shell {
    aspect-ratio: 0.92;
    border-width: 7px;
    border-radius: 34px 34px 78px 34px;
  }

  .hero-note {
    max-width: calc(100% - 14px);
    padding: 16px 18px;
  }

  .intro-image {
    padding: 24px;
  }

  .observation-grid,
  .reminder-grid,
  .professionals-grid {
    grid-template-columns: 1fr;
  }

  .coordination-card,
  .professional-card,
  .reminder-card {
    padding: 28px;
  }

  .contact-panel {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-message {
    grid-column: auto;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }

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

  .back-to-top {
    right: 18px;
    bottom: 80px;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-kicker {
    font-size: 1.25rem;
  }

  .intro-image {
    padding: 16px;
  }

  .coordination-card,
  .professional-card,
  .reminder-card {
    padding: 24px;
  }
}

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

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