@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

/* FLOSS Dental - Delray – Stylesheet */

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--outfit_font);
  background: #1F1F1F;
  color: #ddd;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--playfair_font);
}



img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

/* ── VARS ── */
:root {
  --red: #F35A35;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --light: #f2f0ec;
  --cream: #f0e9df;
  --white: #fff;
  --muted: #888;
  --serif: 'Cormorant Garamond', Georgia, serif;
  /* --playfair_font: "Playfair Display", serif; */
  --playfair_font: "Playfair", serif;
  --outfit_font: "Outfit", sans-serif;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 24px;
}

.nav-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Burger — left side, mobile only */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  order: -1;
  transition: background .2s;
}

.burger:hover {
  background: rgba(255, 255, 255, .06);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.desktop-nav ul li {
  position: relative;
}

.desktop-nav ul li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1%;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
  white-space: nowrap;
}

.desktop-nav ul li>a:hover {
  color: #fff;
}

.desktop-nav ul li>a .chevron {
  transition: transform .25s;
  opacity: .6;
}

/* Mobile nav panel — hidden by default, lives outside header */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(320px, 96vw);
  background: #0e0e0e;
  border-right: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  z-index: 1099;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  padding: 0;
  /* Hidden on desktop */
  visibility: hidden;
}

.nav.open {
  transform: translateX(0);
  visibility: visible;
}

.nav-header {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(3px);
  z-index: 1098;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

/* Call button — right side */
.btn-call {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #fff;
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
  margin-left: 8px;
}

.btn-call:hover {
  background: transparent;
  color: #fff;
}

/* ── DESKTOP DROPDOWN (hover, >1100px) — two-panel ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(13, 13, 13, .98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  width: 486px;
  display: flex;
  overflow: hidden;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

@media(min-width:1101px) {

  .desktop-nav ul li:hover .nav-dropdown,
  .desktop-nav ul li:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav {
    display: none !important;
  }
}

/* Left category list */
.nd-cats {
  width: 205px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .025);
  border-right: 1px solid rgba(255, 255, 255, .06);
  padding: 10px 0;
}

.nd-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px 11px 18px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  cursor: default;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
  gap: 8px;
}

.nd-cat svg {
  flex-shrink: 0;
  opacity: .35;
  transition: opacity .15s;
}

.nd-cat:hover,
.nd-cat.active {
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border-left-color: var(--red);
}

.nd-cat.active svg,
.nd-cat:hover svg {
  opacity: .75;
}

/* Right service links */
.nd-panel {
  flex: 1;
  padding: 14px 10px;
  min-height: auto;
}

.nd-group {
  display: none;
  flex-direction: column;
}

.nd-group.active {
  display: flex;
}

.nd-group.active a:not(:last-child) {
  border-bottom: 1px solid #fffc;
  border-radius: unset;
}

.nd-group a {
  padding: 9px 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  border-radius: 7px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nd-group a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

/* (legacy col styles kept for mobile accordion) */
.nav-dropdown-col a:hover::before {
  opacity: 1;
}

/* ══════════════════════════════════
   MOBILE NAV (≤1100px)
══════════════════════════════════ */
@media(max-width:1100px) {
  .burger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  /* Overlay */
  .nav-overlay {
    display: block;
    opacity: 0;
    pointer-events: none;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Show mobile nav panel */
  .nav {
    visibility: visible;
  }

  /* Panel header with logo + close */
  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    flex-shrink: 0;
  }

  .nav-logo img {
    height: 50px;
    width: auto;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgb(255 255 255);
    color: #1f1f1f;
    transition: background .2s, color .2s;
  }

  .nav-close:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
  }

  /* Nav list */
  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
  }

  .nav ul li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    font-size: .92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    transition: color .2s, background .2s;
  }

  .nav ul li>a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .03);
  }

  .nav ul li>a .chevron {
    opacity: .5;
    transition: transform .25s;
  }

  .nav ul li.dropdown-open>a .chevron {
    transform: rotate(180deg);
  }

  /* Mobile nested accordion dropdown */
  .nav .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    pointer-events: none;
    display: none;
    background: rgba(255, 255, 255, .02);
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    flex-direction: column;
    padding: 4px 0 8px;
    transition: none;
  }

  .nav ul li.dropdown-open .nav-dropdown {
    display: flex;
    pointer-events: auto;
  }

  /* Category row (trigger button) */
  .mob-cat-item {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
  }

  .mob-cat-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 22px 13px 28px;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 8px;
    transition: color .18s, background .18s;
  }

  .mob-cat-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, .03);
  }

  .mob-chevron {
    flex-shrink: 0;
    opacity: .45;
    transition: transform .25s;
  }

  .mob-cat-item.open .mob-cat-trigger {
    color: #fff;
  }

  .mob-cat-item.open .mob-chevron {
    transform: rotate(180deg);
    opacity: .8;
  }

  /* Collapsible service links */
  .mob-cat-links {
    display: none;
    flex-direction: column;
    padding: 2px 0 8px;
    background: rgba(0, 0, 0, .15);
  }

  .mob-cat-item.open .mob-cat-links,
  .about-nav-dropdown .mob-cat-links {
    display: flex;
  }

  .mob-cat-links a {
    padding: 9px 22px 9px 42px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    transition: color .15s, background .15s;
    white-space: normal;
  }

  .mob-cat-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .04);
  }

  .header .logo {
    order: 1;
  }

  .header .btn-call {
    order: 2;
    margin-left: auto;
  }

  .header .burger {
    order: 3;
  }

  .nav {
    left: auto;
    right: 0;
    transform: translateX(100%);
  }
}

@media(max-width: 991px) {
  .header {
    padding: 15px 24px;
  }
}

@media(max-width:767px) {
  .btn-call {
    display: none;
  }

  .header .burger {
    margin-left: auto;
  }

  .logo img {
    height: 60px;
  }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  height: 772px;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--dark);
  position: relative;
  overflow: hidden;
  /*padding-bottom: 0;*/
}

.hero_container {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr 1fr;
}

.hero-photo {
  position: relative;
  min-height: 480px;
  background: #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--playfair_font);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-desc {
  font-size: .92rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 440px;
}

.hero-features {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.8rem;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: rgba(255, 255, 255, .75);
  max-width: 267px;
  width: 100%;
}

.hero-feat svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, .5);
}

.hero-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .06em;
  justify-content: center;
  color: #fff;
  background: transparent;
  transition: all .2s;
  white-space: nowrap;
}

.btn-hero:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
}

.btn-hero-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-hero-primary:hover {
  background: #b82a15;
  border-color: #b82a15;
}

.hero-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 50, 28, .45);
  transition: transform .2s, box-shadow .2s;
}

.hero-chat:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(212, 50, 28, .6);
}

@media only screen and (max-width: 767px) {
  .hero_container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 991px) {
  .hero-feat {
    font-size: 17px;
  }
}

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats {
  background: var(--dark);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem)
}

.stats .inner {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--outfit_font);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat span {
  display: block;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1%;
  color: #fff;
  margin-bottom: .6rem;
}

.stat p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  text-align: center
}

/* ══════════════════════════════════
   HOW FLOSS USES AI
══════════════════════════════════ */
.ai-section {
  background: var(--dark);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.ai-inner {
  max-width: 1680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: clamp(2.5rem, 4vw, 3.5rem);
}

.ai-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.ai-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  line-height: 1.2;
}

.ai-header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 519px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}

.ai-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.4;
}

.btn-ai-more {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1.5px solid #fff;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  transition: background .2s, border-color .2s;
  color: #1F1F1F;
  background-color: #fff;
}

.btn-ai-more:hover {
  background: transparent;
  color: #fff;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ai-card {
  background: var(--dark3);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset -5px -5px 14px rgba(255, 255, 255, 0.02);
}

.ai-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #222;
}

.ai-img img {
  border-radius: 0
}

.ai-card-body {
  padding: 1rem 1.1rem 1.3rem;
  text-align: center;
}

.ai-card h3 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: .4rem;
}

.ai-card p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.3;
}


@media only screen and (max-width: 1100px) {
  .ai-header-right {
    margin-left: 0;
  }
}


/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  background: var(--dark)
}

.services-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem) 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.services-top h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: 24px;
}

.services-top p {
  font-size: 18px;
  color: #fffc;
  max-width: 876px;
  margin: 0 auto;
}

.services-body {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5.5rem);
  padding-top: 0;
  padding-bottom: 0;
}

.services-img {
  aspect-ratio: 3/4;
  background: var(--dark3);
  overflow: hidden;
}

.services-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.services-list {
  padding: 2.5rem 0 0 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.services-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 1rem 22px 0;
  font-size: 26px;
  color: #fffc;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: color .2s;
  cursor: pointer;
  line-height: normal;
  transition: 1s;
}

.services-list li a:hover {
  color: var(--red);
}

.services-list li:hover {
  color: #fff
}

.arr {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0
}

.services-list span.arr {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 120px;
  padding: 8px;
  transition: 1s;
}

.services-list li a:hover span.arr {
  background-color: var(--red);
  border-color: var(--red);
  transition: 1s;
}

.services-list li a:hover span.arr img {
  transform: rotate(-35deg);
}

.services-list li a span.arr img {
  transition: 1s;
}

@media only screen and (max-width: 575px) {
  .services-list li {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-list li {
    font-size: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-list li {
    font-size: 23px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .services-list li {
    font-size: 24px;
  }
}


/* ══════════════════════════════════
   EMERGENCY
══════════════════════════════════ */
.emergency {
  background: linear-gradient(270deg, rgba(241, 237, 233, 0) 0%, rgba(241, 237, 233, 0.6) 16.48%, #F1EDE9 40.87%, #F1EDE9 62.02%, rgba(241, 237, 233, 0.6) 82.74%, rgba(241, 237, 233, 0) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.emergency-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.emergency-inner h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  color: #1F1F1F;
  margin-bottom: 22px;
  line-height: 1.15;
}

.emergency-inner>p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.8);
  margin-bottom: 1.75rem;
  line-height: 1.7
}

.emg-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.25rem
}

.btn-emg-call {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: background .2s;
}

.btn-emg-call:hover {
  background: #F35A35;
}

.btn-emg-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, .3);
  color: #1F1F1F;
  font-size: 18px;
  font-weight: 400;
  transition: background .2s, border-color .2s;
}

.btn-emg-outline:hover {
  background: rgba(0, 0, 0, .07)
}

