:root {
  --ink: #303332;
  --ink-soft: #484d4a;
  --muted: #767c76;
  --brand: #0b4a46;
  --brand-2: #7f9a88;
  --brand-dark: #003333;
  --sage: #c7d5c8;
  --clay: #b8ad78;
  --amber: #ddd3a5;
  --warm: #f5f1e4;
  --mist: #eef3ed;
  --paper: #ffffff;
  --surface: #fbfaf6;
  --line: #dde4dc;
  --line-strong: #c7d2c8;
  --shadow-soft: 0 18px 46px rgba(24, 33, 29, 0.1);
  --shadow-lift: 0 30px 90px rgba(24, 33, 29, 0.18);
  --container: min(1180px, calc(100% - 40px));
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 243, 237, 0.88), rgba(255, 255, 255, 0) 430px),
    linear-gradient(90deg, rgba(184, 173, 120, 0.08), transparent 34%, rgba(127, 154, 136, 0.11)),
    var(--surface);
  text-rendering: optimizeLegibility;
}

body::before {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 51, 51, 0.24);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--clay), var(--amber), var(--brand-2));
  box-shadow: 0 0 22px rgba(184, 173, 120, 0.34);
}

.topbar {
  position: sticky;
  top: 4px;
  z-index: 50;
  padding: 16px 0 0;
  background: #fff;
  border-bottom: 1px solid rgba(199, 210, 200, 0.72);
  box-shadow: 0 12px 34px rgba(24, 33, 29, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
}

.header-shell,
.section-inner,
.footer-grid,
.copyright {
  width: var(--container);
  margin: 0 auto;
}

.header-shell {
  position: relative;
  display: grid;
  width: min(1540px, calc(100% - 40px));
  gap: 14px;
}

.header-shell::before {
  display: none;
}

.topline {
  min-height: 80px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) auto minmax(300px, 0.78fr);
  align-items: center;
  gap: 42px;
}

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

.brand-mark {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #293132;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transform: translate(1.5%, 1%);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand > span:not(.brand-mark) {
  display: none;
}

.brand strong {
  color: #202524;
  font-size: 24px;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-location {
  position: relative;
  min-width: 0;
  display: grid;
  justify-self: end;
  justify-items: end;
  align-content: center;
  line-height: 1.05;
  text-align: right;
}

.location-note {
  position: relative;
  display: block;
  max-width: 300px;
  margin-bottom: -1px;
  color: #767c76;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 550;
}

.location-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--brand);
  border-radius: 50%;
  vertical-align: 1px;
}

.header-location strong,
.header-location b {
  display: block;
  color: var(--ink-soft);
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.header-location strong {
  margin-right: 28px;
}

.quick-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1;
  color: var(--muted);
  font-size: 13px;
}

.quick-info span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
}

.quick-info span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--brand);
  border-radius: 50%;
}

.quick-info span:nth-child(2)::before {
  background: var(--amber);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-phones {
  min-width: 0;
  display: grid;
  justify-self: start;
  gap: 4px;
  justify-items: start;
  align-content: center;
  line-height: 1.12;
}

.header-phones a {
  display: block;
  color: var(--ink-soft);
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-phones span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--brand-dark);
  background: rgba(237, 247, 243, 0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(24, 33, 29, 0.08);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.header-call {
  color: var(--brand-dark);
  background: rgba(237, 247, 243, 0.86);
  border: 1px solid var(--line);
}

.header-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 14px 28px rgba(0, 51, 51, 0.22);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: #2e3a3d;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  border-top: 1px solid rgba(221, 228, 220, 0.82);
  border-radius: 0;
}

.nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 0;
  color: var(--ink-soft);
  font-size: 15px;
  transition: color 0.18s ease, background 0.18s ease;
}

.mobile-nav-link {
  display: none !important;
}

.nav a.active,
.nav a:hover {
  color: var(--brand-dark);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background: #13261f;
}

.hero.short {
  min-height: 540px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(21, 27, 29, 0.9) 0%, rgba(37, 43, 45, 0.66) 42%, rgba(37, 43, 45, 0.12) 100%),
    linear-gradient(0deg, rgba(21, 27, 29, 0.7), rgba(21, 27, 29, 0) 45%);
}

.hero::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, transparent 72%, rgba(249, 251, 250, 1) 100%);
  opacity: 0.38;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.82) contrast(1.02);
  transition: opacity 0.9s ease;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 86px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.hero-copy {
  min-width: 0;
}

[data-home-hero] h1 {
  max-width: 980px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
}

