:root {
  --pink: #f56c9b;
  --pink-strong: #df2c72;
  --tiffany: #3fc7c9;
  --tiffany-dark: #189da1;
  --ink: #143247;
  --muted: #6d7b86;
  --soft: #f6f8fb;
  --pastel-pink: #fff0f6;
  --pastel-blue: #ecfbfb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 50, 71, 0.12);
  --soft-shadow: 0 14px 34px rgba(20, 50, 71, 0.09);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(245, 108, 155, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(63, 199, 201, 0.1), transparent 22rem);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(20, 50, 71, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--pink-strong);
  font-size: 1.02rem;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(245, 108, 155, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
  color: #425463;
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--tiffany));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #ff7b4a 52%, var(--tiffany));
  box-shadow: 0 15px 30px rgba(245, 108, 155, 0.26);
}

.btn-secondary {
  color: var(--tiffany-dark);
  background: var(--pastel-blue);
  box-shadow: inset 0 0 0 1px rgba(63, 199, 201, 0.22);
}

.btn-light {
  color: var(--pink-strong);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(20, 50, 71, 0.14);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(245, 108, 155, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: var(--soft);
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(26px, 4vw, 64px);
  max-width: 1320px;
  min-height: calc(100vh - 82px);
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 70px) 52px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 710px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 3.75vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 2px;
}

.hero-title span {
  display: block;
}

.hero-title .text-pink {
  display: inline;
}

.text-pink {
  color: var(--pink-strong);
}

.text-tiffany {
  color: var(--tiffany-dark);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-subtitle {
  max-width: 670px;
  color: #445663;
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.hero-support {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #46606d;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(20, 50, 71, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: min(60vw, 680px);
}

.hero-visual img {
  width: 100%;
  height: min(60vw, 680px);
  min-height: 420px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.care-card {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  width: min(320px, calc(100% - 32px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.care-card strong {
  display: block;
  color: var(--pink-strong);
  font-size: 1.44rem;
  line-height: 1.15;
}

.care-card p {
  margin: 14px 0 0;
  color: #526570;
  line-height: 1.55;
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(105px, 1fr));
  gap: 14px;
  max-width: var(--max);
  padding: 0 clamp(18px, 5vw, 40px) 56px;
  margin: -8px auto 0;
}

.service-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 112px;
  padding: 18px 12px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-pill span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
  font-size: 1.45rem;
}

.service-pill:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(20, 50, 71, 0.14);
}

.local-seo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  max-width: var(--max);
  margin: 0 auto 42px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.92), rgba(236, 251, 251, 0.92));
  box-shadow: var(--soft-shadow);
}

.local-seo h2 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.25vw, 2.25rem);
  font-weight: 850;
  line-height: 1.14;
  text-wrap: balance;
}

.local-seo p:not(.eyebrow) {
  margin-bottom: 0;
  color: #4d606b;
  line-height: 1.72;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #34515f;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(63, 199, 201, 0.2);
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  max-width: var(--max);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 40px);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.authority {
  max-width: none;
  background: linear-gradient(180deg, var(--soft), #fff);
}

.authority .section-heading,
.authority .card-grid {
  max-width: var(--max);
}

.authority .card-grid {
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.blog-card {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 22px;
  color: var(--pink-strong);
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
  font-size: 1.6rem;
  font-weight: 900;
}

.info-card p,
.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section,
.clinic-structure {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.photo-stack {
  position: relative;
  min-height: 580px;
}

.photo-main {
  width: 78%;
  height: 540px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  border: 10px solid var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.features-grid span {
  min-height: 54px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #405561;
  background: var(--soft);
  font-weight: 800;
}

.testimonials {
  max-width: none;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-blue));
}

.testimonial-shell {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 260px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 7vw, 70px);
  text-align: center;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.stars {
  color: #f7a51c;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.testimonial p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 850;
}

.testimonial strong {
  color: var(--muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--pink-strong);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

.structure-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.structure-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--pink-strong);
  font-weight: 900;
}

.emergency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  margin: 22px auto;
  padding: clamp(32px, 5vw, 52px);
  border-radius: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-strong), var(--pink) 45%, var(--tiffany));
  box-shadow: var(--shadow);
}

.emergency .eyebrow,
.emergency p {
  color: var(--white);
}

.emergency h2 {
  margin-bottom: 8px;
}

.appointment {
  padding-top: clamp(68px, 9vw, 120px);
}

.whatsapp-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.whatsapp-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.whatsapp-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--tiffany-dark);
  background: var(--pastel-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-section {
  padding-top: clamp(20px, 5vw, 64px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--pink-strong);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "–";
}

.faq-card p {
  margin: -6px 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 64px clamp(18px, 5vw, 58px) 24px;
  color: #dce7ee;
  background: #143247;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.7fr;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto 34px;
}

.footer img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 18px;
}

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

.footer p {
  color: #dce7ee;
  line-height: 1.6;
}

.footer a {
  display: block;
  color: #ffffff;
  margin-bottom: 10px;
}

.map-wrap {
  max-width: var(--max);
  height: 310px;
  margin: 0 auto 24px;
  border-radius: 28px;
  overflow: hidden;
  background: #22465d;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.copyright {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b7c8d1;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 218px;
  min-height: 62px;
  padding: 10px 20px 10px 58px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #20c263, var(--tiffany));
  box-shadow: 0 18px 42px rgba(32, 194, 99, 0.28);
  font-size: 0.86rem;
  font-weight: 800;
}

.floating-whatsapp::before {
  content: "☎";
  position: absolute;
  left: 15px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #20c263;
  background: var(--white);
  transform: translateY(-50%);
}

.floating-whatsapp strong {
  font-size: 0.96rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 0;
  }

  .services-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .local-seo {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px;
    border-radius: 14px;
    background: var(--soft);
  }

  .header-cta {
    display: none;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    height: 64vw;
    min-height: 340px;
    border-radius: 30px;
  }

  .split-section,
  .clinic-structure,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 520px;
  }

  .photo-main {
    width: 82%;
    height: 470px;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

  .emergency,
  .whatsapp-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 0.96;
  }

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

  .care-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .services-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 16px;
  }

  .local-seo {
    margin-inline: 16px;
    padding: 26px 18px;
    border-radius: 28px;
  }

  .card-grid.four,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .blog-card {
    min-height: 0;
  }

  .photo-stack {
    min-height: 0;
  }

  .photo-main,
  .photo-small {
    position: static;
    width: 100%;
    height: auto;
  }

  .photo-small {
    margin-top: 14px;
    border-width: 0;
  }

  .structure-image img {
    height: 340px;
  }

  .carousel-btn {
    top: auto;
    bottom: -68px;
    transform: none;
  }

  .carousel-btn.prev {
    left: calc(50% - 58px);
  }

  .carousel-btn.next {
    right: calc(50% - 58px);
  }

  .testimonials {
    padding-bottom: 132px;
  }

  .testimonial {
    transform: translateX(0);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    align-items: flex-start;
  }
}

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