@font-face {
  font-family: "Marcellus-Regular";
  src: url("../fonts/Marcellus-Regular.woff2") format("woff2"),
    url("../fonts/Marcellus-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/monserat/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/monserat/Montserrat-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/monserat/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/monserat/Montserrat-SemiBold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --t: #0a3d38;
  --tm: #14675d;
  --t3: #0f4c46;
  --co: #e8673a;
  --co2: #d4552b;
  --go: #f4a55a;
  --tl: #e8f4f1;
  --cr: #faf8f4;
  --wh: #ffffff;
  --bd: #dcebe7;
  --bd2: #c8dbd6;
  --tx: #18332f;
  --tx2: #2d5048;
  --mu: #607772;
  --ok: #1b8a4c;
  --okl: #edf9f0;
  --wa: #25d366;
  --red: #7c1d1d;
  --cl: #fef0eb;
  --och: #b8864b;
  --ochl: #f2e5cc;
      --c-line: #e5d5da;
  --r: 10px;
  --rl: 18px;
  --rp: 999px;
  --shadow-1: 0 1px 2px rgba(42, 14, 34, 0.05), 0 4px 14px rgba(42, 14, 34, 0.06);
  --sh: 0 4px 16px rgba(10, 61, 56, 0.09);
  --shs: 0 1px 4px rgba(10, 61, 56, 0.07);
  --shl: 0 12px 35px rgba(10, 61, 56, 0.1);
  --tr: 0.18s ease;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


.ortho-page img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ortho-page a {
  color: var(--t1);
  text-decoration: none;

}
.ortho-page a:hover {
  color: var(--co);
}
.ortho-page :focus-visible {
  outline: 2.5px solid var(--co);
  outline-offset: 3px;
  border-radius: 4px;
}
.ortho-page .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}
.ortho-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Live ticker + floats */
.ortho-page .live-ticker {
  background: linear-gradient(135deg, var(--cl), #fde0d0);
  border-bottom: 1px solid var(--bd);
  padding: 8px 0;
  font-size: 0.78rem;
  color: var(--tx2);
  text-align: center;
}
.ortho-page .live-ticker strong {
  color: var(--co);
  font-weight: 700;
}
.ortho-page .ticker-av {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--co);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.7rem;
  margin-right: 5px;
  vertical-align: middle;
}
.ortho-page .float-side {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ortho-page .float-side a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh);
}
.ortho-page .float-side a img {
  width: 28px;
  height: 28px;
}
.ortho-page .float-wa {
  background: var(--wa);
}
.ortho-page .float-call {
  background: var(--t);
}

/* Breadcrumb */
.ortho-page .breadcrumb {
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  padding: 9px 0;
  font-size: 0.78rem;
}
.ortho-page .breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.ortho-page .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--mu);
}
.ortho-page .breadcrumb li a {
  color: var(--t);
  font-weight: 600;
}
.ortho-page .breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--bd2);
}
.ortho-page .breadcrumb li:last-child {
  color: var(--tx2);
  font-weight: 700;
}

/* Live counter */
.ortho-page .live-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--okl);
  color: var(--ok);
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(27, 138, 76, 0.18);
}
.ortho-page .live-counter::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(27, 138, 76, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(27, 138, 76, 0);
  }
}

/* Hero */
.ortho-page .hero {
  background: linear-gradient(155deg, #0a3d38 0%, #0d4f47 60%, #124a43 100%);
  padding: 48px 0 42px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ortho-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 82% 50%,
    rgba(244, 165, 90, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ortho-page .hero-in {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ortho-page .hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  color: #fff;
}
.ortho-page .hero h1 em {
  font-style: italic;
  color: var(--go);
  font-weight: 700;
}
.ortho-page .hero-sub {
  font-family: Montserrat-Medium;
  font-size: 16px;
  color: #fff;
  max-width: 560px;
}
.ortho-page .hero-sub strong {
  color: #fff;
}
.ortho-page .hero ul {
 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
    padding-left: 0;
}
.ortho-page .hero ul li {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
  padding-left: 22px;
  position: relative;
}
.ortho-page .hero ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--go);
  font-weight: 700;
}
.ortho-page .hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.ortho-page .btn-pri {
  background: var(--co);
  color: #fff;
  border: none;
  border-radius: var(--rp);
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all var(--tr);
  box-shadow: 0 4px 14px rgba(232, 103, 58, 0.35);

  cursor: pointer;
}
.ortho-page .btn-pri:hover {
  background: var(--co2);
  transform: translateY(-1px);
  color: #fff;
}
.ortho-page .btn-wa {
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: var(--rp);
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all var(--tr);
  : inherit;
}
.ortho-page .btn-wa:hover {
  background: #1eb558;
  color: #fff;
}
.ortho-page .hero-stat-line {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
}
.ortho-page .hero-stat-line strong {
  color: var(--go);
  font-weight: 700;
}

/* Booking widget — 4-step */
.ortho-page .bk-widget {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--rl);
  padding: 20px;
  color: var(--tx);
  box-shadow: var(--shl);
}
.ortho-page .bk-discount {
  background: linear-gradient(90deg, var(--co), var(--go));
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.ortho-page .bk-h {

  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 4px;
}
.ortho-page .bk-sub {
  font-size: 0.78rem;
  color: var(--mu);
  margin-bottom: 14px;
}
.ortho-page .bk-steps {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}
.ortho-page .bk-step {
  flex: 1;
  background: var(--cr);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 7px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--mu);
}
.ortho-page .bk-step strong {
  display: block;
  font-size: 0.95rem;
  color: var(--t);
 
  font-weight: 700;
  margin-bottom: 2px;
}
.ortho-page .bk-step.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.ortho-page .bk-step.on strong {
  color: var(--go);
}
.ortho-page .bk-step.done {
  background: var(--okl);
  border-color: var(--ok);
  color: var(--ok);
}
.ortho-page .bk-step.done strong {
  color: var(--ok);
}

.ortho-page .bk-pane {
  display: none;
}
.ortho-page .bk-pane.on {
  display: block;
}