/* Bot */
.bot-widget {
  background: #fff;
  border: 2px dashed rgba(243, 90, 53, 0.5);
  ;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  max-width: 674px;
  margin: 0 auto;
}

.bot-widget span {
  display: block;
  text-align: left;
  font-size: 26px;
  color: #1F1F1F;
  font-weight: 500;
  margin-bottom: 20px;
}

.bot-widget-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem
}

.bot-robot {
  width: auto;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-robot img {
  width: auto;
  max-width: 122px;
  height: 130px;
  object-fit: contain
}

.bot-robot-fallback {
  display: none;
  font-size: 2.8rem;
  align-items: center;
  justify-content: center;
}

.bot-body {
  flex: 1;
  text-align: left;
  /* background-color: #EFEBE7; */
  padding: 13px 24px;
  border-radius: 10px;
  background-image: url(/assets/images/bkg_shape_img.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}

.bot-body p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.8);
  margin-bottom: .75rem;
  font-weight: 500;
}

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

.bot-chips button {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 18px;
  color: #444;
  background: #fff;
  transition: all .2s;
}

.bot-chips button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.bot-chips button:hover:not(.active) {
  border-color: var(--red);
  color: var(--red)
}

@media only screen and (max-width: 575px) {
  .bot-widget-inner {
    flex-wrap: wrap;
  }

  .bot-robot {
    width: 100%;
  }

  .bot-body {
    width: 100%;
  }
}

/* ══════════════════════════════════
   INSURANCE
══════════════════════════════════ */
.insurance {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.insurance h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .6rem;
}

.insurance p {
  font-size: 18px;
  color: #FFFFFF;
  max-width: 876px;
  width: 100%;
  margin: auto;
  margin-bottom: 3rem;
}

.ins-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1594px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

.ins-logo {
  padding: 8px 20px;
  /* border: 1px solid rgba(255, 255, 255, .1); */
  border-radius: 5px;
  min-width: 130px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  /* text-transform: uppercase; */
  background-color: #fff;
}

/* ══════════════════════════════════
   DOCTOR
══════════════════════════════════ */
.doctor {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(3rem, 6vw, 5.5rem);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.doc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 2;
  display: none;
}

.doc-arrow:hover {
  background: rgba(255, 255, 255, .12)
}

.doc-prev {
  left: 16px
}

.doc-next {
  right: 16px
}

.doctor-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.doc-content {
  max-width: 584px;
  width: 100%;
}

.doc-photo {
  /* aspect-ratio: 3/4; */
  /* border-radius: 12px; */
  /* overflow: hidden;
  background: var(--dark4); */
  /* position: relative; */
  width: 100%;
  max-width: 576px;
  height: 100%;
  margin-right: 0;
  margin-left: auto;
  border-radius: 24px;
}

.doc-photo img {
  /* position: absolute; */
  /* inset: 0; */
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

/* .doc-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent 60%);
} */

.doc-content h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: #fff;
  margin-bottom: .4rem;
  font-weight: 400;
}

.doc-content h3 {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: .03em;
  margin-bottom: 1.25rem;
  font-family: var(--outfit_font) !important;
}

.doc-content p {
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: .85rem
}

.btn-learn {
  display: inline-block;
  margin-top: .5rem;
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .07em;
  /* text-transform: uppercase; */
  color: var(--red);
  transition: all .2s;
  background-color: #fff;
}

.btn-learn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06)
}

.doc-content a.btn-learn {
  margin-top: 20px;
}

@media only screen and (max-width: 991px) {
  .doctor {
    padding: 50px 24px !important;
  }

  .doctor-inner {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  .doctor-inner .doc-content {
    order: 2;
    max-width: 100%;
  }

  .doctor-inner {
    gap: 30px;
  }

  .doctor-inner .doc-photo {
    order: 1;
    margin-left: 0;
    margin-right: auto;
    height: auto;
  }

  .doc-photo img {
    height: auto;
  }

  .services-list li a {
    font-size: 20px;
  }

  .ai-inner {
    padding: 40px 25px;
  }
}

/* ══════════════════════════════════
   PACKAGES
══════════════════════════════════ */
.packages {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) 24px;
  overflow: hidden;
}

.pkg-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0;
}

.pkg-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.pkg-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.pkg-carousel {
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  max-width: 1500px;
  width: 100%;
  margin: auto;
}

.pkg-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.pkg-featured {
  /* transform: scale(1.1) !important; */
  padding-top: 100px;
  overflow: hidden;
  margin-top: -40px;
}

.pkg-featured a.btn-pkg {
  margin-top: 80px;
}

.pkg-popular {
  position: absolute;
  top: 18px;
  left: -34px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  /* text-transform: uppercase; */
  transform: rotate(-35deg);
  width: 148px;
  text-align: center;
}

.pkg-card h3 {
  font-family: var(--outfit_font);
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.25;
  text-align: center;
}

.pkg-price {
  font-family: var(--outfit_font);
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.pkg-per {
  font-size: 16px;
  color: #fff;
  margin-top: 0;
  text-align: center;
}

.pkg-card>p {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.pkg-card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.pkg-card ul li {
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  padding-top: 10px;
  line-height: normal;
}

/* .pkg-arrow removed — navigation handled by Owl Carousel */

.btn-pkg {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  font-size: 18px;
  font-weight: 500;
  color: var(--red);
  background-color: #fff;
  transition: background .2s, border-color .2s;
  margin-top: 50px;
  line-height: normal;
}

.btn-pkg:hover {
  background: rgba(255, 255, 255, .07)
}


@media only screen and (max-width: 767px) {
  .pkg-card h3 {
    font-size: 20px;
  }

  .pkg-card>p {
    font-size: 16px;
  }

  .pkg-card ul li {
    font-size: 16px;
  }
}


/* ══════════════════════════════════
   TRANSFORMATIONS
══════════════════════════════════ */
.transforms {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.transforms-label {
  font-size: 18px;
  letter-spacing: 2%;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: .5rem;
  line-height: normal;
}

.transforms h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}

.transforms-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tr-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.tr-arrow:hover {
  background: rgba(255, 255, 255, .12)
}

.transforms-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  gap: 12px;
}

.tr-card {
  flex: 0 0 calc(25% - 9px);
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark3);
}

.tr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tr-dots {
  display: flex;
  justify-content: center;
  gap: 7px
}

.tr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark4);
  display: inline-block;
  transition: background .2s;
}

.tr-dot.active {
  background: var(--red)
}

/* ══════════════════════════════════
   IMPLANTS
══════════════════════════════════ */
.implants {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.implants-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.implants-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.implants-text>p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.8);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.7
}

.implants-text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.implants-text ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(31, 31, 31, 0.8);
}

.implants-text ul li::before {
  content: '';
  border: 1px solid rgba(31, 31, 31, 0.8);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.btn-schedule {
  display: inline-block;
  padding: 12px 24px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: normal;
  transition: background .2s;
  line-height: normal;
}

.btn-schedule:hover {
  background: transparent;
  color: var(--red);
}

.implants-img {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
}

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

/*-------------------- Insurance Bar --------------------*/
.ins-bar {
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: 101px 0;
}

.ins-bar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ticker-bar {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 60s linear infinite;
}

.ticker-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  /* text-transform: uppercase; */
  color: #fff;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.ticker-dot {
  color: var(--orange);
  font-size: 13px;
  display: none;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item img {
  width: 180px;
  max-width: fit-content;
  object-fit: contain;
  height: auto;
}

@media only screen and (max-width: 991px) {
  .ins-bar {
    padding: 50px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1680px) {
  .ins-bar {
    padding: 80px 0;
  }
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(3rem, 6vw, 5.5rem) 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.testimonials h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: normal;
  margin-bottom: 2rem;
}

/* Testimonials — Owl Carousel handles layout */

/* @keyframes testi-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
} */

.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: left;
  width: 100%;
}

.testi-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: .85rem;
}

.testi-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
  margin-bottom: 8px;
}

.testi-stars {
  color: #F35A35;
  font-size: 17px;
  margin-top: 1px;
  line-height: 1;
}

.testi-g {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 30px;
  color: var(--muted);
  line-height: normal;
  justify-content: right;
  margin-top: 24px;
}

.testi-card p {
  font-size: 18px;
  color: rgb(255 255 255 / 0.8);
  line-height: 1.4;
  font-weight: 300;
}

/* ══════════════════════════════════
   TRANSFORM CTA
══════════════════════════════════ */
.cta-section {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
}

.cta-inner {
  max-width: 864px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: .85rem;
}

.cta-inner>p {
  font-size: 20px;
  color: #fffc;
  margin-bottom: 2.5rem;
  line-height: 1.7
}

.cta-photos {
  position: relative;
  height: 500px;
  width: 100%;
  max-width: 1380px;
  margin: auto;
  overflow: hidden;
}

.cp {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .5);
  background: var(--dark4);
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 280px;
}

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

.cp1 {
  bottom: 0;
  left: 40px;
  z-index: 1;
  transform: rotate(-12deg);
}

.cp2 {
  top: 18px;
  left: 296px;
  z-index: 2;
  transform: rotate(-5deg);
}

.cp3 {
  top: 5px;
  left: 580px;
  z-index: 3;
  transform: rotate(0deg);
}

.cp4 {
  top: 18px;
  left: 860px;
  z-index: 2;
  transform: rotate(5deg);
}

.cp5 {
  bottom: 0;
  left: 1112px;
  z-index: 1;
  transform: rotate(12deg);
}

.btn-cta {
  display: flex;
  align-items: center;
  padding: 10px 26px;
  border-radius: 12px;
  border: 1.5px solid #fff;
  background-color: #fff;
  color: var(--red);
  font-size: 18px;
  font-weight: 500;
  transition: background .2s;
  margin: auto;
  width: 100%;
  max-width: fit-content;
  line-height: normal;
}

.btn-cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}



@media only screen and (max-width: 991px) {}

