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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', sans-serif;
  background: #080808;
  color: #f0f0f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer
}

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg: #080808;
  --bg-1: #0e0e0e;
  --bg-2: #161616;
  --bg-3: #1f1f1f;
  --text: #f0f0f0;
  --dim: #787878;
  --muted: #383838;
  --white: #f5f5f5;
  --red: #b71c2e;
  --border: rgba(255, 255, 255, 0.055);
  --border-m: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

/* ─── LAYOUT ────────────────────────────────────────────── */
.wrap {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 48px
}

.wrap-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px
}

.section {
  padding: 120px 0
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: all .22s var(--ease);
  white-space: nowrap;
}

/* Primary — white */
.btn-w {
  background: #ffffff;
  color: #080808;
  padding: 15px 34px;
}

.btn-w:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255, 255, 255, .14);
}

.btn-w:active {
  transform: translateY(0)
}

/* Ghost */
.btn-g {
  background: transparent;
  color: #f0f0f0;
  padding: 14px 33px;
  border: 1px solid rgba(255, 255, 255, .22);
}

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

/* Dark — for white-bg sections */
.btn-d {
  background: #080808;
  color: #f5f5f5;
  padding: 15px 34px;
}

.btn-d:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

/* Arrow addon */
.btn-arr::after {
  content: '→';
  font-size: 15px;
  transition: transform .18s ease
}

.btn-arr:hover::after {
  transform: translateX(5px)
}

/* Small */
.btn-sm {
  padding: 11px 24px;
  font-size: 11px
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.js-fade.in {
  opacity: 1;
  transform: none
}

.js-fade.d1 {
  transition-delay: .09s
}

.js-fade.d2 {
  transition-delay: .18s
}

.js-fade.d3 {
  transition-delay: .27s
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 66px;
  display: flex;
  align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}

.hdr.scrolled {
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 0 48px;
}

.hdr__logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.hdr__logo img {
  height: 34px;
  width: auto
}

.hdr__logo-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.hdr__logo-txt b {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--white)
}

.hdr__logo-txt span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted)
}

.hdr__right {
  display: flex;
  align-items: center;
  gap: 28px
}

.hdr__tel {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--white);
  transition: color .2s
}

.hdr__tel:hover {
  color: var(--dim)
}

.hdr__msn {
  display: flex;
  gap: 8px
}

.hdr__msn a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.hdr__msn a:hover {
  background: rgba(255, 255, 255, .16)
}

.hdr__msn img {
  width: 16px;
  height: 16px;
  object-fit: contain
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 66px;
  position: relative;
  overflow: hidden;
}

/* Subtle red glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(183, 28, 46, .11) 0%, transparent 68%);
  pointer-events: none;
}

/* Noise grain */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}

.hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 40px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__tag {
  margin-bottom: 36px
}

.hero__tag-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .35;
    transform: scale(.8)
  }
}

.hero__tag-txt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero__h1 {
  font-size: clamp(76px, 13vw, 168px);
  font-weight: 900;
  line-height: .87;
  letter-spacing: -.045em;
  color: var(--white);
  margin-bottom: 12px;
}

/* Ghost outline for second word */
.hero__h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 245, 245, .22);
}

.hero__sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--dim);
  max-width: 500px;
  line-height: 1.7;
  margin: 30px 0 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hero__stat {
  background: var(--bg);
  padding: 26px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__stat-val {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
}

.hero__stat-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
}

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

.srv-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 52px;
}

.srv-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}

.srv-item:last-child {
  border-bottom: none
}

.srv-item:hover {
  background: var(--bg-2)
}

.srv-item--cta {
  background: var(--bg-2);
  align-items: center
}

.srv-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  padding-top: 2px;
}

.srv-body {}

.srv-title {
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  transition: color .2s;
}

.srv-item:hover .srv-title {
  color: #fff
}

.srv-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65
}

.srv-price {
  text-align: right;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.srv-price small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}

/* ════════════════════════════════════════════════════════════
   ADVANTAGES
   ════════════════════════════════════════════════════════════ */
.advantages {
  background: var(--bg-1)
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left {
  position: sticky;
  top: 86px
}

.why-h {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 20px 0 22px;
}

.why-sub {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 40px;
}

.why-right {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.why-list {
  border-top: 1px solid var(--border)
}

.why-card {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.why-card-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  min-width: 26px;
  padding-top: 3px;
}

.why-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.why-card-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65
}

/* ════════════════════════════════════════════════════════════
   CTA STRIP (white bg)
   ════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--white);
  padding: 76px 0
}

.cta-strip__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip__h {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: #080808;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.cta-strip__sub {
  font-size: 14px;
  color: #555;
  margin-top: 8px
}

/* ════════════════════════════════════════════════════════════
   SMILES
   ════════════════════════════════════════════════════════════ */
.smiles {
  background: var(--bg)
}

.smiles__hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.smiles__h {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-top: 18px;
}

.smiles__note {
  font-size: 13px;
  color: var(--dim);
  max-width: 280px;
  line-height: 1.65;
  text-align: right;
}

.smiles-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

/* Individual smile box */
.smile-box {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease);
}

.smile-box:hover {
  transform: scale(1.025)
}

/* placeholder face inside */
.smile-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, #131313 0%, #0d0d0d 100%);
  transition: filter .35s ease;
  position: relative;
}

/* subtle cross lines */
.smile-inner::before,
.smile-inner::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, .03);
}

.smile-inner::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%
}

.smile-inner::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px
}

.smile-box.blurred .smile-inner {
  filter: blur(14px)
}

.smile-icon {
  font-size: 26px;
  opacity: .25;
  position: relative;
  z-index: 1
}

.smile-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* Blur overlay */
.smile-cap {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s;
  z-index: 5;
}

.smile-box.blurred .smile-cap {
  opacity: 1
}

.smile-eye {
  font-size: 22px
}

.smile-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 14px;
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════ */
.reviews {
  background: var(--bg-1)
}

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

.rev-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rev-qq {
  font-size: 44px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--muted);
  margin-bottom: -8px;
}

.rev-stars {
  font-size: 13px;
  color: #d4a017;
  letter-spacing: 2px
}

.rev-txt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dim);
  flex: 1
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.rev-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dim);
}

.rev-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white)
}

.rev-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

/* ════════════════════════════════════════════════════════════
   INTERIOR
   ════════════════════════════════════════════════════════════ */
.interior {
  background: var(--bg)
}

.int-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 0;
}

.int-addr {
  font-size: 13px;
  color: var(--dim);
  max-width: 300px;
  line-height: 1.65;
  text-align: right;
}

.int-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
  margin-top: 44px;
}

.int-photo {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.int-photo:first-child {
  grid-row: span 2
}

.int-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .5s ease, transform .5s ease;
}

.int-photo:hover img {
  filter: grayscale(0%);
  transform: scale(1.04)
}

.int-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .35) 0%, transparent 55%);
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   QUIZ / CTA FORM
   ════════════════════════════════════════════════════════════ */
.quiz-cta {
  background: var(--bg-2);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quiz-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(183, 28, 46, .07) 0%, transparent 70%);
  pointer-events: none;
}

.quiz-cta__h {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.quiz-cta__sub {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.quiz-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quiz-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  border-radius: 2px;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}

.quiz-input::placeholder {
  color: var(--muted)
}

.quiz-input:focus {
  border-color: rgba(255, 255, 255, .35)
}

.quiz-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.quiz-note a {
  color: var(--dim);
  text-decoration: underline
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq {
  background: var(--bg-1)
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--border)
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: none;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color .2s;
}

.faq-btn:hover {
  color: #fff
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: var(--dim);
  transition: transform .3s ease, background .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out);
}

.faq-item.open .faq-ans {
  max-height: 360px
}

.faq-ans p {
  padding: 0 0 26px;
  font-size: 14px;
  color: var(--dim);
  line-height: 1.8;
  max-width: 680px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px
}

.ft-logo img {
  height: 34px !important;
  width: auto !important;
  object-fit: contain !important
}

.ft-logo b {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em
}

.ft-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px
}

.ft-msn {
  display: flex;
  gap: 8px
}

.ft-msn a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.ft-msn a:hover {
  background: rgba(255, 255, 255, .14)
}

.ft-msn img {
  width: 15px;
  height: 15px;
  object-fit: contain
}

.ft-col-h {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.ft-link {
  font-size: 13px;
  color: var(--dim);
  transition: color .2s;
  cursor: pointer
}

a.ft-link:hover {
  color: var(--white)
}

.ft-btn-wrap {
  margin-top: 18px
}

.footer-bot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65
}

.ft-legal {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px
}

.ft-disclaimer {
  font-size: 10px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
  text-align: right;
}

/* ════════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════════ */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.modal-bg.open {
  opacity: 1;
  pointer-events: auto
}

.modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border-m);
  border-radius: 3px;
  padding: 48px;
  max-width: 440px;
  width: 90%;
  transform: translateY(20px) scale(.97);
  transition: transform .3s var(--ease);
  position: relative;
}

.modal-bg.open .modal-box {
  transform: none
}

.modal-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-3);
  border: none;
  color: var(--dim);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.modal-x:hover {
  background: var(--bg);
  color: var(--white)
}

.modal-h {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px
}

.modal-sub {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px
}

.form-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

.form-inp {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  margin-bottom: 14px;
}

.form-inp::placeholder {
  color: var(--muted)
}

.form-inp:focus {
  border-color: rgba(255, 255, 255, .35)
}

.form-chk {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin: 12px 0 22px;
  cursor: pointer;
}

.form-chk input {
  margin-top: 2px;
  accent-color: var(--white)
}

.form-chk a {
  color: var(--dim);
  text-decoration: underline
}

.form-submit {
  width: 100%;
  justify-content: center
}

/* ─── Floating messenger bubble ────────────────────────── */
.msn-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
}

.msn-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(183, 28, 46, .45);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

.msn-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(183, 28, 46, .6)
}

.msn-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-m);
  border-radius: 3px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.msn-float.open .msn-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none
}

.msn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 2px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: background .2s;
  font-size: 13px;
  color: var(--white);
}

.msn-item:hover {
  background: var(--bg);
  color: #fff
}

.msn-item img {
  width: 18px;
  height: 18px;
  object-fit: contain
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .why-left {
    position: static
  }

  .int-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px
  }

  .int-photo:first-child {
    grid-row: 1;
    grid-column: 1/-1
  }
}

@media(max-width:900px) {
  .rev-grid {
    grid-template-columns: 1fr
  }

  .wrap,
  .wrap-sm,
  .hdr__in {
    padding-left: 24px;
    padding-right: 24px
  }

  .section {
    padding: 80px 0
  }

  .smiles-row {
    grid-template-columns: repeat(3, 1fr)
  }

  .hero__body {
    padding-left: 24px;
    padding-right: 24px
  }

  .hero__stats {
    padding: 0
  }

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

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

@media(max-width:640px) {
  .hero__h1 {
    font-size: clamp(36px, 11vw, 56px) !important;
    line-height: .92 !important;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr
  }

  .hero__stat {
    padding: 18px 20px
  }

  .smiles-row {
    grid-template-columns: 1fr 1fr
  }

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

  .smiles__note {
    text-align: left
  }

  .int-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px)
  }

  .int-photo:first-child {
    grid-row: 1;
    grid-column: 1
  }

  .quiz-form {
    flex-direction: column
  }

  .hdr__msn {
    display: none
  }

  .srv-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 18px
  }

  .srv-price {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }
}

@media(max-width:400px) {
  .hero__h1 {
    font-size: 52px
  }
}

/* ════ HERO SLIDER ════ */
.hero-slides-wrap {
  display: grid;
  position: relative;
  z-index: 1
}