.ortho-page .bk-plan {
  border: 2px solid var(--co);
  border-radius: var(--rl);
  padding: 13px;
  margin-bottom: 10px;
  position: relative;
  background: var(--cr);
}
.ortho-page .bk-plan-tag {
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--co);
  color: #fff;
  border-radius: var(--rp);
  padding: 2px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ortho-page .bk-plan-name {
  font-weight: 700;
  color: var(--tx);
  font-size: 0.92rem;
  margin-bottom: 3px;
}
.ortho-page .bk-plan-price {
 
  font-size: 1.35rem;
  color: var(--co);
  font-weight: 700;
}
.ortho-page .bk-plan-price s {
  color: var(--mu);
  font-size: 0.78rem;
  font-weight: 400;
  margin-right: 5px;
}
.ortho-page .bk-plan-price .off {
  background: var(--okl);
  color: var(--ok);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 99px;
  margin-left: 5px;
}
.ortho-page .bk-plan-mode {
  font-size: 0.72rem;
  color: var(--mu);
  margin-top: 3px;
}

.ortho-page .bk-slots-h {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tx);
  margin: 14px 0 8px;
  display: flex;
  justify-content: space-between;
}
.ortho-page .bk-slots-h a {
  font-size: 0.74rem;
  color: var(--t);
  font-weight: 600;
}
.ortho-page .bk-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.ortho-page .bk-slot {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 9px 5px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--tx);
  cursor: pointer;
  : inherit;
}
.ortho-page .bk-slot:hover {
  border-color: var(--t);
}
.ortho-page .bk-slot.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.ortho-page .bk-slot.unav {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f3eee0;
}

.ortho-page .bk-help {
  font-size: 0.74rem;
  color: var(--mu);
  text-align: center;
  margin: 8px 0;
}
.ortho-page .bk-help a {
  color: var(--t);
  font-weight: 600;
  text-decoration: underline;
}

.ortho-page .bk-cta {
  background: var(--t1);
  color: #fff;
  border: none;
  border-radius: var(--rp);
  width: 100%;
  padding: 11px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}
.ortho-page .bk-cta:hover {
  background: var(--co);
  color: #fff;
}
.ortho-page .bk-foot {
  font-size: 0.7rem;
  color: var(--mu);
  text-align: center;
  margin-top: 9px;
}

.ortho-page .bk-back {
  background: none;
  border: none;
  font-size: 0.78rem;
  color: var(--t1);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
}
.ortho-page .bk-back:hover {
  color: var(--co);
}

.ortho-page .bk-field {
  margin-bottom: 10px;
}
.ortho-page .bk-field label {
  display: block;
  font-size: 0.74rem;
  color: var(--mu);
  font-weight: 600;
  margin-bottom: 4px;
}
.ortho-page .bk-field input,
.ortho-page .bk-field select {
  width: 100%;
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 0.86rem;
  outline: none;
  background: #fff;
}
.ortho-page .bk-field input:focus,
.ortho-page .bk-field select:focus {
  border-color: var(--t);
}
.ortho-page .bk-err {
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 3px;
  display: none;
}
.ortho-page .bk-err.show {
  display: block;
}

.ortho-page .bk-summary {
  background: var(--cr);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 14px;
  margin-bottom: 12px;
}
.ortho-page .bk-summary table {
  width: 100%;
  font-size: 0.83rem;
  border-collapse: collapse;
}
.ortho-page .bk-summary td {
  padding: 5px 0;
  color: var(--tx2);
}
.ortho-page .bk-summary td:first-child {
  color: var(--mu);
}
.ortho-page .bk-summary td:last-child {
  font-weight: 700;
  color: var(--tx);
  text-align: right;
}
.ortho-page .bk-summary tr.save td {
  color: var(--ok);
}

.ortho-page .bk-confetti {
  text-align: center;
  margin: 14px 0;
}
.ortho-page .bk-confetti img {
  max-width: 120px;
  margin: 0 auto;
}
.ortho-page .bk-discount-applied {
  background: linear-gradient(135deg, #fef0eb, #fde0d0);
  border: 1px dashed var(--co);
  border-radius: var(--rl);
  padding: 14px;
  text-align: center;
  margin-bottom: 12px;
}
.ortho-page .bk-discount-applied .pct {
 
  font-size: 1.6rem;
  color: var(--co);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.ortho-page .bk-discount-applied p {
  font-size: 0.82rem;
  color: var(--tx2);
  margin: 0;
}
.ortho-page .bk-discount-applied .code {
  display: inline-block;
  background: #fff;
  border: 1.5px dashed var(--co);
  color: var(--co);
  padding: 3px 12px;
  
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* Section wrappers */

.ortho-page .sec-cream {
  background: var(--cr);
}
.ortho-page .sec-white {
  background: var(--wh);
}
.ortho-page .sec-tl {
  background: var(--tl);
}
.ortho-page .sec-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--co);
  margin-bottom: 10px;
  background: #ffe9dd;
  display: inline-block;
  box-shadow: var(--sh);
  padding: 6px 15px;
  border-radius: 100px;
}
.ortho-page .sec h2 {
 
color: var(--t1);
 
font-weight: 700;
}
.ortho-page .sec h2 em {
  font-style: italic;
  color: var(--co);
  font-weight: 700;
}
.ortho-page .sec-lede {
  font-size: 0.96rem;
  color: var(--mu);
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* TOC */
.ortho-page .toc {
      background: var(--bg);
  border-bottom: 1px solid var(--bd);
  padding: 11px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ortho-page .toc::-webkit-scrollbar {
  display: none;
}
.ortho-page .toc-in {
  background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 18px 18px;
    margin: 20px auto 20px;
    box-shadow: var(--shadow-1);
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.ortho-page .toc-lbl {
font-family: var(--fh);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-ink);
    padding-right: 12px;
    border-right: 1px solid var(--c-line);
    margin-right: 6px;
}
.ortho-page .toc a {
 display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
        color: var(--o2);
    background: var(--c-cream);
    font-family: Montserrat-SemiBold;
}
.ortho-page .toc a:hover {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}

/* Concern tabs */
.ortho-page .concern-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ortho-page .concern-tab {
  padding: 9px 16px;
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rp);
  font-size: 0.83rem;
  color: var(--tx2);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--tr);
}
.ortho-page .concern-tab:hover,
.ortho-page .concern-tab.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}