@media only screen and (min-width: 992px) and (max-width: 1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {}

@media only screen and (min-width: 1141px) and (max-width: 1280px) {
  .cta-photos {
    max-width: 1061px;
  }

  .cta-photos .cp {
    max-width: 170px;
    max-height: 230px;
  }

  .cp1 {
    left: 30px;
    bottom: 30px;
  }

  .cp2 {
    left: 206px;
  }

  .cp3 {
    left: 430px;
  }

  .cp4 {
    left: 650px;
  }

  .cp5 {
    left: 842px;
    bottom: 20px;
  }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta-photos {
    max-width: 1170px;
  }

  .cta-photos .cp {
    max-width: 190px;
    max-height: 250px;
  }

  .cp1 {
    left: 30px;
    bottom: 30px;
  }

  .cp2 {
    left: 236px;
  }

  .cp3 {
    left: 480px;
  }

  .cp4 {
    left: 720px;
  }

  .cp5 {
    left: 922px;
    bottom: 20px;
  }
}

/* ══════════════════════════════════
   FIRST VISIT
══════════════════════════════════ */
.first-visit {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: 0;
  padding-top: 0;
}

.fv-inner {
  max-width: 1680px;
  margin: 0 auto
}

.fv-card {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.fv-card h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #1F1F1F;
  margin-bottom: .85rem;
  line-height: 1.2;
}

.fv-card p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.8);
  line-height: 1.7;
  max-width: 1160px;
  width: 100%;
  margin: auto;
  margin-bottom: 32px;
}

.btn-fv {
  display: inline-block;
  padding: 11px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 500;
  transition: background .2s;
}

.btn-fv:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

/* ══════════════════════════════════
   OFFICE
══════════════════════════════════ */
.office {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) 24px;
  text-align: center;
}

.office h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: .6rem;
}

.office-sub {
  font-size: 18px;
  color: #fffc;
  margin-bottom: 60px;
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
}

.office-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
}

.office-map {
  border-radius: 14px;
  overflow: hidden;
  background: #2a2a2a;
  /* min-height: 360px; */
}

.office-map iframe {
  display: block;
  width: 100%;
  border: 0
}

.office-map img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.office-details {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.od-block h4 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  font-family: var(--outfit_font) !important;
  color: #fffc;
  margin-bottom: .45rem;
}

.od-block p {
  font-size: 20px;
  font-weight: 400;
  color: #fffc;
  line-height: 1.7
}

.od-block a {
  color: #ddd
}

.od-block a:hover {
  color: #fff
}

.od-block table {
  width: 100%;
  border-collapse: collapse
}

.od-block table td {
  font-size: 20px;
  font-weight: 400;
  color: #fffc;
  padding: 3px 0;
}

.od-block table td:last-child {
  text-align: right;
  font-weight: 500;
  color: #fff
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 24px;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 17px;
  font-weight: 500;
  background: #fff;
  transition: background .2s;
  align-self: flex-start;
}

.btn-directions:hover {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .od-block table tr {
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .od-block table td {
    font-size: 16px;
    text-align: left !important;
  }

  .od-block p {
    font-size: 17px;
  }

  .office-map iframe {
    height: 350px;
  }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--dark)
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 2.5rem) 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center
}

.footer-logo img {
  width: 150px;
  height: auto;
  object-fit: contain
}

.footer-tagline {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  max-width: 100%;
  text-align: right;
}

.footer-mid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.75rem clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 702px;
  margin-right: 0;
  margin-left: auto;
  width: 100%;
  text-align: left;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .14em;
  font-family: var(--outfit_font);
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-col a {
  font-size: 16px;
  color: #fff;
  transition: color .2s
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: #fffc;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: .6rem
}

.footer-bottom p {
  font-size: 14px;
  color: #fffc;
}

.footer-legal a {
  color: #fffc;
  transition: color .2s;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #fff
}

.footer-legal span {
  opacity: .35
}

@media only screen and (max-width: 700px) {
  .footer-bottom {
    justify-content: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 13px !important;
    text-align: center;
  }

}

@media only screen and (max-width: 767px) {
  .footer-tagline {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) {
  .footer-cols {
    justify-items: right;
  }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1024px) {
  .stats .inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .ai-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pkg-card {
    flex: 0 0 calc(50% - 8px)
  }

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

@media(max-width:1100px) {
  .hero {
    height: auto;
    grid-template-columns: 1fr
  }

  .hero-photo {
    height: 55vw;
    min-height: 240px;
    position: relative
  }

  .hero-photo img {
    position: absolute;
    inset: 0
  }

  .hero-content {
    padding: 2rem 1.5rem 3rem
  }

  .hero-features {
    flex-direction: column
  }

  .hero-btns {
    flex-direction: column
  }

  .hero-btns .btn-hero {
    text-align: center;
    justify-content: center
  }

  .ai-header {
    grid-template-columns: 1fr
  }

  .ai-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-body {
    grid-template-columns: 1fr
  }

  .services-img {
    width: fit-content;
    aspect-ratio: unset;
  }

  .services-img img {
    border-radius: 24px !important;
  }

  .services-list {
    padding: 1.5rem 0 0
  }

  .emg-btns {
    flex-direction: column;
    align-items: center
  }

  .doctor-inner {
    grid-template-columns: 1fr
  }

  /* image on top, content below on mobile */
  .doc-photo {
    aspect-ratio: 16/9;
    order: -1
  }

  .doc-content {
    order: 0;
  }

  .doc-content {
    max-width: 100% !important;
  }

  .doc-photo img {
    height: auto !important;
  }

  .transforms-wrap {
    padding: 0 1.5rem
  }

  .tr-card {
    flex: 0 0 calc(50% - 6px)
  }

  .implants-inner {
    grid-template-columns: 1fr
  }

  .cta-inner {
    grid-template-columns: 1fr
  }

  .cta-photos {
    display: none
  }

  .testi-card {
    flex: 0 0 260px
  }

  .pkg-card {
    flex: 0 0 calc(100% - 0px)
  }

  .cta-photos {
    width: 100%;
    height: 220px
  }

  .cp1,
  .cp5 {
    width: 90px;
    height: 125px
  }

  .cp2,
  .cp4 {
    width: 105px;
    height: 148px
  }

  .cp3 {
    width: 112px;
    height: 158px
  }

  .cp2 {
    left: 90px
  }

  .cp3 {
    left: 198px
  }

  .cp4 {
    left: 306px
  }

  .cp5 {
    left: 408px
  }

  .office-inner {
    grid-template-columns: 1fr
  }

  .footer-top {
    flex-direction: column;
    gap: 1rem
  }

  .footer-tagline {
    text-align: left;
    max-width: 100%
  }

  .footer-cols {
    grid-template-columns: repeat(3, 1fr)
  }

  .doc-arrow {
    display: none
  }
}

@media(max-width:600px) {
  .footer-cols {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .ai-card h3 {
    font-size: 20px;
  }
}

@media(max-width:480px) {
  .stats .inner {
    grid-template-columns: 1fr;
  }



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

  .tr-card {
    flex: 0 0 100%;
  }

  .hero-btns .btn-hero {
    font-size: .68rem;
    padding: 8px 12px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-mid {
    grid-template-columns: 1fr
  }

  .footer-cols {
    max-width: 100%;
  }
}

/* ══════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════ */
.page-hero {
  background: var(--dark2);
  padding: 80px clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: .74rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}

.page-breadcrumb a {
  color: var(--muted);
}

.page-breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: .85rem;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  margin-bottom: 10px;
}

/* ══════════════════════════════════
   TREATMENTS PAGE
══════════════════════════════════ */
.treatments-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.treatments-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4.5rem);
}

.treatment-category {}

.cat-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  /* text-transform: uppercase; */
  color: var(--red);
  margin-bottom: .6rem;
}

.cat-title {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.treatment-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: border-color .2s;
}

.treatment-card:hover {
  border-color: rgba(255, 255, 255, .18);
}

.tc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 50, 28, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treatment-card h3 {
  font-family: var(--outfit_font);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}

.treatment-card p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.65;
  flex: 1;
}

.btn-tc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 500;
  color: var(--red);
  margin-top: .25rem;
  transition: gap .2s;
}

.btn-tc:hover {
  gap: 9px;
}

/* treatments CTA banner */
.treatments-cta {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.treatments-cta h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: 24px;
}

.treatments-cta p {
  font-size: 16px;
  color: #fffc;
  max-width: 876px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.treatments-cta p a {
    color: #f35a35;
    transition: 1s;
}

.treatments-cta p a:hover {
    color: #ff8568;
}
/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-mission {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.about-mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mission-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-mission-text p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-mission-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark3);
}

.about-mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.value-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 2rem 1.75rem;
}

.value-num {
  font-family: var(--playfair_font);
  font-size: 2.5rem;
  color: var(--red);
  opacity: .4;
  line-height: 1;
  margin-bottom: .75rem;
}

.value-card h3 {
  font-family: var(--playfair_font);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .5rem;
}

.value-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════
   TECHNOLOGY PAGE
══════════════════════════════════ */
.tech-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.tech-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tech-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.tech-intro h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: .75rem;
}

.tech-intro p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.tech-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.tech-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark3);
}

.tech-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-card-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}

.tech-card-body h3 {
  font-family: var(--playfair_font);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.25;
}

.tech-card-body p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
}

.tech-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 50, 28, .12);
  border: 1px solid rgba(212, 50, 28, .25);
  font-size: .7rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .05em;
  /* text-transform: uppercase; */
  align-self: flex-start;
}

/* ══════════════════════════════════
   FINANCING PAGE
══════════════════════════════════ */
.financing-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.financing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.financing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.financing-intro h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: .75rem;
}

.financing-intro p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.financing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.fin-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fin-card h3 {
  font-family: var(--playfair_font);
  font-size: 1.15rem;
  color: #fff;
}

.fin-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.fin-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fin-card ul li {
  font-size: .83rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fin-card ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

.financing-insurance {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fi-text h3 {
  font-family: var(--playfair_font);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: .75rem;
}

.fi-text p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.fi-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fi-logo-badge {
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  /* text-transform: uppercase; */
}

/* ══════════════════════════════════
   TRAINING PAGE
══════════════════════════════════ */
.training-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.training-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.training-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.training-text p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.training-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark3);
}

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

.training-courses {
  max-width: 1100px;
  margin: 0 auto;
}

.training-courses h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.course-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.course-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  /* text-transform: uppercase; */
  align-self: flex-start;
}

.course-badge.online {
  background: rgba(52, 168, 83, .15);
  color: #34a853;
  border: 1px solid rgba(52, 168, 83, .25);
}

.course-badge.inperson {
  background: rgba(212, 50, 28, .12);
  color: var(--red);
  border: 1px solid rgba(212, 50, 28, .25);
}

.course-card h3 {
  font-family: var(--playfair_font);
  font-size: 1.05rem;
  color: #fff;
}

.course-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.course-meta {
  font-size: .75rem;
  color: #555;
  display: flex;
  gap: 12px;
}

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 1.25rem;
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ci-block h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--outfit_font);
  /* text-transform: uppercase; */
  color: var(--muted);
  margin-bottom: .4rem;
}