.hero__slide {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 40px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto
}

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

.hero__slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.hero__slide-content {}

.hero__slide-eyebrow {
  margin-bottom: 28px
}

.hero__slide h1 {
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px
}

.hero__slide ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px
}

.hero__slide ul li {
  font-size: 14px;
  color: var(--dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.6
}

.hero__slide ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--red)
}

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

.hero-img-ph {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 40px
}

.hero-img-ph span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.hero__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  padding: 0 48px 32px;
  max-width: 1280px;
  margin: 0 auto
}

.hero__dot {
  width: 24px;
  height: 3px;
  background: var(--muted);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, width .3s
}

.hero__dot.active {
  background: var(--white);
  width: 44px
}

/* ════ SERVICES CARDS ════ */
.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 52px
}

.srv-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  transition: background .2s
}

.srv-card:hover {
  background: var(--bg-2)
}

.srv-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 28px
}

.srv-card__img span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.srv-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase
}

.srv-card__list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px
}

.srv-card__list li {
  font-size: 12px;
  color: var(--dim);
  padding: 6px 0 6px 14px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5
}

.srv-card__list li:last-child {
  border-bottom: none
}

.srv-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 1px;
  background: var(--muted)
}

.srv-card--form {
  background: var(--bg-2)
}

.srv-form-h {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.srv-form-sub {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 24px;
  line-height: 1.6
}

.srv-form {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.srv-inp {
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .2s
}

.srv-inp::placeholder {
  color: var(--muted)
}

.srv-inp:focus {
  border-color: rgba(255, 255, 255, .3)
}

.srv-chk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer
}

.srv-chk input {
  margin-top: 1px;
  accent-color: var(--white)
}

.srv-chk a {
  color: var(--dim);
  text-decoration: underline
}

.btn-expand {
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color .2s;
  padding: 0
}

.btn-expand:hover {
  color: var(--white)
}

.srv-list-wrap {
  position: relative
}

.srv-list-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  transition: opacity .3s
}

.srv-list-wrap.expanded .srv-list-fade {
  opacity: 0
}

.srv-card:hover .srv-list-fade {
  background: linear-gradient(to bottom, transparent, var(--bg-2))
}

@media(max-width:900px) {
  .srv-cards-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .srv-cards-grid {
    grid-template-columns: 1fr
  }
}

/* ════ PROBLEMS ════ */
.problems {
  background: var(--bg-1)
}

.prb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 48px
}

.prb-item {
  background: var(--bg-1);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  transition: background .2s
}

.prb-item:hover {
  background: var(--bg-2)
}

.prb-item i {
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0
}

.prb-item span {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.4
}

/* ════ RED FORM (accent) ════ */
.accent-form {
  background: var(--red);
  padding: 80px 0
}

.accent-form__in {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px
}

.accent-form__h {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff
}

.accent-form__row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 560px;
  flex-wrap: wrap
}

.accent-inp {
  flex: 1;
  min-width: 160px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s
}

.accent-inp::placeholder {
  color: rgba(255, 255, 255, .55)
}

.accent-inp:focus {
  border-color: rgba(255, 255, 255, .6)
}

.btn-accent {
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .2s
}

.btn-accent:hover {
  background: #f0f0f0;
  transform: translateY(-2px)
}

.accent-form__note {
  font-size: 11px;
  color: rgba(255, 255, 255, .6)
}

.accent-form__note a {
  color: rgba(255, 255, 255, .8);
  text-decoration: underline
}

/* ════ DOCTORS SLIDER ════ */
.doctors {
  background: var(--bg-2)
}

.doc-slider-wrap {
  position: relative;
  margin-top: 48px
}

.doc-viewport {
  overflow: hidden;
  width: 100%
}

.doc-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.25, .46, .45, .94)
}

.doc-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.doc-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 36px
}

.doc-photo span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.doc-info {
  padding: 22px 24px
}

.doc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px
}

.doc-role {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.doc-exp {
  font-size: 12px;
  color: var(--muted)
}

.doc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 5
}

.doc-nav:hover {
  background: var(--bg)
}

.doc-nav--prev {
  left: -22px
}

.doc-nav--next {
  right: -22px
}

.doc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px
}

.doc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  border: none;
  transition: background .3s;
  padding: 0
}

.doc-dot.active {
  background: var(--white)
}

@media(max-width:900px) {
  .doc-card {
    flex: 0 0 calc(50% - 10px)
  }
}

@media(max-width:640px) {
  .doc-card {
    flex: 0 0 100%
  }
}

/* ════ REVIEWS SLIDER ════ */
.rev-slider-wrap {
  position: relative;
  margin-top: 48px
}

.rev-viewport {
  overflow: hidden;
  width: 100%
}

.rev-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94)
}

.rev-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px
}

.rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-m);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 5
}

.rev-nav:hover {
  background: var(--bg)
}

.rev-nav--prev {
  left: -22px
}

.rev-nav--next {
  right: -22px
}

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px
}

@media (max-width: 640px) {
  .rev-dots {
    display: none !important;
  }

  .rev-nav {
    display: none !important;
  }
}

.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  border: none;
  transition: background .3s;
  padding: 0
}

.rv-dot.active {
  background: var(--white)
}

/* ════ INTERIOR SLIDER ════ */
.int-slider-wrap {
  position: relative;
  margin-top: 44px
}

.int-viewport {
  overflow: hidden;
  width: 100%
}

.int-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.25, .46, .45, .94)
}

.int-slide {
  flex: 0 0 calc(33.333% - 11px);
  display: block;
  border-radius: 3px;
  overflow: hidden;
  position: relative
}

.int-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .5s ease, transform .5s ease
}

.int-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.04)
}

.int-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .35) 0%, transparent 55%);
  pointer-events: none
}

.int-nav {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-m);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 5
}

.int-nav:hover {
  background: var(--bg)
}

.int-nav--prev {
  left: -22px
}

.int-nav--next {
  right: -22px
}

.int-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px
}

.int-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  border: none;
  transition: background .3s;
  padding: 0
}

.int-dot.active {
  background: var(--white)
}

/* ════ CTA BANNER ════ */
.cta-banner {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0
}

.cta-banner__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap
}

.cta-banner__h {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--white)
}

.cta-banner__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px
}

.cta-banner-inp {
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .2s
}

.cta-banner-inp::placeholder {
  color: var(--muted)
}

.cta-banner-inp:focus {
  border-color: rgba(255, 255, 255, .3)
}

.cta-banner-chk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer
}

.cta-banner-chk input {
  margin-top: 1px;
  accent-color: var(--white)
}

.cta-banner-chk a {
  color: var(--dim);
  text-decoration: underline
}

/* ════ SYSTEM APPROACH ════ */
.system {
  background: var(--bg)
}

.sys-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px
}

.sys-intro-text p {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 20px
}

.sys-intro-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px
}

.sys-intro-list {
  list-style: none
}

.sys-intro-list li {
  font-size: 13px;
  color: var(--dim);
  padding: 8px 0 8px 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5
}

.sys-intro-list li:last-child {
  border-bottom: none
}

.sys-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 1px;
  background: var(--red)
}

.sys-img-ph {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 36px
}

.sys-img-ph span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  max-width: 180px
}

.sys-subtitle {
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin: 60px 0 12px;
  letter-spacing: -.01em
}

.sys-sub-p {
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7
}

.sys-table-wrap {
  overflow-x: auto
}

.sys-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden
}

.sys-table thead tr {
  background: var(--bg-2)
}

.sys-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border-m)
}

.sys-table th:last-child {
  color: var(--white)
}

.sys-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--dim);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top
}

.sys-table tr:last-child td {
  border-bottom: none
}

.sys-table td:last-child {
  color: var(--text)
}

.sys-table tr:nth-child(even) {
  background: var(--bg-2)
}

.sys-box {
  background: var(--bg-2);
  border: 1px solid var(--border-m);
  border-radius: 3px;
  padding: 36px;
  text-align: center;
  margin-top: 36px
}

.sys-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px
}

.sys-box p {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.7
}

.sys-box p strong {
  color: var(--white)
}

@media(max-width:900px) {
  .sys-intro {
    grid-template-columns: 1fr
  }
}

/* ════ QUIZ (4 steps) ════ */
.quiz-section {
  background: var(--bg-1)
}

.quiz-box {
  max-width: 800px;
  margin: 0 auto
}

.quiz-box__h {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 12px
}

.quiz-box__sub {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 40px
}

.quiz__step {
  display: none
}

.quiz__step.active {
  display: block
}

.quiz__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px
}

.quiz__opts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px
}

.quiz__opt-card {
  cursor: pointer
}

.quiz__opt-card input {
  display: none
}

.quiz__opt-inner {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 14px;
  text-align: center;
  background: var(--bg-2);
  transition: border-color .2s, background .2s
}

.quiz__opt-card input:checked+.quiz__opt-inner,
.quiz__opt-inner:hover {
  border-color: var(--border-m);
  background: var(--bg-3)
}

.quiz__opt-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--muted)
}

.quiz__opt-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3
}

.quiz__opt-wide {
  grid-column: span 4
}

.quiz__opts-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px
}

.quiz__opt-line {
  cursor: pointer
}

.quiz__opt-line input {
  display: none
}

.quiz__opt-line-inner {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--dim);
  background: var(--bg-2);
  transition: border-color .2s, color .2s
}

.quiz__opt-line input:checked+.quiz__opt-line-inner,
.quiz__opt-line-inner:hover {
  border-color: var(--border-m);
  color: var(--white);
  background: var(--bg-3)
}

.quiz__step-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px
}

.quiz__step-form p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 8px
}

.quiz__nav {
  display: flex;
  gap: 12px;
  margin-top: 24px
}

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

/* ════ FAQ 2-COL ════ */
.faq-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 48px
}

@media(max-width:768px) {
  .faq-2col {
    grid-template-columns: 1fr
  }
}

.faq-2col .faq-item {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border)
}

.faq-2col .faq-item:nth-child(even) {
  border-right: none
}

.faq-2col .faq-item:nth-last-child(-n+2) {
  border-bottom: none
}

@media(max-width:768px) {
  .faq-2col .faq-item {
    border-right: none
  }

  .faq-2col .faq-item:last-child {
    border-bottom: none
  }

  .faq-2col .faq-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }

  .faq-2col .faq-item:last-child {
    border-bottom: none
  }
}

.faq-2col .faq-btn {
  padding: 22px 24px;
  font-size: 14px
}

.faq-2col .faq-ans p {
  padding: 0 24px 22px;
  font-size: 13px
}

/* ════ CONTACTS ════ */
.contacts {
  background: var(--bg-2)
}

.contacts__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.contacts__h {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 18px 0 36px
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contacts__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1px solid var(--border-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white)
}

.contacts__data {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.contacts__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted)
}

.contacts__val {
  font-size: 15px;
  font-weight: 600;
  color: var(--white)
}

.contacts__note {
  font-size: 12px;
  color: var(--dim)
}

.contacts__map {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border: 1px solid var(--border)
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block
}

@media(max-width:900px) {
  .contacts__in {
    grid-template-columns: 1fr
  }
}