.hero.short h1 {
  max-width: 1040px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.06;
}

.hero-intro {
  max-width: 900px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.mobile-hero-text {
  display: none;
}

.about-hero h1 {
  max-width: 900px;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.12;
}

.about-hero .hero-intro {
  font-weight: 700;
}

.about-hero .lead {
  max-width: 880px;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.62;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 72px;
  width: 72px;
  height: 3px;
  background: var(--clay);
  animation: lineGrow 0.9s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 20px;
  padding: 0 12px;
  color: #dff3f2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

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

h1,
h2 {
  text-wrap: balance;
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  animation: fadeUp 0.78s ease both;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.52;
  animation: fadeUp 0.78s 0.1s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
  animation: fadeUp 0.78s 0.18s ease both;
}

.hero-trust span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 750;
}

.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--clay);
  border-radius: 50%;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  animation: fadeUp 0.78s 0.24s ease both;
}

.hero-premium-card {
  position: relative;
  justify-self: start;
  width: min(100%, 300px);
  overflow: hidden;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(14, 33, 27, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(140%);
  animation: fadeUp 0.78s 0.16s ease both;
}

.hero-premium-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  pointer-events: none;
}

.rating-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 750;
}

.twogis-mark {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  background: #19a74a;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-premium-card strong {
  display: block;
  margin: 0;
  color: #fff;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
}

.hero-premium-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
}

.hero-mini-list {
  display: grid;
  gap: 9px;
  margin: 22px 0;
}

.hero-mini-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-weight: 800;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 32px rgba(0, 51, 51, 0.2);
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn::after {
  content: ">";
  margin-left: 10px;
  font-size: 17px;
  line-height: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 51, 51, 0.26);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn.light {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.btn.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn.outline-dark {
  color: var(--brand-dark);
  border-color: rgba(0, 51, 51, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.btn.pill {
  border-radius: 100px;
}

.btn.small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

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

.showcase {
  position: relative;
  z-index: 5;
  padding: 72px 0 52px;
  background: #f7f9f6;
}

.showcase-head {
  width: var(--container);
  margin: 0 auto 24px;
  color: var(--ink);
}

.showcase-head h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.showcase-head p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-inner {
  width: var(--container);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 42px;
  margin: 0 auto;
  padding-top: 8px;
}

.showcase-item {
  position: relative;
  min-height: 176px;
  display: grid;
  align-content: start;
  padding: 82px 10px 0 0;
  color: var(--ink);
  transform: translateY(0);
  transition: transform 0.24s ease;
  transform-style: preserve-3d;
}

.showcase-item > * {
  transform: translateZ(20px);
}

.showcase-item::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 38px;
  z-index: 0;
  width: calc(100% + 42px);
  height: 1px;
  background: var(--brand-2);
  opacity: 0.36;
}

.showcase-item:nth-child(3n)::before {
  display: none;
}

.showcase-item span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(24, 33, 29, 0.08);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 850;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.showcase-item strong,
.showcase-item small,
.showcase-item em {
  position: relative;
  z-index: 1;
  display: block;
}

.showcase-item strong {
  max-width: 300px;
  font-size: 21px;
  line-height: 1.18;
}

.showcase-item small {
  max-width: 340px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.showcase-item em {
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 4px;
  color: var(--brand);
  border-bottom: 1px solid rgba(11, 74, 70, 0.28);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.showcase-item em::after {
  content: " >";
}

.showcase-item:hover {
  transform: translateY(-3px) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.showcase-item:hover span {
  border-color: var(--brand-2);
  box-shadow: 0 16px 42px rgba(11, 74, 70, 0.13);
  transform: translateY(-2px);
}

.showcase-item:hover em {
  color: var(--brand-dark);
  border-color: var(--brand);
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(11, 74, 70, 0.08), rgba(255, 255, 255, 0) 38%),
    var(--mist);
}

.section.warm {
  background: linear-gradient(135deg, var(--warm), #faf7ef);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 173, 120, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(127, 154, 136, 0.28), transparent 48%),
    var(--brand-dark);
}

.micro-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  color: var(--brand);
  background: rgba(11, 74, 70, 0.08);
  border: 1px solid rgba(11, 74, 70, 0.14);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.experience-section {
  padding-top: 70px;
  background:
    linear-gradient(120deg, rgba(184, 173, 120, 0.11), transparent 36%),
    linear-gradient(300deg, rgba(11, 74, 70, 0.1), transparent 42%);
}

.signature-section {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: #101d18;
}

.signature-bg,
.signature-bg::after,
.signature-bg img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.signature-bg::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 23, 18, 0.94), rgba(10, 23, 18, 0.68) 50%, rgba(10, 23, 18, 0.34)),
    linear-gradient(0deg, rgba(10, 23, 18, 0.96), rgba(10, 23, 18, 0.1) 44%, rgba(10, 23, 18, 0.86));
}

.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transform: scale(1.04);
}

.signature-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.signature-copy h2 {
  max-width: 840px;
  font-size: clamp(36px, 5.5vw, 74px);
  line-height: 0.98;
}

.signature-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.78;
}

.signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.signature-stack {
  display: grid;
  gap: 14px;
  perspective: 1200px;
}

.signature-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  color: #fff;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(calc(var(--stack) * 18px)) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.22s ease, background 0.22s ease;
}

.signature-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(calc(var(--stack) * 10px)) translateY(-4px) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.signature-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.signature-card strong,
.signature-card small {
  grid-column: 2;
}

.signature-card strong {
  font-size: 20px;
  line-height: 1.18;
}

.signature-card small {
  margin-top: -10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.treatment-section {
  background:
    linear-gradient(135deg, rgba(184, 173, 120, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(11, 74, 70, 0.1), transparent 46%),
    #f8fbf8;
}

.treatment-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
}

.treatment-panel {
  position: sticky;
  top: 126px;
  display: grid;
  align-self: start;
  gap: 10px;
}

.treatment-tab {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 35, 38, 0.06);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.treatment-tab span {
  color: var(--clay);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 13px;
}

.treatment-tab.active,
.treatment-tab:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-color: transparent;
}

.treatment-tab.active span,
.treatment-tab:hover span {
  color: #fff;
}

.treatment-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.treatment-card {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.treatment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78));
}

.treatment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.treatment-card span,
.treatment-card strong,
.treatment-card p {
  position: relative;
  z-index: 2;
}

.treatment-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 850;
}

.treatment-card strong {
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.treatment-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.treatment-card:hover img {
  transform: scale(1.045);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.experience-copy {
  position: sticky;
  top: 140px;
}

.experience-copy p {
  color: var(--muted);
  line-height: 1.78;
}

.experience-deck {
  display: grid;
  gap: 16px;
  perspective: 1200px;
}

.experience-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #102927, var(--brand));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(24, 33, 29, 0.16);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.experience-card:nth-child(2) {
  margin-left: 54px;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #3a211c, var(--clay));
}

.experience-card:nth-child(3) {
  margin-left: 108px;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #332b16, var(--amber));
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 700;
}

.experience-card h3 {
  max-width: 360px;
  color: #fff;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(23px, 2.4vw, 32px);
}

.experience-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.experience-card:hover {
  box-shadow: 0 32px 84px rgba(24, 33, 29, 0.22);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.copy p,
.section-head p,
.card p,
.step p {
  color: var(--muted);
  line-height: 1.76;
}

.dark .copy p,
.dark .section-head p,
.dark .card p,
.dark .step p {
  color: rgba(255, 255, 255, 0.78);
}

.photo-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  background: var(--line);
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  pointer-events: none;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-panel:hover img {
  transform: scale(1.035);
}

.home-intro {
  padding: 72px 0;
}

.home-direction-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-direction-copy h2 {
  margin-bottom: 28px;
}

.home-direction-copy h3 {
  margin-bottom: 12px;
}

.home-direction-copy .btn {
  margin-top: 12px;
}

.home-photo-collage {
  height: 520px;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-photo-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.home-photo-collage img:first-child {
  grid-row: 1 / span 2;
}

.clinic-gallery-section {
  padding-top: 18px;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.clinic-shot {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.clinic-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(18, 22, 21, 0.72));
}

.clinic-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.clinic-shot:hover img {
  transform: scale(1.045);
}

.clinic-shot figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.clinic-shot-1,
.clinic-shot-2 {
  grid-row: span 2;
}

.clinic-shot-2 {
  grid-column: span 2;
}

.clinic-shot-6 {
  grid-column: span 2;
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 250, 0.9)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 35, 38, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--clay));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.card:hover::before {
  opacity: 1;
}

.card-media {
  height: 260px;
  padding: 0;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-media .card-body {
  padding: 18px;
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  box-shadow: 0 14px 28px rgba(0, 51, 51, 0.2);
  font-weight: 850;
}

.svg-icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.accordion-grid {
  display: grid;
  gap: 14px;
}

.procedure-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 35, 38, 0.07);
}