.ci-block p,
.ci-block a {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
}

.ci-block a:hover {
  color: #fff;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  height: auto;
  background: var(--dark3);
  margin-top: 1.5rem;
}

.contact-map iframe {
  width: 100%;
  border: 0;
  display: block;
}

.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.contact-form-wrap h3 {
  font-family: var(--playfair_font);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .88rem;
  color: #fff;
  font-family: var(--outfit_font);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 50, 28, .5);
}

.form-group select option {
  background: var(--dark3);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--outfit_font);
  transition: background .2s;
  margin-top: .5rem;
}

.btn-submit:hover {
  background: #F35A35;
}

/* Inner page responsive */
@media(max-width:1024px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

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

  .tech-card-img {
    aspect-ratio: 16/9;
  }
}

@media(max-width:768px) {
  .treatment-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-mission-inner {
    grid-template-columns: 1fr;
  }

  .training-inner {
    grid-template-columns: 1fr;
  }

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

  .financing-options {
    grid-template-columns: 1fr;
  }

  .financing-insurance {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 350px;
  }
}

@media(max-width:480px) {
  .treatment-cards {
    grid-template-columns: 1fr;
  }

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

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

/* ══════════════════════════════════
   SERVICE DETAIL PAGES
══════════════════════════════════ */
.service-content {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.service-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.service-main h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-main h3 {
  font-family: var(--playfair_font);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: #fff;
  margin: 2rem 0 .75rem;
}

.service-main p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 1.25rem 0 1.75rem;
}

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.service-benefit::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212, 50, 28, .15);
  border: 1px solid rgba(212, 50, 28, .35);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23d4321c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.service-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.25rem 0 1.75rem;
}

.service-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body h4 {
  font-family: var(--outfit_font);
  font-size: 16px;
  color: #fff;
  margin-bottom: .3rem;
}

.step-body p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-cta-box {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-cta-box h3 {
  font-family: var(--playfair_font);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

.sidebar-cta-box p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
}

.btn-sidebar-book {
  display: block;
  text-align: center;
  padding: 11px 20px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  transition: background .2s;
}

.btn-sidebar-book:hover {
  background: #F35A35;
}

.btn-sidebar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 500;
  color: #ddd;
  transition: border-color .2s, color .2s;
}

.btn-sidebar-call:hover {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.sidebar-info-box {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.sidebar-info-box h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1%;
  font-family: var(--outfit_font);
  color: var(--muted);
  margin-bottom: .85rem;
}

.sidebar-info-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-info-box ul li {
  font-size: 16px;
  color: #fffc;
}

.sidebar-info-box ul li a {
  color: #fffc;
  transition: color .2s;
}

.sidebar-info-box ul li a:hover {
  color: var(--red);
}

/* FAQ Section */
.service-faq {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.service-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.service-faq h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 1.1rem 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-q span {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
}

.faq-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fffc;
  transition: all .2s;
}

.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: .85rem 0 .25rem;
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* Responsive */
@media(max-width:900px) {
  .service-inner {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

/*----------------------------------------------*/
.comparison-content {
  margin: 0 6px;
}

.transformation-main {
  width: 100%;
  height: 100%;
}

.repid-smile-bg .comparison-main .comparison {
  padding-bottom: 92%;
}

.repid-smile-bg .comparison-main>* {
  padding: 0;
}

.comparison {
  width: 100%;
  padding-bottom: 64%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.home .comparison {
  padding-bottom: 54%;
}

.comparison-content p {
  font-size: 14px;
}

.figure {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background-image: var(--after-img);

}

.divisor {
  background-size: cover;
  position: absolute;
  width: 50%;
  -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
  bottom: 0;
  height: 100%;
  background-image: var(--before-img);
}

.divisor:before,
.divisor:after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 20px);
  background: #fff;
  z-index: 3;
}

.divisor:before {
  top: 0;
  -webkit-box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
}

.divisor:after {
  bottom: 0;
  -webkit-box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
}

figure.figure::before {
  position: absolute;
  content: "Before";
  top: auto;
  bottom: 10px;
  left: 10px;
  width: 57px;
  height: 24px;
  color: #f35a35;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  background-color: #EFF6F3;
  padding: 5px 8px;
  border-radius: 5px;
}

figure.figure::after {
  position: absolute;
  content: "After";
  top: auto;
  bottom: 10px;
  right: 10px;
  width: 48px;
  height: 24px;
  color: #f35a35;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  background-color: #EFF6F3;
  padding: 5px 8px;
  border-radius: 5px;
}

.divisor span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  border-radius: 100%;
}

.handle:before,
.handle:after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.handle:before {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.handle:after {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.comparison input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
  cursor: col-resize;
  border: none;
  max-width: inherit;
  padding: 0;
}

input[type=range]:focus,
input[type=range]:active {
  border: none;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: 0 0;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, .3);
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, .3);
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}

.comprison-before-after {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comprison-before-after>* {
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
}

@media only screen and (max-width: 1400px) {
  .comparison-content {
    margin: 0 15px;
  }
}

@media only screen and (max-width: 991px) {
  .comparison-content {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 575px) {
  .comparison-content {
    margin: 0;
  }
}

@media only screen and (max-width: 480px) {
  .comparison-content {
    padding: 0 !important;
  }
}

/* ══════════════════════════════════
   ABOUT PAGE – additional sections
══════════════════════════════════ */
.about-diff {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.about-diff-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-diff-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.diff-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.about-diff-img {
  border-radius: 16px;
  overflow: hidden;
}

.about-diff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Team section */
.team-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.team-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: .6rem;
}

.team-header p {
  font-size: .95rem;
  color: var(--muted);
}

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

.team-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color .2s;
}

.team-card:hover {
  border-color: rgba(255, 255, 255, .18);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--playfair_font);
  font-size: 1.4rem;
  color: var(--red);
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .3rem;
  line-height: 1.3;
}

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

/* About trust section */
.about-trust {
  background: var(--dark);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.about-trust-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-trust-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.about-trust-text p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
}

/* Careers reward section */
.careers-reward {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.careers-reward-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.careers-reward-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.careers-reward-text p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
}

/* FAQ intro paragraph */
.faq-intro {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

@media(max-width:900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-diff-inner {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════
   CAREERS PAGE
══════════════════════════════════ */
.careers-split {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.careers-split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.careers-col h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.careers-col p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.careers-col-solution {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.careers-pain-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.careers-pain-list li {
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
  padding-left: 1rem;
  position: relative;
}

.careers-pain-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.careers-check-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.careers-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.careers-check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Perks */
.perks-section {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.perks-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.perks-header {
  text-align: center;
  margin-bottom: 3rem;
}

.perks-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: .6rem;
}

.perks-header p {
  font-size: .95rem;
  color: var(--muted);
}

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

.perk-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: border-color .2s;
}

.perk-card:hover {
  border-color: rgba(255, 255, 255, .18);
}

.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 50, 28, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.perk-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}

.perk-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Process steps */
.process-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: .6rem;
}

.process-header p {
  font-size: .95rem;
  color: var(--muted);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  text-align: center;
  padding: 0 .5rem;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 50, 28, .15);
  border: 1px solid rgba(212, 50, 28, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  margin: 0;
  letter-spacing: .05em;
}

.process-step h3 {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}

.process-step p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
}

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin-top: 26px;
  align-self: flex-start;
}

/* Fit section */
.fit-section {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.fit-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.fit-col {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2.25rem 2rem;
}

.fit-col h3 {
  font-family: var(--playfair_font);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.fit-col ul {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.fit-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

.fit-col ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media(max-width:900px) {
  .careers-split-inner {
    grid-template-columns: 1fr;
  }

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

  .fit-inner {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    min-width: 100%;
  }
}

/* ══════════════════════════════════
   NEWS / BLOG PAGE
══════════════════════════════════ */
.news-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.news-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.news-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}

.news-card:hover {
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}

.news-card-featured {
  grid-column: span 2;
  flex-direction: row;
}

.news-card-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.news-date {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.news-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.news-cat {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  /* text-transform: uppercase; */
  color: var(--red);
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .2);
  border-radius: 4px;
  padding: 2px 8px;
}

.news-title {
  font-family: var(--playfair_font);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
  flex: 1;
}

.news-card-featured .news-title {
  font-size: 1.3rem;
}

.news-excerpt {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
}

.news-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .5rem;
}

.btn-news-read {
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  border: 1px solid rgba(212, 50, 28, .35);
  border-radius: 6px;
  padding: 7px 14px;
  transition: background .15s, color .15s;
}

.btn-news-read:hover {
  background: rgba(212, 50, 28, .12);
  color: var(--red);
}

.btn-news-related {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 7px 14px;
  transition: background .15s, color .15s;
}

.btn-news-related:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

/* News CTA strip */
.news-cta-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.news-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-cta-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: .35rem;
}

.news-cta-text p {
  font-size: .88rem;
  color: var(--muted);
}

.news-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media(max-width:900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card-featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .news-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════
   CONTACT PAGE – locations + social
══════════════════════════════════ */
.contact-social {
  margin-top: 1.5rem;
}

.contact-social h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  font-family: var(--outfit_font);
  /* text-transform: uppercase; */
  color: var(--muted);
  margin-bottom: .75rem;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  transition: border-color .2s, color .2s, background .2s;
}

.contact-social-links a:hover {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.locations-section {
  background: var(--dark2);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.locations-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.locations-header {
  text-align: center;
  margin-bottom: 3rem;
}

.locations-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: .6rem;
}

.locations-header p {
  font-size: .95rem;
  color: var(--muted);
}

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

.location-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .2s;
}

.location-card:hover {
  border-color: rgba(255, 255, 255, .18);
}

.location-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 50, 28, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}

.location-card h3 {
  font-size: 16px;
  font-weight: 400;
  color: #fffc;
  font-family: var(--outfit_font);
}

.location-card p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.location-phone {
  font-size: 16px;
  font-weight: 400;
  color: var(--red);
}

.location-links {
  display: flex;
  gap: 10px;
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.location-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  transition: color .15s;
}

.location-links a:hover {
  color: #fff;
}

@media(max-width:900px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
   SERVICE PAGE HERO IMAGE
══════════════════════════════════ */
.service-hero-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-hero-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media(max-width:767px) {
  .service-hero-img img {
    height: auto;
  }
}

/* ══════════════════════════════════
   ABOUT PAGE — HERO LABEL
══════════════════════════════════ */
.about-hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  /* text-transform: uppercase; */
  color: var(--red);
  margin-bottom: .6rem;
}