/* Doctor cards */
.ortho-page .doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.ortho-page .doc-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 16px;
  transition: all var(--tr);
  position: relative;
}
.ortho-page .doc-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
  border-color: var(--bd2);
}
.ortho-page .doc-photo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
}
.ortho-page .doc-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochl), #e4d2a8);
  color: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
 
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  flex-shrink: 0;
  border: 2px solid var(--bd2);
}
.ortho-page .doc-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.ortho-page .doc-verified {
  position: absolute;
  top: -2px;
  left: 50px;
  width: 18px;
  height: 18px;
  background: var(--ok);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  border: 2px solid #fff;
}
.ortho-page .doc-info h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--tx);
  margin: 0 0 2px;
  line-height: 1.25;
}
.ortho-page .doc-deg {
  font-size: 0.74rem;
  color: var(--mu);
}
.ortho-page .doc-spec {
  font-size: 0.78rem;
  color: var(--co);
  font-weight: 600;
  margin-bottom: 3px;
}
.ortho-page .doc-yrs {
  font-size: 0.74rem;
  color: var(--tx2);
  margin-bottom: 6px;
}
.ortho-page .doc-yrs span {
  margin-right: 8px;
}
.ortho-page .doc-nmc {
  font-size: 0.7rem;
  color: var(--ok);
  font-weight: 600;
  margin-bottom: 8px;
}
.ortho-page .doc-nmc a {
  color: var(--ok);
  text-decoration: underline;
}
.ortho-page .doc-status {
  font-size: 0.72rem;
  color: var(--mu);
  margin-bottom: 8px;
  font-style: italic;
}
.ortho-page .doc-exp {
  font-size: 0.78rem;
  color: var(--tx2);
  margin-bottom: 6px;
  line-height: 1.5;
}
.ortho-page .doc-exp b {
  color: var(--t);
  font-weight: 700;
}
.ortho-page .doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.ortho-page .doc-tag {
  font-size: 0.66rem;
  padding: 2px 8px;
  background: var(--tl);
  color: var(--t);
  border-radius: var(--rp);
  font-weight: 600;
  border: 1px solid var(--bd);
}
.ortho-page .doc-meta {
  font-size: 0.74rem;
  color: var(--tx2);
  margin-bottom: 5px;
}
.ortho-page .doc-meta b {
  color: var(--t);
  font-weight: 700;
}
.ortho-page .doc-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 11px;
}
.ortho-page .btn-view {
  background: var(--wh);
  color: var(--t);
  border: 1.5px solid var(--bd2);
  border-radius: var(--rp);
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.ortho-page .btn-view:hover {
  background: var(--tl);
  border-color: var(--t);
}
.ortho-page .btn-bk {
  background: var(--co);
  color: #fff;
  border: none;
  border-radius: var(--rp);
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.ortho-page .btn-bk:hover {
  background: var(--co2);
  color: #fff;
}

.ortho-page .cant-find {
  background: var(--tl);
  border: 1px solid var(--bd2);
  border-radius: var(--rl);
  padding: 20px 24px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.ortho-page .cant-find h4 {
 
  font-size: 1.05rem;
  color: var(--t);
  margin: 0 0 4px;
  font-weight: 700;
}
.ortho-page .cant-find p {
  font-size: 0.85rem;
  color: var(--mu);
  margin: 0;
}
.ortho-page .cant-find a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--t);
  color: #fff;
  border-radius: var(--rp);
  padding: 9px 18px;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.ortho-page .doc-foot {
  text-align: center;
  margin-top: 14px;
}
.ortho-page .doc-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--wh);
  border: 1.5px solid var(--t);
  border-radius: var(--rp);
  color: var(--t);
  font-weight: 700;
  font-size: 0.86rem;
}
.ortho-page .doc-foot a:hover {
  background: var(--t);
  color: #fff;
}

/* TLDR / Quick Answer */
.ortho-page .tldr {
 background: linear-gradient(135deg, #fffaee, #fff5da);
  border: 1px solid #ffe8aa;
  border-radius: var(--rl);
  padding: 22px 26px;
}
.ortho-page .tldr h3 {

font-size: 22px;

color: var(--t1);

margin: 0 0 12px;

font-weight: 700;
}
.ortho-page .tldr ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 6px 14px;
}
.ortho-page .tldr ul li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 5px;
}
.ortho-page .tldr ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
  font-weight: 800;
}
.ortho-page .qa-box {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 22px 26px;
  border-left: 4px solid var(--co);
}
.ortho-page .qa-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--co);
  margin-bottom: 7px;
}
.ortho-page .qa-box h3 {
  font-size: 22px;
  color: var(--t1);
  margin: 0 0 9px;
  font-weight: 700;
}
.ortho-page .qa-box p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 10px;
}
.ortho-page .qa-box p strong {
  color: var(--muted);
}
.ortho-page .qa-box .qa-link {
  display: inline-block;
  background: var(--co);
  color: #fff;
  border-radius: var(--rp);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
}

/* Pricing */
.ortho-page .price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ortho-page .price-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 22px 20px;
  position: relative;
  transition: all var(--tr);
}
.ortho-page .price-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.ortho-page .price-card.popular {
  border: 2px solid var(--co);
}
.ortho-page .price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--co);
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--rp);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ortho-page .price-name {

  font-size: 1rem;
  color: var(--t);
  font-weight: 700;
  margin-bottom: 5px;
}
.ortho-page .price-amt {
  font-size: 1.95rem;
  color: var(--co);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}
.ortho-page .price-amt s {
  font-size: 0.82rem;
  color: var(--mu);
  font-weight: 400;
  margin-right: 6px;
}
.ortho-page .price-save {
  font-size: 0.7rem;
  background: var(--okl);
  color: var(--ok);
  padding: 2px 9px;
  border-radius: var(--rp);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}
.ortho-page .price-dur {
  font-size: 0.74rem;
  color: var(--mu);
  margin-bottom: 5px;
  font-style: italic;
}
.ortho-page .price-mode {
  font-size: 0.72rem;
  color: var(--mu);
  margin-bottom: 11px;
}
.ortho-page .price-feat {
  font-size: 0.78rem;
  color: var(--tx2);
  text-align: left;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.ortho-page .price-feat li {
  padding: 3px 0 3px 19px;
  position: relative;
  line-height: 1.5;
}
.ortho-page .price-feat li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--ok);
  font-weight: 700;
  font-size: 0.85rem;
}
.ortho-page .price-btn {
  background: var(--t);
  color: #fff;
  border: none;
  border-radius: var(--rp);
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
  cursor: pointer;
}
.ortho-page .price-btn:hover {
  background: var(--co);
  color: #fff;
}
.ortho-page .price-card.popular .price-btn {
  background: var(--co);
}

