:root {
  --bg: #f5fbfd;
  --bg-2: #e8f7fb;
  --white: #ffffff;
  --ink: #102a36;
  --muted: #607684;
  --primary: #0a6f8f;
  --primary-dark: #06485d;
  --primary-soft: #c8eef7;
  --accent: #40c4df;
  --line: rgba(10, 111, 143, 0.16);
  --shadow: 0 22px 70px rgba(6, 72, 93, 0.16);
  --shadow-soft: 0 14px 42px rgba(6, 72, 93, 0.10);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(64, 196, 223, 0.28), transparent 30rem),
    radial-gradient(circle at 100% 20%, rgba(200, 238, 247, 0.48), transparent 26rem),
    linear-gradient(180deg, #fbfeff 0%, var(--bg) 44%, #ffffff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

.section {
  position: relative;
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 251, 253, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 111, 143, 0.10);
}

.navbar {
  width: min(100% - 40px, var(--max-width));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: 0 14px 32px rgba(10, 111, 143, 0.25);
}

.brand-mark svg {
  width: 27px;
  fill: currentColor;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: clamp(0.9rem, 2.1vw, 1.04rem);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 32px rgba(6, 72, 93, 0.06);
}

.nav-links a {
  padding: 10px 15px;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--primary-dark);
  border-radius: 999px;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 78px;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.9;
}

.orb-one {
  width: 330px;
  height: 330px;
  right: -80px;
  top: 60px;
  background: rgba(64, 196, 223, 0.18);
}

.orb-two {
  width: 190px;
  height: 190px;
  left: -54px;
  bottom: 20px;
  background: rgba(10, 111, 143, 0.10);
}

.orb-three {
  width: 98px;
  height: 98px;
  left: 48%;
  top: 19%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(10, 111, 143, 0.15);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 31px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8.5vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  color: var(--primary-dark);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--primary-dark);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 14px 34px rgba(10, 111, 143, 0.25);
}

.btn-secondary {
  color: var(--primary-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 251, 0.82)),
    radial-gradient(circle at 25% 0%, rgba(64, 196, 223, 0.24), transparent 16rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: -70px;
  border: 28px solid rgba(10, 111, 143, 0.08);
  border-radius: 50%;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 32px;
  color: var(--primary-dark);
  font-weight: 900;
}

.dental-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 27px;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: 0 18px 45px rgba(10, 111, 143, 0.26);
}

.dental-icon svg {
  width: 44px;
  fill: currentColor;
}

.hero-card h2 {
  max-width: 410px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.location-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

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

.location-strip small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

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

.info-card {
  min-height: 246px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  font-size: 1.2rem;
}

.doctor-section {
  background:
    linear-gradient(120deg, rgba(6, 72, 93, 0.96), rgba(10, 111, 143, 0.90)),
    radial-gradient(circle at 80% 0%, rgba(64, 196, 223, 0.4), transparent 30rem);
  color: var(--white);
  overflow: hidden;
}

.doctor-section h2,
.doctor-section .eyebrow {
  color: var(--white);
}

.doctor-section p,
.doctor-section .responsible-note span {
  color: rgba(255, 255, 255, 0.78);
}

.doctor-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.doctor-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.profile-card {
  width: min(100%, 355px);
  min-height: 355px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.profile-icon {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--white);
}

.profile-icon svg {
  width: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.profile-card strong {
  font-size: 1.28rem;
}

.profile-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.floating-label {
  position: absolute;
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.label-one {
  left: 0;
  top: 70px;
}

.label-two {
  right: 0;
  bottom: 62px;
}

.responsible-note {
  display: grid;
  gap: 6px;
  max-width: 690px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
}

.highlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 251, 0.72));
  box-shadow: var(--shadow-soft);
}

.concept-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.concept-row span {
  display: inline-flex;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 900;
}

.location-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(64, 196, 223, 0.16), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f3fbfd 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: center;
}

.address-card {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
  padding: 24px;
  font-style: normal;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.address-card span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 900;
}

.address-card span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.map-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-header {
  display: flex;
  gap: 7px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fdff;
}

.map-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.map-area {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 111, 143, 0.08) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(10, 111, 143, 0.08) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(135deg, #e8f7fb, #ffffff);
}

.map-line {
  position: absolute;
  border-radius: 999px;
  background: rgba(10, 111, 143, 0.26);
}

.line-a {
  width: 120%;
  height: 18px;
  left: -8%;
  top: 34%;
  transform: rotate(-10deg);
}

.line-b {
  width: 120%;
  height: 18px;
  left: -10%;
  bottom: 28%;
  transform: rotate(8deg);
}

.line-c {
  width: 18px;
  height: 120%;
  left: 32%;
  top: -8%;
  transform: rotate(12deg);
}

.line-d {
  width: 18px;
  height: 120%;
  right: 28%;
  top: -8%;
  transform: rotate(-8deg);
}

.pin {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 18px 50px rgba(10, 111, 143, 0.34);
}

.pin i {
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 50%;
  background: var(--white);
}

.map-caption {
  display: grid;
  gap: 5px;
  padding: 20px;
}

.map-caption strong {
  color: var(--primary-dark);
}

.map-caption small {
  color: var(--muted);
  line-height: 1.5;
}

.data-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.data-table div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.data-table div:last-child {
  border-bottom: 0;
}

.data-table strong {
  color: var(--primary-dark);
}

.data-table span {
  color: var(--muted);
  line-height: 1.5;
}

.closing-section {
  padding-top: 54px;
}

.closing-card {
  padding: 44px;
  text-align: center;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(64, 196, 223, 0.42), transparent 22rem),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
}

.closing-card h2,
.closing-card p,
.closing-card .eyebrow {
  color: var(--white);
}

.closing-card .eyebrow::before {
  background: var(--white);
}

.closing-card .btn-primary {
  color: var(--primary-dark);
  background: var(--white);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.footer-grid div {
  display: grid;
  gap: 4px;
}

.footer-grid span,
.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary-dark);
  box-shadow: 0 16px 40px rgba(6, 72, 93, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 950px) {
  .navbar {
    min-height: 76px;
  }

  .menu-button {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 76px 20px auto 20px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-links a {
    padding: 14px;
  }

  .hero-grid,
  .doctor-grid,
  .highlight-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .doctor-visual {
    min-height: 360px;
  }

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

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

  .section {
    padding: 66px 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-text strong {
    max-width: 215px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .hero-card,
  .highlight-panel,
  .closing-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  .hero-actions {
    display: grid;
  }

  .data-table div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
  }

  .map-area {
    min-height: 260px;
  }

  .floating-label {
    position: static;
    margin-top: 12px;
    justify-self: center;
  }

  .doctor-visual {
    min-height: auto;
    gap: 8px;
  }
}