.procedure-panel summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.procedure-panel summary::-webkit-details-marker {
  display: none;
}

.procedure-panel summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.procedure-panel[open] summary::after {
  content: "-";
}

.procedure-panel summary span,
.procedure-panel summary strong {
  grid-column: 1;
  min-width: 0;
  display: block;
}

.procedure-panel summary span {
  grid-row: 1;
}

.procedure-panel summary strong {
  grid-row: 2;
}

.procedure-panel summary span {
  margin-bottom: 7px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.procedure-panel summary strong {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.14;
}

.procedure-panel > p {
  max-width: 820px;
  margin: -4px 24px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.procedure-panel > .service-grid {
  padding: 0 24px 24px;
}

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

.offer-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 237, 0.86)),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 35, 38, 0.07);
}

.offer-card span {
  color: var(--clay);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.offer-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.checkup-grid {
  display: grid;
  gap: 16px;
}

.checkup-card {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 74, 70, 0.92), rgba(0, 51, 51, 0.96)),
    var(--brand-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.checkup-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  cursor: pointer;
  list-style: none;
}

.checkup-card summary::-webkit-details-marker {
  display: none;
}

.checkup-card h3 {
  color: #fff;
}

.checkup-card p {
  max-width: 860px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.checkup-card strong {
  width: fit-content;
  max-width: 220px;
  padding: 14px 16px;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 7px;
  font-size: 15px;
  line-height: 1.35;
}

.checkup-details {
  display: grid;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 38px) clamp(24px, 4vw, 38px);
}

.checkup-details h4 {
  margin: 0 0 12px;
  color: #fff;
}

.checkup-details .service-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.service-link {
  position: relative;
  width: fit-content;
  max-width: 230px;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 11px 7px 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 243, 0.9)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(23, 35, 38, 0.04);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  cursor: default;
  transform: none;
  transition: none;
}

.service-link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
  transform: translateY(-50%);
}

a.service-link:hover {
  color: var(--ink);
}

.doctor-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.doctor-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94);
}

.doctor-avatar {
  height: 330px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 74, 70, 0.9), rgba(0, 51, 51, 0.94)),
    var(--brand-dark);
  font-size: 58px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.doctor-card .card-body {
  padding: 24px;
}

.doctor-card .role {
  color: var(--brand-2);
  font-weight: 800;
}

.doctor-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 16px;
}

.doctor-meta span {
  padding: 9px 10px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.doctor-card .btn {
  width: 100%;
  margin-top: 10px;
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 35, 38, 0.07);
}

.review-summary h3 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 42px);
}

.external-review-summary {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.external-review-summary h3 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 2.6vw, 36px);
}

.external-review-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.external-review-grid {
  margin-top: 0;
}

.external-testimonial small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}


.rating-bars {
  display: grid;
  gap: 10px;
}

.rating-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 800;
}

.rating-row div {
  height: 10px;
  overflow: hidden;
  background: rgba(11, 74, 70, 0.12);
  border-radius: 999px;
}

.rating-row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--clay));
  border-radius: inherit;
}

.testimonial {
  line-height: 1.72;
}

.review-rating {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 15px;
  letter-spacing: 0;
}

.testimonial::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 24px;
  width: 42px;
  height: 36px;
  background:
    linear-gradient(var(--clay), var(--clay)) 0 0 / 14px 24px no-repeat,
    linear-gradient(var(--clay), var(--clay)) 24px 0 / 14px 24px no-repeat;
  opacity: 0.24;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--brand);
}

.testimonial span {
  color: var(--muted);
  font-size: 14px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 18px;
  color: var(--ink-soft);
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 8px 22px rgba(23, 35, 38, 0.05);
  cursor: pointer;
  font-weight: 750;
}

.tab.active,
.tab:hover {
  color: #fff;
  border-color: transparent;
  background: var(--brand);
}

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

.result-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 35, 38, 0.08);
}

.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-pair img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.result-card p {
  padding: 18px 20px 20px;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.form-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 44px;
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 51, 51, 0.2), rgba(184, 173, 120, 0.16)),
    var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.form-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.form-band p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.form-band-map {
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  align-items: stretch;
}

.booking-side {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.booking-side .form {
  margin-top: 24px;
}

.map-card {
  position: relative;
  z-index: 1;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-open-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 850;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 35, 38, 0.07);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 50%;
  font-weight: 850;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 35, 38, 0.05);
}

.price-row strong {
  color: var(--brand);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
}

