
:root {
  --orange: #f56618;
  --orange-dark: #e85208;
  --orange-soft: #fff0e8;
  --peach: #fff8f4;
  --black: #101010;
  --charcoal: #242424;
  --gray: #656565;
  --light-gray: #f2f2f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
  --soft-shadow: 0 10px 28px rgba(20, 20, 20, 0.06);
  --radius: 24px;
  --container-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 205px;
}

.logo-main {
  font-size: 32px;
  font-weight: 400;
}

.logo-main span:first-child { color: var(--black); }
.logo-main span:last-child { color: var(--orange); }

.logo-tooth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50% 50% 46% 46%;
  font-size: 15px;
  font-weight: 800;
  transform: translateY(2px);
  margin: 0 -2px;
}

.logo-sub {
  margin-top: 7px;
  font-size: 12px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a { position: relative; }
.nav-links a.active,
.nav-links a:hover { color: var(--orange); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 15px;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(245, 102, 24, 0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  border: 1px solid #d9d9d9;
  color: var(--black);
  box-shadow: var(--soft-shadow);
}

main { min-height: calc(100vh - 88px); }
section { padding: 86px 0; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 43%, #fff4ed 100%);
}

.hero-grid {
  min-height: 600px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 36px;
  padding: 56px 0 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--orange);
  display: block;
}

.hero-copy {
  max-width: 540px;
  margin-top: 26px;
  color: var(--charcoal);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(245, 102, 24, 0.28);
  background: var(--white);
  color: var(--orange);
  font-size: 23px;
  box-shadow: var(--soft-shadow);
}

.hero-image {
  position: relative;
  min-height: 520px;
  border-bottom-left-radius: 80px;
  overflow: hidden;
  box-shadow: inset 50px 0 70px rgba(255, 255, 255, 0.88);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.08) 45%),
    url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1300&q=85") center/cover;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(245, 102, 24, 0.12);
  filter: blur(8px);
}

.contact-strip {
  position: relative;
  z-index: 5;
  margin: -38px auto 0;
  width: min(980px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-strip div {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 800;
}

.contact-strip div + div { border-left: 1px solid #dddddd; }

.circle-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 102, 24, 0.28);
  color: var(--orange);
  background: var(--white);
  font-size: 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading h2 span { color: var(--orange); }
.heading-line {
  width: 54px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.services {
  padding-top: 78px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
}

.services-grid,
.category-grid,
.reviews-grid,
.related-grid,
.benefits-grid,
.process-grid,
.subservice-grid {
  display: grid;
  gap: 22px;
}

.services-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.related-grid,
.category-grid,
.subservice-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }

.service-card,
.benefit-card,
.review-card,
.seo-card,
.process-card,
.content-panel {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: 0.2s ease;
}

.service-card,
.seo-card,
.process-card,
.benefit-card,
.review-card { padding: 24px; }

.service-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.service-card:hover,
.benefit-card:hover,
.review-card:hover,
.seo-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon,
.benefit-icon,
.seo-icon,
.process-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 30px;
}

.benefit-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  font-size: 36px;
}

.doctor-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(245, 102, 24, 0.18);
  border-radius: 28px;
  background: linear-gradient(120deg, #fff7f1 0%, #ffffff 55%);
  box-shadow: var(--soft-shadow);
}

.doctor-photo {
  height: 330px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-gray);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-text h2,
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.doctor-text .credential,
.page-kicker {
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.doctor-text .role {
  font-weight: 800;
  margin-bottom: 20px;
}

.doctor-text p,
.seo-card p,
.benefit-card p,
.review-card p,
.page-intro p,
.content-panel p,
.content-panel li,
.process-card p {
  color: var(--gray);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.chip span { color: var(--orange); }

.why {
  padding-top: 14px;
  background: var(--white);
}

.quote {
  color: var(--orange);
  font-size: 46px;
  line-height: 0.8;
  font-weight: 800;
}

.stars {
  color: var(--orange);
  letter-spacing: 3px;
  margin: 4px 0 14px;
  font-size: 16px;
}

.reviewer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--orange-soft);
}

