:root {
  --green: #006b57;
  --green-dark: #00594a;
  --navy: #0b2344;
  --blue: #194677;
  --text: #3f5368;
  --muted: #4c647d;
  --cream: #f5f3ef;
  --line: #e5e5e5;
  --white: #fff;
  --shadow: 0 0 17px 2px rgba(0, 0, 0, 0.11);
  --soft-shadow: 0 11px 25px -18px rgba(0, 0, 0, 0.31);
  --radius: 16px;
  --container: 1290px;
  --font: "Montserrat", "TTNorms Regular", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

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

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

.section {
  padding: 62px 0;
}

.section-heading {
  max-width: 1080px;
  margin: 0 auto 34px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 17px;
  color: var(--navy);
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.section-heading p {
  max-width: 1010px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.button {
  min-height: 44px;
  padding: 12px 30px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
.faq-item button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(0, 107, 87, 0.3);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 20px rgba(0, 107, 87, 0.2);
}

.button-outline {
  color: var(--blue);
  background: var(--white);
  border: 1px solid #286c1f;
}

.button-outline:hover {
  color: var(--green);
  background: #f5f5f5;
}

.button-small {
  width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 16px;
}

.button-light {
  color: #0f5a39;
  background: var(--white);
}

.button-white {
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--green);
}

.button-white:hover {
  color: var(--white);
  background: var(--green);
}

.link-button {
  padding: 0;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.link-button:hover {
  color: var(--green-dark);
}

.section-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #b6b6b6;
  backdrop-filter: blur(10px);
}

.site-header .container {
  width: min(1640px, calc(100% - 80px));
}

.header-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 300px minmax(490px, 1fr) 390px;
  align-items: center;
  gap: 24px;
}

.logo img {
  width: 300px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.6vw, 28px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  background: var(--green);
  transition: right 0.2s ease, left 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

.header-contacts {
  display: grid;
  grid-template-columns: 145px 220px;
  align-items: center;
  justify-content: end;
  column-gap: 20px;
  min-width: 0;
}

.header-phone-block {
  display: grid;
  justify-items: end;
  gap: 5px;
  min-width: 220px;
}

.phone {
  color: #144678;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.messengers {
  display: flex;
  align-items: center;
  gap: 18px;
}

.messengers a {
  width: 34px;
  height: 34px;
  color: #174b84;
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
}

.messengers a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: center / contain no-repeat;
  display: block;
}

.messengers .messenger-max::before {
  background-image: url("assets/img/icon-max.svg");
}

.messengers .messenger-telegram::before {
  background-image: url("assets/img/icon-telegram.svg");
}

.messengers .messenger-whatsapp::before {
  background-image: url("assets/img/icon-whatsapp.svg");
}

.messengers a:hover {
  opacity: 0.75;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.header-address {
  height: auto;
  position: static;
  display: block;
  padding-right: 0;
  color: #003370;
  font-size: 14px;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
  pointer-events: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--green);
}

.mobile-menu,
.menu-backdrop {
  display: none;
}

.hero {
  min-height: 710px;
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  position: relative;
}

.hero-copy {
  z-index: 2;
  padding: 58px 0 35px;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 25px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy h1 strong {
  color: var(--green);
  font-weight: 700;
}

.hero-lead {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.hero-benefits {
  max-width: 650px;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.4;
}

.hero-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-size: 26px;
  line-height: 1;
}

.hero-benefits strong {
  font-weight: 700;
}

.hero-benefits span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 15px;
}

.hero-features {
  max-width: 610px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.hero-features article {
  min-width: 0;
  text-align: center;
}

.hero-features img {
  width: 100%;
  height: 105px;
  margin: 0 auto 9px;
  object-fit: contain;
}

.hero-features p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.hero-features p strong {
  font-weight: 700;
}

.hero-features p span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

.hero-actions {
  max-width: 720px;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-actions-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-actions .button {
  min-width: 0;
  min-height: 56px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
  white-space: nowrap;
}

.hero-actions-top .button-primary {
  flex: 1;
}

.hero-actions-top .button-outline {
  flex: 1;
}

.hero-actions-bottom {
  width: 100%;
}

.hero-visual {
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-visual img {
  width: 112%;
  max-width: none;
  transform: translateX(7%);
}

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

.situation-card {
  padding: 11px 11px 18px;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.situation-card:hover {
  border-color: rgba(0, 107, 87, 0.35);
  box-shadow: 0 12px 25px -18px rgba(0, 107, 87, 0.45);
  transform: translateY(-3px);
}

.situation-card > img {
  width: 100%;
  height: 225px;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
}

.situation-card h3 {
  margin: 17px 8px 10px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.situation-card p {
  margin: 0 15px;
  font-size: 15px;
  line-height: 1.45;
}

.section-note {
  margin: 28px 5px 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
}

.centered-note {
  text-align: center;
}

.prices {
  padding-top: 48px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.price-card {
  min-height: 280px;
  padding: 12px 10px 18px;
  border: 1px solid #dfdfdf;
  border-radius: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.price-card h3 {
  min-height: 47px;
  margin: 12px 0 11px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.price-card strong {
  margin-top: auto;
  color: var(--green);
  font-size: 19px;
  font-weight: 700;
}

.price-card small {
  max-width: 170px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.price-disclaimer {
  margin-top: 25px;
  padding: 20px 24px;
  border-radius: 14px;
  color: var(--white);
  background: var(--green);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.why-us {
  padding-top: 72px;
}

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

.feature-card {
  padding: 8px 18px 19px;
  border: 2px solid #ece7de;
  border-radius: 13px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.feature-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 4px 0 13px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.12;
}

.feature-card p {
  margin-bottom: 17px;
  font-size: 15px;
  line-height: 1.45;
}

.feature-card span {
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.cta-strip {
  margin-top: 62px;
  color: var(--white);
  background: var(--green);
}

.cta-strip-inner {
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.cta-strip p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.cta-strip .button {
  min-width: 210px;
  border-radius: 25px;
}

.treatment {
  padding-top: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.step-card {
  position: relative;
  padding: 11px 15px 18px;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.step-card img {
  width: 100%;
  height: 145px;
  object-fit: contain;
}

.step-card h3 {
  min-height: 52px;
  margin: 10px 0 9px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.step-card p {
  margin-bottom: 17px;
  font-size: 13px;
  line-height: 1.5;
}

.step-card span {
  margin-top: auto;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.specialists {
  padding-top: 80px;
}

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

.specialist-grid article {
  padding: 13px 22px 22px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  text-align: center;
}

.specialist-grid img {
  width: 100%;
  height: 175px;
  object-fit: contain;
}

.specialist-grid h3 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.specialist-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.inline-cta {
  margin-top: 35px;
  padding: 24px 30px;
  border-radius: 16px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.inline-cta p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.directions {
  padding-top: 60px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.direction-grid a {
  min-height: 168px;
  padding: 11px 8px;
  border: 1px solid #ededed;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.direction-grid a:hover {
  border-color: rgba(0, 107, 87, 0.35);
  box-shadow: 0 12px 25px -20px rgba(0, 107, 87, 0.4);
  transform: translateY(-2px);
}

.direction-grid img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.direction-grid h3 {
  margin: 10px 0 7px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.documents {
  padding-top: 64px;
}

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

.document-grid article {
  min-height: 465px;
  padding: 24px 28px 26px;
  border: 1px solid #ececec;
  border-radius: 16px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(11, 35, 68, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.document-grid img {
  width: 100%;
  height: 215px;
  object-fit: contain;
  border-radius: 12px;
}

.document-grid article > div {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.document-grid h3 {
  margin: 18px 0 14px;
  color: var(--blue);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.document-grid p {
  min-height: 58px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
}

.document-grid .button {
  min-height: 46px;
  margin-top: auto;
  padding: 11px 24px;
  font-size: 14px;
}

.faq {
  padding-top: 65px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-grid > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.faq-item {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.faq-item > button {
  width: 100%;
  min-height: 60px;
  padding: 16px 52px 16px 20px;
  border: 0;
  color: #113669;
  background: transparent;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-item > button span,
.faq-item > button span::after {
  position: absolute;
  background: var(--green);
  content: "";
}

.faq-item > button span {
  top: 50%;
  right: 21px;
  width: 18px;
  height: 2px;
}

.faq-item > button span::after {
  top: -8px;
  left: 8px;
  width: 2px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-item.is-open > button span::after {
  transform: rotate(90deg);
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item > div > p {
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  transition: padding 0.25s ease;
}

.faq-item.is-open > div {
  grid-template-rows: 1fr;
}

.faq-item.is-open > div > p {
  padding: 0 20px 19px;
}

.final-cta {
  padding: 25px 0 15px;
}

.final-cta-inner {
  min-height: 210px;
  padding: 20px 28px;
  border: 1px solid #ededed;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 25px;
  box-shadow: 0 0 19px 2px rgba(0, 0, 0, 0.06);
}

.final-cta img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  object-position: center 45%;
  border: 1px solid rgba(0, 107, 87, 0.22);
  border-radius: 14px;
  box-shadow: 0 14px 32px -24px rgba(0, 0, 0, 0.32);
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.final-cta p {
  max-width: 610px;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.site-footer {
  padding: 60px 0 13px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.15fr 1.65fr;
  gap: 48px;
}

.footer-about img {
  width: 220px;
}

.footer-about p {
  max-width: 240px;
  margin-top: 17px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.footer-about .footer-legal {
  color: var(--text);
  font-weight: 500;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-menu h3,
.footer-map h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid #c5a6a6;
  text-transform: none;
}

.footer-menu nav {
  display: grid;
}

.footer-menu a {
  padding: 4px 0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-menu a:hover,
.footer-contacts a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-contacts {
  color: var(--green);
  font-size: 13px;
}

.footer-contacts p {
  margin-bottom: 16px;
}

.footer-contacts h3 {
  margin: 14px 0 4px;
}

.footer-phone {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 16px;
}

.footer-contact-link,
.footer-address-link {
  display: block;
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: rgba(248, 248, 246, 0.78);
  color: var(--navy);
}

.footer-contact-link span {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-contact-link strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-address-link {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-hours {
  margin-top: 12px;
  color: var(--text);
}

.footer-contact-link:hover,
.footer-address-link:hover {
  border-color: var(--green);
  background: #fff;
  color: var(--green);
}

.implant-subheading {
  margin-top: 34px;
}

.footer-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 198, 198, 0.46);
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1fr 1.35fr 1.35fr;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  text-align: left;
}

.footer-bottom a {
  color: var(--green);
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100dvh;
  padding: 22px;
  background: var(--white);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-head img {
  width: 190px;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.mobile-menu nav {
  margin: 20px 0;
  display: grid;
}

.mobile-menu nav a {
  padding: 12px 4px;
  border-bottom: 1px solid #eee;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-menu-phone {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.mobile-menu p {
  margin-top: 10px;
  font-size: 13px;
}

.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(11, 35, 68, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.menu-backdrop[hidden] {
  display: none !important;
}

.menu-backdrop.is-visible {
  opacity: 1;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 35, 68, 0.58);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  width: min(460px, 100%);
  max-height: calc(100dvh - 40px);
  padding: 31px;
  border-radius: 18px;
  background: var(--white);
  position: relative;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  animation: modal-in 0.22s ease both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }
}

.modal-dialog > img {
  width: 210px;
  margin: 0 auto 18px;
}

.modal-dialog h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.modal-dialog > p {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.modal form {
  margin-top: 22px;
  display: grid;
  gap: 15px;
}

.modal label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.modal input {
  width: 100%;
  height: 49px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid #d5d9d8;
  border-radius: 10px;
  color: #333;
  background: #fff;
}

.modal input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(0, 107, 87, 0.1);
}


.modal .form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.modal .form-agreement input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.modal .form-agreement span {
  padding-top: 2px;
}

.modal .form-agreement a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--green) !important;
  font-weight: 600;
}

.form-consent {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.form-consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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


@media (max-width: 1380px) {
  .site-header .container {
    width: min(1320px, calc(100% - 44px));
  }

  .header-row {
    grid-template-columns: 245px minmax(430px, 1fr) 330px;
    gap: 16px;
  }

  .logo img {
    width: 245px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .header-contacts {
    grid-template-columns: 100px 200px;
    column-gap: 14px;
  }

  .messengers {
    gap: 12px;
  }

  .messengers a {
    width: 30px;
    height: 30px;
  }

  .phone {
    font-size: 19px;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: 940px;
  }

  .header-row {
    grid-template-columns: 200px 1fr auto;
    gap: 15px;
  }

  .site-header .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .logo img {
    width: 200px;
  }

  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .phone {
    font-size: 15px;
  }

  .messengers {
    display: none;
  }

  .header-address {
    padding-right: 0;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 54% 46%;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-features {
    max-width: 560px;
    gap: 12px;
  }

  .hero-features img {
    height: 88px;
  }

  .hero-features p {
    font-size: 13px;
  }

  .hero-features p span {
    font-size: 12px;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-actions-top {
    gap: 14px;
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-actions-top .button {
    flex: 1;
  }

  .situation-card > img {
    height: 185px;
  }

  .situation-card h3 {
    font-size: 22px;
  }

  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-card {
    min-height: 250px;
  }

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

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .direction-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .document-grid img {
    height: 190px;
  }

  .document-grid p {
    min-height: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.7fr 1fr 1.3fr;
    gap: 25px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 0.75fr 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --container: 720px;
  }

  .site-header {
    position: sticky;
  }

  .header-row {
    min-height: 70px;
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav,
  .header-address {
    display: none;
  }

  .header-contacts {
    justify-self: end;
  }

  .menu-toggle,
  .mobile-menu,
  .menu-backdrop {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu:not(.is-open) {
    display: none;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .menu-backdrop {
    display: block;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 30px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 25px 0 0;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 690px;
    margin-inline: auto;
    font-size: 42px;
  }

  .hero-visual {
    grid-row: 1;
    height: 355px;
    justify-content: center;
  }

  .hero-visual img {
    width: auto;
    height: 100%;
    transform: none;
  }

  .hero-features {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-actions {
    margin-inline: auto;
    margin-bottom: 38px;
  }

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

  .section-note {
    text-align: center;
  }

  .section-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-strip-inner,
  .inline-cta {
    padding-block: 27px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .direction-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .document-grid article {
    min-height: 430px;
  }

  .document-grid p {
    min-height: auto;
  }

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

  .final-cta-inner {
    grid-template-columns: 130px 1fr;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    justify-self: center;
  }

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

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

  .footer-bottom p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .section-heading h2 {
    margin-bottom: 13px;
    font-size: 28px;
    line-height: 1.12;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .header-row {
    min-height: 64px;
    gap: 8px;
  }

  .logo img {
    width: 148px;
  }

  .phone {
    font-size: 13px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .hero-grid {
    padding-top: 14px;
  }

  .hero-visual {
    height: 235px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-copy h1 {
    margin-bottom: 15px;
    font-size: 27px;
    line-height: 1.2;
  }

  .hero-lead {
    margin-bottom: 21px;
    font-size: 14px;
  }

  .hero-benefits {
    margin-top: 20px;
    text-align: left;
  }

  .hero-benefits li {
    font-size: 15px;
  }

  .hero-benefits span {
    font-size: 13px;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
    gap: 10px;
  }

  .hero-actions-top {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button-primary,
  .hero-actions .button-outline,
  .hero-actions-bottom {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-features article {
    text-align: center;
  }

  .hero-features img {
    width: 100%;
    height: 72px;
    margin: 0 auto 8px;
  }

  .hero-features p {
    font-size: 12px;
  }

  .hero-features p span {
    margin-top: 3px;
    font-size: 11px;
  }

  .situation-grid,
  .price-grid,
  .feature-grid,
  .steps-grid,
  .specialist-grid {
    grid-template-columns: 1fr;
  }

  .situation-card > img {
    height: 205px;
  }

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

  .situation-card p {
    min-height: 0;
  }

  .section-note {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .price-card {
    min-height: 190px;
    padding: 13px 18px;
    display: grid;
    grid-template-columns: 115px 1fr;
    grid-template-rows: 1fr 1fr;
    text-align: left;
  }

  .price-card img {
    height: 155px;
    grid-row: 1 / 3;
  }

  .price-card h3 {
    min-height: 0;
    margin: auto 0 2px;
    font-size: 16px;
  }

  .price-card strong {
    margin: 2px 0 auto;
    font-size: 19px;
  }

  .price-disclaimer {
    padding: 20px 16px;
    font-size: 16px;
  }

  .feature-card img {
    height: 140px;
  }

  .cta-strip {
    margin-top: 35px;
  }

  .cta-strip p,
  .inline-cta p {
    font-size: 16px;
  }

  .cta-strip br,
  .inline-cta br {
    display: none;
  }

  .step-card img {
    height: 150px;
  }

  .specialist-grid img {
    height: 160px;
  }

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

  .direction-grid a {
    min-height: 155px;
  }

  .direction-grid img {
    height: 90px;
  }

  .document-grid article {
    min-height: auto;
    padding: 20px;
    text-align: center;
  }

  .document-grid img {
    height: 145px;
  }

  .faq-item > button {
    min-height: 58px;
    font-size: 13px;
  }

  .final-cta-inner {
    padding: 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta img {
    margin: auto;
  }

  .final-cta h2 {
    font-size: 27px;
  }

  .final-cta p {
    font-size: 15px;
  }

  .site-footer {
    padding-top: 45px;
  }

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

  .footer-about,
  .footer-about p {
    text-align: center;
  }

  .footer-about img {
    margin: auto;
  }

  .footer-about p {
    max-width: 320px;
    margin-inline: auto;
  }

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

  .footer-map iframe {
    height: 230px;
  }

  .modal-dialog {
    padding: 27px 20px 22px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}

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

/* Inner pages */

.desktop-nav a.active,
.desktop-nav a.is-active {
  color: var(--green);
}

.desktop-nav a.active::after,
.desktop-nav a.is-active::after {
  right: 0;
  left: 0;
}

.inner-page main {
  min-height: 50vh;
}

.inner-section {
  padding: 66px 0;
}

.inner-section.compact-top {
  padding-top: 0;
}

.inner-heading {
  margin-bottom: 44px;
}

.inner-heading.centered {
  text-align: center;
}

.inner-heading h1,
.inner-heading h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.15;
}

.inner-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.inner-hero {
  padding: 52px 0 60px;
}

.inner-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  align-items: center;
  gap: 35px;
}

.inner-hero h1 {
  max-width: 720px;
  margin: 0 0 27px;
  color: var(--blue);
  font-size: clamp(42px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.16;
}

.inner-hero p {
  margin: 0 0 46px;
  font-size: 17px;
  line-height: 1.65;
}

.inner-hero .button {
  min-width: 295px;
  min-height: 58px;
  font-size: 16px;
}

.inner-hero-grid > img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.service-hero .inner-hero-grid > img,
.reviews-hero .inner-hero-grid > img {
  max-height: 390px;
}

.price-page-hero .inner-hero-grid > img {
  max-height: 350px;
}

.license-hero .inner-hero-grid > img {
  max-height: 450px;
}

.implant-options {
  padding-top: 70px;
}

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

.implant-grid article {
  min-height: 220px;
  padding: 18px 35px;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.implant-grid img {
  width: 100%;
  height: 165px;
  object-fit: contain;
}

.implant-grid h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.implant-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.process-grid,
.info-grid {
  display: grid;
  gap: 12px;
}

.process-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.process-grid article,
.info-grid article {
  min-height: 275px;
  padding: 18px 20px 23px;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  text-align: center;
}

.process-grid img,
.info-grid img {
  width: 100%;
  height: 125px;
  object-fit: contain;
}

.process-grid h3,
.info-grid h3 {
  margin: 10px 0 12px;
  color: var(--green);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.process-grid p,
.info-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.page-cta {
  margin-top: 58px;
  padding: 30px 45px;
  border-radius: 16px;
  background: rgba(236, 231, 222, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.page-cta h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
}

.page-cta p {
  margin: 0;
  font-size: 15px;
}

.page-cta .button {
  flex: 0 0 auto;
  min-width: 270px;
}

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

.service-category-grid article {
  min-height: 215px;
  padding: 20px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
}

.service-category-grid img {
  width: 100%;
  height: 145px;
  object-fit: contain;
}

.service-category-grid h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.service-category-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.services-all {
  padding-top: 48px;
}

.help-steps {
  padding: 35px 42px;
  border-radius: 16px;
  background: rgba(236, 231, 222, 0.4);
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 35px;
}

.help-steps h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
}

.help-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.help-steps li {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.help-steps strong {
  color: var(--green);
  font-size: 16px;
}

.help-steps span {
  font-size: 13px;
  line-height: 1.5;
}

.page-prices {
  grid-template-columns: repeat(6, 1fr);
}

.page-prices .price-card {
  min-height: 285px;
}

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

.info-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid article {
  min-height: 250px;
}

.license-grid {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.license-grid a {
  padding: 15px 15px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  color: var(--navy);
  text-align: center;
}

.license-grid img {
  width: 100%;
  height: 410px;
  object-fit: contain;
}

.license-grid span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.quality-strip {
  margin-top: 50px;
  padding: 28px 50px;
  border-radius: 16px;
  background: rgba(236, 231, 222, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quality-strip h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 22px;
}

.quality-strip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.quality-strip .button {
  min-width: 255px;
}

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

.quality-grid article {
  min-height: 146px;
  padding: 25px 30px;
  border: 1px solid #dedede;
  border-radius: 20px;
  background: var(--white);
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 24px;
}

.quality-grid img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.quality-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

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

.platform-grid article {
  min-height: 225px;
  padding: 22px 28px;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: center;
}

.platform-grid img {
  width: 100%;
  height: 125px;
  object-fit: contain;
}

.platform-grid h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
}

.platform-grid p {
  min-height: 58px;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
}

.platform-grid .button {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 13px;
}

.review-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-feature-grid article {
  padding: 14px 14px 24px;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
}

.review-feature-grid img {
  width: 100%;
  height: 185px;
  object-fit: contain;
}

.review-feature-grid h3 {
  min-height: 50px;
  margin: 9px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cfcfcf;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
}

.review-feature-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.reviews-area {
  min-height: 0;
}

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

.reviews-grid img {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(11, 35, 68, 0.07);
}

.legal-main {
  padding: 55px 0 75px;
}

.legal-content {
  max-width: 1050px;
}

.legal-content h1 {
  margin: 0 0 35px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
}

.legal-content h2 {
  margin: 38px 0 16px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 24px;
}

@media (max-width: 1180px) {
  .inner-hero-grid {
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  }

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

  .page-prices {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid.five {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-grid article {
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  .inner-hero {
    padding-top: 35px;
  }

  .inner-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .inner-hero-grid > img {
    grid-row: 1;
    height: 310px;
  }

  .inner-hero h1 {
    margin-inline: auto;
    font-size: 43px;
  }

  .inner-hero p br,
  .inner-heading p br {
    display: initial;
  }

  .implant-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

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

  .implant-grid article {
    min-height: 200px;
  }

  .process-grid.five,
  .info-grid.four,
  .quality-grid,
  .review-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-cta,
  .quality-strip {
    flex-direction: column;
    text-align: center;
  }

  .help-steps {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .license-grid {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .inner-section {
    padding: 43px 0;
  }

  .inner-heading {
    margin-bottom: 28px;
  }

  .inner-heading h1,
  .inner-heading h2 {
    font-size: 29px;
  }

  .inner-heading p {
    font-size: 14px;
  }

  .inner-hero-grid > img {
    height: 230px;
  }

  .inner-hero h1 {
    font-size: 31px;
  }

  .inner-hero p {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .inner-hero .button {
    width: 100%;
    min-width: 0;
  }

  .implant-grid article,
  .service-category-grid article,
  .platform-grid article {
    padding: 17px;
    grid-template-columns: 42% 58%;
  }

  .implant-grid h2,
  .service-category-grid h3,
  .platform-grid h3 {
    font-size: 17px;
  }

  .implant-grid img,
  .service-category-grid img,
  .platform-grid img {
    height: 115px;
  }

  .service-category-grid,
  .process-grid.five,
  .info-grid.four,
  .info-grid.three,
  .quality-grid,
  .review-feature-grid,
  .reviews-grid,
  .page-prices {
    grid-template-columns: 1fr;
  }

  .quality-grid article {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 21px 24px;
  }

  .quality-grid img {
    width: 62px;
    height: 62px;
  }

  .quality-grid p {
    font-size: 17px;
  }

  .process-grid article,
  .info-grid article {
    min-height: 220px;
  }

  .page-cta,
  .quality-strip {
    margin-top: 34px;
    padding: 25px 20px;
  }

  .page-cta .button,
  .quality-strip .button {
    width: 100%;
    min-width: 0;
  }

  .help-steps {
    padding: 26px 20px;
  }

  .help-steps ol {
    grid-template-columns: 1fr;
  }

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

  .license-grid img {
    height: 360px;
  }

  .platform-grid p {
    min-height: 0;
  }

  .legal-main {
    padding: 35px 0 55px;
  }

  .legal-content h1 {
    font-size: 29px;
  }

  .legal-content h2 {
    font-size: 21px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }
}

.mobile-menu-telegram {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.service-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(0, 107, 87, 0.12);
}

.service-request-copy h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.service-request-copy p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.service-request-form {
  display: grid;
  gap: 14px;
}

.service-request-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}

.service-request-form input,
.service-request-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #d9e1e8;
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.service-request-form input:focus,
.service-request-form select:focus {
  outline: 2px solid rgba(0, 107, 87, 0.2);
  border-color: var(--green);
}

.form-row,
.date-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.date-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-request-form .form-agreement {
  margin-top: 2px;
  font-weight: 500;
}

.service-request-form .form-agreement input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  accent-color: var(--green);
}

.service-request-form .form-status {
  margin: 0;
}

@media (max-width: 900px) {
  .service-request-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .date-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.framed-photo {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 107, 87, 0.22);
  border-radius: 14px;
  box-shadow: 0 14px 32px -24px rgba(0, 0, 0, 0.32);
  object-fit: cover;
  overflow: hidden;
}

.service-request-photo {
  margin-top: 22px;
  aspect-ratio: 4 / 3;
  max-height: 330px;
}

.footer-facade-photo {
  margin-bottom: 14px;
  aspect-ratio: 4 / 3;
  max-height: 190px;

  object-position: center 38%;}

.license-grid img {
  border: 1px solid rgba(0, 107, 87, 0.16);
}