/* ────────────────────────────────────────────────────────
   HEADER NAV
──────────────────────────────────────────────────────── */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.hdr.scrolled {
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.hdr__in {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.hdr-nav {
  border-top: 1px solid rgba(255, 255, 255, .04);
  background: rgba(14, 14, 14, .98);
}

.hdr-nav__in {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.hdr-nav__in::-webkit-scrollbar {
  display: none;
}

.hdr-nav__in a {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.hdr-nav__in a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

body {
  padding-top: 108px;
}

@media(max-width:900px) {
  .hdr__in {
    padding: 0 20px;
    height: 58px
  }

  .hdr-nav__in {
    padding: 0 16px
  }

  body {
    padding-top: 98px
  }
}

/* ────────────────────────────────────────────────────────
   REDESIGNED BUTTONS
──────────────────────────────────────────────────────── */
.btn,
.quiz-submit-btn,
.cta-form-btn,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px !important;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.btn-w,
.cta-form-btn {
  background: #ffffff !important;
  color: #080808 !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.06);
}

.btn-w:hover,
.cta-form-btn:hover {
  background: #f3f3f3 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.14);
}

.btn-w:active,
.cta-form-btn:active {
  transform: translateY(0) scale(1);
}

.btn-g {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
}

.btn-g:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
}

.btn-g:active {
  transform: translateY(0) scale(1);
}

.btn-red,
.btn-accent,
.quiz-submit-btn {
  background: var(--red) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(183, 28, 46, 0.18);
}

.btn-red:hover,
.btn-accent:hover,
.quiz-submit-btn:hover {
  background: #c41f31 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(183, 28, 46, 0.35);
}

.btn-red:active,
.btn-accent:active,
.quiz-submit-btn:active {
  transform: translateY(0) scale(1);
}

.btn-sm {
  padding: 11px 24px !important;
  font-size: 10px !important;
}

.btn-arr::after {
  content: '→';
  font-size: 14px;
  transition: transform .18s;
}

.btn-arr:hover::after {
  transform: translateX(4px);
}

/* ────────────────────────────────────────────────────────
   HERO IMAGE (replaces wireframe)
──────────────────────────────────────────────────────── */
.hero-img-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 420px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, .5) 0%, rgba(8, 8, 8, .1) 40%, transparent 100%);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────
   SMILES — 3 per view
──────────────────────────────────────────────────────── */
.smile-box {
  flex: 0 0 calc(33.333% - 11px) !important;
  min-width: 260px !important;
}

.smile-inner {
  height: 300px !important;
  overflow: hidden;
  position: relative;
}

.smile-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.smile-box:hover .smile-inner img {
  transform: scale(1.04);
}

.smiles-reveal-all {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--border-m);
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.smiles-reveal-all:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

/* ────────────────────────────────────────────────────────
   CTA BANNER (full redesign)
──────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(130deg, var(--red) 0%, #7a0c18 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .15);
  pointer-events: none;
}

.cta-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-banner__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px;
}

.cta-banner__h {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 28px;
}

.cta-banner__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-banner__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
}

.cta-banner__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
}

.cta-banner__form-wrap {
  background: rgba(0, 0, 0, .25);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.cta-banner__form-h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.cta-banner-inp {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
  border-radius: 0;
}

.cta-banner-inp:focus {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .16);
}

.cta-banner-inp::placeholder {
  color: rgba(255, 255, 255, .38);
}

.cta-banner-inp+.cta-banner-inp {
  margin-top: 10px;
}

.cta-form-btn {
  margin-top: 16px;
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #080808;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  border-radius: 0;
}

.cta-form-btn:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.cta-banner-chk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  margin-top: 10px;
}

.cta-banner-chk a {
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
}

@media(max-width:768px) {
  .cta-banner__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

/* ────────────────────────────────────────────────────────
   DOCTOR PHOTOS (Unsplash)
──────────────────────────────────────────────────────── */
.doc-photo {
  height: 250px;
  overflow: hidden;
  background: var(--bg-3);
}

.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
  display: block;
}

.doc-card:hover .doc-photo img {
  transform: scale(1.04);
}

.doc-name {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.doc-role {
  color: var(--red) !important;
}

.doc-exp {
  color: var(--dim) !important;
}

/* ────────────────────────────────────────────────────────
   TEXT VISIBILITY FIXES
──────────────────────────────────────────────────────── */
.eyebrow {
  color: var(--red) !important;
  font-weight: 700 !important;
}

.prb-item span {
  color: var(--text) !important;
}

.prb-item i {
  color: var(--red) !important;
}

.why-card-title {
  color: var(--white) !important;
  font-weight: 800 !important;
}

.why-card-desc {
  color: rgba(240, 240, 240, .72) !important;
}

.why-card-num {
  color: rgba(255, 255, 255, .07) !important;
  font-weight: 900 !important;
}

.rev-name {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.rev-role {
  color: var(--red) !important;
}

.rev-text {
  color: rgba(240, 240, 240, .8) !important;
}

.faq-q {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.faq-a {
  color: rgba(240, 240, 240, .75) !important;
}

/* ────────────────────────────────────────────────────────
   SERVICE CARDS
──────────────────────────────────────────────────────── */
.srv-cards-grid .srv-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}

.srv-cards-grid .srv-card:hover {
  border-color: rgba(183, 28, 46, .45);
  transform: translateY(-4px);
}

.srv-card__title {
  color: var(--white) !important;
  font-weight: 900 !important;
}

.srv-card__title::before {
  content: '';
  display: block;
  width: 20px;
  height: 3px;
  background: var(--red);
  margin-bottom: 10px;
}

.srv-card__list li {
  color: rgba(240, 240, 240, .75) !important;
}

.srv-card__list li::before {
  color: var(--red) !important;
}

/* ────────────────────────────────────────────────────────
   ADVANTAGES CARDS
──────────────────────────────────────────────────────── */
.why-card {
  border-left: 3px solid transparent;
  transition: border-color .25s, background .25s;
}

.why-card:hover {
  border-left-color: var(--red);
  background: rgba(183, 28, 46, .04);
}

/* ────────────────────────────────────────────────────────
   REVIEWS CARD
──────────────────────────────────────────────────────── */
.rev-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.rev-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 255, 255, .06);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────
   INTERIOR SLIDER — overflow fix
──────────────────────────────────────────────────────── */
.int-slider-wrap {
  overflow: hidden;
}

.rev-slider-wrap {
  overflow: hidden;
}

.doc-viewport {
  overflow: hidden;
}


/* ─── HEADER: двухрядная вёрстка ─────────────────────────── */
.hdr {
  display: block !important;
  height: auto !important;
  align-items: unset !important;
}

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  height: 66px;
}

@media(max-width:900px) {
  .hdr__in {
    padding: 0 20px;
    height: 56px
  }
}

/* ─── HERO: убрать дублированный padding-top ─────────────── */
.hero {
  padding-top: 0 !important;
}

/* ─── FOOTER: текст виден ────────────────────────────────── */
.ft-col-h {
  color: var(--white) !important;
}

.ft-tagline {
  color: rgba(240, 240, 240, .55) !important;
}

.ft-link {
  color: rgba(240, 240, 240, .6) !important;
}

a.ft-link:hover {
  color: var(--white) !important;
}

.ft-copy {
  color: rgba(240, 240, 240, .5) !important;
}

.ft-legal {
  color: rgba(240, 240, 240, .4) !important;
}

.ft-disclaimer {
  color: rgba(240, 240, 240, .35) !important;
}

.footer-bot {
  border-top: 1px solid var(--border) !important;
}

/* ─── SERVICE CARDS: фото ────────────────────────────────── */
.srv-card__img {
  overflow: hidden;
  padding: 0 !important;
}

.srv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.srv-card:hover .srv-card__img img {
  transform: scale(1.05);
}

/* ─── REVIEWS: аватар-фото ───────────────────────────────── */
.rev-ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-3);
  font-size: 0;
  /* скрыть текстовый инициал если img не загрузился */
}

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

.rev-card {
  padding: 28px;
}

.rev-txt {
  color: rgba(240, 240, 240, .82) !important;
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0;
}

.rev-name {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.rev-role {
  color: var(--red) !important;
  font-size: 11px;
}

.rev-qq {
  font-size: 56px;
  line-height: 0.8;
  color: rgba(183, 28, 46, .35);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.rev-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* ─── INTERIOR: фото из сети ─────────────────────────────── */
.int-slide img {
  filter: none;
  transition: transform .5s, filter .4s;
}

.int-slide:hover img {
  filter: brightness(1.1);
}

/* ─── SYSTEM APPROACH: фото вместо wireframe ─────────────── */
.sys-img-ph {
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-2);
}

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

/* ─── QUIZ: видимые иконки и selected state ──────────────── */
.quiz__opt-icon {
  color: var(--dim) !important;
  font-size: 30px !important;
  margin-bottom: 10px;
}

.quiz__opt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  gap: 6px;
  border: 1px solid var(--border);
  background: var(--bg-1);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}

.quiz__opt-inner:hover {
  border-color: var(--border-m) !important;
  background: var(--bg-3) !important;
}

.quiz__opt-card input:checked+.quiz__opt-inner {
  border-color: var(--red) !important;
  background: rgba(183, 28, 46, .1) !important;
}

.quiz__opt-card input:checked+.quiz__opt-inner .quiz__opt-icon {
  color: var(--red) !important;
}

.quiz__opt-title {
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

/* ─── QUIZ SECTION: общий вид ────────────────────────────── */
.quiz-box {
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 48px;
}

.quiz-box__h {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.quiz-box__sub {
  color: rgba(240, 240, 240, .6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.quiz__q {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.quiz__step-bar {
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}

/* ─── SMILES: расстояния ─────────────────────────────────── */
.smiles__hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.smiles__note {
  color: rgba(240, 240, 240, .5) !important;
  font-size: 13px;
  line-height: 1.65;
  max-width: 360px;
}

.smile-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.smile-cap {
  background: rgba(8, 8, 8, .7);
  border-top: 1px solid var(--border);
}

/* ─── PROBLEMS: иконки красные ───────────────────────────── */
.prb-item {
  background: var(--bg-1);
  border: 1px solid var(--border);
  transition: border-color .2s;
}

.prb-item:hover {
  border-color: rgba(183, 28, 46, .4);
}

.prb-item i {
  color: var(--red) !important;
  font-size: 22px !important;
}

.prb-item span {
  color: var(--text) !important;
  font-size: 14px;
}

/* ─── CTA: исправить overflow ────────────────────────────── */
.cta-banner::before,
.cta-banner::after {
  content: none !important;
}

.cta-banner {
  overflow: visible;
}

.cta-banner::before {
  content: '' !important;
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  pointer-events: none;
  overflow: hidden;
}


/* === PATCH9 === */
.hdr__info {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center
}

.hdr__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap
}

.hdr__info-item>i {
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0
}

.hdr__info-item>div {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.hdr__info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim)
}

.hdr__info-val {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--white)
}

@media(max-width:1100px) {
  .hdr__info {
    display: none
  }
}

.hdr__msn a {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important
}

.hdr__msn img {
  width: 22px !important;
  height: 22px !important
}

.hdr__tel {
  font-size: 17px !important;
  font-weight: 700 !important
}

.hdr__logo-txt b {
  font-size: 17px !important;
  letter-spacing: .06em !important
}

.hdr-nav__in a {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important
}

.hero-img-wrap {
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55) !important
}

.prb-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  margin-top: 48px !important
}

.prb-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 22px 18px !important;
  background: var(--bg-1) !important;
  border: 1px solid var(--border) !important;
  border-bottom: 2px solid transparent !important;
  transition: border-color .22s, background .22s, transform .18s, border-bottom-color .22s !important
}

.prb-item:hover {
  background: rgba(183, 28, 46, .05) !important;
  border-color: rgba(183, 28, 46, .35) !important;
  border-bottom-color: var(--red) !important;
  transform: translateY(-2px) !important
}

.prb-item i {
  font-size: 34px !important;
  color: var(--red) !important;
  line-height: 1 !important
}

.prb-item span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  line-height: 1.45 !important
}

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