/* Conditions grid */
.ortho-page .cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ortho-page .cond-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 18px;
  transition: all var(--tr);
}
.ortho-page .cond-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
  border-color: var(--bd2);
}
.ortho-page .cond-ic {
  font-size: 1.7rem;
  margin-bottom: 7px;
  display: block;
}
.ortho-page .cond-card h4 {
  font-size: 0.98rem;
  color: var(--t);
  margin: 0 0 4px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.ortho-page .cond-card p {
  font-size: 0.78rem;
  color: var(--mu);
  line-height: 1.55;
  margin: 0;
}

/* Symptom table */
.ortho-page .symp-wrap {
  overflow-x: auto;
  border-radius: var(--rl);
  border: 1px solid var(--bd);
  background: var(--wh);
  margin-bottom: 16px;
}
.ortho-page table.symp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.ortho-page table.symp th {
  background: var(--tl);
  color: var(--t);
  padding: 11px 14px;
  font-weight: 700;
  text-align: left;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--bd);
}
.ortho-page table.symp td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--bd);
  color: var(--tx2);
  line-height: 1.55;
}
.ortho-page table.symp tr:nth-child(even) td {
  background: rgba(232, 244, 241, 0.18);
}
.ortho-page table.symp tr:last-child td {
  border-bottom: none;
}
.ortho-page table.symp td:first-child {
  font-weight: 600;
  color: var(--tx);
}

/* GP-vs-Specialist 2col */
.ortho-page .twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ortho-page .twocol-card {
    background: var(--wh);
    border: 1px solid var(--bd);
    border-radius: var(--rl);
    padding: 22px;
    border-top: 5px solid #ff8a61;
    border-bottom: 5px solid #ff8a61;
}
.ortho-page .twocol-card h3 {
  font-size: 22px;
  color: var(--t1);
  margin: 0 0 12px;
  font-weight: 700;
}
.ortho-page .twocol-card ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.ortho-page .twocol-card li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.55;
}
.ortho-page .twocol-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--ok);
  font-weight: 800;
}

/* Severity triage */
.ortho-page .triage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ortho-page .triage-card {
  border: 2px solid var(--bd);
  border-radius: var(--rl);
  padding: 20px;
  background: var(--wh);
}
.ortho-page .triage-card.routine {
  border-color: rgba(27, 138, 76, 0.35);
  background: linear-gradient(135deg, #f3fbf5, #e7f3eb);
}
.ortho-page .triage-card.urgent {
  border-color: rgba(244, 165, 90, 0.4);
  background: linear-gradient(135deg, #fff8f0, #fbedd9);
}
.ortho-page .triage-card.emergency {
  border-color: rgba(124, 29, 29, 0.35);
  background: linear-gradient(135deg, #fff0ee, #fcd9d3);
}
.ortho-page .triage-lbl {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.ortho-page .triage-card.routine .triage-lbl {
  color: var(--ok);
}
.ortho-page .triage-card.urgent .triage-lbl {
  color: #8a5e1a;
}
.ortho-page .triage-card.emergency .triage-lbl {
  color: var(--red);
}
.ortho-page .triage-card h3 {
  font-size: 18px;
  color: var(--t1);
  margin: 0 0 8px;
  font-weight: 700;
}
.ortho-page .triage-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.6;
}
.ortho-page .triage-card ul {
  padding-left: 0;
  margin: 0 0 12px;
  list-style: none;
}
.ortho-page .triage-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.5;
}
.ortho-page .triage-card.routine li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}
.ortho-page .triage-card.urgent li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #8a5e1a;
  font-weight: 800;
}
.ortho-page .triage-card.emergency li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.ortho-page .triage-card a {
  display: inline-block;
  background: var(--t);
  color: #fff;
  border-radius: var(--rp);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 6px;
}

/* Compare table */
.ortho-page .cmp-wrap {
  overflow-x: auto;
  border-radius: var(--rl);
  border: 1px solid var(--bd);
  background: var(--wh);
}
.ortho-page table.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.ortho-page table.cmp caption {
    background: var(--tl);
    padding: 18px 14px;
    font-weight: 700;
    color: var(--t1);
    text-align: left;
    font-size: 0.96rem;
    border-bottom: 1px solid var(--bd);
    text-align: center;
    text-transform: uppercase;
}
.ortho-page table.cmp th {
    background: #ffecc7;
    color: var(--t1);
    padding: 11px 14px;
    font-weight: 700;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: Montserrat-SemiBold;
}
.ortho-page table.cmp td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--bd);
  color: var(--tx2);
  line-height: 1.5;
}
.ortho-page table.cmp td:first-child {
  font-weight: 600;
  color: var(--t1);
}
.ortho-page table.cmp tr:last-child td {
  border-bottom: none;
}

.ortho-page table.cmp tbody tr:nth-child(odd) {
    background: rgb(255 249 237);
}

.ortho-page table.cmp th.us {
    background: #0f4c46;
    color: #fff;
}

.ortho-page table.cmp caption {
    letter-spacing: 1px;
}
.ortho-page table.cmp .yes {
  color: var(--ok);
  font-weight: 600;
}
.ortho-page table.cmp .no {
  color: var(--red);
  font-weight: 600;
}
.ortho-page table.cmp .partial {
  color: #8a5e1a;
  font-weight: 600;
}

/* Pillars + Whole-person */
.ortho-page .pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ortho-page .pillar-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 20px;
}
.ortho-page .pillar-card .pic {
  font-size: 1.9rem;
  margin-bottom: 8px;
  display: block;
}
.ortho-page .pillar-card .plbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--co);
  margin-bottom: 5px;
}
.ortho-page .pillar-card h3 {

  font-size: 1.02rem;
  color: var(--t1);
  margin: 0 0 8px;
  font-weight: 700;
}
.ortho-page .pillar-card ul {
  padding-left: 0;
  margin: 0 0 10px;
  list-style: none;
}
.ortho-page .pillar-card li {
  font-size: 0.8rem;
  color: var(--tx2);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.5;
}
.ortho-page .pillar-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--co);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}
.ortho-page .pillar-card a {
  font-size: 0.78rem;
  color: var(--co);
  font-weight: 700;
  text-decoration: none;
}

.ortho-page .wp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.ortho-page .wp-card {
  background: var(--cr);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 18px;
  text-align: center;
}
.ortho-page .wp-card .ic {
  font-size: 2rem;
  margin-bottom: 7px;
  display: block;
}
.ortho-page .wp-card h4 {
  font-size: 0.95rem;
  color: var(--t1);
  margin: 0 0 5px;
  font-weight: 700;
}
.ortho-page .wp-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Awards */
.ortho-page .awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ortho-page .award-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ortho-page .award-card .ai {
  font-size: 1.7rem;
  flex-shrink: 0;
}
.ortho-page .award-tag {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--co);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.ortho-page .award-card h4 {
  font-size: 14px;
  color: var(--t1);
  margin: 0 0 4px;
  font-weight: 700;
  line-height: 1.3;
}
.ortho-page .award-card p {
  font-size: 0.74rem;
  color: var(--mu);
  margin: 0;
  line-height: 1.5;
}