.cta-section {
  padding: 0 0 88px;
  background: var(--peach);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 140px;
  padding: 34px 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff7b24);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(245, 102, 24, 0.28);
}

.cta-banner::before {
  content: "♡";
  position: absolute;
  left: 66px;
  top: -28px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 220px;
  line-height: 1;
}

.cta-banner h2 {
  position: relative;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cta-banner p {
  position: relative;
  margin-top: 10px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-banner .btn {
  position: relative;
  background: var(--white);
  color: var(--orange);
  box-shadow: none;
}

.page-shell {
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 35%, #fff8f4 100%);
}

.page-hero {
  padding: 64px 0 36px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a:hover { color: var(--orange); }

.page-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.page-intro-card {
  background: var(--white);
  border: 1px solid rgba(245, 102, 24, 0.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}

.quick-facts {
  display: grid;
  gap: 14px;
}

.fact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fact-row strong {
  min-width: 110px;
  color: var(--black);
}

.content-section {
  padding: 18px 0 78px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-panel {
  padding: 28px;
}

.content-panel h2,
.content-panel h3,
.seo-card h3,
.benefit-card h3,
.process-card h3 {
  letter-spacing: -0.03em;
}

.content-panel h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.content-panel h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.content-panel ul,
.content-panel ol {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.subservice-grid .seo-card h3,
.related-grid .seo-card h3 { margin-bottom: 10px; }

.seo-card a.inline-link,
.content-panel a.inline-link {
  color: var(--orange-dark);
  font-weight: 800;
}

.seo-card a.inline-link:hover,
.content-panel a.inline-link:hover { text-decoration: underline; }

.related-grid .seo-card,
.subservice-grid .seo-card { height: 100%; }

.sidebar-card {
  position: sticky;
  top: 108px;
}

.gloo-faq {
  margin: 0 auto;
  padding: 0 0 86px;
}

.gloo-faq .container-wrap {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  padding: 28px;
}

.gloo-faq h2 {
  font-size: 30px;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.gloo-faq details {
  border: 1px solid #f2d3c1;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #fffaf7;
}

.gloo-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.gloo-faq .gloo-faq-a {
  margin-top: 10px;
  color: var(--gray);
  line-height: 1.7;
}

.footer {
  background: #202020;
  color: var(--white);
  padding: 58px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 0.85fr;
  gap: 48px;
}

.footer .logo-main span:first-child { color: var(--white); }
.footer .logo-sub,
.footer p,
.footer a { color: rgba(255, 255, 255, 0.78); }

.footer h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 14px;
  margin: 18px 0;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 800;
}

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
  z-index: 50;
  text-decoration: none;
}

.wa-fab:hover { transform: translateY(-1px); }
.wa-fab svg { width: 30px; height: 30px; display: block; }

@media (max-width: 980px) {
  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .nav-links { display: none; }
  .hero-grid,
  .doctor-panel,
  .page-intro,
  .content-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 430px; border-radius: 34px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid,
  .reviews-grid,
  .footer-grid,
  .related-grid,
  .category-grid,
  .subservice-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip div + div {
    border-left: 0;
    border-top: 1px solid #dddddd;
  }
  .sidebar-card { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container-width)); }
  .nav > .btn { display: none; }
  .hero-grid { padding: 44px 0 62px; }
  .hero-actions,
  .cta-banner { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr; }
  .hero-image { min-height: 340px; }
  .contact-strip div { font-size: 16px; padding: 0 18px; }
  section { padding: 62px 0; }
  .services-grid,
  .benefits-grid,
  .reviews-grid,
  .footer-grid,
  .related-grid,
  .category-grid,
  .subservice-grid,
  .process-grid { grid-template-columns: 1fr; }
  .doctor-panel { padding: 20px; }
  .doctor-photo { height: 280px; }
  .doctor-text h2,
  .page-hero h1 { font-size: 34px; }
  .cta-banner { padding: 30px 24px; }
  .cta-banner h2 { font-size: 28px; }
}