.why-list {
  border-top: none !important
}

.why-card {
  background: var(--bg-1) !important;
  border: 1px solid var(--border) !important;
  border-left: 3px solid transparent !important;
  padding: 24px 28px !important;
  margin-bottom: 6px !important;
  transition: border-left-color .22s, background .22s, padding-left .22s !important
}

.why-card:hover {
  background: rgba(183, 28, 46, .06) !important;
  border-color: rgba(183, 28, 46, .3) !important;
  border-left-color: var(--red) !important;
  padding-left: 38px !important
}

.why-card-num {
  color: rgba(255, 255, 255, .12) !important;
  font-weight: 900 !important
}

.why-card-title {
  color: var(--white) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  margin-bottom: 4px !important
}

.why-card-desc {
  color: rgba(240, 240, 240, .68) !important;
  font-size: 13px !important
}

.smile-inner {
  height: 360px !important
}

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

.srv-card__img {
  height: 220px !important
}

.quiz-section {
  background: var(--bg-1)
}

.quiz-2col {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 540px;
  border: 1px solid var(--border);
  overflow: hidden
}

@media(max-width:900px) {
  .quiz-2col {
    grid-template-columns: 1fr
  }
}

.quiz-sidebar {
  background: var(--red);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.quiz-sidebar::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  pointer-events: none
}

.quiz-sidebar::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .12);
  pointer-events: none
}

.quiz-sidebar__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  position: relative;
  z-index: 1
}

.quiz-sidebar__h {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1
}

.quiz-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1
}

.quiz-sidebar__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88)
}

.quiz-sidebar__list li i {
  font-size: 18px;
  color: rgba(255, 255, 255, .7);
  flex-shrink: 0
}

.quiz-sidebar__progress {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  position: relative;
  z-index: 1
}

.quiz-prog-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-left: 2px solid rgba(255, 255, 255, .2);
  opacity: .4;
  transition: opacity .25s, border-color .25s
}

.quiz-prog-item.active,
.quiz-prog-item.current {
  opacity: 1;
  border-left-color: rgba(255, 255, 255, .7)
}

.quiz-prog-item.current {
  border-left-color: #fff
}

.quiz-prog-n {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .9);
  min-width: 22px
}

.quiz-prog-l {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8)
}

@media(max-width:900px) {
  .quiz-sidebar {
    padding: 28px 20px
  }

  .quiz-sidebar__progress {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0
  }

  .quiz-prog-item {
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, .2);
    padding: 6px 8px
  }
}

.quiz-main {
  padding: 44px 48px;
  background: var(--bg-1);
  display: flex;
  flex-direction: column
}

@media(max-width:900px) {
  .quiz-main {
    padding: 28px 20px
  }
}

.quiz__step-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(183, 28, 46, .1);
  border: 1px solid rgba(183, 28, 46, .25);
  padding: 5px 14px;
  margin-bottom: 20px
}

.quiz__opts-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px !important;
  margin-bottom: 0 !important
}

@media(max-width:700px) {
  .quiz__opts-grid {
    grid-template-columns: repeat(2, 1fr) !important
  }
}

.quiz__opt-card {
  display: block;
  cursor: pointer
}

.quiz__opt-card input {
  display: none
}

.quiz__opt-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 22px 10px !important;
  gap: 10px !important;
  border: 1px solid var(--border) !important;
  background: var(--bg-2) !important;
  transition: border-color .18s, background .18s !important;
  cursor: pointer !important
}

.quiz__opt-inner:hover {
  border-color: rgba(183, 28, 46, .4) !important;
  background: rgba(183, 28, 46, .06) !important
}

.quiz__opt-card input:checked+.quiz__opt-inner {
  border-color: var(--red) !important;
  background: rgba(183, 28, 46, .12) !important
}

.quiz__opt-card input:checked+.quiz__opt-inner .quiz__opt-icon {
  color: var(--red) !important
}

.quiz__opt-icon {
  font-size: 32px !important;
  color: rgba(240, 240, 240, .45) !important;
  line-height: 1 !important
}

.quiz__opt-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1.35 !important
}

.quiz__opt-wide {
  grid-column: 1/-1
}

.quiz__opt-wide .quiz__opt-inner {
  flex-direction: row !important;
  justify-content: center !important;
  padding: 14px 12px !important
}

.quiz__opts-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important
}

.quiz__opt-line {
  display: block;
  cursor: pointer
}

.quiz__opt-line input {
  display: none
}

.quiz__opt-line-inner {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 20px !important;
  border: 1px solid var(--border) !important;
  background: var(--bg-2) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(240, 240, 240, .8) !important;
  transition: border-color .18s, background .18s, color .18s !important;
  cursor: pointer !important
}

.quiz__opt-line-inner i {
  font-size: 20px;
  color: var(--dim);
  flex-shrink: 0
}

.quiz__opt-line-inner:hover {
  border-color: rgba(183, 28, 46, .4) !important;
  background: rgba(183, 28, 46, .06) !important;
  color: var(--white) !important
}

.quiz__opt-line input:checked+.quiz__opt-line-inner {
  border-color: var(--red) !important;
  background: rgba(183, 28, 46, .12) !important;
  color: var(--white) !important
}

.quiz__opt-line input:checked+.quiz__opt-line-inner i {
  color: var(--red) !important
}

.quiz__q {
  font-size: clamp(17px, 2vw, 22px) !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  line-height: 1.25 !important;
  margin-bottom: 24px !important;
  letter-spacing: -.01em !important
}

.quiz__step4-sub {
  font-size: 14px;
  color: rgba(240, 240, 240, .6);
  margin-bottom: 20px;
  line-height: 1.6
}

.quiz-inp {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color .2s
}

.quiz-inp:focus {
  border-color: var(--red)
}

.quiz-submit-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background .2s, transform .15s
}

.quiz-submit-btn:hover {
  background: #c41f31;
  transform: translateY(-1px)
}

.quiz-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--dim);
  cursor: pointer
}

.quiz-check a {
  color: rgba(240, 240, 240, .5)
}

.quiz__nav {
  display: flex !important;
  gap: 12px !important;
  padding-top: 28px !important;
  margin-top: auto !important;
  border-top: 1px solid var(--border) !important
}

.quiz-btn-prev,
.quiz-btn-next {
  padding: 14px 28px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border: none !important;
  transition: background .2s, transform .15s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important
}

.quiz-btn-next {
  background: var(--red) !important;
  color: #fff !important
}

.quiz-btn-next:hover {
  background: #c41f31 !important;
  transform: translateY(-1px) !important
}

.quiz-btn-prev {
  background: transparent !important;
  color: var(--dim) !important;
  border: 1px solid var(--border) !important
}

.quiz-btn-prev:hover {
  border-color: rgba(255, 255, 255, .3) !important;
  color: var(--white) !important
}

.sys-box {
  background: var(--red) !important;
  color: #fff !important;
  padding: 36px 48px !important;
  margin-top: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  flex-wrap: wrap !important
}

.sys-box h3 {
  color: #fff !important;
  font-size: clamp(18px, 2vw, 24px) !important;
  margin: 0 0 8px !important
}

.sys-box p {
  color: rgba(255, 255, 255, .85) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0 0 6px !important
}

.sys-box strong {
  color: #fff !important;
  font-size: 1.4em !important
}

.sys-table thead th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left
}

.sys-table thead th:first-child {
  background: var(--bg-2);
  color: var(--dim)
}

.sys-table thead th:last-child {
  background: var(--red);
  color: #fff
}

.sys-table tbody tr {
  border-bottom: 1px solid var(--border)
}

.sys-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, .015)
}

.sys-table tbody td {
  padding: 14px 20px;
  font-size: 13px;
  line-height: 1.55;
  vertical-align: top
}

.sys-table td:first-child {
  color: var(--dim);
  text-decoration: line-through;
  text-decoration-color: rgba(183, 28, 46, .4)
}

.sys-table td:last-child {
  color: rgba(240, 240, 240, .9);
  font-weight: 600
}

/* === FINAL LAYOUT REPAIR 2026-06-19 === */
.hero {
  padding-top: 66px !important
}

.hero-slides-wrap {
  display: grid;
  align-items: start;
  min-height: calc(100vh - 208px)
}

.hero__slide {
  justify-content: flex-start !important;
  padding: 24px 48px 12px !important;
}

.hero__slide-inner {
  align-items: start !important
}

.hero__dots {
  padding-top: 12px !important
}

.srv-card__img {
  height: 240px !important;
  aspect-ratio: auto !important;
  overflow: hidden;
  padding: 0 !important;
}

.srv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.prb-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  background: transparent !important;
  border: none !important;
}

.prb-item {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  min-height: 160px;
  padding: 24px 22px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .012)) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

.prb-item i {
  font-size: 36px !important
}

.prb-item span {
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: rgba(240, 240, 240, .82) !important;
  max-width: 18ch;
}

.accent-form {
  padding: 96px 0 !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(135deg, #b71c2e 0%, #9d1526 100%) !important;
}

.accent-form__in {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px !important;
  align-items: start !important;
  text-align: left !important;
}

.accent-form__h {
  max-width: 7ch;
  line-height: .92 !important;
  margin: 0 !important;
}

.accent-form__row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px !important;
  width: 100% !important;
  max-width: none !important;
}

.accent-form__note {
  max-width: 34ch;
  color: rgba(255, 255, 255, .72) !important;
}

.accent-form__in>.accent-form__h {
  grid-column: 1;
  align-self: end;
}

.accent-form__in>.accent-form__row {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: rgba(9, 9, 9, .18);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.accent-form__in>.accent-form__note {
  grid-column: 1;
  align-self: start;
}

.btn-accent {
  width: 100%
}

.why-layout {
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr) !important;
  gap: 64px !important;
}

.why-left {
  max-width: 420px
}

.why-h {
  font-size: clamp(52px, 5vw, 76px) !important;
  font-weight: 900 !important;
  line-height: .9 !important;
  margin: 24px 0 28px !important;
}

.why-sub {
  color: rgba(240, 240, 240, .66) !important;
  max-width: 34ch;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card {
  align-items: flex-start;
  gap: 18px !important;
  padding: 26px 28px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-left: 3px solid transparent !important;
}

.why-card-num {
  min-width: 42px;
  font-size: 12px !important;
  color: rgba(255, 255, 255, .16) !important;
}

.smile-inner {
  height: 380px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  background: #0c0c0c !important;
}

.smile-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: blur(14px);
  transition: filter 0.4s ease-in-out, transform 0.5s ease !important;
}

.smile-inner:hover img {
  filter: blur(0px) !important;
  transform: scale(1.025);
}

.smile-blur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.35s ease, background-color 0.35s ease;
  z-index: 5;
}

.smile-blur-overlay i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.smile-blur-overlay span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--red);
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(183, 28, 46, 0.4);
  transition: background-color 0.2s, transform 0.2s;
}

.smile-inner:hover .smile-blur-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.smile-inner:hover .smile-blur-overlay i {
  transform: scale(1.15);
}

.smile-inner:hover .smile-blur-overlay span {
  background: #c41f31;
}

.quiz-2col {
  grid-template-columns: 320px minmax(0, 1fr) !important;
  min-height: 580px !important;
}

.quiz-sidebar {
  display: flex !important;
  visibility: visible !important;
}

.ft-tagline,
.ft-link,
.ft-copy,
.ft-legal,
.ft-disclaimer {
  color: rgba(240, 240, 240, .64) !important;
}

.ft-col-h {
  color: rgba(240, 240, 240, .82) !important
}

.ft-disclaimer--strong {
  margin-top: 6px;
  font-weight: 800;
  color: rgba(240, 240, 240, .78) !important;
}