/* Insurance */
.ortho-page .ins-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ortho-page .ins-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 14px;
  text-align: center;
}
.ortho-page .ins-card .ic {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}
.ortho-page .ins-card h4 {
  font-size: 0.85rem;
  color: var(--t1);
  margin: 0 0 2px;
  font-weight: 700;
}
.ortho-page .ins-card p {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

/* Languages */
.ortho-page .lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ortho-page .lang-pill {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rp);
  padding: 8px 16px;
  font-size: 0.83rem;
  color: var(--tx2);
  text-decoration: none;
  font-weight: 500;
}
.ortho-page .lang-pill:hover {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.ortho-page .lang-pill strong {
  color: var(--t);
  font-weight: 700;
}
.ortho-page .lang-pill:hover strong {
  color: var(--go);
}

/* Outcomes */
.ortho-page .outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ortho-page .out-card {
  background: linear-gradient(135deg, var(--tl), var(--bd));
  border: 1px solid var(--bd2);
  border-radius: var(--rl);
  padding: 22px;
  text-align: center;
}
.ortho-page .out-card .out-num {
  font-size: 2.2rem;
  color: var(--t1);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.ortho-page .out-card p {
  font-size: 0.82rem;
  color: var(--tx2);
  margin: 0;
  line-height: 1.5;
}

/* Journey */
.ortho-page .journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.ortho-page .jrn-step {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 18px 14px;
  text-align: center;
}
.ortho-page .jrn-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--t);
  color: var(--go);
  border-radius: 50%;
 
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.ortho-page .jrn-step .ic {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
}
.ortho-page .jrn-step h4 {
  font-size: 0.88rem;
  color: var(--t1);
  margin: 0 0 5px;
  font-weight: 700;
  line-height: 1.3;
}
.ortho-page .jrn-step p {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Concern chips */
.ortho-page .chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ortho-page .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rp);
  font-size: 0.82rem;
  color: var(--tx2);
  text-decoration: none;
  font-weight: 500;
}
.ortho-page .chip:hover {
  background: var(--co);
  color: #fff;
  border-color: var(--co);
}

/* Calculators */
.ortho-page .calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ortho-page .calc-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 20px;
}
.ortho-page .calc-card h4 {
  font-size: 1rem;
  color: var(--t1);
  margin: 0 0 5px;
  font-weight: 700;
}
.ortho-page .calc-card .cdesc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.ortho-page .calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.ortho-page .calc-row label {
  display: block;
  font-size: 0.74rem;
  color: var(--mu);
  margin-bottom: 4px;
  font-weight: 600;
}
.ortho-page .calc-row input {
  width: 100%;
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.86rem;
  outline: none;
}
.ortho-page .calc-row input:focus {
  border-color: var(--t);
}
.ortho-page .calc-result {

  font-size: 1.45rem;
  color: var(--co);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}
.ortho-page .calc-label {
  font-size: 0.78rem;
  color: var(--tx2);
  margin-bottom: 11px;
  font-family: Montserrat-Medium;
}
.ortho-page .calc-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--co);
    font-weight: 700;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--co);
    padding: 8px 10px;
    border-radius: 10px;
    box-shadow: rgb(255 245 244) 0px 2px 8px 0px;
    margin-top: 10px;
}

/* Protocols */
.ortho-page .proto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ortho-page .proto-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 22px;
  border-top: 4px solid var(--co);
}
.ortho-page .proto-id {
  font-size: 0.7rem;
  background: var(--co);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ortho-page .proto-card h3 {
  font-size: 1.06rem;
  color: var(--t1);
  margin: 0 0 11px;
  font-weight: 700;
}
.ortho-page .proto-card ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
  counter-reset: p;
}
.ortho-page .proto-card li {
  counter-increment: p;
  font-size: 0.83rem;
  color: var(--muted);
  padding: 6px 0 6px 28px;
  position: relative;
  line-height: 1.55;
}
.ortho-page .proto-card li::before {
  content: counter(p);
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--tl);
  color: var(--t);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Personas */
.ortho-page .pers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ortho-page .pers-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 20px;
}
.ortho-page .pers-card .ic {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 8px;
}
.ortho-page .pers-card h4 {

  font-size: 0.98rem;
  color: var(--t1);
  margin: 0 0 8px;
  font-weight: 700;
}
.ortho-page .pers-card ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.ortho-page .pers-card li {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.5;
}
.ortho-page .pers-card li::before {
  content: "·";
  position: absolute;
  left: 6px;
  top: -2px;
  color: var(--co);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

/* Testimonials */
.ortho-page .testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ortho-page .testi-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 22px;
  border-left: 3px solid var(--co);
}
.ortho-page .testi-stars {
  color: var(--go);
  font-size: 0.86rem;
  letter-spacing: 1.5px;
  margin-bottom: 9px;
}
.ortho-page .testi-quote {
  font-style: italic;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 12px;
  font-family: Montserrat-Medium;
}
.ortho-page .testi-author {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 11px;
  border-top: 1px solid var(--bd);
}
.ortho-page .testi-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tl), var(--bd));
  color: var(--t1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.ortho-page .testi-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--t1);
}
.ortho-page .testi-loc {
  font-size: 0.7rem;
  color: var(--mu);
}

/* Compliance */
.ortho-page .comp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ortho-page .comp-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 14px 10px;
  text-align: center;
}
.ortho-page .comp-card .ic {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}
.ortho-page .comp-card h4 {
  font-size: 0.78rem;
  color: var(--t1);
  margin: 0 0 2px;
  font-weight: 700;
}
.ortho-page .comp-card p {
  font-size: 0.66rem;
  color: var(--mu);
  margin: 0;
  line-height: 1.4;
}