/* ══════════════════════════════════
   ABOUT — SECTION 1: FAQ SPLIT
══════════════════════════════════ */
.about-faq-split {
  padding: 90px 0;
  background: var(--dark);
}

.about-faq-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.afs-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.afs-left h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.afs-left>p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.afs-img {
  margin-top: .75rem;
  border-radius: 12px;
  overflow: hidden;
}

.afs-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.afs-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: .25rem;
}

@media(max-width:860px) {
  .about-faq-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .afs-img img {
    height: auto;
  }
}

/* ══════════════════════════════════
   ABOUT — SECTION 2: STORY SPLIT
══════════════════════════════════ */
.about-story-split {
  padding: 90px 0;
  background: var(--dark2);
}

.about-story-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ass-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ass-left>p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.ass-left h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-top: .5rem;
}

.ass-left h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  font-family: var(--outfit_font);
  letter-spacing: .06em;
}

.about-expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.about-expect-list li {
  font-size: 16px;
  color: #fffc;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.about-expect-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.ass-right {
  border-radius: 12px;
  overflow: hidden;
  align-self: start;
}

.ass-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media(max-width:860px) {
  .about-story-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ass-right img {
    height: 260px;
  }
}

/* ══════════════════════════════════
   ABOUT — SECTION 3: HOW WE SPLIT
══════════════════════════════════ */
.about-howwe-split {
  padding: 90px 0;
  background: var(--dark);
}

.about-howwe-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ahw-left {
  border-radius: 12px;
  overflow: hidden;
  align-self: start;
}

.ahw-left img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.ahw-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ahw-block {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.ahw-block h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.ahw-block p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.ahw-block-diff {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.diff-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media(max-width:860px) {
  .about-howwe-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ahw-left img {
    height: 260px;
  }
}

/* ══════════════════════════════════
   ABOUT — SECTION 4: MORE SECTION
══════════════════════════════════ */
.about-more-section {
  padding: 90px 0;
  background: var(--dark2);
}

.about-more-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.am-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--dark3);
  border-radius: 16px;
  padding: 48px 40px;
}

.am-left h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.am-left p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.5;
}

.am-right {
  border-radius: 12px;
  overflow: hidden;
}

.am-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media(max-width:860px) {
  .about-more-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .am-left {
    padding: 36px 28px;
  }

  .am-right img {
    height: 240px;
  }
}

/* ══════════════════════════════════
   CAREERS PAGE (cr- prefix)
══════════════════════════════════ */
.service-faq .faq-inner {
  max-width: 950px;
  width: 100%;
  margin: auto;
}

/* Hero */
.cr-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/images/banner_img1.jpg') center/cover no-repeat;
  text-align: center;
}

.cr-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .72);
}

.cr-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.cr-hero-inner h1 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.cr-hero-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  max-width: 560px;
}

/* Hiring Banner */
.cr-hiring-banner {
  background: rgba(212, 50, 28, .07);
  border-top: 1px solid rgba(212, 50, 28, .18);
  border-bottom: 1px solid rgba(212, 50, 28, .18);
  padding: 16px 24px;
  text-align: center;
}

.cr-hiring-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.cr-hiring-banner strong {
  color: #fff;
}

/* ── Shared 2-col split ── */
.cr-split {
  padding: 80px 0;
}

.cr-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cr-split-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cr-split-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.cr-split-text p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.cr-split-img {
  border-radius: 14px;
  overflow: hidden;
  align-self: stretch;
}

.cr-split-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

/* Problem / Solution backgrounds */
.cr-problem {
  background: var(--dark2);
}

.cr-solution {
  background: var(--dark);
}

/* Checklist */
.cr-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.cr-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}

.cr-check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Culture dark-panel section */
.cr-culture {
  background: var(--dark2);
}

.cr-culture-panel {
  background: var(--dark3);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: stretch;
}

.cr-culture-panel .cat-label {
  margin-bottom: .25rem;
}

.cr-culture-panel h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.cr-culture-panel p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Process / Hiring Steps */
.cr-process {
  background: var(--dark);
  padding: 80px 0;
}

.cr-process-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.cr-process-header {
  text-align: center;
  margin-bottom: 52px;
}

.cr-process-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .7rem;
}

.cr-process-header p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.cr-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cr-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cr-step:last-child {
  border-bottom: none;
}

.cr-step-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .28);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-step-content h3 {
  font-size: .98rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .35rem;
}

.cr-step-content p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Benefits 2-col */
.cr-benefits {
  background: var(--dark2);
  padding: 80px 0;
}

.cr-benefits-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.cr-benefits-header {
  text-align: center;
  margin-bottom: 52px;
}

.cr-benefits-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}

.cr-benefits-header p {
  font-size: .92rem;
  color: var(--muted);
}

.cr-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cr-benefits-col {
  background: var(--dark3);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cr-benefits-col h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Reward section */
.cr-reward-section {
  background: var(--dark);
}

/* Is FLOSS Right For You */
.cr-fit {
  background: var(--dark2);
  padding: 80px 0;
}

.cr-fit-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.cr-fit-inner>h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}

.cr-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cr-fit-col {
  background: var(--dark3);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cr-fit-col h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.cr-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.cr-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

.cr-fit-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Split */
.cr-faq-split {
  padding: 80px 0;
}

.cr-faq-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cr-faq-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cr-faq-left h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.cr-faq-left>p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.cr-faq-img {
  margin-top: .75rem;
  border-radius: 12px;
  overflow: hidden;
}

.cr-faq-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.cr-faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Apply / Form Section */
.cr-apply {
  background: var(--dark);
  padding: 90px 0;
}

.cr-apply-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.cr-apply-header {
  text-align: center;
  margin-bottom: 48px;
}

.cr-apply-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .7rem;
}

.cr-apply-header p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.cr-apply-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cr-file-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px dashed rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color .2s;
  background: rgba(255, 255, 255, .02);
}

.cr-file-upload:hover {
  border-color: var(--red);
}

.cr-file-label {
  font-size: .88rem;
  color: var(--muted);
}

.cr-file-label strong {
  color: var(--red);
  font-weight: 600;
}

.cr-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 4px 0;
}

.cr-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--red);
  width: 15px;
  height: 15px;
}

.cr-consent p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.6;
}

.cr-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: .5rem;
  align-self: center;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}

.cr-submit:hover {
  background: #b82310;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media(max-width:900px) {

  .cr-split-inner,
  .cr-benefits-grid,
  .cr-fit-grid,
  .cr-faq-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cr-culture-panel {
    padding: 32px 24px;
  }

  .cr-split-img img {
    min-height: 240px;
    height: 260px;
  }

  .cr-faq-img img {
    height: 200px;
  }
}

@media(max-width:600px) {
  .cr-hero-inner h1 {
    font-size: 1.8rem;
  }

  .cr-hero {
    min-height: 420px;
  }

  .cr-benefits-col,
  .cr-fit-col {
    padding: 28px 20px;
  }

  .cr-apply-header h2 {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════
   ARTICLE / BLOG POST PAGES
══════════════════════════════════ */

/* Hero */
.article-hero {
  background: var(--dark2);
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.article-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.article-cat {
  display: inline-block;
  background: rgba(212, 50, 28, .15);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  /* text-transform: uppercase; */
  padding: 4px 10px;
  border-radius: 4px;
}

.article-date,
.article-author {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}

.article-date::before {
  content: '';
}

.article-hero-inner h1 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 820px;
}

/* Featured image */
.article-featured-img {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.article-featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Body + Sidebar layout */
.article-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* Main article content */
.article-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.article-content .article-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  font-style: italic;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.article-content h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-top: .5rem;
}

.article-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-top: .25rem;
}

.article-content p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.75;
}

.article-content p a {
  color: var(--red);
}

.article-content p a:hover {
  text-decoration: underline;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.article-content ul {
  list-style: none;
  padding-left: 0;
}

.article-content ul li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.article-content ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: .55rem;
}

.article-content ol {
  list-style: none;
  padding-left: 0;
  counter-reset: ol-cnt;
}

.article-content ol li {
  counter-increment: ol-cnt;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.article-content ol li::before {
  content: counter(ol-cnt);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 50, 28, .12);
  border: 1px solid rgba(212, 50, 28, .25);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

.article-content strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

.article-content .article-highlight {
  background: var(--dark3);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

/* Comparison table */
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.article-table th {
  background: rgba(212, 50, 28, .12);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.article-table td {
  padding: 11px 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.article-table tr:last-child td {
  border-bottom: none;
}

.article-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, .02);
}

/* In-article FAQ */
.article-faq-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 24px 22px;
}

.sidebar-widget h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list li a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  padding: 5px 8px;
  border-radius: 6px;
  display: block;
  transition: color .15s, background .15s;
  line-height: 1.4;
}

.toc-list li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.sidebar-cta {
  background: rgba(212, 50, 28, .08);
  border-color: rgba(212, 50, 28, .2);
}

.sidebar-cta h4 {
  color: var(--red);
  border-color: rgba(212, 50, 28, .2);
}

.sidebar-cta p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sidebar-cta a {
  width: 100%;
  justify-content: center;
}

/* Related posts */
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-list li a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  transition: color .15s;
}

.related-list li a::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
}

.related-list li a:hover {
  color: #fff;
}

/* Responsive */
@media(max-width:960px) {
  .article-body {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-featured-img img {
    height: 280px;
  }
}

@media(max-width:600px) {
  .article-featured-img img {
    height: 200px;
    border-radius: 10px;
  }

  .article-hero-inner h1 {
    font-size: 1.6rem;
  }
}

/* ══════════════════════════════════
   AI DENTISTRY TECHNOLOGY PAGE
══════════════════════════════════ */

/* Tech nav pills */
.tai-nav {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 50;
}

.tai-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tai-nav-inner::-webkit-scrollbar {
  display: none;
}

.tai-nav-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .45);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.tai-nav-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .2);
}

.tai-nav-link.active {
  color: #fff;
  border-bottom-color: var(--red);
}

.tai-nav-link svg {
  opacity: .6;
}

/* Intro overview */
.tai-overview {
  padding: 80px 0 60px;
}

.tai-overview-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.tai-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  /* text-transform: uppercase; */
  color: var(--red);
  margin-bottom: 14px;
}