@media(max-width:1100px) {
  .prb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
  }
}

@media(max-width:900px) {
  .hero__slide {
    padding: 18px 20px 8px !important
  }

  .accent-form__in {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .accent-form__h,
  .accent-form__note {
    max-width: none
  }

  .accent-form__in>.accent-form__h,
  .accent-form__in>.accent-form__row,
  .accent-form__in>.accent-form__note {
    grid-column: auto;
    grid-row: auto;
  }

  .why-layout {
    grid-template-columns: 1fr !important
  }

  .prb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

  .quiz-2col {
    grid-template-columns: 1fr !important
  }
}

@media(max-width:640px) {
  .prb-grid {
    grid-template-columns: 1fr !important
  }

  .prb-item {
    min-height: auto
  }

  .accent-form__row {
    grid-template-columns: 1fr !important
  }

  .smile-inner {
    height: 320px !important
  }
}

/* === FINAL LAYOUT REPAIR 2026-06-19 / PASS 2 === */
body {
  padding-top: 138px !important
}

.section-title {
  font-size: clamp(34px, 3.9vw, 52px) !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
  line-height: 1.02 !important;
  margin-top: 18px !important;
  color: var(--white) !important;
}

.section-title--center {
  text-align: center
}

.section-title--narrow {
  max-width: 10ch
}

.hdr {
  background: rgba(8, 8, 8, .94) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.hdr__in {
  max-width: 1350px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  height: auto !important;
  padding: 14px 40px !important;
}

.hdr__logo {
  min-width: 0
}

.hdr__logo img {
  height: 38px !important;
  width: auto !important;
  object-fit: contain !important
}

.hdr__logo-txt b {
  font-size: 12px !important;


  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;

  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

.hdr__logo-txt span {
  display: block;
  max-width: 170px;
  font-size: 10px;
  line-height: 1.25
}

.hdr__info {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.hdr__info-item {
  align-items: flex-start !important;
  white-space: normal !important
}

.hdr__info-val {
  font-size: 12px !important;
  line-height: 1.35 !important
}

.hdr__right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  min-width: max-content;
}

.hdr__tel {
  font-size: clamp(18px, 1.7vw, 22px) !important;
  line-height: 1 !important;
  white-space: nowrap !important
}

.hdr__msn {
  display: flex;
  gap: 8px
}

.hdr__msn a {
  flex-shrink: 0
}

.hdr__right .btn {
  padding: 13px 22px !important
}

.hdr-nav__in {
  padding: 0 40px !important
}

.hdr-nav__in a {
  font-size: 11px !important
}

.hero {
  padding-top: 20px !important
}

.hero-slides-wrap {
  display: grid;
  align-items: start;
  min-height: auto !important
}

.hero__slide {
  justify-content: flex-start !important;
  padding: 12px 48px 0 !important
}

.hero__slide-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px) !important;
  gap: 42px !important;
  align-items: center !important
}

.hero__slide h1 {
  font-size: clamp(32px, 4.5vw, 52px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.02em !important;
  margin-bottom: 20px !important
}

.hero__slide ul li {
  font-size: 18px !important;
  line-height: 1.55 !important;
  color: rgba(240, 240, 240, .8) !important
}

.hero__slide-actions {
  gap: 16px !important
}

.hero__dots {
  padding-top: 18px !important
}

.hero-img-wrap {
  height: 420px !important
}

.srv-card__img {
  height: 240px !important;
  aspect-ratio: auto !important;
  overflow: hidden;
  padding: 0 !important
}

.srv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.srv-card__title {
  font-size: 22px !important;
  line-height: 1.1 !important
}

@media (max-width: 640px) {
  .srv-card__title {
    font-size: 19px !important;
    line-height: 1.15 !important;
    text-transform: none !important;
  }
}

.srv-card__list li {
  font-size: 16px !important;
  line-height: 1.58 !important
}

.srv-card .btn.btn-g {
  margin-top: auto
}

.srv-card__list--collapsed {
  max-height: 180px;
  overflow: hidden;
  transition: max-height .35s ease
}

.srv-card__list--collapsed.is-open {
  max-height: 2000px
}

.prb-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  background: transparent !important;
  border: none !important
}

.prb-item {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  min-height: 170px;
  padding: 24px 22px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .012)) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

.prb-item i {
  font-size: 36px !important
}

.prb-item span {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: rgba(240, 240, 240, .82) !important;
  max-width: 18ch
}

.accent-form {
  padding: 96px 0 !important;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .08), transparent 28%), linear-gradient(135deg, #b71c2e 0%, #9d1526 100%) !important
}

.accent-form__in {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 48px !important;
  align-items: start !important;
  text-align: left !important
}

.accent-form__h {
  max-width: 7ch;
  line-height: .9 !important;
  margin: 0 !important;
  font-size: clamp(46px, 5vw, 76px) !important
}

.accent-form__row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: none !important;
}

.accent-form__row .accent-inp:nth-child(1) {
  grid-column: 1 !important;
}

.accent-form__row .accent-inp:nth-child(2) {
  grid-column: 2 !important;
}

.accent-form__row .btn-accent {
  grid-column: 1 / span 2 !important;
  width: 100% !important;
}

.accent-form__row .accent-chk {
  grid-column: 1 / span 2 !important;
}

.accent-form__note {
  max-width: 36ch;
  color: rgba(255, 255, 255, .76) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.accent-form__in>.accent-form__h {
  grid-column: 1;
  align-self: end;
}

.accent-form__in>.accent-form__row {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: rgba(9, 9, 9, .18);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.accent-form__in>.accent-form__note {
  grid-column: 1;
  align-self: start;
}

.accent-chk {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-top: 8px !important;
  cursor: pointer !important;
}

.accent-chk input {
  margin-top: 2px !important;
  accent-color: #ffffff !important;
}

.accent-chk a {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.btn-accent {
  width: 100%
}

.why-layout {
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr) !important;
  gap: 64px !important
}

.why-left {
  max-width: 420px
}

.why-h {
  font-size: clamp(52px, 5vw, 76px) !important;
  font-weight: 900 !important;
  line-height: .9 !important;
  margin: 24px 0 28px !important
}

.why-sub {
  color: rgba(240, 240, 240, .68) !important;
  max-width: 34ch;
  font-size: 17px !important;
  line-height: 1.65 !important
}

.why-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.why-card {
  align-items: flex-start !important;
  gap: 20px !important;
  padding: 32px 36px !important;
  background: var(--bg-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 6px !important;
  border-left: 3px solid transparent !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.why-card:hover {
  background: var(--bg-3) !important;
  border-color: rgba(183, 28, 46, 0.3) !important;
  border-left-color: var(--red) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(183, 28, 46, 0.08) !important;
  padding-left: 42px !important;
}

.why-card-num {
  min-width: 42px;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--red) !important;
  opacity: 0.8;
}

.why-card-title {
  font-size: 16px !important
}

.why-card-desc {
  font-size: 15px !important;
  line-height: 1.65 !important
}

.smiles-slider-container {
  position: relative
}

.smiles-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch
}

.smiles-row::-webkit-scrollbar {
  display: none
}

.smile-box {
  flex: 0 0 calc(33.333% - 12px) !important;
  min-width: 320px !important;
  scroll-snap-align: start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.smile-inner {
  height: 380px !important
}

.smile-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.smile-cap {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(8, 8, 8, .86);
  border-top: 1px solid var(--border)
}

.smile-case {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red)
}

.smile-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white)
}

.smile-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(240, 240, 240, .68)
}

.rev-card {
  padding: 30px !important
}

.rev-ava {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-3)
}

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

.rev-txt {
  color: rgba(240, 240, 240, .84) !important;
  font-size: 16px !important;
  line-height: 1.65 !important
}

.int-addr {
  color: rgba(240, 240, 240, .58) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  max-width: 34ch
}

.cta-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 56px;
  align-items: center
}

.cta-banner__h {
  font-size: clamp(40px, 4.8vw, 64px) !important
}

.cta-banner__list li {
  font-size: 16px !important
}

.cta-banner__form-wrap {
  padding: 40px !important
}

.sys-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 36px;
  align-items: center
}

.sys-intro p,
.sys-intro-list li {
  font-size: 16px !important;
  line-height: 1.72 !important
}

.sys-img-ph {
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-2);
  height: 420px !important
}

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

.sys-subtitle {
  font-size: clamp(32px, 3.4vw, 46px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
  margin: 44px 0 14px !important;
  max-width: 15ch
}

.sys-sub-p {
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: rgba(240, 240, 240, .68) !important;
  max-width: 58ch;
  margin-bottom: 26px !important
}

.sys-comparison-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin-top: 40px !important;
}

.sys-compare-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1px !important;
  background: var(--border) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
}