/* FAQ */
.ortho-page details.faq {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  /* padding: 14px 18px; */
  margin-bottom: 12px;
}
.ortho-page details[open].faq {
  border-color: var(--bd2);
  box-shadow: var(--shs);
}
.ortho-page details.faq summary {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--t1);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fh);
}
.ortho-page details.faq summary::-webkit-details-marker {
  display: none;
}
.ortho-page details.faq summary::after {
  content: "+";
  color: var(--co);
  font-size: 1.3rem;
  font-weight: 300;
  margin-left: 0px;
  transition: transform var(--tr);
  top: 30px;
  align-items: center;
  justify-content: center;
      line-height: 20px;
}
.ortho-page details[open].faq summary::after {
  transform: rotate(45deg);
  color: #fff;
      top: 18px;
}
.ortho-page details.faq .ans {
  font-size: 0.88rem;
  line-height: 1.72;
  margin-top: 0px;
  padding: 0px 20px 10px;
  font-family: Montserrat-Medium;
  color: var(--muted);
}
.ortho-page details.faq .ans a {
  color: var(--t);
  text-decoration: underline;
  font-weight: 600;
}

.ortho-page .faq-help {
  background: var(--cr);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 20px;
  text-align: center;
  margin-top: 14px;
}
.ortho-page .faq-help h4 {
  font-size: 1rem;
  color: var(--t1);
  margin: 0 0 12px;
  font-weight: 700;
}
.ortho-page .faq-help .links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ortho-page .faq-help .links a {
  padding: 7px 14px;
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rp);
  font-size: 0.78rem;
  color: var(--tx2);
  text-decoration: none;
}
.ortho-page .faq-help .links a:hover {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}

/* Related chips */
.ortho-page .rel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ortho-page .rel-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  background: #f3fffe;
  border: 1px solid #a3ffe7;
  border-radius: var(--rp);
  font-size: 0.8rem;
  color: var(--t1);
  text-decoration: none;
  font-weight: 500;
  font-family: Montserrat-SemiBold;
}
.ortho-page .rel-chip:hover {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}

/* Cities */
.ortho-page .cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.ortho-page .city {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 11px 14px;
  font-size: 0.82rem;
  color: var(--tx2);
  text-decoration: none;
  line-height: 1.4;
}
.ortho-page .city:hover {
  background: var(--tl);
  border-color: var(--t);
  color: var(--t);
}
.ortho-page .city b {
  display: block;
  color: var(--t);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1px;
}