.tai-overview-inner>h2 {
  font-family: var(--playfair_font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 18px;
}

.tai-overview-inner>p {
  font-size: 1rem;
  color: #fffc;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 52px;
}

.tai-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tai-overview-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, background .2s;
}

.tai-overview-card:hover {
  border-color: rgba(212, 50, 28, .3);
  background: rgba(212, 50, 28, .04);
}

.tai-ov-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.tai-overview-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  font-family: var(--outfit_font);
}

.tai-overview-card p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
}

.tai-ov-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap .2s;
}

.tai-overview-card:hover .tai-ov-link {
  gap: 8px;
}

/* Individual tech sections */
.tai-section {
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.tai-section:nth-child(odd) {
  background: var(--dark);
}

.tai-section:nth-child(even) {
  background: var(--dark2);
}

.tai-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.tai-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.tai-split--reverse {
  direction: rtl;
}

.tai-split--reverse>* {
  direction: ltr;
}

.tai-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.tai-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  /* text-transform: uppercase; */
  color: var(--red);
}

.tai-tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.tai-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: #fff;
  line-height: 1.25;
}

.tai-text p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.78;
}

.tai-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: .4rem;
}

.tai-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55;
}

.tai-feat-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 50, 28, .12);
  border: 1px solid rgba(212, 50, 28, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.tai-feat-icon svg {
  color: var(--red);
}

.tai-highlight-box {
  background: rgba(212, 50, 28, .06);
  border: 1px solid rgba(212, 50, 28, .18);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: .3rem;
}

.tai-highlight-box strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  /* text-transform: uppercase; */
  color: var(--red);
  margin-bottom: 6px;
}

.tai-highlight-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
  margin: 0;
}

.tai-img-wrap {
  position: relative;
}

.tai-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.tai-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 10, 12, .85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tai-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(212, 50, 28, .15);
  border: 1px solid rgba(212, 50, 28, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.tai-badge-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
}

.tai-badge-text span {
  font-size: .73rem;
  color: rgba(255, 255, 255, .45);
}

/* Stats strip */
.tai-stats {
  background: var(--dark3);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.tai-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.tai-stat-num {
  font-family: var(--playfair_font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.tai-stat-num span {
  color: var(--red);
}

.tai-stat-label {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive */

@media(max-width: 991px) {
  .tai-split .tai-text {
    order: 2;
  }

  .tai-split .tai-img-wrap {
    order: 1;
  }
}

@media(max-width:960px) {
  .tai-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tai-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tai-split--reverse {
    direction: ltr;
  }

  .tai-img-wrap img {
    height: auto;
  }

  .tai-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media(max-width:600px) {
  .tai-overview-grid {
    grid-template-columns: 1fr;
  }

  .tai-img-wrap img {
    height: auto;
    border-radius: 12px;
  }

  .tai-stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .tai-section {
    padding: 60px 0;
  }
}


/* ══════════════════════════════════
   NEW PATIENTS + FINANCING PAGES
══════════════════════════════════ */

/* Shared section wrappers */
.np-section {
  padding: 88px 0;
}

.np-section:nth-child(odd) {
  background: var(--dark);
}

.np-section:nth-child(even) {
  background: var(--dark2);
}

.np-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.np-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.np-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1.25;
  margin: 10px 0 14px;
}

.np-header p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.75;
}

/* ── New patient specials ── */
.np-specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.np-special-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}

.np-special-card:hover {
  border-color: rgba(212, 50, 28, .3);
  transform: translateY(-3px);
}

.np-special-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.np-special-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.np-special-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  /* text-transform: uppercase; */
  background: rgba(212, 50, 28, .15);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 4px;
}

.np-special-price {
  font-family: var(--playfair_font);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.np-special-price p {
  font-family: var(--outfit_font);
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin-top: 10px;
}

.np-special-body ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.np-special-body ul li {
  font-size: 18px;
  color: #fff;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  padding-top: 10px;
  line-height: normal;
}


.np-special-price sub {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
  font-family: var(--outfit_font);
}

.np-special-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.np-special-desc {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
  flex: 1;
}

.np-special-link {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}

.np-special-card:hover .np-special-link {
  gap: 8px;
}

/* ── Insurance logos ── */
.np-insurance-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.np-logo-tile {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 18px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  min-height: 72px;
}

.np-logo-tile:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.np-logo-tile img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .45;
  transition: opacity .2s;
}

.np-logo-tile:hover img {
  opacity: .8;
}

.np-logo-tile span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  text-align: center;
}

.np-insurance-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.np-insurance-text h3 {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: #fff;
  margin-bottom: 14px;
}

.np-insurance-text p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.75;
  margin-bottom: 18px;
}

.np-ppo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.np-ppo-list li {
  font-size: .78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, .55);
}

.np-insurance-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 300px;
  display: block;
}

/* ── Online forms ── */
.np-forms-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.np-forms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.np-form-row {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s;
  cursor: pointer;
}

.np-form-row:hover {
  border-color: rgba(212, 50, 28, .3);
}

.np-form-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .2);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-form-info {
  flex: 1;
}

.np-form-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
  font-family: var(--outfit_font);
}

.np-form-info span {
  font-size: 16px;
  color: #fffc;
}

.np-form-arrow {
  color: rgba(255, 255, 255, .2);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}

.np-form-row:hover .np-form-arrow {
  color: var(--red);
  transform: translateX(3px);
}

.np-forms-note {
  margin-top: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

.np-forms-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 420px;
  display: block;
}

/* ── First visit steps ── */
.np-visit-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.np-visit-steps {
  display: flex;
  flex-direction: column;
}

.np-visit-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.np-visit-step:last-child {
  border-bottom: none;
}

.np-step-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .25);
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-step-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--outfit_font);
}

.np-step-body p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
}

.np-visit-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 480px;
  display: block;
}

/* ── Financing teaser (on new-patients page) ── */
.np-fin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.np-fin-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}

.np-fin-card:hover {
  border-color: rgba(212, 50, 28, .3);
}

.np-fin-logo {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  max-width: 250px;
  padding: 15px;
}

.np-fin-logo-cherry {
  background: #fff;
}

.np-fin-logo-cc {
  background: #fff;
}

.np-fin-logo-floss {
  background: rgba(212, 50, 28, .15);
  border: 1px solid rgba(212, 50, 28, .25);
  color: var(--red);
  font-size: .75rem;
}

.np-fin-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  font-family: var(--outfit_font);
}

.np-fin-card p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.6;
  flex: 1;
}

.np-fin-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

/* ── AI Bot / Assistant placeholder ── */
.ai-placeholder-wrap {
  padding: 88px 0;
}

.ai-placeholder-wrap .np-inner {
  display: flex;
}

.ai-placeholder {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.ai-ph-text {
  flex: 1;
}

.ai-ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.ai-ph-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 200, 0, .7);
  box-shadow: 0 0 8px rgba(255, 200, 0, .35);
}

.ai-ph-text h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 14px;
}

.ai-ph-text>p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.75;
  max-width: 100%;
}

.ai-ph-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ai-ph-features li {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ai-ph-features li::before {
  content: '→';
  color: rgba(255, 255, 255, .8);
  flex-shrink: 0;
}

.ai-ph-ui {
  flex-shrink: 0;
  width: 340px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  overflow: hidden;
}

.ai-ph-ui-header {
  background: rgba(212, 50, 28, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-ph-ui-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 200, 0, .6);
}

.ai-ph-ui-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  flex: 1;
}

.ai-ph-ui-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  /* text-transform: uppercase; */
  color: rgba(255, 200, 0, .6);
  background: rgba(255, 200, 0, .08);
  border-radius: 4px;
  padding: 2px 7px;
}

.ai-ph-msgs {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}

.ai-ph-msg {
  max-width: 82%;
  padding: 10px 14px;
  font-size: .76rem;
  line-height: 1.5;
  border-radius: 10px;
}

.ai-ph-msg-bot {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .4);
  align-self: flex-start;
  border-radius: 10px 10px 10px 2px;
}

.ai-ph-msg-user {
  background: rgba(212, 50, 28, .12);
  color: rgba(255, 255, 255, .35);
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
}

.ai-ph-ui-input {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-ph-input-field {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .73rem;
  color: rgba(255, 255, 255, .2);
}

.ai-ph-input-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(212, 50, 28, .15);
  border: 1px solid rgba(212, 50, 28, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 50, 28, .5);
}

.ai-ph-coming-soon {
  margin-top: 20px;
}

.ai-ph-coming-soon svg {
  position: relative;
  top: 2px;
  margin-right: 10px;
}

/* ── Financing provider sections ── */
.fin-section {
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.fin-section:nth-child(odd) {
  background: var(--dark);
}

.fin-section:nth-child(even) {
  background: var(--dark2);
}

.fin-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.fin-provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 20px;
}

.fin-provider-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.fin-cherry-icon {
  background: #c0392b;
}

.fin-cc-icon {
  background: #006b3c;
}

.fin-floss-icon {
  background: rgba(212, 50, 28, .2);
  color: var(--red);
  font-size: .7rem;
}

.fin-provider-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.fin-provider-type {
  font-size: .73rem;
  color: rgba(255, 255, 255, .4);
}

/* Financing plan cards */
.fin-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.fin-plan-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}

.fin-plan-card:hover {
  border-color: rgba(212, 50, 28, .25);
}

.fin-plan-card.featured {
  border-color: rgba(212, 50, 28, .3);
  background: rgba(212, 50, 28, .05);
}

.fin-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .2);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fin-plan-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: var(--outfit_font);
}

.fin-plan-card p {
  font-size: 16px;
  color: #fffc;
  line-height: 1.65;
}

.fin-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 24px;
}

.fin-plan-list li {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.fin-plan-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.fin-plan-card a {
  margin-top: auto;
}

/* Responsive */
@media(max-width: 960px) {

  .np-specials-grid,
  .np-fin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-insurance-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .np-insurance-split,
  .np-forms-split,
  .np-visit-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .np-visit-img img,
  .np-forms-img img {
    height: 280px;
  }

  .ai-placeholder {
    flex-direction: column;
    gap: 36px;
  }

  .ai-ph-ui {
    width: 100%;
    max-width: 420px;
  }

  .fin-plans-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {

  .np-specials-grid,
  .np-fin-grid {
    grid-template-columns: 1fr;
  }

  .np-insurance-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-placeholder {
    padding: 32px 24px;
  }

  .np-section,
  .fin-section {
    padding: 60px 0;
  }

  .ai-placeholder-wrap {
    padding: 60px 0;
  }
}


/*------------*/


#contact-form .disclaimer-msg.form-checkbox label {
  color: #fffc;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  text-transform: unset;
}

#contact-form .disclaimer-msg:not(:last-child) {
  margin-bottom: 10px;
}