.sys-compare-card:hover {
  border-color: rgba(183, 28, 46, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}

.sys-compare-side {
  padding: 24px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.sys-compare-side--bad {
  background: var(--bg-1) !important;
}

.sys-compare-side--bad .sys-compare-header {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase !important;
  color: var(--dim) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.sys-compare-side--bad .sys-compare-header i {
  color: var(--dim) !important;
  font-size: 16px !important;
}

.sys-compare-side--bad p {
  font-size: 14px !important;
  color: var(--dim) !important;
  line-height: 1.5 !important;
  text-decoration: line-through !important;
  text-decoration-color: rgba(183, 28, 46, 0.45) !important;
}

.sys-compare-side--good {
  background: var(--bg-2) !important;
}

.sys-compare-side--good .sys-compare-header {
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  text-transform: uppercase !important;
  color: var(--white) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.sys-compare-side--good .sys-compare-header i {
  color: var(--red) !important;
  font-size: 16px !important;
}

.sys-compare-side--good p {
  font-size: 15px !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

@media(max-width:768px) {
  .sys-compare-card {
    grid-template-columns: 1fr !important;
  }

  .sys-compare-side--good {
    border-top: 1px solid var(--border) !important;
  }
}

.sys-box {
  background: linear-gradient(135deg, #b71c2e 0%, #8f1323 100%) !important;
  color: #fff !important;
  padding: 38px 48px !important;
  margin-top: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  flex-wrap: wrap !important
}

.sys-box h3 {
  color: #fff !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  margin: 0 0 8px !important
}

.sys-box p {
  color: rgba(255, 255, 255, .85) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  margin: 0 0 6px !important
}

.sys-box strong {
  color: #fff !important;
  font-size: 1.4em !important
}

.quiz-2col {
  grid-template-columns: 320px minmax(0, 1fr) !important;
  min-height: 580px !important
}

.quiz-sidebar {
  display: flex !important;
  visibility: visible !important
}

.quiz__opts-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-bottom: 0 !important
}

.quiz__opt-wide {
  grid-column: auto !important
}

.quiz__opt-title {
  font-size: 12px !important;
  line-height: 1.45 !important
}

.doc-photo {
  height: 290px !important
}

.doc-name {
  font-size: 18px !important
}

.doc-role {
  font-size: 14px !important
}

.doc-exp {
  font-size: 14px !important
}

.contacts__val {
  font-size: 18px !important;
  line-height: 1.35 !important;
  color: var(--white) !important
}

.contacts__note {
  font-size: 14px !important;
  line-height: 1.5 !important
}

.msn-item__phone-icon {
  font-size: 18px
}

.ft-tagline,
.ft-link,
.ft-copy,
.ft-legal,
.ft-disclaimer {
  color: rgba(240, 240, 240, .64) !important
}

.ft-col-h {
  color: rgba(240, 240, 240, .82) !important
}

.ft-disclaimer--strong {
  margin-top: 6px;
  font-weight: 800;
  color: rgba(240, 240, 240, .78) !important
}

@media(max-width:1180px) {
  body {
    padding-top: 118px !important
  }

  .hdr__in {
    grid-template-columns: auto auto !important;
    gap: 18px;
    padding: 12px 24px !important
  }

  .hdr__info {
    display: none !important
  }
}

@media(max-width:1100px) {
  .prb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
  }
}

@media(max-width:900px) {
  body {
    padding-top: 104px !important
  }

  .hdr__in {
    grid-template-columns: 1fr auto !important;
    min-height: 72px;
    padding: 12px 18px !important;
    gap: 12px
  }

  .hdr__logo-txt span {
    display: none
  }

  .hdr__msn {
    display: none
  }

  .hdr__tel {
    font-size: 16px !important
  }

  .hdr__right .btn {
    padding: 12px 14px !important;
    font-size: 10px !important
  }

  .hero__slide {
    padding: 18px 20px 8px !important
  }

  .hero__slide-inner {
    grid-template-columns: 1fr !important
  }

  .accent-form__in {
    grid-template-columns: 1fr !important;
    gap: 28px !important
  }

  .accent-form__h,
  .accent-form__note {
    max-width: none
  }

  .accent-form__in>.accent-form__h,
  .accent-form__in>.accent-form__row,
  .accent-form__in>.accent-form__note {
    grid-column: auto;
    grid-row: auto
  }

  .why-layout {
    grid-template-columns: 1fr !important
  }

  .prb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

  .smile-box {
    flex-basis: calc(50% - 9px) !important
  }

  .cta-banner__grid {
    grid-template-columns: 1fr !important
  }

  .sys-intro {
    grid-template-columns: 1fr !important
  }

  .quiz-2col {
    grid-template-columns: 1fr !important
  }

  .quiz__opts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}

@media(max-width:640px) {
  .section-title {
    font-size: clamp(28px, 10vw, 40px) !important
  }

  .hero__slide h1 {
    font-size: 42px !important
  }

  .prb-grid {
    grid-template-columns: 1fr !important
  }

  .smile-box {
    flex-basis: 100% !important;
    min-width: 100% !important
  }

  .cta-banner__form-wrap {
    padding: 28px !important
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   PREMIUM CUSTOM DESIGN OVERRIDES (bug fixes & polishing)
   ────────────────────────────────────────────────────────────────────────── */

/* --- Header & Navigation UI --- */
.hdr__logo img,
.ft-logo img {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
}

.hdr__msn a {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, .05) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  transition: all 0.3s ease !important;
}

.hdr__msn a:hover {
  background: rgba(255, 255, 255, .16) !important;
  border-color: rgba(255, 255, 255, .3) !important;
  transform: translateY(-1px) !important;
}

.hdr__msn img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
}

/* --- Hero Slide dots and spacing (reduced gaps) --- */
.hero {
  min-height: auto !important;
  height: auto !important;
  padding-top: 130px !important;
  padding-bottom: 0 !important;
}

.hero-slides-wrap {
  min-height: auto !important;
  height: auto !important;
}

.hero__slide {
  padding: 10px 48px 45px !important;
}

.hero__dots {
  position: relative !important;
  z-index: 10 !important;
  display: flex !important;
  gap: 8px !important;
  padding: 0 48px !important;
  margin: -10px auto 45px !important;
  max-width: 1280px !important;
  width: 100% !important;
}

.hero__stats {
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 90px !important;
  }

  .hero__dots {
    margin: 6px auto 16px !important;
    padding: 0 18px !important;
  }
}

/* --- Services form card tooth decor & gradient --- */
.srv-card--form {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(183, 28, 46, 0.18) 100%) !important;
  z-index: 2 !important;
}

.srv-card-decor {
  position: absolute !important;
  bottom: -20px !important;
  right: -20px !important;
  width: 140px !important;
  height: 140px !important;
  object-fit: contain !important;
  opacity: 0.12 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.srv-form {
  position: relative !important;
  z-index: 5 !important;
}

/* --- Accent Form Realignment (Solves Duplicate & Crooked Look) --- */
.accent-form {
  padding: 90px 0 !important;
}

.accent-form__in {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 60px !important;
  align-items: center !important;
  text-align: left !important;
}

.accent-form__in>.accent-form__h {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  max-width: none !important;
  margin: 0 !important;
}

.accent-form__in>.accent-form__row {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

@media (max-width: 900px) {
  .accent-form__in {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .accent-form__in>.accent-form__h,
  .accent-form__in>.accent-form__row {
    grid-column: 1 !important;
  }

  .fancybox-image {
    filter: grayscale(1) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .accent-inp {
    margin-bottom: 20px;
    width: 100%;
  }

  .accent-form__in>.accent-form__row {
    width: 100%;
    display: block !important;
  }

  .accent-form__in>.accent-form__row {
    grid-row: 2 !important;
  }
}

/* --- Smiles Section (Before/After aspect ratio & no-click bug fixes) --- */
.smile-inner {
  height: 240px !important;
  background: #080808 !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border-bottom: none !important;
}

.smile-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #080808 !important;
}

/* Completely remove the old absolute-positioned .smile-cap properties */
.smile-cap {
  position: static !important;
  inset: auto !important;
  background: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
  display: block !important;
}

/* Style the renamed static caption block */
.smile-caption {
  padding: 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  background: var(--bg-2) !important;
  border-top: 1px solid var(--border) !important;
  position: relative !important;
  z-index: 2 !important;
}

.smile-case {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
}

.smile-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--white) !important;
}

.smile-desc {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: rgba(240, 240, 240, 0.68) !important;
}

/* --- Clinic Interior Grayscale --- */
.int-slide img {
  filter: grayscale(100%) !important;
  transition: filter 0.35s cubic-bezier(.25, .46, .45, .94), transform 0.5s ease !important;
}

.int-slide:hover img {
  filter: grayscale(0%) !important;
}

/* --- System Approach Readability Overrides --- */
.sys-compare-side--bad p {
  text-decoration: none !important;
  /* Remove line-through for readability */
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(240, 240, 240, 0.55) !important;
  opacity: 0.8 !important;
}

.sys-compare-side--good p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--white) !important;
  font-weight: 500 !important;
}

.sys-compare-header {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* --- Doctors Card Heights --- */
.doc-photo {
  height: 360px !important;
}

.doc-photo img {
  object-position: center 15% !important;
}


/* --- Regulatory Documents Section --- */
.docs-section {
  background: var(--bg-1) !important;
  border-top: 1px solid var(--border) !important;
}

.docs-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px 40px !important;
  margin-top: 40px !important;
}

@media (max-width: 768px) {
  .docs-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

.doc-link-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px 20px !important;
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.doc-link-item:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(183, 28, 46, 0.35) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.doc-link-item i {
  font-size: 22px !important;
  color: var(--red) !important;
  flex-shrink: 0 !important;
}

.doc-link-item span {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(240, 240, 240, 0.76) !important;
  line-height: 1.45 !important;
  transition: color 0.2s !important;
}

.doc-link-item:hover span {
  color: var(--white) !important;
}

/* --- Global Spacing & Typography Standardization (UI-Kit) --- */
section.section {
  padding: 95px 0 !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 54px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.05 !important;
}


/* --- CSS overrides for new feedback --- */

/* Decrease top paddings */
.hero {
  padding-top: 85px !important;
}

body {
  padding-top: 104px !important;
}

.hero-img-wrap {
  height: 500px !important;
  /* Taller images */
}

/* Services card 6 background image */
.srv-card--form {
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.95) 100%), url('photo/3.webp') no-repeat center !important;
  background-size: cover !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Expand button styling */
.btn-expand {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  border-radius: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  margin-bottom: 20px !important;
  transition: all 0.25s ease !important;
}

.btn-expand:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
}

/* Smiles blur click behavior (Remove hover unblur overrides) */
.smile-blur-overlay * {
  pointer-events: none !important;
}

.smile-inner img {
  filter: blur(14px) !important;
  transition: filter 0.4s ease-in-out, transform 0.5s ease !important;
}

.smile-inner:hover img {
  filter: blur(14px) !important;
  transform: none !important;
}

.smile-inner.unblurred img {
  filter: blur(0px) !important;
}

.smile-inner.unblurred:hover img {
  filter: blur(0px) !important;
}

.smile-inner.unblurred .smile-blur-overlay {
  display: none !important;
}

/* Remove forced aspect-ratio space from smile box cards */
.smile-box {
  aspect-ratio: auto !important;
}

/* Slider Nav Buttons overrides (Larger white circles with black arrow) */
.doc-nav,
.rev-nav,
.int-nav {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #000000 !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
  z-index: 10 !important;
}

.doc-nav:hover,
.rev-nav:hover,
.int-nav:hover {
  background: #e5e5e5 !important;
  color: #000000 !important;
  transform: scale(1.08) !important;
}

.doc-nav--prev,
.rev-nav--prev,
.int-nav--prev {
  left: -26px !important;
}

.doc-nav--next,
.rev-nav--next,
.int-nav--next {
  right: -26px !important;
}

/* Prevent nav arrows clipping */
.rev-slider-wrap,
.int-slider-wrap {
  overflow: visible !important;
}

.rev-viewport,
.int-viewport {
  overflow: hidden !important;
  width: 100% !important;
}

/* System Approach Redesign & Alignment */
.sys-intro {
  align-items: stretch !important;
}

.sys-img-ph {
  height: 100% !important;
  aspect-ratio: auto !important;
  display: flex !important;
}

.sys-img-ph img {
  width: 100% !important;
  height: 100%;
  object-fit: cover !important;
  filter: grayscale(100%) !important;
  border-radius: 3px !important;
}

.sys-subtitle {
  text-align: center !important;
  margin: 70px auto 16px !important;
  max-width: 45ch !important;
  font-size: clamp(28px, 3.5vw, 40px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

.sys-sub-p {
  text-align: center !important;
  margin: 0 auto 40px !important;
  max-width: 65ch !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: rgba(240, 240, 240, 0.7) !important;
}

.sys-comparison-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  margin-top: 48px !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .sys-comparison-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

.sys-compare-column {
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  padding: 36px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.sys-compare-column--good {
  border-color: rgba(183, 28, 46, 0.45) !important;
  box-shadow: 0 12px 40px rgba(183, 28, 46, 0.08) !important;
  background: linear-gradient(180deg, var(--bg-2) 0%, rgba(183, 28, 46, 0.04) 100%) !important;
}

.sys-column-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  border-bottom: 1px solid var(--border) !important;
  padding-bottom: 18px !important;
}

.sys-compare-column--bad .sys-column-header {
  color: var(--dim) !important;
}

.sys-compare-column--bad .sys-column-header i {
  color: var(--dim) !important;
}

/* ── Smiles mosaic: override old flex-slider, use grid instead ── */
#smiles-slider {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 420px !important;
  gap: 14px !important;
  overflow: visible !important;
  flex-direction: unset !important;
  scroll-snap-type: unset !important;
}

#smiles-slider .smile-box,
#smiles-slider .smile-box--portrait {
  flex: unset !important;
  min-width: 0 !important;
  scroll-snap-align: unset !important;
}

.sys-compare-column--good .sys-column-header {
  color: var(--white) !important;
}

.sys-compare-column--good .sys-column-header i {
  color: var(--red) !important;
}

.sys-column-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.sys-column-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.sys-item-num {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
  margin-top: 3px !important;
}

.sys-compare-column--good .sys-item-num {
  color: var(--red) !important;
}

.sys-column-item p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.sys-compare-column--bad .sys-column-item p {
  color: rgba(240, 240, 240, 0.55) !important;
}

.sys-compare-column--good .sys-column-item p {
  color: var(--white) !important;
  font-weight: 500 !important;
}