/* Glossary */
.ortho-page .glos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ortho-page .glos-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 16px;
}
.ortho-page .glos-card .ic {
  font-size: 1.55rem;
  margin-bottom: 6px;
  display: block;
}
.ortho-page .glos-card h4 {
 
  font-size: 0.94rem;
  color: var(--t1);
  margin: 0 0 5px;
  font-weight: 700;
}
.ortho-page .glos-card p {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* References */
.ortho-page .ref-section h3 {
 
  font-size: 1rem;
  color: var(--co);
  margin: 18px 0 10px;
  font-weight: 700;
}
.ortho-page .ref-section h3:first-child {
  margin-top: 0;
}
.ortho-page .ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ortho-page .ref-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 14px;
}
.ortho-page .ref-year {
  font-size: 0.72rem;
  color: var(--mu);
  font-weight: 600;
}
.ortho-page .ref-card h4 {
 
  font-size: 0.86rem;
  color: var(--t1);
  margin: 3px 0 5px;
  font-weight: 700;
  line-height: 1.35;
}
.ortho-page .ref-card p {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.ortho-page .ref-disclaim {
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff7e8;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  font-size: 0.82rem;
  color: var(--tx2);
  line-height: 1.65;
  font-family: Montserrat-Medium;
}
.ortho-page .ref-disclaim strong {
  color: var(--tx);
}

/* Stay healthy + final CTA */
.ortho-page .stay-healthy {
  background: linear-gradient(135deg, var(--t), var(--tm));
  color: #fff;
  border-radius: var(--rl);
  padding: 30px 36px;
  text-align: center;
}
.ortho-page .stay-healthy h3 {
 
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 9px;
  font-weight: 700;
}
.ortho-page .stay-healthy p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 15px;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ortho-page .stay-healthy a {
  display: inline-block;
  background: var(--co);
  color: #fff;
  border-radius: var(--rp);
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.ortho-page .stay-healthy .meta {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
}

.ortho-page .final-cta {
  background: var(--cr);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 34px 38px;
  text-align: center;
}
.ortho-page .final-cta h2 {
  font-size: 1.55rem;
  color: var(--t);
  margin: 0 0 10px;
  font-weight: 700;
}
.ortho-page .final-cta h2 em {
  font-style: italic;
  color: var(--co);
  font-weight: 700;
}
.ortho-page .final-cta p {
  font-size: 0.95rem;
  color: var(--tx2);
  margin: 0 0 18px;
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.ortho-page .final-cta .ctas {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ortho-page .final-cta .ctas a {
  padding: 11px 22px;
  border-radius: var(--rp);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ortho-page .final-cta .ctas .c1 {
  background: var(--co);
  color: #fff;
}
.ortho-page .final-cta .ctas .c2 {
  background: var(--wa);
  color: #fff;
}
.ortho-page .final-cta .ctas .c3 {
  background: var(--wh);
  color: var(--t);
  border: 1.5px solid var(--t);
}
.ortho-page .final-cta .meta {
  font-size: 0.78rem;
  color: var(--mu);
  margin-top: 14px;
}

/* Sticky bottom */
.ortho-page .sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--bd);
  box-shadow: 0 -4px 18px rgba(10, 61, 56, 0.1);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.ortho-page .sb-l {
  font-size: 0.86rem;
  color: var(--tx);
}
.ortho-page .sb-l b {
  color: var(--co);
  font-weight: 700;
}
.ortho-page .sb-l span {
  color: var(--mu);
  font-size: 0.78rem;
  margin-left: 8px;
}
.ortho-page .sb-r a {
  background: var(--co);
  color: #fff;
  border-radius: var(--rp);
  padding: 10px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

/* Modals */
.ortho-page .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(31, 24, 18, 0.55);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.ortho-page .modal.show {
  display: flex;
}
.ortho-page .modal-card {
  background: #fff;
  border-radius: var(--rl);
  max-width: 480px;
  width: 100%;
  padding: 26px;
  position: relative;
  box-shadow: var(--shl);
  max-height: 90vh;
  overflow-y: auto;
}
.ortho-page .modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--mu);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.ortho-page .modal-close:hover {
  background: var(--cr);
}
.ortho-page .modal-card h3 {
 
  font-size: 1.15rem;
  color: var(--t);
  margin: 0 0 5px;
  font-weight: 700;
}
.ortho-page .modal-card .ms {
  font-size: 0.85rem;
  color: var(--mu);
  margin-bottom: 14px;
}
.ortho-page .modal-card label {
  display: block;
  font-size: 0.74rem;
  color: var(--mu);
  font-weight: 600;
  margin-bottom: 4px;
}
.ortho-page .modal-card input,
.ortho-page .modal-card select {
  width: 100%;
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 0.86rem;
  outline: none;
  margin-bottom: 10px;
}
.ortho-page .modal-card button.submit {
  background: var(--co);
  color: #fff;
  border: none;
  border-radius: var(--rp);
  width: 100%;
  padding: 11px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5px;
}
.ortho-page .modal-card .mfoot {
  font-size: 0.72rem;
  color: var(--mu);
  text-align: center;
  margin-top: 10px;
}

.ortho-page .discount-modal .modal-card {
  max-width: 420px;
  text-align: center;
  padding: 30px 26px;
  background: linear-gradient(135deg, #fff, #fcf3e8);
}
.ortho-page .discount-modal img {
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
}
.ortho-page .discount-modal h3 {
  font-size: 1.35rem;
}
.ortho-page .discount-modal .pct {
 
  font-size: 2.6rem;
  color: var(--co);
  font-weight: 700;
  line-height: 1;
  margin: 6px 0;
}
.ortho-page .discount-modal .code {
  display: inline-block;
  background: #fff;
  border: 2px dashed var(--co);
  color: var(--co);
  padding: 8px 24px;
  
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 8px;
  margin: 9px 0 14px;
  letter-spacing: 0.1em;
}
.ortho-page .discount-modal a {
  display: inline-block;
  background: var(--co);
  color: #fff;
  border-radius: var(--rp);
  padding: 10px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

#cb-modal{
  display:none;
}

#cb-modal.active{
  display:flex;
}

@media (max-width: 1024px) {
  .ortho-page .hero-in {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ortho-page .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ortho-page .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ortho-page .pillar-grid,
  .ortho-page .wp-grid,
  .ortho-page .pers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ortho-page .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ortho-page .ins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ortho-page .outcomes {
    grid-template-columns: repeat(2, 1fr);
  }
  .ortho-page .journey {
    grid-template-columns: repeat(5, 1fr);
    font-size: 0.86em;
  }
  .ortho-page .ref-grid,
  .ortho-page .testi-grid,
  .ortho-page .glos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ortho-page .triage-grid,
  .ortho-page .calc-grid,
  .ortho-page .proto-grid,
  .ortho-page .twocol {
    grid-template-columns: 1fr;
  }
  .ortho-page .cities {
    grid-template-columns: repeat(3, 1fr);
  }
  .ortho-page .comp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ortho-page .cond-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .ortho-page .doc-grid,
  .ortho-page .price-grid,
  .ortho-page .cond-grid,
  .ortho-page .pillar-grid,
  .ortho-page .wp-grid,
  .ortho-page .pers-grid,
  .ortho-page .awards-grid,
  .ortho-page .ins-grid,
  .ortho-page .outcomes,
  .ortho-page .journey,
  .ortho-page .ref-grid,
  .ortho-page .testi-grid,
  .ortho-page .glos-grid,
  .ortho-page .cities,
  .ortho-page .comp-grid {
    grid-template-columns: 1fr;
  }
  .ortho-page .tldr ul,
  .ortho-page .hero ul {
    grid-template-columns: 1fr;
  }
  .ortho-page .float-side {
    bottom: 78px;
    right: 12px;
  }

  .ortho-page .final-cta,
  .ortho-page .stay-healthy {
    padding: 24px 22px;
  }
}

/* Minimal master-page stand-in for preview only (real page uses Header.master) */
.mp-nav {
  background: #0a3d38;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 300;
}
.mp-nav-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
}
.mp-logo b {
  font-style: normal;
  font-weight: 500;
}
.mp-links {
  display: flex;
  gap: 18px;
}
.mp-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
}
.mp-links a:hover {
  color: #fff;
}
.mp-foot {
  background: #0f4c46;
  color: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  margin-top: 30px;
}
.mp-banner {
  background: #f4a55a;
  color: #0a3d38;
  text-align: center;
  padding: 7px;
  font-size: 0.78rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .mp-links {
    display: none;
  }
}


.hero-orb1 {
    background: radial-gradient(circle, rgb(144 98 2) 0%, transparent 65%);
}

.hb-ind {
    margin-bottom: 20px;
}

.cf-bg {
    background: linear-gradient(2deg, #fff8e6 0%, #fffffe 100%);
}

.diet_hdr {
    width: 72%;
}

.sec-hdr-btns {
    align-self: center;
}
.pbtns a.btn.btn-teal, .pbtns a.btn.btn-green {
    color: #fff;
}

.pfeats li{
  color: var(--muted);
}

.conditions-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:24px;
  margin-top:40px;
}

.condition-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 16px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 22px;
    transition: all .35s ease;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.condition-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#00b894,#00cec9);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s ease;
}

.condition-card:hover{
  transform:translateY(-6px);
  border-color:#bcefe8;
  box-shadow:0 18px 45px rgba(0,184,148,.12);
}

.condition-card:hover::before{
  transform:scaleX(1);
}

.condition-icon{
  min-width:58px;
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e8fffb,#dff7ff);
  color:#00a884;
  box-shadow:0 8px 20px rgba(0,168,132,.10);
}

.condition-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.3;
}

.condition-content p {
    margin: 0;
    font-size: 13px;
}

.condition-icon{
  font-size: 30px;
}

 em {
    font-style: italic;
    color: var(--co);
    font-weight: 700;
}

.cmn_btn {
    text-align: center;
    margin-top: 30px;
}

.cmn_btn a{
  text-transform: capitalize;
}

.tble_cmre table.cmp .yes {
    background: #e5efea;
    border-bottom: 1px solid #d2e7e3;
}

.tble_cmre .cmp-wrap tbody tr td {
    font-family: Montserrat-SemiBold;
}

.frm_teen .segments-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    width: 100%;
  
}

.segment-card {
   
    padding: 24px 10px;
   
}

.seg-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 14px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    background: #e8673a;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(232, 103, 58, .25);
    justify-content: center;
    margin-top: 20px;
}

/* Right → Left Fill Animation */

.seg-link::before{
  content:"";
  position:absolute;
  top:0;
  right:0;

  width:0;
  height:100%;

  background:linear-gradient(
    135deg,
    #ff8a5c,
    #d94f1f
  );

  transition:width .45s ease;
  z-index:-1;
}