#contact-form .disclaimer-msg p {
  font-size: 14px;
}

#contact-form .disclaimer-msg.form-checkbox {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

#contact-form .disclaimer-msg.form-checkbox input {
  position: relative;
  top: 3px;
  width: auto;
}


/*----------------*/

.padd_top {
  padding-top: 80px;
}

.padd_bottom {
  padding-bottom: 80px;
}


@media(max-width: 991px) {
  .padd_top {
    padding-top: 50px;
  }

  .padd_bottom {
    padding-bottom: 50px;
  }
}

/* ══════════════════════════════════
   REVIEWS PAGE
══════════════════════════════════ */

/* ── Hero aggregate ── */
.rv-hero {
  background: var(--dark2);
  padding: 60px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.rv-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.rv-hero-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  /* text-transform: uppercase; */
  color: var(--red);
  margin-bottom: 16px;
}

.rv-hero h1 {
  font-family: var(--playfair_font);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.rv-hero-sub {
  font-size: 16;
  color: #fffc;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.rv-score-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rv-score-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50px;
  padding: 10px 22px 10px 14px;
  transition: border-color .2s;
}

.rv-score-pill:hover {
  border-color: rgba(255, 255, 255, .15);
}

.rv-score-platform {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
}

.rv-score-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
}

.rv-score-num {
  font-family: var(--playfair_font);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.rv-score-stars {
  color: #F35A35;
  font-size: .9rem;
  letter-spacing: .05em;
}

.rv-score-count {
  font-size: .73rem;
  color: rgba(255, 255, 255, .35);
}

/* ── Featured pull quote ── */
.rv-pullquote {
  background: var(--dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.rv-pullquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212, 50, 28, .04) 0%, transparent 70%);
  pointer-events: none;
}

.rv-pullquote-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.rv-quote-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  background: rgba(212, 50, 28, .1);
  border: 1px solid rgba(212, 50, 28, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.rv-pullquote-text {
  font-family: var(--playfair_font);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  line-height: 1.55;
  margin-bottom: 32px;
}

.rv-pullquote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rv-pa-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rv-pa-info {
  text-align: left;
}

.rv-pa-name {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.rv-pa-meta {
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
}

.rv-pa-stars {
  color: #F35A35;
  font-size: 1rem;
  letter-spacing: .05em;
}

/* ── Reviews grid ── */
.rv-section {
  padding: 88px 0;
  background: var(--dark2);
}

.rv-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.rv-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  text-align: center;
}

.rv-section-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.rv-section-header p {
  font-size: 18px;
  color: #fffc;
  margin-top: 8px;
  max-width: 440px;
}

.rv-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rv-filter-btn {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}

.rv-filter-btn:hover,
.rv-filter-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .15);
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card spanning variants */
.rv-card--feature {
  grid-column: span 3;
}

.rv-card--wide {
  grid-column: span 2;
}

/* Base card */
.rv-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.rv-card:hover {
  border-color: rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}

/* Featured card interior layout */
.rv-card--feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.rv-feat-left {
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rv-feat-right {
  background: rgba(212, 50, 28, .04);
  border-left: 1px solid rgba(255, 255, 255, .06);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rv-feat-quote-mark {
  font-family: var(--playfair_font);
  font-size: 5rem;
  line-height: .7;
  color: var(--red);
  opacity: .4;
  font-style: italic;
}

.rv-feat-text {
  font-family: var(--playfair_font);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: rgba(255, 255, 255, .88);
  line-height: 1.6;
  flex: 1;
}

.rv-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px;
  padding: 4px 10px;
}

.rv-feat-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
}

.rv-feat-stat-num {
  font-family: var(--playfair_font);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.rv-feat-stat-label {
  font-size: .76rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.4;
}

/* Normal card header */
.rv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.rv-av-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rv-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.rv-verified {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .05em;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rv-verified::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.rv-platform-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  flex-shrink: 0;
}

/* Stars */
.rv-stars {
  color: #F35A35;
  font-size: 20px;
  letter-spacing: .05em;
  line-height: 1;
}

/* Review text */
.rv-text {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.72;
  flex: 1;
}

.rv-text strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

/* Card footer */
.rv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.rv-service-tag {
  font-size: .71rem;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: .06em;
  color: rgba(212, 50, 28, .7);
  background: rgba(212, 50, 28, .08);
  border: 1px solid rgba(212, 50, 28, .15);
  border-radius: 4px;
  padding: 3px 9px;
}

.rv-date {
  font-size: .73rem;
  color: rgba(255, 255, 255, .25);
}

/* ── Before / After strip ── */
.rv-ba-section {
  padding: 88px 0;
  background: var(--dark);
}

.rv-ba-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.rv-ba-header {
  text-align: center;
  margin-bottom: 52px;
}

.rv-ba-header h2 {
  font-family: var(--playfair_font);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 12px;
}

.rv-ba-header p {
  font-size: .92rem;
  color: var(--muted);
}

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

.rv-ba-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  overflow: hidden;
}

.rv-ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rv-ba-img-wrap {
  position: relative;
}

.rv-ba-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.rv-ba-img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  /* text-transform: uppercase; */
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, .75);
  border-radius: 4px;
  padding: 3px 8px;
}

.rv-ba-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--dark2);
}

.rv-ba-imgs {
  position: relative;
}

.rv-ba-body {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rv-ba-body h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}

.rv-ba-body span {
  font-size: .78rem;
  color: var(--muted);
}

.rv-ba-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

/* ── Write a review CTA ── */
.rv-write-strip {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 56px 0;
}

.rv-write-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.rv-write-text h3 {
  font-family: var(--playfair_font);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.rv-write-text p {
  font-size: 18px;
  color: #fffc;
  max-width: 600px;
}

.rv-write-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rv-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 11px 20px;
  transition: color .15s, background .15s, border-color .15s;
}

.rv-write-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

/* Responsive */
@media(max-width: 960px) {
  .rv-card--feature {
    grid-template-columns: 1fr;
    grid-column: span 3;
  }

  .rv-feat-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .rv-card--wide {
    grid-column: span 3;
  }

  .rv-ba-grid {
    grid-template-columns: 1fr;
  }

  .rv-score-strip {
    gap: 10px;
  }
}

@media(max-width: 700px) {
  .rv-grid {
    grid-template-columns: 1fr;
  }

  .rv-card--feature,
  .rv-card--wide {
    grid-column: span 1;
  }

  .rv-card--feature {
    display: flex;
  }

  .rv-feat-right {
    display: none;
  }

  .rv-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .rv-write-inner {
    flex-direction: column;
  }
}

@media only screen and (max-width: 350px) {
  .rv-av-wrap {
    flex-wrap: wrap;
  }

  .rv-av-wrap .rv-av {
    width: 100%;
    max-width: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .rv-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*------------*/
section.legal-section {
  padding: 80px 24px;
}

.legal-content {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.legal-content p,
.legal-content ul li {
  font-size: 18px;
  color: #fffc;
  line-height: 1.6;
}

.legal-content h2 {
  font-size: 35px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: normal;
  color: #fff;
}

.legal-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--outfit_font);
  font-weight: 500;
}

.legal-content h3:not(:first-child) {
  margin-top: 30px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 20px 0 20px;
}

.legal-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.legal-content p a {
  color: #f35a35;
}

.legal-content p a:hover {
  color: #ef9c87 !important;
}

@media only screen and (max-width: 991px) {
  section.legal-section {
    padding: 50px 24px !important;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 16px !important;
  }

}

/*------*/
.rv-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.rv-text.expanded {
  overflow: auto;
}

.read-more-btn {
  color: #f35a35;
  cursor: pointer;
  font-weight: 500;
  margin-top: 5px;
  display: inline-block;
}

/* ══════════════════════════════════
   OWL CAROUSEL — PACKAGES & TESTIMONIALS
══════════════════════════════════ */

/* ── Shared Owl Nav Button Styling ── */
.pkg-owl .owl-nav button,
.testi-owl .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .15) !important;
  color: #fff !important;
  font-size: 26px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s !important;
  user-select: none;
  margin: 0 4px !important;
}

.pkg-owl .owl-nav button:hover,
.testi-owl .owl-nav button:hover {
  background: rgba(255, 255, 255, .18) !important;
  border-color: rgba(255, 255, 255, .3) !important;
}

.owl-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.pkg-owl .owl-nav,
.testi-owl .owl-nav {
  margin-top: 20px;
  text-align: center;
}

/* ── Shared Owl Dot Styling ── */
.pkg-owl .owl-dots,
.testi-owl .owl-dots {
  margin-top: 16px !important;
  text-align: center;
}

.pkg-owl .owl-dot span,
.testi-owl .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .22) !important;
  margin: 0 4px !important;
  transition: background .2s, transform .2s !important;
  display: block;
}

.pkg-owl .owl-dot.active span,
.testi-owl .owl-dot.active span {
  background: var(--red) !important;
  transform: scale(1.35);
}

/* ── Packages carousel layout ── */
.pkg-owl {
  padding: 4px 2px 8px;
}

.pkg-owl .pkg-card {
  /* reset margin so Owl gap handles spacing */
  margin: 0;
}

/* Hide nav + dots on desktop for packages (all 3 items fully visible) */
@media (min-width: 960px) {

  .pkg-owl .owl-nav,
  .pkg-owl .owl-dots {
    display: none !important;
  }
}

/* ── Testimonials carousel layout ── */
.testi-owl {
  padding: 4px 2px 8px;
}

.testi-owl .testi-card {
  margin: 0;
}

.testi-card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.testi-card p.expanded {
  overflow: auto;
}

.read-more-btn {
  color: #f46b4a;
  cursor: pointer;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
}

/*--------*/
section.dr-intro {
  padding: 80px 24px;
}

.dr-intro-inner.tai-split-wrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.dr-intro-inner.tai-split-wrap .dr-intro-photo {
  width: fit-content;
}

.dr-intro-inner.tai-split-wrap .dr-intro-photo img {
  border-radius: 24px;
}

@media (min-width: 991px) {
  section.dr-intro {
    padding: 50px 24px !important;
  }
}


@media (max-width: 1100px) {
  .doc-photo {
    width: 100%;
    max-width: fit-content;
    margin-left: 0;
    height: auto;
  }

  .implants-img {
    aspect-ratio: unset;
    border-radius: 24px;
    width: 100%;
    height: auto;
    max-width: fit-content;
  }

  .implants-img img {
    width: auto;
    height: auto;
  }
}