/* FAQ panel sizes */
.faq-btn {
  font-size: clamp(17px, 1.8vw, 21px) !important;
}

.faq-ans p {
  font-size: 16px !important;
}


/* --- CSS overrides for Round 2 UI fixes --- */

/* Fix smiles nav buttons hover translation vertical shift */
.doc-nav:hover,
.rev-nav:hover,
.int-nav:hover {
  background: #e5e5e5 !important;
  color: #000000 !important;
  transform: translateY(-50%) scale(1.08) !important;
}

/* Premium design for all services card buttons */
.srv-card .btn {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 18px 28px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(183, 28, 46, 0.3) !important;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.srv-card .btn:hover {
  background: #d32f2f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45) !important;
}

.srv-card .btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35) !important;
}

/* Card 6 Benefits List styling */
.srv-form-benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 24px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.srv-form-benefits li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.srv-form-benefits li i {
  color: var(--red) !important;
  font-size: 20px !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

.srv-form-benefits li div {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.srv-form-benefits li strong {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
}

.srv-form-benefits li span {
  font-size: 12px !important;
  color: var(--muted) !important;
  line-height: 1.4 !important;
}

/* Problems Grid Card Hover uniform border & shadow */
.prb-item:hover {
  background: rgba(183, 28, 46, 0.08) !important;
  border-color: var(--red) !important;
  box-shadow: 0 6px 20px rgba(183, 28, 46, 0.15) !important;
  transform: translateY(-3px) !important;
}

/* System Approach comprehensive list design improvements */
.sys-intro-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 24px 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.sys-intro-list li {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 20px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
}

.sys-intro-list li:hover {
  background: rgba(183, 28, 46, 0.05) !important;
  border-color: rgba(183, 28, 46, 0.25) !important;
  transform: translateX(4px) !important;
}

.sys-intro-list li i {
  color: var(--red) !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.sys-intro-list li span {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--white) !important;
}

/* FAQ expanded item background highlight */
.faq-item {
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.faq-item.open {
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 3px 0 0 0 var(--red) !important;
}

/* Contacts layout spacing & Map size improvements */
.contacts {
  padding-top: 40px !important;
  padding-bottom: 70px !important;
}

.contacts__in {
  grid-template-columns: 1fr 1.3fr !important;
  gap: 40px !important;
}

.contacts__map {
  height: 460px !important;
  aspect-ratio: auto !important;
}


/* --- CSS overrides for Round 3 design adjustments --- */

/* Replace white buttons with red buttons globally */
.btn-w {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(183, 28, 46, 0.3) !important;
  border: none !important;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-w:hover {
  background: #d32f2f !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45) !important;
}

.btn-w:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35) !important;
}

/* Also turn CTA form white button to red */
.cta-form-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(183, 28, 46, 0.3) !important;
}

.cta-form-btn:hover {
  background: #d32f2f !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.45) !important;
}

/* Smiles mosaic grid -- unified, no flex conflicts */
#smiles-slider {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 420px !important;
  gap: 14px !important;
  overflow: visible !important;
  flex-wrap: unset !important;
  scroll-snap-type: unset !important;
}

#smiles-slider .smile-box,
#smiles-slider .smile-box--portrait {
  flex: unset !important;
  min-width: 0 !important;
  scroll-snap-align: unset !important;
}


/* Restructured Sys Box styling with clinic background */
.sys-box {
  background: linear-gradient(to right, rgba(114, 15, 26, 0.93), rgba(8, 8, 8, 0.95)), url('photo/1.webp') no-repeat center !important;
  background-size: cover !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 44px 48px !important;
  margin-top: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: left !important;
}

.sys-box__left {
  flex: 1 !important;
  max-width: 620px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.sys-box__left h3 {
  font-size: clamp(22px, 2.5vw, 30px) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: var(--white) !important;
  margin: 0 !important;
}

.sys-box__desc {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
}

.sys-box__right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 6px !important;
  flex-shrink: 0 !important;
  text-align: right !important;
}

.sys-box__price-lbl {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.sys-box__price {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
}

.sys-box__price span {
  font-size: clamp(32px, 3.8vw, 44px) !important;
  font-weight: 900 !important;
  color: #ffd600 !important;
  /* Bright yellow accent! */
  display: block !important;
  line-height: 1 !important;
  margin-top: 4px !important;
}

@media (max-width: 768px) {
  .sys-box {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    padding: 36px 28px !important;
    gap: 28px !important;
  }

  .sys-box__left {
    text-align: center !important;
    max-width: 100% !important;
  }

  .sys-box__right {
    align-items: center !important;
    text-align: center !important;
  }
}

/* Margin bottom for Contacts title to create spacing from text */
.contacts .section-title {
  margin-bottom: 48px !important;
}


/* --- CSS overrides for Mobile Navigation & Burger Menu (Round 4) --- */

/* Hamburger Button */
.hdr__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: 14px;
  flex-shrink: 0;
}

.hdr__burger span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

/* Dimming Frosted Overlay */
.hdr__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

/* Mobile Navigation Drawer styles */
@media (max-width: 900px) {
  .hdr__burger {
    display: flex !important;
  }

  /* Hamburger to X Transform */
  .hdr__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(1px, -1px);
  }

  .hdr__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hdr__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 1px);
  }

  .hdr-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: rgba(14, 14, 14, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: none !important;
    z-index: 1000 !important;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding-top: 80px !important;
    display: block !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
  }

  .hdr-nav.active {
    right: 0 !important;
  }

  .hdr-nav__in {
    flex-direction: column !important;
    padding: 0 24px !important;
    gap: 8px !important;
    overflow-y: auto !important;
    height: calc(100% - 80px) !important;
  }

  .hdr-nav__in a {
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    width: 100% !important;
    text-align: left !important;
    color: rgba(240, 240, 240, 0.8) !important;
    border-bottom-color: rgba(255, 255, 255, 0.04) !important;
  }

  .hdr-nav__in a:hover {
    color: var(--white) !important;
    border-bottom-color: var(--red) !important;
  }

  /* Make body scroll-locked when menu open */
  body.menu-locked {
    overflow: hidden !important;
  }
}

/* Floating Messengers Overrides (raised and widened) */
@media (max-width: 900px) {
  .msn-float {
    bottom: 77px !important;
    right: 47px !important;
  }
}

.msn-menu {
  min-width: 240px !important;
  padding: 14px !important;
  gap: 12px !important;
  border-radius: 4px !important;
  background: rgba(22, 22, 22, 0.96) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.msn-item {
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  border-radius: 3px !important;
  transition: all 0.2s ease !important;
}

.msn-item:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
}

/* --- Client corrections: final overrides --- */
.hdr__logo-txt {
  gap: 4px !important;
}

.hdr__logo-txt span {
  font-size: 12px !important;
  color: rgba(240, 240, 240, 0.74) !important;
  letter-spacing: 0.02em !important;
}

.srv-cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.srv-card {
  min-width: 0 !important;
}

.srv-card__title,
.srv-card__list li,
.prb-item span {
  overflow-wrap: anywhere !important;
}

.srv-card__title {
  line-height: 1.15 !important;
}

.why-h {
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1.02 !important;
  max-width: 11ch !important;
}

.why-list-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.56);
}

.why-list-head::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
  display: block;
}

/* Smiles swipe hint: hidden by default, shown only on mobile */
.smiles-swipe-hint {
  display: none;
}

.prb-grid {
  align-items: stretch;
}

.prb-item {
  position: relative;
  min-width: 0;
  min-height: 236px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.prb-item__face {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.prb-item__face span {
  max-width: none !important;
}

.prb-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 22px 20px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(183, 28, 46, 0.88) 100%);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.prb-item__overlay-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prb-item__overlay-text {
  font-size: 13px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

.prb-item:hover .prb-item__face,
.prb-item.prb-item--active .prb-item__face,
.prb-item:focus-visible .prb-item__face {
  opacity: 0.08;
  transform: scale(0.98);
}

.prb-item:hover .prb-item__overlay,
.prb-item.prb-item--active .prb-item__overlay,
.prb-item:focus-visible .prb-item__overlay {
  opacity: 1;
  transform: translateY(0);
}

.prb-item--active {
  border-color: rgba(183, 28, 46, 0.5) !important;
  box-shadow: 0 10px 30px rgba(183, 28, 46, 0.2);
}

.prb-item:focus-visible {
  outline: 1px solid rgba(183, 28, 46, 0.7);
  outline-offset: -1px;
}

.prb-detail {
  display: none !important;
}

.smiles-slider-container {
  overflow: visible !important;
}

.smiles-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 420px !important;
  gap: 14px !important;
  overflow: visible !important;
}

.smile-box--portrait {
  min-width: 0 !important;
  border-radius: 10px;
}

.smile-box--portrait.is-wide {
  grid-column: span 2;
}

.smile-box--portrait.is-tall {
  grid-row: span 2;
}

.smile-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #111;
  aspect-ratio: 4 / 5;
}

.smile-box--portrait.is-tall .smile-portrait {
  aspect-ratio: 4 / 6;
}

.smile-box--portrait.is-wide .smile-portrait {
  aspect-ratio: 16 / 10;
}

.smile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.smile-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.02) 0%, rgba(8, 8, 8, 0.32) 100%);
  pointer-events: none;
}

.smile-box--portrait:hover .smile-portrait img {
  transform: scale(1.035);
  filter: grayscale(1) contrast(1.08);
}

.smile-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.rev-ava {
  display: none !important;
}

.rev-author {
  display: block !important;
}

.doc-link-item--pending {
  cursor: default !important;
}

.doc-link-item--pending:hover {
  transform: none !important;
  box-shadow: none !important;
  background: var(--bg-2) !important;
  border-color: var(--border) !important;
}

.doc-link-item__meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(240, 240, 240, 0.52);
}

.ft-logo-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}

.ft-experience {
  margin-top: -12px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .smiles-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .smile-box--portrait.is-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .srv-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .prb-item {
    min-height: 210px;
  }

  .prb-item__overlay-text {
    font-size: 12.5px;
    line-height: 1.52;
  }

  .prb-detail {
    padding: 20px 22px;
  }

  .prb-detail__title {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .smiles-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .smile-box--portrait.is-wide,
  .smile-box--portrait.is-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .smile-box--portrait.is-wide .smile-portrait,
  .smile-box--portrait.is-tall .smile-portrait {
    aspect-ratio: 4 / 5;
  }

  .why-h {
    max-width: none !important;
  }
}

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

  .smiles-row {
    grid-template-columns: 1fr !important;
  }

  .prb-item {
    min-height: 196px;
  }

  .prb-item__overlay {
    padding: 18px 16px;
  }
}

/* ── SMILES: simple 3×2 grid ── */
.smiles-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 380px);
  gap: 12px;
}

.sms-cell {
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.sms-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.sms-cell:hover img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.12);
}

@media (max-width: 900px) {
  .smiles-grid-simple {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 300px);
  }
}

@media (max-width: 540px) {
  .smiles-grid-simple {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 280px);
  }
}

/* ══════════════════════════════════════════════════════
       MOBILE FIXES  (max-width: 640px)
    ══════════════════════════════════════════════════════ */