.seg-link:hover::before{
  width:100%;
  left:0;
}

.seg-link:hover{
  transform:translateY(-4px);

  box-shadow:
  0 18px 40px rgba(232,103,58,.35);
}

.seg-link::after {
    content: "→";
    transition: .3s ease;
    font-family: fantasy;
}

.seg-link:hover::after{
  transform:translateX(5px);
}

.seg-link::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    #ff9a73,
    #d94f1f
  );

  transform:translateX(100%);
  transition:transform .45s ease;

  z-index:-1;
}

.seg-link:hover::before{
  transform:translateX(0);
}

span.seg-label {
    font-family: Montserrat-Medium;
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
        color: var(--co);
}

.frm_teen .segment-card ul li {
    font-size: 14px;
}
.frm_teen{
background: #ffede7;
}


/*==================================
EDITORIAL SECTION
===================================*/

.diet_editorial_sec{
    position:relative;
}

.editorial-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
    margin-bottom:40px;
}

.editorial-process-card{
    background: #fff3ef;
    border: 1px solid #ffc3ae;
    border-radius:24px;
    padding:28px 22px;
    text-align:center;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.editorial-process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.editorial-process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--co);
}

.editorial-process-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background: #ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-size:2rem;
}

.editorial-process-card h4{
    color:var(--t1);
    font-size:1rem;
    font-weight:700;
    margin-bottom:10px;
}

.editorial-process-card p{
    color:var(--mu);
    font-size:.86rem;
    line-height:1.8;
    margin:0;
}


.ortho-page .award-card span.ai {
    background: #fffffe;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ffe6b3;
    box-shadow: rgb(0 0 0 / 4%) 0px 3px 8px;
}

.ortho-page .award-card {
    background: #fffdf4;
    border: 1px solid #ffe6b3;

}

.rel_nmbr .out-card {
    margin-top: 20px;
    background: #ffede7;
    border: 1px solid #e8673a;
    border-top: 4px solid #e8673a;
}

.rel_nmbr .out-card .out-num {
    color: #e8673a;
    font-size: 28px;
    margin-bottom: 10px;
}

.ortho-page .out-card p{
  color: var(--muted);
}

.spec_net_sec {
    padding: 70px 0;
    background: var(--bg);
}
.spec_head{
  text-align:center;
  max-width:900px;
  margin:0 auto 40px;
}

.spec_tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--border);
    color: var(--t1);
    font-weight: 600;
    font-size: .82rem;
    margin-bottom: 14px;
}

.spec_title{
  margin-bottom:10px;
  color:var(--t1);
}

.spec_title em{
  font-style:normal;
  color:var(--accent);
}

.spec_desc{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.7;
}

/* GRID */
.spec_chip_grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

/* CHIP */
.spec_chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  text-decoration:none;
  color:var(--t1);
  font-size:.88rem;
  background:#fff;
  transition:.25s ease !important;
  position:relative;
  overflow:hidden;
}

/* ICON */
.spec_chip span{
  font-size:1rem;
}

/* ARROW */
.spec_chip i{
  font-style:normal;
  opacity:0;
  transform:translateX(-6px);
  transition:.25s ease;
  color:var(--accent);
}

/* HOVER */
.spec_chip:hover{
  border-color:var(--accent);
  background:var(--accent-soft);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(232,103,58,0.10);
}

.spec_chip:hover i{
  opacity:1;
  transform:translateX(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .spec_title{
    font-size:1.6rem;
  }

  .spec_chip_grid{
    justify-content:flex-start;
  }
}


.city_reach_sec{
  background:#fff;
  position:relative;
  overflow:hidden;
  padding:90px 0;
}

.city_reach_sec::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(255,255,255,.45);
  border-radius:50%;
  top:-180px;
  right:-120px;
  filter:blur(10px);
}

.city_head{
  text-align:center;
  margin-bottom:55px;
}

.city_head h2{

  line-height:1.15;
  margin-bottom:16px;
}

.city_head p{
  max-width:760px;
  margin:auto;
  color:#6b7280;
  font-size:1rem;
}

.city_grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  position:relative;
  z-index:2;
}
.newsletter small {
   
    font-family: Montserrat-Medium;
}
.city_card{
  background:#fff;
  backdrop-filter:blur(10px);
 border: 1px solid rgb(231 231 231 / 90%);
  border-radius:24px;
      padding: 12px 20px;
  display:flex;
  align-items:center;
  gap:18px;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  transition:.35s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.city_card:hover{
  transform:translateY(-6px);
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.1);
}

.city_card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.4));
  opacity:0;
  transition:.3s ease;
}

.city_card:hover::after{
  opacity:1;
}

.city_icon{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:18px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.city_content{
  flex:1;
}

.city_content h4{
  margin:0 0 1px;
  font-size:1.08rem;

  font-weight:700;
}

.city_content p{
  margin:0;
  color:#6b7280;
  font-size:13px;
  line-height:1.5;
}

.city_arrow{
  font-size:1.1rem;
  color:#111827;
  transition:.3s ease;
}

.city_card:hover .city_arrow{
  transform:translate(4px,-4px);
}

.highlight_city{
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#fff;
}

.highlight_city .city_content h4,
.highlight_city .city_content p,
.highlight_city .city_arrow{
  color:#fff;
}

.highlight_city .city_icon{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.tcm-footer .tcm-btn-primary {
    color: #fff;
}

#cb-modal{
  display:none;
}

#cb-modal.active{
  display:flex;
}

.ortho-page a:hover strong{
  color: #fff;
}

.float-btn.call {
    background: var(--c-ink);
}

.ortho-page .float-call {
    background: #ffff;
}

@media(max-width: 767px){
	.cmn_grid {
        grid-template-columns: inherit !important;
    }
	.conditions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.condition-card{
	    display: block;
}

.condition-icon {
 
    margin-bottom: 10px;
}

.editorial-process-grid {
  
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;

}

.editorial-process-card {
  
    padding: 22px 15px;
  
}

.ortho-page .ins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.ortho-page .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.ortho-page .award-card {
 
    flex-wrap: wrap;
}
.ortho-page .outcomes {
        grid-template-columns: repeat(2, 1fr);
    }
	.ortho-page .comp-grid {

    grid-template-columns: repeat(2, 1fr);

}

.city_grid {
  
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
   
}

.city_card{
	    display: block;
}

.city_icon{
	margin-bottom: 15px;
}
.why_cnslt_img {
  
    overflow: hidden;
}
}