/* ══════════════════════════════════════════
   SITEMAP PAGE
══════════════════════════════════════════ */
.smap-section {
  padding: 72px 24px;
  background: var(--dark2);
}

.smap-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.smap-group {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 28px 28px 24px;
  transition: border-color .25s, box-shadow .25s;
}

.smap-group:hover {
  border-color: rgba(243, 90, 53, .35);
  box-shadow: 0 4px 32px rgba(243, 90, 53, .08);
}

.smap-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.smap-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(243, 90, 53, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.smap-group-header h2 {
  font-family: var(--outfit_font);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
  margin: 0;
}

.smap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.smap-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: .875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, background .2s;
  line-height: 1.4;
}

.smap-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(243, 90, 53, .4);
  flex-shrink: 0;
  transition: background .2s;
}

.smap-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.smap-links li a:hover::before {
  background: var(--red);
}

@media (max-width: 900px) {
  .smap-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .smap-inner {
    grid-template-columns: 1fr;
  }

  .smap-section {
    padding: 48px 16px;
  }

  .smap-group {
    padding: 22px 20px 18px;
  }

  .doc-content {
    max-width: 100% !important;
  }
}

/* ══════════════════════════════════════════
   MEET THE TEAM PAGE
══════════════════════════════════════════ */
.mtt-section {
  padding: 72px 24px 80px;
  background: var(--dark2);
}

.mtt-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.mtt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mtt-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.mtt-card:hover {
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 6px 36px rgba(0, 0, 0, .3);
  transform: translateY(-3px);
}

.mtt-card--featured {
  border-color: rgba(243, 90, 53, .3);
  background: linear-gradient(160deg, rgba(243, 90, 53, .06) 0%, var(--dark3) 60%);
}

.mtt-card--featured:hover {
  border-color: rgba(243, 90, 53, .55);
  box-shadow: 0 6px 40px rgba(243, 90, 53, .12);
}

.mtt-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--playfair_font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  border: 2px solid rgba(243, 90, 53, .2);
}

.mtt-avatar--featured {
  width: 82px;
  height: 82px;
  font-size: 1.9rem;
  border-color: rgba(243, 90, 53, .45);
}

.mtt-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mtt-info h3 {
  font-family: var(--outfit_font);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.mtt-title {
  font-size: .78rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: .04em;
  /* text-transform: uppercase; */
  margin: 0;
}

.mtt-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 4px 0 0;
}

.mtt-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: .02em;
  transition: gap .2s, opacity .2s;
}

.mtt-profile-link:hover {
  gap: 10px;
  opacity: .85;
}

@media (max-width: 900px) {
  .mtt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .mtt-grid {
    grid-template-columns: 1fr;
  }

  .mtt-section {
    padding: 48px 16px 56px;
  }
}

.pkg-carousel .pkg-owl .owl-dots,
.testimonials .testi-owl .owl-dots {
  display: none;
}

/*----------SiteMap Page----------*/
.site-map-menu-blk {
  padding: 80px 24px;
}

.site_map_menu_blk_container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.site-map-menu {
  margin: 0;
  padding: 0;
  display: grid;
  flex-wrap: wrap;
  gap: 15px;
}

.site-map-menu li a {
  text-align: left;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}

.site-map-menu li a:hover {
  color: #e2611a;
}

.site-map-menu li {
  list-style: none;
  padding-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: fit-content;
}

.site-map-menu ul.sitemap-sub-menu {
  padding-top: 0;
  padding-left: 30px;
  display: grid;
  flex-wrap: wrap;
  gap: 15px;
}

.site-map-menu li>ul.sitemap-sub-menu {
  padding-top: 15px !important;
}

.site-map-menu li a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/list_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 5px;
}

a.service-btn {
  color: #fff;
  font-size: 17px;
  display: block;
  margin-top: 10px;
}

a.service-btn:hover {
  color: var(--red);

}

.check-icon path {
  stroke: #fff !important;
  stroke-width: 1 !important;
}

.check-icon svg {
  stroke: #fff !important;
  stroke-width: 1 !important;
}

@media (max-width: 991px) {
  .site-map-menu-blk {
    padding: 50px 24px !important;
  }

  .implants-inner .implants-text {
    order: 1;
  }
}

@media (max-width: 575px) {

  .btn-hero,
  .btn-hero-primary,
  .btn-ai-more,
  .btn-emg-call,
  .btn-emg-outline,
  .btn-learn,
  .btn-pkg,
  .btn-schedule,
  .btn-cta,
  .btn-fv,
  .btn-directions,
  .btn-tc,
  .btn-submit,
  .btn-sidebar-book,
  .btn-sidebar-call {
    width: 100% !important;
    text-align: center;
    font-size: 15px !important;
    justify-content: center;
  }
}

/*----------SiteMap Page----------*/

.comparison-contents.comparison_content_image {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.comparison-contents.comparison_content_image img {
  max-width: fit-content;
}

/* ====================================================
   404 PAGE
   ==================================================== */
.error-404-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(160deg, #f0fbfa 0%, #fff 60%);
}

.error-404-inner {
  text-align: center;
  max-width: 580px;
}

.error-404-icon {
  font-size: 3.5rem;
  color: var(--teal);
  margin-bottom: 8px;
  animation: floatTooth 3s ease-in-out infinite;
}

@keyframes floatTooth {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.error-404-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  line-height: 1;
  /*background: linear-gradient(135deg, var(--dark-teal), var(--teal));*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
  background-clip: text;
  margin: 0 0 15px;
  color: #1f1f1f;
}

.error-404-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: #1f1f1f;
  margin-bottom: 16px;
}

.error-404-msg {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-outline-teal {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
}

.error-404-links {
  border-top: 1px solid #e5f5f4;
  padding-top: 24px;
}

.error-404-links p {
  color: #777;
  font-size: .9rem;
  margin-bottom: 12px;
}

.error-404-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.error-404-links ul li a {
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}

.error-404-links ul li a:hover {
  color: var(--dark-teal);
}

/* ══════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

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

/* Fade in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child elements */
.reveal-stagger>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 240ms;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 320ms;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 400ms;
}

.reveal-stagger>*:nth-child(7) {
  transition-delay: 480ms;
}

.reveal-stagger>*:nth-child(8) {
  transition-delay: 560ms;
}

/* Internal links section */
.internal-links {
  padding: 48px 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: none !important;
}

.internal-links-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.internal-links-inner h3 {
  font-family: var(--playfair_font);
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #fff;
}

.internal-links-inner p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.8;
}

.internal-links-inner p a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.internal-links-inner p a:hover {
  color: #ff7a5c;
}

@media only screen and (max-width: 575px) {
    a span {
        display: none !important;
    }
}


/*------------------------*/

section.insurance_main_section {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.insurance_main_section .services-top {
    border: none;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.insurance_main_section p.cta_urgency {
    text-align: center;
}

.insurance_main_section .services-top .hero-btns {
    justify-content: center;
    margin-top: 30px;
}

.insurance_main_section .services-top  .trust_points {
    width: fit-content;
    text-align: left;
    margin: auto;
}

.insurance_main_section .services-top .trust_points ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}


@media only screen and (min-width: 576px) {
    .hero .hero_container .hero-content .hero-btns {
        margin: 0 auto 0 0;
        width: fit-content;
    }
    
    .insurance_main_section .hero-btns {
        width: fit-content;
        margin: auto;
    }
    
}

/*-----------------------*/

.page-hero .hero-btns {
    width: fit-content;
    margin: auto;
    justify-content: center;
    margin-top: 40px;
}
.page-hero .hero-btns a.btn-hero.btn-hero-primary:hover {
    border-color: #fff !important;
    color: var(--red) !important;
    background-color: #fff !important;
}

@media only screen and (max-width: 575px) {
    .page-hero .hero-btns {
        width: 100% !important;
    }
}

/*---------------------*/

.financing_flexible_section h2, .financing_flexible_section p {
    color: #fff;
    max-width: 1000px;
    width: 100%;
}
 
.financing_flexible_section .financing-options {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
}

.financing_flexible_section .financing-options .financing-card img {
    margin-bottom: 30px;
    width: auto;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
}

.financing_flexible_section .financing-options .financing-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.financing_flexible_section .financing-options .financing-card p {
    font-size: 18px;
    margin-bottom: 40px;
}

.emergency_main_sec_blk .emergency-cta {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
 
@media only screen and (max-width: 767px) {
    .financing_flexible_section .financing-options {
        grid-template-columns: 1fr !important;
    }
    .financing_flexible_section .financing-options {
        gap: 40px !important;
    }
}

/*-------------------------*/

section.urgency-banner {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.urgency-banner-inner {
    display: flex;
    justify-content: space-between;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    gap: 30px;
}

.urgency-banner-text h2 {
    font-family: var(--playfair_font);
    font-size: 35px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    margin-bottom: 20px;
}

.urgency-banner-text p {
    font-size: 16px;
    color: #fffc;
    line-height: 1.7;
    display: block;
}

.urgency-banner-text span.urgency-tag {
    background-color: #ff6a6a;
    padding: 10px;
    margin-bottom: 20px;
    display: none;
    border-radius: 12px;
    color: #000000;
}

.urgency-banner-inner .urgency_banner_btn {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    grid-template-columns: 1fr;
    max-width: 250px;
    height: fit-content;
}

.urgency-banner-inner .urgency_banner_btn a.btn-urgency {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1.5px solid rgba(255, 255, 255);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .06em;
    justify-content: center;
    color: #fff;
    background: transparent;
    transition: all .2s;
    white-space: nowrap;
    width: 100%; 
}

.urgency-banner-inner .urgency_banner_btn a.btn-urgency:first-child {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.urgency-banner-inner .urgency_banner_btn a.btn-urgency:first-child:hover {
    background: #fff;
    border-color: #fff;
    color: var(--red);
}

.urgency-banner-inner .urgency_banner_btn a.btn-urgency:last-child:hover {
    background-color: var(--red);
    border-color: var(--red);
}


@media only screen and (max-width: 575px) {
    .urgency-banner-inner .urgency_banner_btn {
        max-width: 100%;
    }   
}

@media only screen and (max-width: 767px) {
    .urgency-banner-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .urgency-banner-inner .urgency_banner_btn {
        gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .urgency-banner-text h2 {
        font-size: 32px;
    }
}

