@media (max-width: 640px) {

  /* 1. Header: GRID 2 columns (logo | right+burger) — prevents overflow */
  .hdr__in {
    display: grid !important;
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 16px !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .hdr__info {
    display: none !important;
  }

  .hdr__tel {
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    white-space: nowrap !important;
  }

  .hdr__right .btn {
    display: none !important;
  }

  .hdr__logo img {
    height: 100% !important;
  }

  .hdr__right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    min-width: 0 !important;
  }

  .hdr__burger {
    position: static !important;
    transform: none !important;
    flex-shrink: 0 !important;
    display: flex !important;
  }

  /* 2. Section spacing: reduce padding */
  .section {
    padding: 40px 0 !important;
  }

  .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .smiles,
  .reviews,
  .interior {
    padding: 36px 0 !important;
  }

  /* 3. Heading font size: match other sections */
  .section-title,
  .smiles__h,
  .why-h,
  .cta-banner__h {
    font-size: clamp(24px, 7.5vw, 36px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
  }

  /* 4a. Advantages: why-card full-width text layout and horizontal slider */
  .why-right {
    min-width: 0 !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .why-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding-bottom: 12px !important;
  }

  .why-list::-webkit-scrollbar {
    display: none !important;
  }

  .why-card {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0 !important;
    scroll-snap-align: center !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .why-card>div {
    display: inline !important;
  }

  .why-card-num {
    display: inline-block !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    color: var(--red) !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
  }

  .why-card-title {
    display: inline-block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    vertical-align: middle !important;
  }

  .why-card-desc {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(240, 240, 240, 0.72) !important;
    margin-top: 12px !important;
  }

  /* 4b. Swipe hint */
  .why-swipe-hint {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin-bottom: 10px !important;
    font-size: 12px !important;
    color: rgba(240, 240, 240, 0.45) !important;
    font-weight: 500 !important;
  }

  /* 4c. Smiles swipe hint */
  .smiles-swipe-hint {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 6px 0 8px !important;
    font-size: 12px !important;
    color: rgba(240, 240, 240, 0.45) !important;
    font-weight: 500 !important;
  }

  /* 5. Smiles: horizontal slider on mobile */
  .smiles-grid-simple {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 10px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }

  .smiles-grid-simple::-webkit-scrollbar {
    display: none !important;
  }

  .sms-cell {
    flex: 0 0 85vw !important;
    height: 320px !important;
    scroll-snap-align: start !important;
    cursor: pointer !important;
    border-radius: 10px !important;
  }

  /* 6. Reviews: center */
  .rev-slider-wrap {
    overflow: hidden !important;
  }

  .rev-track {
    display: flex !important;
  }

  .rev-card {
    flex: 0 0 90vw !important;
    scroll-snap-align: start !important;
    text-align: center !important;
  }

  .rev-author {
    justify-content: center !important;
  }

  .rev-stars {
    text-align: center !important;
  }

  .rev-nav--prev {
    left: 0 !important;
  }

  .rev-nav--next {
    right: 0 !important;
  }

  /* 7. Interior: 1 slide at a time */
  .int-slide {
    flex: 0 0 100% !important;
    scroll-snap-align: start !important;
  }

  /* 8. Contacts: map on separate row */
  .contacts__in {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .contacts__map {
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .contacts__map iframe {
    width: 100% !important;
    height: 100% !important;
  }
}

/* ===== MOBILE OVERFLOW FIX (ChatGPT) ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.hdr,
.hero,
section,
main {
  max-width: 100%;
}

@media (max-width: 900px) {
  .hdr {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }

  .hdr__in {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-left: 5px !important;
    padding-right: 30px !important;
    gap: 10px;
  }

  .hdr__logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 140px;
    overflow: hidden;
  }

  .hdr__logo img,
  .hdr__logo svg {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* Храним телефон, скрываем только инфо и мессенджеры */
  .hdr__info,
  .hdr__msn {
    display: none !important;
  }

  .hdr__right {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  .hdr__tel {
    font-size: 15px !important;
    white-space: nowrap !important;
    display: block !important;
  }

  .hdr__burger {
    display: flex !important;
    flex: 0 0 24px;
    width: 24px;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero__slider,
  .hero-slides-wrap,
  .hero__track,
  .hero__slide {
    max-width: 100%;
    min-width: 0;
  }

  .hero__slide {
    width: 100% !important;
    flex: 0 0 100%;
    box-sizing: border-box !important;
    padding: 10px 16px 5px !important;
  }

  .hero__in,
  .hero__slide-content,
  .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .hero__title {
    max-width: 100%;
    min-width: 0;
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 0.95;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero__actions,
  .hero__slide-actions,
  .hero__buttons {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .hero .btn,
  .hero button,
  .hero a {
    max-width: 100%;
  }
}

/* ===== MOBILE TWEAKS (Reviews, Interior, Footer) ===== */
@media (max-width: 900px) {

  /* Отзывы */
  .rev-nav {
    display: none !important;
  }

  .rev-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .rv-dot {
    display: block !important;
  }

  /* Фото центра */
  .int-nav {
    display: none !important;
  }

  .int-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .int-dot {
    display: block !important;
  }

  /* Footer Grid */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 15px !important;
  }

  .footer-grid>div:nth-child(1) {
    grid-column: 1 / -1 !important;
  }

  .footer-grid>div:nth-child(2) {
    grid-column: 1 / 2 !important;
  }

  .footer-grid>div:nth-child(3) {
    grid-column: 2 / 3 !important;
  }

  .footer-grid>div:nth-child(4) {
    grid-column: 1 / -1 !important;
  }

  /* Политика по середине */
  .ft-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
    justify-content: center !important;
  }

  .ft-bottom>* {
    text-align: center !important;
    margin: 0 auto !important;
  }
}

/* ===== HOTFIX FOR MENU CONTACTS ===== */
.hdr-nav__contacts a {
  display: inline-flex !important;
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  width: auto !important;
  justify-content: flex-start !important;
}

/* ==========================================
   LAYOUT REGRESSIONS FIXES
   ========================================== */

/* 1. Hide mobile contacts from desktop header */
.hdr-nav__contacts {
  display: none !important;
}

@media (max-width: 900px) {

  /* 2. Show mobile contacts in hamburger menu and format them */
  .hdr-nav__contacts {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    gap: 15px !important;
  }

  /* 3. Fix messengers cut-off at bottom of mobile menu */
  .hdr-nav__in {
    padding-bottom: 60px !important;
  }

  /* 4. Reduce overgrown form heading font size */
  .accent-form__h {
    font-size: clamp(22px, 6.5vw, 28px) !important;
    line-height: 1.15 !important;
  }
}


/* Restore scrollbar fix for desktop, prevent overflow for mobile */
@media (min-width: 901px) {
  html {
    overflow-x: visible !important;
  }

  body {
    overflow-x: hidden !important;
  }

  .sys-img-ph {
    margin-top: -50px;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .sys-img-ph img {
    height: auto !important;
  }
}

@media (max-width: 900px) {

  html,
  body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
}

/* ===== HOTFIX: doctors photos grayscale until hover ===== */
#doctors .doc-photo img,
.doctors .doc-photo img {
  filter: grayscale(100%) !important;
  transition: filter 0.35s ease, transform 0.45s ease !important;
}

#doctors .doc-card:hover .doc-photo img,
.doctors .doc-card:hover .doc-photo img,
#doctors .doc-photo:hover img,
.doctors .doc-photo:hover img {
  filter: grayscale(0%) !important;
}

/* ===== AJAX form status / phone validation ===== */
.js-form-status {
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.js-form-status.is-success {
  color: #8ee28e;
}

.js-form-status.is-error,
.phone-error {
  color: #ff8c8c;
}

input.phone-error {
  border-color: #ff8c8c !important;
}

[id] {
  scroll-margin-top: 96px;
}

/* ===== СТИЛИ ДЛЯ ОКНА УСПЕХА ===== */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  /* красивое размытие заднего фона */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Класс, который JS будет добавлять для показа окна */
.success-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-window {
  background: var(--bg-2, #161616);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.success-modal-overlay.active .success-modal-window {
  transform: translateY(0);
}

.success-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--dim, #787878);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.success-modal-close:hover {
  color: var(--text, #fff);
}

.success-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  /* Легкий зеленый фон */
  color: #4caf50;
  /* Зеленая галочка */
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-modal-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text, #f0f0f0);
}

.success-modal-text {
  font-size: 15px;
  color: var(--dim, #787878);
  line-height: 1.5;
}

@media (max-width: 768px) {

  /* ── Картинка слайда — убираем фиксированную высоту ── */
  .hero-img-wrap {
    height: auto !important;
    min-height: 200px;
    max-height: 280px;
    overflow: hidden;
  }

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

  /* ── Стрелки — возвращаем на середину слайда ── */
  .hero__nav {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .hero__nav--prev {
    left: 8px;
  }

  .hero__nav--next {
    right: 8px;
  }
}

/* Жестко фиксируем шапку на мобильных при любом скролле */
@media (max-width: 900px) {
  .hdr__logo-txt {
    display: none;
  }

  #hdr,
  #hdr.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    /* отменяет любые уезжания вверх */
    transition: none !important;
  }

  .hdr-nav {
    height: 100dvh !important;
    /* Динамическая высота, которая адаптируется под адресную строку */
    overflow-y: auto !important;
    /* Включаем внутренний вертикальный скролл, если пункты не влезают */
    -webkit-overflow-scrolling: touch;
    /* Делает скролл внутри меню плавным на айфонах */
  }

  .hdr-nav__in {
    padding-bottom: 100px !important;
    /* Увеличиваем безопасный отступ снизу, чтобы мессенджеры приподнялись */
  }
}

/* Фикс огромного отступа перед буллетами в квизе на мобильных устройствах */
@media (max-width: 768px) {
  #hero {
    margin-top: -50px;
  }

  .quiz-sidebar {
    align-items: flex-start !important;
    /* Выравниваем весь контент блока строго по левому краю */
    text-align: left !important;
  }

  .quiz-sidebar__list {
    align-items: flex-start !important;
    width: 100% !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .quiz-sidebar__list li {
    justify-content: flex-start !important;
    width: 100% !important;
  }
}

#cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: fixed;
  bottom: -150px;
  /* Изначально спрятан внизу */
  left: 0;
  width: 100%;
  padding: 16px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
  z-index: 99999;
  box-sizing: border-box;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  font-family: inherit;
  font-size: 14px;
}

/* Класс, который добавляет JS для показа */
#cookie-consent.is-visible {
  bottom: 0;
}

.cookie-consent__text {
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.cookie-consent__link {
  color: #fbd32c;
  /* Желтый цвет ссылки */
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  transition: opacity 0.2s;
}

.cookie-consent__link:hover {
  opacity: 0.8;
}

.cookie-consent__btn {
  background-color: #fbd32c;
  /* Желтая кнопка */
  color: #000000;
  border: none;
  border-radius: 40px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.2s;
}

.cookie-consent__btn:hover {
  background-color: #e2bd27;
  transform: scale(1.03);
}

/* Адаптив для телефонов */
@media (max-width: 768px) {
  #cookie-consent {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }

  .cookie-consent__text {
    font-size: 13px;
  }

  .cookie-consent__btn {
    width: 100%;
    padding: 14px;
  }
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.hero__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__nav--prev {
  left: 10%;
}

.hero__nav--next {
  right: 10%;
}

@media(max-width: 768px) {
  .hero__nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .hero__nav--prev {
    left: 8px;
  }

  .hero__nav--next {
    right: 8px;
  }
}

@media(max-width: 768px) {
  .prb-item__overlay {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    background: transparent !important;
    padding: 8px 0 0 0 !important;
  }

  .prb-item {
    display: flex;
    flex-direction: column;
  }

  .prb-item__face {
    margin-bottom: 0;
  }
}

@media(max-width: 768px) {
  .hero__nav {
    top: auto;
    bottom: 70px;
    /* над точками-доточками */
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .hero__nav--prev {
    left: 16px;
  }

  .hero__nav--next {
    right: 16px;
  }
}