.map-box {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(23, 47, 54, 0.68), rgba(23, 47, 54, 0.68)),
    url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.instagram-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(184, 173, 120, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(227, 167, 66, 0.18), transparent 46%),
    #111f23;
}

.instagram-section .micro-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}

.instagram-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.instagram-head p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

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

.instagram-post {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78));
}

.instagram-post img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.instagram-post span,
.instagram-post em,
.instagram-post p {
  position: relative;
  z-index: 2;
}

.instagram-post-badge {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 850;
}

.instagram-post-badge .svg-icon {
  width: 16px;
  height: 16px;
}

.instagram-post em {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.instagram-post p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  line-height: 1.55;
}

.instagram-post:hover {
  transform: translateY(-5px) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.instagram-post:hover img {
  transform: scale(1.045);
}

.admin-login {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(20, 39, 32, 0.74), rgba(20, 39, 32, 0.74)),
    url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.admin-login-card {
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 46px);
  color: #fff;
  background: rgba(18, 32, 27, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(18px);
}

.admin-login-card h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.admin-login-card p,
.admin-login-card small {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.admin-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 70px 0 90px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 74, 70, 0.9), rgba(0, 51, 51, 0.98)),
    var(--brand-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.admin-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-layout {
  display: grid;
  gap: 18px;
}

.admin-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.admin-panel[hidden] {
  display: none;
}

.admin-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-head h3 {
  margin-bottom: 6px;
}

.admin-panel-head p,
.admin-note {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-note {
  padding: 16px 22px 20px;
  font-size: 14px;
}

.admin-note code {
  padding: 2px 6px;
  background: var(--mist);
  border-radius: 5px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field.wide,
.admin-repeat,
.admin-subgroup {
  grid-column: 1 / -1;
}

.admin-field span,
.admin-switch span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(23, 35, 38, 0.04);
}

.admin-field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.55;
}

.admin-switch {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.admin-switch input {
  width: 20px;
  height: 20px;
  accent-color: var(--brand);
}

.admin-repeat,
.admin-subgroup {
  padding: 18px;
  background: rgba(237, 247, 243, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-repeat-title,
.admin-list-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.admin-repeat-title h4,
.admin-subgroup h4 {
  margin: 0;
  font-size: 18px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-list-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 35, 38, 0.05);
}

.admin-edit-card {
  padding: 0;
}

.admin-edit-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.admin-edit-card summary::-webkit-details-marker {
  display: none;
}

.admin-card-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.admin-card-summary img,
.admin-summary-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
}

.admin-card-summary img {
  object-fit: cover;
  background: var(--line);
}

.admin-summary-mark {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-weight: 900;
}

.admin-card-summary div {
  min-width: 0;
}

.admin-card-summary strong,
.admin-card-summary small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-card-summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.admin-summary-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-open-label,
.admin-hidden-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 850;
}

.admin-open-label {
  color: var(--brand-dark);
  background: var(--mist);
}

.admin-hidden-badge {
  color: #8b3427;
  background: #fff3ef;
}

.admin-edit-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.admin-edit-card > .admin-list-head {
  padding: 16px 16px 0;
}

.admin-list-card.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.admin-list-head strong {
  color: var(--brand-dark);
}

.admin-list-head div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-icon-btn {
  min-height: 36px;
  padding: 0 12px;
  color: var(--brand-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
}

.admin-icon-btn.danger {
  color: #8b3427;
  background: #fff3ef;
  border-color: #f2c5ba;
}

.admin-array-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-photo-field {
  grid-column: 1 / -1;
}

.admin-photo-control {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.admin-photo-preview {
  width: 160px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  background: var(--mist);
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

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

.admin-photo-actions {
  display: grid;
  gap: 10px;
}

.admin-upload-btn {
  min-height: 46px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
}

.admin-upload-btn input {
  display: none;
}

.footer {
  padding: 64px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(11, 74, 70, 0.12), transparent 34%),
    #111f23;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 42px;
}

.footer .brand-mark {
  background: var(--brand-dark);
}

.footer small,
.footer p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer h3 {
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

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

.copyright {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.contact-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
}

.float-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(32, 165, 28, 0.28);
  font-weight: 850;
}

.float-contact::before {
  content: "";
  width: 54px;
  height: 54px;
  background: center / contain no-repeat url("./whatsapp.svg");
}

.desktop-whatsapp::after {
  content: none;
}

.mobile-contact-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.64s ease var(--reveal-delay, 0ms),
    transform 0.64s ease var(--reveal-delay, 0ms);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.2%, -1%, 0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

  .hero-media {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .topline {
    grid-template-columns: minmax(220px, 0.82fr) auto minmax(220px, 0.82fr);
    gap: 30px;
  }

  .header-location strong,
  .header-location b,
  .header-phones a {
    font-size: 13px;
  }

  .header-location strong {
    margin-right: 22px;
  }

  .header-phones span {
    display: none;
  }

  .nav {
    font-size: 13px;
  }

  .nav a {
    padding: 0 9px;
  }

  .header-call {
    display: none;
  }

  .quick-info span:first-child {
    max-width: 330px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .quick-info,
  .header-location,
  .header-phones {
    display: none;
  }

  .topbar {
    top: 0;
    padding: 8px 0;
  }

  .header-shell {
    display: block;
  }

  .topline {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .header-shell::before {
    inset: -4px -8px;
    border-radius: 16px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 48px;
    background: #fff;
    border: 0;
    box-shadow: 0 12px 28px rgba(11, 74, 70, 0.14);
  }

  .nav {
    position: fixed !important;
    top: 76px;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100vw;
    height: auto;
    max-width: none;
    max-height: calc(100dvh - 76px);
    display: none;
    align-content: start;
    justify-content: start;
    gap: 0;
    padding: 0 0 92px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      linear-gradient(180deg, #ffffff 0%, #f2faf6 100%);
    border-top: 0;
    border-bottom: 0;
    box-shadow: 0 24px 80px rgba(24, 33, 29, 0.18);
    backdrop-filter: none;
    border-radius: 0;
    z-index: 1000;
  }

  .nav a {
    width: 100%;
    min-height: 66px;
    padding: 0 max(24px, calc((100vw - 1180px) / 2 + 24px));
    justify-content: space-between;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 17px;
  }

  .nav .desktop-nav-link {
    display: none !important;
  }

  .nav .mobile-nav-link {
    display: flex !important;
  }

  .nav a.active,
  .nav a:hover {
    background: #eef8f4;
  }

  .nav a::after {
    content: ">";
    color: var(--brand-2);
  }

  body.menu-open .nav {
    display: flex !important;
    flex-direction: column;
  }

  body.menu-open .topbar {
    z-index: 1100;
    background: #fff;
    box-shadow: 0 18px 48px rgba(24, 33, 29, 0.14);
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    margin-bottom: 14px;
  }

  .split,
  .split.reverse,
  .form-band,
  .contact-grid,
  .footer-grid,
  .experience-layout,
  .review-summary,
  .instagram-head,
  .admin-hero,
  .hero-layout,
  .signature-inner,
  .treatment-layout {
    grid-template-columns: 1fr;
  }

  .clinic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .clinic-shot-1,
  .clinic-shot-2,
  .clinic-shot-6 {
    grid-column: auto;
  }

  .clinic-shot-1,
  .clinic-shot-2 {
    grid-row: span 1;
  }

  .admin-actions,
  .instagram-head .btn {
    justify-content: start;
  }

  .experience-copy {
    position: static;
  }

  .treatment-panel {
    position: static;
  }

  .cards,
  .cards.four,
  .service-grid,
  .before-grid,
  .timeline,
  .showcase-inner,
  .instagram-grid,
  .offer-grid,
  .treatment-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkup-card summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .experience-card,
  .experience-card:nth-child(2),
  .experience-card:nth-child(3) {
    margin-left: 0;
  }

  .signature-card {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }

  .showcase-item:nth-child(3n)::before {
    display: block;
  }

  .showcase-item:nth-child(2n)::before {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 20px, 1180px);
  }

  body {
    background:
      linear-gradient(180deg, rgba(237, 247, 243, 0.9), rgba(255, 255, 255, 0) 360px),
      #f8faf8;
  }

  .topline {
    min-height: 64px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .topbar .brand {
    gap: 10px;
  }

  .topbar .brand > span:not(.brand-mark) {
    display: block;
  }

  .topbar .brand strong {
    display: none;
  }

  .topbar .brand small {
    display: block;
    max-width: 180px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.18;
    text-transform: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    font-size: 10px;
  }

  .nav {
    top: 72px;
    bottom: auto;
    max-height: calc(100dvh - 72px);
    border-radius: 0;
  }

  .hero,
  .hero.short {
    min-height: max(580px, calc(100svh - 80px));
    border-radius: 0 0 22px 22px;
  }

  .clinic-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 150px;
  }

  .home-intro {
    padding: 56px 0;
  }

  .home-photo-collage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 8px;
  }

  .home-photo-collage img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .instagram-grid .instagram-post:nth-child(n + 5),
  .footer-grid > div:nth-child(3) {
    display: none;
  }

  .home-photo-collage img:first-child {
    grid-row: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 27, 23, 0.56), rgba(15, 27, 23, 0.86) 58%, rgba(15, 27, 23, 0.96)),
      linear-gradient(90deg, rgba(15, 27, 23, 0.64), rgba(23, 51, 43, 0.2));
  }

  .hero-content {
    padding: 74px 0 72px;
  }

  .hero-premium-card {
    width: fit-content;
    max-width: min(58vw, 224px);
    justify-self: start;
    padding: 12px;
  }

  .hero-premium-card::before {
    inset: 8px;
  }

  .hero-premium-card .rating-source {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.22;
  }

  .hero-premium-card .twogis-mark {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero-premium-card strong {
    font-size: 34px;
  }

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

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }

  .hero-content::before {
    top: 50px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .about-hero h1 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
  }

  .about-hero .hero-intro {
    display: none;
  }

  .about-hero .desktop-hero-text {
    display: none;
  }

  .about-hero .mobile-hero-text {
    display: inline;
  }

  .about-hero .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-trust span {
    min-height: 42px;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  h2 {
    font-size: 30px;
  }

  .alt .section-head h2 {
    font-size: 26px;
    line-height: 1.05;
  }

  .advantages-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .advantages-cards .card {
    min-height: 0;
    padding: 12px;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(23, 35, 38, 0.05);
  }

  .advantages-cards .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    border-radius: 10px;
  }

  .advantages-cards .svg-icon {
    width: 18px;
    height: 18px;
  }

  .advantages-cards h3 {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.1;
  }

  .advantages-cards p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .home-doctors-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-doctors-compact .doctor-card {
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(23, 35, 38, 0.05);
    transform: none;
  }

  .home-doctors-compact .doctor-card img,
  .home-doctors-compact .doctor-avatar {
    height: 150px;
  }

  .home-doctors-compact .doctor-card img {
    object-position: center 38%;
  }

  .home-doctors-compact .doctor-avatar {
    font-size: 26px;
  }

  .home-doctors-compact .doctor-card .card-body {
    padding: 10px;
  }

  .home-doctors-compact .doctor-card h3 {
    display: block;
    min-height: 0;
    margin-bottom: 4px;
    overflow: visible;
    font-size: 12px;
    line-height: 1.2;
  }

  .home-doctors-compact .doctor-card .role {
    display: block;
    margin-bottom: 0;
    overflow: visible;
    font-size: 11px;
    line-height: 1.25;
  }

  .home-doctors-compact .doctor-card .btn {
    display: none;
  }

  .cards,
  .cards.four,
  .before-grid,
  .timeline,
  .footer-links,
  .showcase-inner,
  .instagram-grid,
  .offer-grid,
  .treatment-results,
  .admin-form-grid,
  .admin-array-row {
    grid-template-columns: 1fr;
  }

  .cards.four.home-doctors-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase {
    padding: 44px 0 28px;
  }

  .showcase-head {
    margin-bottom: 14px;
  }

  .showcase-inner {
    gap: 30px;
    padding-top: 0;
  }

  .showcase-item {
    min-height: 0;
    padding: 0 0 0 96px;
    box-shadow: none;
  }

  .showcase-item:nth-child(2n)::before,
  .showcase-item:nth-child(3n)::before {
    display: block;
  }

  .showcase-item:last-child::before {
    display: none;
  }

  .showcase-item::before {
    left: 37px;
    top: 76px;
    width: 1px;
    height: calc(100% + 30px);
  }

  .showcase-item span {
    width: 74px;
    height: 74px;
  }

  .showcase-item strong {
    max-width: none;
    padding-top: 5px;
    font-size: 20px;
  }

  .showcase-item small {
    max-width: none;
  }

  .showcase-item em {
    margin-top: 14px;
  }

  .photo-panel,
  .photo-panel img {
    min-height: 220px;
  }

  .experience-card {
    min-height: 160px;
    padding: 24px;
  }

  .experience-card h3 {
    font-size: 24px;
  }

  .service-link {
    min-height: 34px;
    padding: 7px 11px 7px 24px;
  }

  .procedure-panel summary {
    min-height: 70px;
    padding: 18px;
  }

  .procedure-panel summary strong {
    font-size: 20px;
  }

  .procedure-panel > p {
    margin: -2px 18px 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .procedure-panel > .service-grid {
    padding: 0 18px 18px;
  }

  .offer-card {
    min-height: 0;
    padding: 18px;
  }

  .checkup-card summary {
    gap: 18px;
  }

  .checkup-card strong {
    max-width: none;
  }

  .doctor-card img,
  .doctor-avatar {
    height: 330px;
  }

  .doctor-meta,
  .rating-row {
    grid-template-columns: 1fr;
  }

  .review-summary {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 7px;
  }

  .review-summary .micro-label,
  .review-summary p {
    display: none;
  }

  .review-summary h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.05;
  }

  .rating-bars {
    gap: 5px;
  }

  .rating-row {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    gap: 5px;
    font-size: 11px;
  }

  .rating-row div {
    height: 6px;
  }

  .warm .cards:not(.home-doctors-compact) {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testimonial {
    padding: 12px;
    line-height: 1.35;
  }

  .testimonial .review-rating {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .testimonial p {
    display: block;
    margin-bottom: 8px;
    overflow: visible;
    font-size: 13px;
    line-height: 1.45;
  }

  .testimonial strong {
    margin-top: 0;
    font-size: 11px;
  }

  .testimonial span {
    font-size: 10px;
  }

  .testimonial::after {
    display: none;
  }

  .instagram-section {
    padding: 42px 0;
  }

  .instagram-head {
    gap: 12px;
    margin-bottom: 14px;
  }

  .instagram-head h2 {
    max-width: 320px;
    font-size: 28px;
    line-height: 1.02;
  }

  .instagram-head p {
    display: block;
    margin-bottom: 0;
    overflow: visible;
    font-size: 13px;
    line-height: 1.45;
  }

  .instagram-head .btn {
    width: fit-content;
    min-height: 38px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .instagram-post {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 8px;
    border-radius: 7px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: none;
  }

  .instagram-post::before {
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
  }

  .instagram-post-badge {
    max-width: 100%;
    margin-bottom: 0;
    padding: 5px 7px;
    gap: 4px;
    overflow: visible;
    font-size: 10px;
    white-space: normal;
  }

  .instagram-post-badge .svg-icon {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
  }

  .instagram-post em,
  .instagram-post p {
    display: none;
  }

  .instagram-post em {
    font-size: 11px;
  }

  .instagram-post p {
    font-size: 13px;
    line-height: 1.35;
  }

  .external-review-summary {
    display: grid;
    padding: 24px;
  }


  .result-pair img {
    height: 210px;
  }

  .form-band {
    padding: 26px;
  }

  .admin-shell {
    padding-top: 42px;
  }

  .admin-hero {
    padding: 26px;
  }

  .admin-actions {
    display: grid;
  }

  .admin-tabs {
    position: sticky;
    top: 68px;
    z-index: 20;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    margin-inline: -10px;
    background: rgba(248, 250, 248, 0.92);
    backdrop-filter: blur(14px);
  }

  .admin-tabs .tab {
    flex: 0 0 auto;
  }

  .admin-panel-head {
    grid-template-columns: 1fr;
  }

  .admin-photo-control,
  .admin-edit-card summary {
    grid-template-columns: 1fr;
  }

  .admin-photo-preview {
    width: 100%;
    max-width: 240px;
  }

  .admin-summary-actions {
    justify-content: space-between;
  }

  .signature-section {
    min-height: auto;
    padding: 74px 0;
  }

  .signature-copy h2 {
    font-size: 34px;
  }

  .signature-actions {
    display: grid;
  }

  .treatment-card {
    min-height: 280px;
  }

  .admin-list-card.compact {
    grid-template-columns: 1fr;
  }

  .form-band::before {
    inset: 10px;
  }

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

  .contact-fab {
    right: 12px;
    bottom: 88px;
  }

  .desktop-whatsapp {
    display: none;
  }

  .mobile-contact-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-contact {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(0, 51, 51, 0.24);
    font-weight: 900;
  }

  .mobile-contact.whatsapp {
    background: transparent;
    box-shadow: 0 16px 34px rgba(32, 165, 28, 0.28);
  }

  .mobile-contact.phone {
    background: linear-gradient(135deg, var(--clay), #8e8251);
  }

  .mobile-contact.whatsapp::before,
  .mobile-contact.phone::before {
    content: "";
    width: 26px;
    height: 26px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .mobile-contact.whatsapp::before {
    width: 56px;
    height: 56px;
    background-image: url("./whatsapp.svg");
  }

  .mobile-contact.phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 14.39 3 6a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01z'/%3E%3C/svg%3E");
  }

  .footer {
    padding-bottom: 42px;
  }
}
