:root {
      --bg: #ffffff;
      --card: #ffffff;
      --text: #0f1720;
      --muted: #4a5563;
      --line: #e2e8f0;
      --accent: #0f0f0f;
      --accent-soft: #1e1e1e;
      --teal: #32b7b0;
      --nav-start: #2b3346;
      --nav-end: #1e2536;
      --intro-photo: url('/images/backgraund/tools.jpg');
      --prices-photo: url('/images/backgraund/lobby.jpg');
      --radius: 18px;
      --shadow: 0 18px 45px -30px rgba(0, 0, 0, 0.3);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      letter-spacing: -0.01em;
      scroll-behavior: smooth;
      font-size: 18px;
    }

    body.is-loading {
      overflow: hidden;
    }

    .page-loader {
      position: fixed;
      inset: 0;
      background: rgba(9, 14, 26, 0.86);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .page-loader__spinner {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 4px solid rgba(255, 255, 255, 0.2);
      border-top-color: #ffffff;
      animation: spin 0.9s linear infinite;
      box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
    }

    .page-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

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

    .container {
      width: min(1360px, 100% - 56px);
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(12px);
      background: linear-gradient(90deg, var(--nav-start) 0%, var(--nav-end) 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 16px 36px -28px rgba(0, 0, 0, 0.55);
    }

    .topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 15px;
      color: #eef3ff;
    }

    .brand img {
      height: 54px;
      width: auto;
      display: block;
      filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-weight: 500;
      color: #d7e0f1;
      flex: 1;
      justify-content: center;
      flex-wrap: wrap;
    }

    .nav a {
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .nav a:hover {
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.8);
    }

    .topbar__cta {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      font-weight: 600;
    }

    .phone {
      color: #ffffff;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 24px;
      border-radius: 999px;
      border: 1px solid var(--accent);
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
      box-shadow: 0 14px 32px -20px rgba(0, 0, 0, 0.45);
      font-size: 17px;
    }

    .button:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 40px -26px rgba(0, 0, 0, 0.5);
    }

    .button--ghost {
      background: transparent;
      color: var(--accent);
    }

    .topbar .button--ghost {
      border-color: rgba(255, 255, 255, 0.85);
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-trigger,
    .mobile-menu,
    .mobile-menu__backdrop,
    .mobile-cta {
      display: none;
    }

    .mobile-menu-trigger__inner {
      display: flex;
      justify-content: flex-start;
    }

    .mobile-menu__toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 32, 0.12);
      background: #ffffff;
      color: var(--text);
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 12px 24px -20px rgba(0, 0, 0, 0.35);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: min(80vw, 320px);
      background: linear-gradient(160deg, #2b3346 0%, #1e2536 100%);
      color: #f2f6ff;
      box-shadow: 20px 0 42px -26px rgba(0, 0, 0, 0.5);
      transform: translateX(-100%);
      transition: transform 0.25s ease;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      pointer-events: none;
      z-index: 980;
    }

    .mobile-menu__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .mobile-menu__brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 12px;
      color: #f2f6ff;
    }

    .mobile-menu__brand img {
      height: 38px;
      width: auto;
      display: block;
    }

    .mobile-menu__close {
      border: none;
      background: rgba(255, 255, 255, 0.14);
      color: #f2f6ff;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      font-size: 20px;
      cursor: pointer;
    }

    .mobile-menu__nav {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-weight: 600;
      font-size: 18px;
      color: #e7eefc;
    }

    .mobile-menu__nav a {
      padding: 12px 6px;
      border-radius: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .mobile-menu__nav a:active {
      background: rgba(255, 255, 255, 0.12);
    }

    .mobile-menu__backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease;
      z-index: 970;
    }

    .mobile-cta {
      position: fixed;
      left: 50%;
      bottom: calc(16px + env(safe-area-inset-bottom));
      transform: translateX(-50%);
      z-index: 960;
      width: min(86vw, 320px);
      justify-content: center;
    }

    .mobile-cta:hover {
      transform: translateX(-50%) translateY(-1px);
    }

    .mobile-cta:active {
      transform: translateX(-50%);
    }

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

    body.mobile-menu-open .mobile-menu__backdrop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 100px 0 70px;
      background:
        linear-gradient(110deg,
          rgba(15, 23, 32, 0.8) 0%,
          rgba(20, 35, 48, 0.7) 32%,
          rgba(34, 66, 82, 0.6) 52%,
          rgba(76, 85, 111, 0.75) 100%),
        linear-gradient(105deg,
          rgba(50, 183, 176, 0.92) 0%,
          rgba(50, 183, 176, 0.92) 32%,
          rgba(74, 154, 160, 0.9) 46%,
          rgba(92, 118, 152, 0.9) 60%,
          rgba(76, 85, 111, 0.94) 100%);
      color: #ffffff;
      isolation: isolate;
    }

    .hero--merged {
      background:
        linear-gradient(120deg,
          rgba(247, 248, 251, 0.94) 0%,
          rgba(247, 248, 251, 0.96) 48%,
          rgba(247, 248, 251, 0.98) 100%),
        var(--intro-photo);
      background-size: cover;
      background-position: center;
      color: #0f1720;
      padding: 110px 0 90px;
    }

    .hero--merged::before,
    .hero--merged::after {
      content: none;
    }

    .hero--merged .hero__grid {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      align-items: start;
    }

    .hero__grid--merged {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      align-items: start;
    }

    .hero--merged .hero__media {
      width: 100%;
      padding: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
      justify-self: start;
      animation: none;
    }

    .hero--merged .hero__media::after {
      content: none;
    }

    .hero__text--merged {
      background: rgba(255, 255, 255, 0.92);
      border-radius: 28px;
      padding: 28px 30px;
      box-shadow: 0 20px 52px -40px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(15, 23, 32, 0.08);
    }

    .hero__text--merged h1 {
      color: #0f1720;
    }

    .hero__text--merged .lead {
      color: #384356;
    }

    .hero__text--merged .hero__note {
      color: #5a6476;
    }

    .hero--merged .lead {
      color: #3b4a5c;
    }

    .hero--merged .hero__note {
      color: #586375;
    }

    .hero__cta--merged {
      align-items: flex-start;
    }

    .hero__trust {
      margin: 10px 0 0;
      font-size: 15px;
      font-weight: 600;
      color: #3f4a5f;
      max-width: 420px;
    }

    .hero__focus {
      margin-top: 22px;
    }

    .hero__media--video {
      max-width: 560px;
    }

    .anchor {
      position: relative;
      top: -80px;
      height: 0;
      width: 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--intro-photo);
      background-size: cover;
      background-position: center;
      opacity: 0.9;
      -webkit-mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0) 100%);
              mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0) 100%);
      filter: saturate(1.05);
      z-index: 0;
    }

    @supports not ((-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000))) {
      .hero::before {
        -webkit-mask-image: none;
                mask-image: none;
        background:
          linear-gradient(110deg,
            rgba(15, 23, 32, 0.6) 0%,
            rgba(15, 23, 32, 0.5) 45%,
            rgba(15, 23, 32, 0.24) 70%,
            rgba(15, 23, 32, 0) 100%),
          var(--intro-photo);
        background-size: cover;
        background-position: center;
        background-blend-mode: soft-light;
      }
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: -20% -10% -10% -10%;
      background: radial-gradient(ellipse at 48% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
      pointer-events: none;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 36px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(50, 183, 176, 0.2), rgba(76, 85, 111, 0.2));
      font-weight: 700;
      font-size: 13px;
      color: #0b1a21;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.4);
    }

    .chip--muted {
      background: linear-gradient(135deg, rgba(76, 85, 111, 0.16), rgba(50, 183, 176, 0.16));
      color: #0f1720;
    }

    h1 {
      font-size: clamp(40px, 5.4vw, 58px);
      line-height: 1.12;
      margin: 16px 0 18px;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: clamp(36px, 4.8vw, 44px);
      line-height: 1.06;
      margin: 12px 0 14px;
      letter-spacing: -0.03em;
      font-weight: 800;
      text-transform: uppercase;
    }

    h3 {
      margin: 0 0 14px;
      font-size: 23px;
    }

    .lead {
      font-size: 19px;
      color: var(--muted);
      margin: 0 0 22px;
    }

    .muted {
      color: var(--muted);
      margin: 0;
    }

    .hero__cta {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin: 10px 0 22px;
    }

    .hero__note {
      color: #edf2f7;
      font-size: 15px;
      line-height: 1.5;
      padding-left: 4px;
    }

    .hero__bullets {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }

    .pill {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      font-weight: 600;
      font-size: 14px;
      color: #ffffff;
    }

    .hero .chip,
    .hero .chip--muted {
      background: rgba(255, 255, 255, 0.16);
      color: #f0f4f7;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hero .lead {
      color: #e9f2ff;
    }

    .hero--merged .lead {
      color: #3b4a5c;
    }

    .hero--merged .hero__note {
      color: #586375;
    }

    .hero__panel {
      display: none;
    }

    .hero__media {
      position: relative;
      justify-self: end;
      width: min(520px, 90%);
      padding: 22px;
      border-radius: 32px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
      box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(6px);
      animation: floatIn 1s ease-out 0.15s both;
    }

    .hero__image {
      width: 100%;
      display: block;
      box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 0.6);
      clip-path: inset(0 round 30px 22px 30px 22px);
      background: #fff;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      overflow: hidden;
      position: relative;
    }

    .hero__image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(75deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 35%, rgba(255, 255, 255, 0) 70%);
      transform: translateX(-120%);
      animation: toothShine 1.6s ease 1.2s forwards;
    }

    .hero__image::after {
      content: '';
      position: absolute;
      width: 160px;
      height: 70px;
      top: 44%;
      left: 58%;
      transform: translate(-50%, -50%) scale(0.6);
      background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.45) 35%, rgba(255, 255, 255, 0) 70%);
      opacity: 0;
      pointer-events: none;
      filter: blur(0.5px);
      z-index: 2;
      box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.35);
      animation: toothSpark 1.2s ease-out 1.4s forwards;
    }

    .hero__media::after {
      content: '';
      position: absolute;
      inset: 10px;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    }

    @keyframes floatIn {
      from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
        filter: blur(6px);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @keyframes toothShine {
      0% { transform: translateX(-120%); opacity: 0; }
      20% { opacity: 1; }
      60% { transform: translateX(120%); opacity: 1; }
      100% { transform: translateX(150%); opacity: 0; }
    }

    @keyframes toothSpark {
      0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
      30%  { opacity: 1; transform: translate(-50%, -55%) scale(1.05); }
      70%  { opacity: 0.9; transform: translate(-50%, -60%) scale(1.25); }
      100% { opacity: 0; transform: translate(-50%, -65%) scale(1.5); }
    }

    .hero__badge {
      position: absolute;
      left: 8%;
      bottom: 8%;
      background: #0f1720;
      color: #fff;
      padding: 14px 16px 14px 18px;
      border-radius: 16px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.01em;
      box-shadow: 0 16px 40px -30px rgba(0, 0, 0, 0.7);
      opacity: 0;
      transform: translateY(10px);
      animation: popIn 0.8s ease-out 0.9s forwards;
      max-width: 240px;
      line-height: 1.4;
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero__badge::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 24px;
      width: 14px;
      height: 14px;
      background: #0f1720;
      transform: rotate(45deg);
      border-radius: 3px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-left: none;
      border-top: none;
    }

    @keyframes popIn {
      0% {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
      }
      60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .card {
      background: var(--card);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      padding: 32px;
      box-shadow: var(--shadow);
      font-size: 18px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      font-weight: 600;
      font-size: 15px;
      color: #0f1720;
    }

    .field input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid var(--line);
      font-size: 16px;
      font-family: inherit;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .field input:focus {
      outline: none;
      border-color: rgba(50, 183, 176, 0.6);
      box-shadow: 0 0 0 3px rgba(50, 183, 176, 0.16);
    }

    .form-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 10px;
    }

    .stat-card {
      display: grid;
      gap: 10px;
    }

    .hero-phone {
      font-size: 26px;
      margin: 0;
      font-weight: 700;
    }

    .hero-phone a {
      color: var(--text);
    }

    .section {
      padding: 110px 0;
    }

    .section--alt {
      background: linear-gradient(180deg, #f3f3f3 0%, #f9f9f9 100%);
    }

    #prices.section--alt {
      background:
        linear-gradient(180deg, rgba(245, 246, 248, 0.78) 0%, rgba(249, 249, 249, 0.88) 100%),
        var(--prices-photo);
      background-size: cover;
      background-position: center;
      position: relative;
    }

    #prices.section--alt::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: -1px;
      height: 120px;
      background: linear-gradient(180deg, rgba(247, 248, 251, 0.98) 0%, rgba(247, 248, 251, 0) 100%);
      pointer-events: none;
      z-index: 0;
    }

    #prices.section--alt > .container {
      position: relative;
      z-index: 1;
    }

    .section__head {
      display: grid;
      gap: 10px;
      margin-bottom: 34px;
      text-align: center;
      justify-items: center;
    }

    .highlight {
      border: 1px solid rgba(50, 183, 176, 0.2);
      background: linear-gradient(120deg, #ffffff 0%, #f2fbfa 100%);
    }

    .highlight__grid {
      display: grid;
      gap: 12px;
      align-items: center;
    }

    .implantation {
      --implant-line: rgba(15, 15, 15, 0.1);
      background: linear-gradient(180deg, #f3f3f3 0%, #f9f9f9 100%);
    }

    .implantation__head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 32px;
    }

    .implantation__title {
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 800;
      color: #0f1720;
      letter-spacing: -0.02em;
      line-height: 1.1;
      max-width: 560px;
    }

    .implantation__title .implantation__note {
      display: block;
      margin-top: 10px;
      color: #4b5563;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 600;
    }

    .implantation__title .implantation__subtitle {
      display: block;
      color: var(--teal);
      font-weight: 800;
      font-size: clamp(18px, 2vw, 22px);
      margin-top: 6px;
      line-height: 1.2;
    }

    .implantation__brands {
      background: linear-gradient(160deg, #ffffff 0%, #f8fbfb 100%);
      border-radius: 22px;
      padding: 18px 20px;
      border: 1px solid var(--implant-line);
      box-shadow: 0 18px 42px -36px rgba(15, 23, 32, 0.3);
      max-width: 420px;
      display: grid;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .implantation__brands::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(160deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 251, 251, 0.6) 100%),
        url('/images/country/korea.png');
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 200px auto;
      opacity: 0.45;
      pointer-events: none;
    }

    .implantation__brands > * {
      position: relative;
      z-index: 1;
    }

    .implantation__brands-title {
      font-size: 14px;
      color: #2d3748;
      line-height: 1.4;
      font-weight: 600;
    }

    .implantation__flags {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .implantation__flags li {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 12px;
      background: linear-gradient(150deg, rgba(83, 215, 196, 0.24), rgba(246, 255, 253, 0.9));
      color: #0f1720;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.05em;
    }

    .implantation__flags img {
      width: 26px;
      height: 18px;
      border-radius: 4px;
      object-fit: contain;
      display: block;
    }

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

    .implantation__cta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
    }

    .implantation__cta-button {
      padding: 16px 28px;
    }

    .implant-card {
      --card-accent: #2aa39c;
      --card-accent-soft: rgba(50, 183, 176, 0.14);
      background:
        radial-gradient(circle at 18% 18%, rgba(83, 215, 196, 0.16), rgba(255, 255, 255, 0)),
        linear-gradient(150deg, #d9f5ef 0%, #f8fffd 100%);
      border-radius: 26px;
      padding: 24px 26px;
      border: 1px solid rgba(50, 183, 176, 0.16);
      box-shadow: 0 20px 48px -38px rgba(15, 23, 32, 0.32);
      display: grid;
      gap: 16px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .implant-card--light {
      --card-accent: #6d78f4;
      --card-accent-soft: rgba(122, 133, 255, 0.14);
      background:
        radial-gradient(circle at 20% 18%, rgba(122, 133, 255, 0.12), rgba(255, 255, 255, 0)),
        linear-gradient(150deg, #e5e8ff 0%, #fbfbff 100%);
      border-color: rgba(122, 133, 255, 0.16);
    }

    .implant-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 60px -40px rgba(0, 0, 0, 0.4);
    }

    .implant-card__top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .implant-card__stage {
      font-weight: 800;
      color: var(--card-accent);
      font-size: 15px;
    }

    .implant-card__promo {
      background: var(--card-accent-soft);
      color: #0f1720;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    .implant-card__title {
      margin: 0;
      font-size: 24px;
      color: #0f1720;
      letter-spacing: -0.01em;
    }

    .implant-card__desc {
      margin: 0;
      color: #4a5563;
      font-size: 14px;
    }

    .implant-methods {
      display: grid;
      gap: 14px;
    }

    .implant-method {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      background: #f6f8fb;
      border-radius: 18px;
      padding: 14px 16px;
      border: 1px solid var(--implant-line);
    }

    .implant-card--light .implant-method {
      background: rgba(255, 255, 255, 0.8);
    }

    .implant-method__label {
      font-size: 12px;
      color: #6b7280;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .implant-method__name {
      font-weight: 700;
      color: #0f1720;
      margin-top: 4px;
    }

    .implant-method__price {
      font-weight: 800;
      font-size: 18px;
      margin-top: 8px;
      color: #0f1720;
    }

    .implant-method__meta {
      display: grid;
      gap: 8px;
      align-content: space-between;
      align-items: center;
      justify-items: end;
      min-width: 220px;
    }

    .implant-method__icon {
      width: 220px;
      height: 120px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
      border: 2px solid var(--card-accent);
      box-shadow: 0 10px 24px -18px rgba(15, 23, 32, 0.3);
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .implant-method__icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 0;
      box-sizing: border-box;
      border-radius: inherit;
      transform: translateY(-14px);
      display: block;
    }

    .implant-method__icon--light {
      background: #ffffff;
    }

    .implant-method__old {
      font-size: 12px;
      color: #9aa2af;
      text-decoration: line-through;
      font-weight: 600;
    }

    .implant-pay {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .implant-pay__pill {
      background: var(--card-accent-soft);
      color: #0f1720;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 13px;
    }

    .implant-pay__pill--light {
      background: rgba(255, 255, 255, 0.8);
    }

    .implant-pay__or {
      color: #9aa2af;
      font-weight: 600;
    }

    .implant-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .implant-list li {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 14px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--implant-line);
    }

    .implant-list li:last-child {
      border-bottom: none;
    }

    .implant-list--light li {
      background: transparent;
    }

    .implant-list li::before {
      content: '+';
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: var(--card-accent);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      grid-column: 1;
    }

    .implant-list li span {
      grid-column: 2 / 3;
      color: #1f2937;
      font-weight: 600;
    }

    .implant-list li strong {
      grid-column: 3 / 4;
      color: #0f1720;
      font-weight: 700;
      justify-self: end;
    }

    @keyframes implantCardIn {
      from {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
        filter: blur(6px);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @keyframes implantListIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes implantIconFloat {
      0%,
      100% {
        transform: translateY(-14px) scale(1);
      }
      50% {
        transform: translateY(-22px) scale(1.03);
      }
    }

    .implantation.is-visible .implantation__title,
    .implantation.is-visible .implantation__brands,
    .implantation.is-visible .implant-card {
      animation: implantCardIn 0.8s ease both;
    }

    .implantation.is-visible .implantation__brands {
      animation-delay: 0.08s;
    }

    .implantation.is-visible .implant-card:nth-child(2) {
      animation-delay: 0.12s;
    }

    .implantation.is-visible .implant-list li {
      animation: implantListIn 0.55s ease both;
    }

    .implantation.is-visible .implant-list li:nth-child(1) {
      animation-delay: 0.12s;
    }

    .implantation.is-visible .implant-list li:nth-child(2) {
      animation-delay: 0.22s;
    }

    .implantation.is-visible .implant-list li:nth-child(3) {
      animation-delay: 0.32s;
    }

    .implantation.is-visible .implant-list li:nth-child(4) {
      animation-delay: 0.42s;
    }

    .implantation.is-visible .implant-method__icon img {
      animation: implantIconFloat 3.6s ease-in-out infinite;
    }

    .implantation.is-visible .implant-card:nth-child(2) .implant-method__icon img {
      animation-delay: 0.4s;
    }

    @media (prefers-reduced-motion: reduce) {
      .implantation.is-visible .implantation__title,
      .implantation.is-visible .implantation__brands,
      .implantation.is-visible .implant-card,
      .implantation.is-visible .implant-list li,
      .implantation.is-visible .implant-method__icon img {
        animation: none !important;
      }
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 20px;
      align-items: stretch;
    }

    .video-placeholder {
      border-radius: var(--radius);
      border: 1px solid rgba(50, 183, 176, 0.25);
      background: #000;
      min-height: 320px;
      aspect-ratio: 16 / 9;
      max-height: 70vh;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
    }

    .approach-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      border: none;
      border-radius: inherit;
      background: #000;
    }

    .approach-video-wrap {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .approach-showcase {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 32px;
      align-items: start;
      max-width: 1180px;
      margin: 0 auto;
    }

    .approach-showcase__media {
      position: relative;
      display: grid;
      align-content: start;
    }

    .approach-video-card {
      --frame-radius: 26px;
      --frame-gap: 6px;
      position: relative;
      padding: var(--frame-gap);
      border-radius: var(--frame-radius);
      overflow: hidden;
      background: transparent;
      aspect-ratio: 4 / 5;
      min-height: 420px;
      border: 1px solid rgba(15, 23, 32, 0.22);
      box-shadow: 0 24px 54px -40px rgba(15, 23, 32, 0.55);
    }

    .approach-video-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(#4060aa, #4060aa) left top / 22px 2px no-repeat,
        linear-gradient(#4060aa, #4060aa) left top / 2px 22px no-repeat,
        linear-gradient(#4060aa, #4060aa) right top / 22px 2px no-repeat,
        linear-gradient(#4060aa, #4060aa) right top / 2px 22px no-repeat,
        linear-gradient(#4060aa, #4060aa) left bottom / 22px 2px no-repeat,
        linear-gradient(#4060aa, #4060aa) left bottom / 2px 22px no-repeat,
        linear-gradient(#4060aa, #4060aa) right bottom / 22px 2px no-repeat,
        linear-gradient(#4060aa, #4060aa) right bottom / 2px 22px no-repeat;
      opacity: 0.7;
      pointer-events: none;
      z-index: 2;
    }

    .approach-video-card .approach-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: calc(var(--frame-radius) - var(--frame-gap));
      display: block;
      position: relative;
      z-index: 0;
      box-shadow: 0 10px 28px -20px rgba(0, 0, 0, 0.45);
    }

    .approach-float-card {
      position: absolute;
      top: 18px;
      right: 18px;
      background: rgba(255, 255, 255, 0.96);
      color: #0f1720;
      border-radius: 18px;
      padding: 14px 16px;
      box-shadow: 0 18px 38px -28px rgba(0, 0, 0, 0.5);
    }

    .approach-float-card__title {
      font-weight: 800;
      font-size: 16px;
      letter-spacing: -0.01em;
    }

    .approach-float-card__subtitle {
      font-size: 16px;
      letter-spacing: -0.01em;
      text-transform: none;
      color: #0f1720;
      font-weight: 800;
      margin-top: 2px;
    }

    .approach-float-list {
      list-style: none;
      padding: 0;
      margin: 0;
      position: absolute;
      left: 18px;
      bottom: 18px;
      display: grid;
      gap: 10px;
    }

    .approach-float-list__item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 34px -30px rgba(0, 0, 0, 0.45);
      font-weight: 600;
      font-size: 14px;
      color: #0f1720;
      opacity: 0;
      transform: translateX(-12px);
      animation: floatListIn 0.6s ease forwards;
    }

    .approach-float-list__item:nth-child(1) { animation-delay: 0.1s; }
    .approach-float-list__item:nth-child(2) { animation-delay: 0.25s; }
    .approach-float-list__item:nth-child(3) { animation-delay: 0.4s; }
    .approach-float-list__item:nth-child(4) { animation-delay: 0.55s; }

    .approach-float-list__icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: #4060aa;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .approach-showcase__content {
      display: grid;
      align-content: start;
    }

    .approach-info-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 26px 28px;
      border: 1px solid rgba(15, 15, 15, 0.1);
      box-shadow: 0 20px 46px -36px rgba(0, 0, 0, 0.4);
      display: grid;
      gap: 14px;
    }

    .approach-info-card__eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 800;
      color: rgba(15, 23, 32, 0.55);
    }

    .approach-info-card h3 {
      margin: 0;
      font-size: clamp(22px, 2.6vw, 30px);
      color: #0f1720;
      letter-spacing: -0.01em;
    }

    .approach-info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .approach-info-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px 14px;
      border-radius: 14px;
      background: #f6f8fb;
      border: 1px solid rgba(15, 15, 15, 0.08);
      font-size: 15px;
      color: #0f1720;
      line-height: 1.5;
    }

    .approach-info-list li::before {
      content: '✓';
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: rgba(64, 96, 170, 0.12);
      color: #3550a4;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    @keyframes floatListIn {
      from {
        opacity: 0;
        transform: translateX(-12px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .approach-float-list__item {
        animation: none;
        opacity: 1;
        transform: none;
      }
    }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 3vw, 28px);
  color: #e7f6ed;
  background: linear-gradient(135deg, rgba(12, 24, 18, 0.62), rgba(12, 24, 18, 0.2));
  pointer-events: none;
  overflow: hidden;
}

.video-chat {
  position: relative;
  flex: 1;
  height: 100%;
}

.video-chat__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 96%;
  margin: 0 auto;
  padding-bottom: clamp(56px, 10vh, 120px);
  align-content: space-between;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.video-overlay__heading {
  max-width: 92%;
  margin: 0 auto 16px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #f9fffb;
  letter-spacing: -0.01em;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.6);
}

.chat-bubble {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(12, 24, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px -28px rgba(0, 0, 0, 0.6);
  color: #f9fffb;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: chatIn 1.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.chat-bubble--left {
  grid-column: 1;
  justify-self: start;
  margin-left: clamp(6px, 3vw, 28px);
  border-bottom-left-radius: 6px;
}

.chat-bubble--right {
  grid-column: 2;
  justify-self: end;
  margin-right: clamp(6px, 3vw, 28px);
  border-bottom-right-radius: 6px;
  background: rgba(8, 20, 16, 0.55);
}

.chat-bubble--lead {
  font-size: 15px;
  font-weight: 600;
  color: #e9f6f1;
}

.chat-bubble--point {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.chat-bubble__dot {
  color: #b3f7df;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.chat-bubble__text {
  flex: 1;
  display: block;
}

.video-chat__nav {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 2;
}

.video-chat__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 20, 16, 0.6);
  color: #f9fffb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 16px 30px -24px rgba(0, 0, 0, 0.6);
}

.video-chat__btn:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

.video-chat__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: none;
  gap: 8px;
  pointer-events: auto;
  z-index: 2;
}

.video-chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.video-chat__dot--active {
  background: #b3f7df;
}

.video-chat--single .video-chat__nav,
.video-chat--single .video-chat__dots {
  display: none;
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

    .video-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 6px;
      pointer-events: auto;
      position: absolute;
      right: clamp(16px, 4vw, 32px);
      bottom: clamp(16px, 4vw, 32px);
      z-index: 2;
    }

    .video-actions .button {
      box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.65);
    }


    .grid {
      display: grid;
      gap: 18px;
    }

    .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cases-grid {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

    .benefits-strip {
      margin-top: 24px;
      grid-column: 1 / -1;
      border-radius: 18px;
      background: transparent;
      overflow: hidden;
      padding: 14px 12px;
      box-shadow: none;
      position: relative;
      width: 100%;
    }

    .hero--merged::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 110px;
      background: linear-gradient(180deg, rgba(247, 248, 251, 0) 0%, rgba(247, 248, 251, 0.98) 100%);
      pointer-events: none;
      z-index: 0;
    }

    .hero--merged .hero__grid {
      position: relative;
      z-index: 1;
    }

    .benefits-track {
      display: flex;
      gap: 12px;
      width: max-content;
      align-items: center;
      animation: benefitsMove 26s linear infinite;
      will-change: transform;
    }

    .benefit-pill {
      background: #fff;
      color: #0f1720;
      padding: 10px 16px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: none;
      font-weight: 700;
      font-size: 15px;
      white-space: nowrap;
    }

    @keyframes benefitsMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 40px;
      border: 1px solid rgba(15, 15, 15, 0.1);
      background: linear-gradient(160deg, #ffffff 0%, #f8fbfb 100%);
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
      min-height: 320px;
      font-size: 19px;
      border-radius: 24px;
    }

    .price-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.4);
      border-color: rgba(15, 15, 15, 0.16);
    }

    .price-card__hint {
      margin: auto 0 0;
      font-size: 13px;
      font-weight: 600;
      color: rgba(15, 23, 32, 0.58);
      max-width: calc(100% - 120px);
    }

    .price-tag {
      position: absolute;
      right: 14px;
      bottom: 14px;
      padding: 8px 12px;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.08);
      color: #0f1720;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .service ul,
    .case ul,
    .list,
    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
      color: var(--muted);
    }

    .list li,
    .contact-list li {
      position: relative;
      padding-left: 16px;
      line-height: 1.55;
    }

    .list li::before,
    .contact-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      background: #1f1f1f;
      border-radius: 50%;
    }

    .case__label {
      font-weight: 700;
      margin-bottom: 6px;
    }

    .works-slider {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(160deg, #ffffff 0%, #f8fbfb 100%);
      padding: 16px;
      box-shadow: var(--shadow);
    }

    .works-slider__viewport {
      display: flex;
      transition: transform 0.4s ease;
      gap: 0;
    }

    .works-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 16px;
    }

    .slider {
      --value: 50%;
      position: relative;
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      color: #0f1720;
      background-color: #ffffff;
      border: 1px solid rgba(15, 23, 32, 0.12);
      aspect-ratio: 3 / 2;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 45px -32px rgba(0, 0, 0, 0.45);
    }

    .slider__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .slider__img--before {
      clip-path: inset(0 calc(100% - var(--value)) 0 0);
      -webkit-clip-path: inset(0 calc(100% - var(--value)) 0 0);
    }

    .slider__img--after {
      clip-path: inset(0 0 0 var(--value));
      -webkit-clip-path: inset(0 0 0 var(--value));
    }

    .slider::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--value);
      width: 2px;
      background: #0f1720;
      transform: translateX(-1px);
      pointer-events: none;
      z-index: 1;
    }

    .slider__range-js {
      position: absolute;
      margin: 0;
      background-color: transparent;
      outline: 0;
      cursor: col-resize;
      -webkit-appearance: none;
      appearance: none;
      inset: 0;
      color: #0f1720;
      z-index: 2;
    }

    .slider__range-js::-webkit-slider-thumb {
      width: 50px;
      height: 50px;
      background-color: currentColor;
      background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='8 5 3 12 8 19'/%3E%3Cpolyline points='16 5 21 12 16 19'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 22px 22px;
      border-radius: 50%;
      transform: translateX(calc(var(--value) - 50%));
      -webkit-appearance: none;
      appearance: none;
      box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.4);
    }

    .slider__range-js::-moz-range-thumb {
      width: 50px;
      height: 50px;
      background-color: currentColor;
      background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='8 5 3 12 8 19'/%3E%3Cpolyline points='16 5 21 12 16 19'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 22px 22px;
      border-radius: 50%;
      transform: translateX(calc(var(--value) - 50%));
      appearance: none;
      box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.4);
      border: none;
    }

    .slider__range-js::-moz-range-track {
      background: transparent;
      border: none;
    }

    .slider__range-js:hover {
      color: #4f4f4f;
    }

    .slider__range-js:active {
      color: #888888;
    }

    .slider__range-js:focus-visible::-moz-range-thumb {
      outline: auto;
    }

    .slider__range-js:focus-visible::-webkit-slider-thumb {
      outline: auto;
    }

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

    .works-slider__controls {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 14px;
    }

    .slider-btn {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 12px 30px -22px rgba(0, 0, 0, 0.4);
    }

    .slider-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 36px -26px rgba(0, 0, 0, 0.5);
    }

    .works-slider__dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 8px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.16);
      border: 1px solid rgba(0, 0, 0, 0.15);
    }

    .dot--active {
      background: #32b7b0;
      border-color: rgba(0, 0, 0, 0.2);
      box-shadow: 0 6px 14px -10px rgba(0, 0, 0, 0.4);
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .modal-backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-backdrop.closing {
      opacity: 0;
      visibility: hidden;
    }

    .modal {
      background: #ffffff;
      border-radius: 22px;
      padding: 36px;
      width: min(1000px, 92vw);
      box-shadow: 0 32px 76px -34px rgba(0, 0, 0, 0.55);
      border: 1px solid rgba(0, 0, 0, 0.08);
      position: relative;
      transform: translateY(12px) scale(0.96);
      opacity: 0;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    #appointment-modal .modal {
      background: linear-gradient(160deg, #ffffff 0%, #eef3ff 100%);
    }

    .modal-backdrop.active .modal {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .modal-backdrop.closing .modal {
      opacity: 0;
      transform: translateY(12px) scale(0.96);
    }

    .modal__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .modal__success-logo {
      width: 0;
      height: 0;
      margin: 0;
      border-radius: 22px;
      background: #1b2436;
      border: 1px solid rgba(255, 255, 255, 0.55);
      display: grid;
      place-items: center;
      position: relative;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transform: translateY(10px) scale(0.6);
      transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, width 0.35s ease, height 0.35s ease;
      pointer-events: none;
      box-shadow: 0 14px 30px -20px rgba(15, 23, 32, 0.7);
    }

    .modal__success-logo::before {
      content: none;
    }

    .modal__success-logo img {
      width: 120px;
      height: auto;
      display: block;
      filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45)) brightness(1.1) saturate(1.05);
      position: relative;
      z-index: 1;
    }

    @keyframes logoReveal {
      0% {
        opacity: 0;
        transform: translateY(10px) scale(0.6) rotate(-4deg);
      }
      60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.05) rotate(0deg);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal__title {
      margin: 0;
      font-size: 28px;
      letter-spacing: -0.01em;
    }

    .modal__price {
      margin: 0;
      font-weight: 800;
      font-size: 24px;
      color: #0e8f86;
      white-space: nowrap;
    }

    #appointment-modal .form-grid {
      transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.35s ease, margin 0.35s ease;
      max-height: 520px;
      overflow: hidden;
    }

    #appointment-modal .form-grid.is-submitting {
      opacity: 0.6;
      pointer-events: none;
    }

    #appointment-modal.is-sent .form-grid {
      opacity: 0;
      transform: translateY(8px);
      max-height: 0;
      margin: 0;
      pointer-events: none;
    }

    #appointment-modal .modal__title {
      transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
      max-height: 80px;
      overflow: hidden;
    }

    #appointment-modal.is-sent .modal__header {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
    }

    #appointment-modal.is-sent .modal__success-logo {
      opacity: 1;
      width: 140px;
      height: 140px;
      max-height: 160px;
      transform: translateY(0) scale(1);
      transition-delay: 0.08s;
    }

    #appointment-modal.is-sent .modal__success-logo img {
      animation: logoReveal 0.55s ease-out 0.1s both;
    }

    #appointment-modal.is-sent .modal__title {
      opacity: 0;
      transform: translateY(-6px);
      max-height: 0;
      margin: 0;
    }

    #appointment-modal .modal__price {
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #appointment-modal.is-sent .modal__price {
      color: #0f1720;
      font-size: 20px;
      white-space: normal;
      text-align: center;
      transform: translateY(-4px);
    }

    .modal__list {
      list-style: none;
      margin: 0 0 18px;
      padding: 0;
      color: #2d3748;
      line-height: 1.85;
      font-size: 17px;
      display: grid;
      gap: 8px;
    }

    .modal__item {
      display: flex;
      align-items: baseline;
      gap: 12px;
      position: relative;
      padding-left: 14px;
    }

    .modal__item::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #2a9ea3;
      font-size: 20px;
      line-height: 1;
    }

    .modal__item-text {
      flex: 1;
    }

    .modal__item-price {
      color: #2a9ea3;
      font-weight: 800;
      white-space: nowrap;
      padding-left: 6px;
    }

    .modal__actions {
      display: flex;
      gap: 12px;
      justify-content: flex-start;
    }

    .modal__cta {
      padding: 14px 20px;
      border-radius: 12px;
      background: #0f1720;
      color: #ffffff;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      box-shadow: 0 12px 28px -20px rgba(0, 0, 0, 0.4);
    }

    .modal__cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 36px -24px rgba(0, 0, 0, 0.45);
      background: #1b2a34;
    }

    /* Scroll animations */
    [data-animate-on-scroll] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    [data-animate-on-scroll].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Scroll animations */
    [data-animate-on-scroll] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    [data-animate-on-scroll].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      border: none;
      background: rgba(0, 0, 0, 0.06);
      border-radius: 999px;
      width: 34px;
      height: 34px;
      font-size: 18px;
      cursor: pointer;
      transition: transform 0.1s ease, background 0.1s ease;
    }

    .modal__close:hover {
      background: rgba(0, 0, 0, 0.12);
      transform: translateY(-1px);
    }

    .review {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .contact-card {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .contact-chip {
      align-self: flex-start;
      width: fit-content;
      box-shadow: 0 8px 22px -18px rgba(0, 0, 0, 0.35);
    }

    .contact-lines {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 16px;
      display: grid;
      gap: 12px;
      background: #ffffff;
    }

    .contact-lines--phone {
      background: linear-gradient(135deg, rgba(50, 183, 176, 0.16), rgba(15, 23, 32, 0.04));
      border-color: rgba(50, 183, 176, 0.28);
      box-shadow: 0 14px 28px -28px rgba(0, 0, 0, 0.45);
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-lines--messengers {
      background: linear-gradient(135deg, rgba(34, 158, 101, 0.12), rgba(107, 77, 251, 0.12));
      border-color: rgba(76, 85, 111, 0.24);
      box-shadow: 0 14px 28px -28px rgba(0, 0, 0, 0.45);
    }

    .contact-lines__title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 12px;
      border: 1px solid rgba(15, 15, 15, 0.08);
      background: #ffffff;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: #0f1720;
      text-transform: uppercase;
      font-size: 13px;
      width: fit-content;
      box-shadow: 0 8px 22px -18px rgba(0, 0, 0, 0.35);
    }

    .contact-lines__list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
    }

    .contact-lines__list--messengers {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(15, 15, 15, 0.08);
      background: #ffffff;
      font-weight: 700;
      width: 100%;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .contact-lines--phone .contact-link {
      justify-content: center;
      gap: 12px;
    }

    .contact-link span {
      font-weight: 600;
      font-size: 15px;
      color: inherit;
    }

    .contact-link__value {
      color: var(--muted);
    }

    .contact-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px -28px rgba(0, 0, 0, 0.35);
      border-color: rgba(15, 15, 15, 0.16);
    }

    .contact-link--telegram {
      color: #229ed9;
    }

    .contact-link--max {
      color: #6b4dfb;
    }

    .contact-meta {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(15, 15, 15, 0.08);
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(50, 183, 176, 0.08), rgba(76, 85, 111, 0.04));
    }

    .contact-meta__item {
      padding: 12px;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid rgba(15, 15, 15, 0.06);
      box-shadow: 0 12px 26px -26px rgba(0, 0, 0, 0.4);
      display: grid;
      gap: 6px;
    }

    .contact-meta__label {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 800;
    }

    .contact-meta__value {
      font-weight: 700;
      color: #0f1720;
      display: grid;
      gap: 6px;
      line-height: 1.4;
    }

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

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 18px;
      align-items: start;
    }

    .map-frame {
      overflow: hidden;
      border-radius: calc(var(--radius) - 4px);
      border: 1px solid var(--line);
    }

    .map-frame iframe {
      width: 100%;
      height: 320px;
      border: 0;
      display: block;
    }

    .map-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .reviews-head__count {
      margin: 8px 0 0;
      color: var(--muted);
      font-weight: 600;
    }

    .reviews-head__cta {
      color: #0f766e;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      gap: 6px;
      align-items: baseline;
      font-size: 16px;
      margin-top: 8px;
    }

    .reviews-head__cta span {
      text-decoration: underline;
    }

    .reviews-carousel {
      position: relative;
      margin-top: 22px;
      padding: 12px 48px;
      background: linear-gradient(145deg, #ffffff, #f6faf9);
      border-radius: 18px;
      border: 1px solid rgba(15, 15, 15, 0.04);
      box-shadow: 0 24px 44px -36px rgba(0, 0, 0, 0.42);
    }

    .reviews-carousel__viewport {
      overflow: hidden;
    }

    .reviews-carousel__track {
      display: flex;
      transition: transform 0.3s ease;
      will-change: transform;
    }

    .reviews-carousel__slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
      justify-content: center;
      gap: 20px;
      padding: 10px;
    }

    .review-card {
      background: linear-gradient(180deg, #ffffff 0%, #f1f8f6 100%);
      border: 1px solid rgba(15, 118, 110, 0.12);
      border-radius: 20px;
      padding: 18px 20px 16px;
      box-shadow: 0 18px 40px -34px rgba(0, 0, 0, 0.45);
      display: grid;
      gap: 10px;
      color: #1a202c;
      max-width: 420px;
      width: 100%;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .review-card__head {
      display: grid;
      gap: 10px;
    }

    .review-card__stars .star {
      color: #f5b400;
      font-size: 16px;
      letter-spacing: 1px;
    }

    .review-card__author {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      align-items: center;
    }

    .review-card__avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e8f5ff, #d6eaff);
      display: grid;
      place-items: center;
      font-weight: 800;
      color: #0f1720;
      border: 1px solid rgba(15, 15, 15, 0.08);
    }

    .review-card__name {
      font-weight: 800;
    }

    .review-card__meta {
      color: var(--muted);
      font-size: 14px;
    }

    .review-card__text {
      margin: 0;
      line-height: 1.5;
      color: #27303f;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .review-card__source {
      color: #0f766e;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      align-self: end;
    }

    .review-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 48px -36px rgba(0, 0, 0, 0.5);
      border-color: rgba(15, 118, 110, 0.18);
    }

    .reviews-carousel__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(15, 118, 110, 0.18);
      background: linear-gradient(135deg, #ffffff, #e9f7f3);
      box-shadow: 0 14px 32px -24px rgba(0, 0, 0, 0.45);
      display: grid;
      place-items: center;
      color: #0f766e;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .reviews-carousel__nav--prev {
      left: 6px;
    }

    .reviews-carousel__nav--next {
      right: 6px;
    }

    .reviews-carousel__nav:hover {
      transform: translateY(-50%) scale(1.04);
      box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.52);
      background: linear-gradient(135deg, #ffffff, #dff3ec);
    }

    .reviews-carousel__dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 14px;
    }

    .reviews-carousel__dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #d9e4ea;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .reviews-carousel__dot--active {
      background: #0f766e;
      transform: scale(1.08);
      box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
    }

    .reviews-carousel--single .reviews-carousel__slide {
      grid-template-columns: 1fr;
      justify-content: center;
    }

    .footer {
      position: relative;
      background: radial-gradient(circle at 20% 20%, rgba(50, 183, 176, 0.18), rgba(12, 24, 18, 0.9)),
        radial-gradient(circle at 80% 10%, rgba(107, 77, 251, 0.18), rgba(12, 24, 18, 0.92)),
        #0c1812;
      color: #e7f6ed;
      padding: 65px 0 40px;
      overflow: hidden;
    }

    .footer .container {
      width: calc(100% - 32px);
      max-width: none;
    }

    .footer::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(12, 24, 18, 0) 0%, rgba(12, 24, 18, 0.4) 70%, rgba(12, 24, 18, 0.75) 100%);
      pointer-events: none;
    }

.footer__inner {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer__col {
  display: grid;
  gap: 10px;
}

.footer__col--hero {
  gap: 12px;
}

.footer__col--contact {
  display: block;
  border-left: 1px solid rgba(231, 246, 237, 0.18);
  padding-left: 16px;
}

.footer__contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 16px;
}

.footer__contact-main {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__box {
  display: grid;
  gap: 8px;
  height: 100%;
}

.footer__box--messengers {
  align-content: start;
  padding-left: 0;
  border-left: none;
  margin-top: 0;
  align-self: stretch;
}

.footer__box--map {
  align-content: start;
  gap: 10px;
  border-left: none;
  padding-left: 0;
}

.footer__eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(231, 246, 237, 0.7);
  font-weight: 800;
}

.footer__headline {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 28px);
  color: #ffffff;
  letter-spacing: -0.01em;
}

    .footer__phone {
      display: inline-block;
      font-size: 28px;
      font-weight: 800;
      color: #b3f7df;
      text-decoration: none;
    }

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

    .button--light {
      background: transparent;
      color: #b3f7df;
      border-color: #b3f7df;
      box-shadow: none;
    }

    .button--light:hover {
      background: rgba(179, 247, 223, 0.08);
      color: #ffffff;
    }

    .footer__ghost {
      color: #e7f6ed;
      border-color: rgba(231, 246, 237, 0.35);
    }

    .footer__subtext {
      color: rgba(231, 246, 237, 0.78);
      display: grid;
      gap: 4px;
      line-height: 1.5;
      font-size: 14px;
    }

    .footer__maplink {
      color: #b3f7df;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 2px;
    }

    .footer__label {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: rgba(231, 246, 237, 0.82);
      margin-bottom: 2px;
    }

    .footer__schedule {
      border: 1px solid rgba(231, 246, 237, 0.12);
      border-radius: 14px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.02);
      box-shadow: 0 12px 30px -32px rgba(0, 0, 0, 0.5);
      display: grid;
      gap: 6px;
      max-width: 360px;
      min-height: 140px;
      align-content: start;
    }

    .footer__links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 6px;
    }

    .footer__links a {
      color: #e7f6ed;
      font-weight: 700;
      text-decoration: none;
      font-size: 16px;
      line-height: 1.4;
    }

    .footer__links a:hover {
      color: #b3f7df;
    }

    .footer__links--messengers {
      gap: 8px;
    }

    .footer__links--messengers a {
      font-style: normal;
      font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
      font-size: 16px;
      letter-spacing: 0.01em;
      line-height: 1.4;
      padding: 0;
      border: none;
      background: transparent;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .footer__messenger-icon {
      width: 22px;
      height: 22px;
      display: inline-block;
      object-fit: contain;
      flex-shrink: 0;
    }

    .footer__map-frame {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(231, 246, 237, 0.18);
      background: rgba(0, 0, 0, 0.12);
      min-height: 200px;
      position: relative;
    }

    .footer__map-embed {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 200px;
      overflow: hidden;
    }

    .footer__map-frame iframe {
      width: 100%;
      height: 260px;
      border: 0;
      display: block;
    }

    .footer__text {
      color: #ffffff;
      line-height: 1.4;
    }

    .footer__text--address {
      font-size: 16px;
    }

    .footer__email {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 16px;
      border-radius: 12px;
      border: 1px solid rgba(231, 246, 237, 0.25);
      background: rgba(231, 246, 237, 0.06);
      color: #e7f6ed;
      font-weight: 700;
      text-decoration: none;
      width: fit-content;
      transition: transform 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
      margin-top: 6px;
    }

    .footer__email:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -24px rgba(0, 0, 0, 0.6);
      border-color: rgba(231, 246, 237, 0.4);
    }

    .footer__link-telegram a {
      color: #229ed9;
    }

    .footer__link-vk a {
      color: #4c8bf5;
    }

    .footer__link-max a {
      color: #6b4dfb;
    }

    .footer__link-telegram a:hover,
    .footer__link-vk a:hover,
    .footer__link-max a:hover {
      color: #ffffff;
    }

    .footer__note-row {
      margin-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      color: rgba(231, 246, 237, 0.75);
      font-weight: 600;
      font-size: 14px;
    }

.footer__note {
  margin: 0;
}

@media (max-width: 960px) {
  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding: 90px 0;
  }

  .section__head {
    margin-bottom: 24px;
  }

  .hero {
    padding: 80px 0 60px;
  }

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

  .hero__media {
    width: 100%;
    justify-self: center;
    padding: 16px;
    border-radius: 26px;
  }

  .hero__badge {
    font-size: 13px;
  }

  .hero--merged {
    padding: 90px 0 70px;
  }

  .hero--merged .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero--merged .hero__media {
    order: 2;
  }

  .hero--merged .hero__text {
    order: 1;
  }

  .hero--merged .benefits-strip {
    order: 3;
  }

  .implantation__head {
    flex-direction: column;
  }

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

  .implant-card {
    padding: 22px;
  }

  .approach-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-video-card {
    min-height: 360px;
  }


  .topbar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    font-size: 14px;
  }

  .topbar__cta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .video-placeholder {
    min-height: 320px;
    max-height: 70vh;
  }

  .video-chat__track {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding-bottom: 70px;
    align-content: space-between;
  }

  .video-overlay__heading {
    margin-bottom: 12px;
  }

  .chat-bubble--left,
  .chat-bubble--right {
    grid-column: 1;
  }

  .chat-bubble--right {
    justify-self: end;
  }

  .reviews-carousel {
    padding: 8px;
  }

  .reviews-carousel__nav {
    display: none;
  }

  .reviews-carousel__slide {
    grid-template-columns: 1fr;
  }

  .review-card {
    max-width: 100%;
  }

  .works-slider {
    padding: 12px;
  }

  .works-slide {
    grid-template-columns: 1fr;
  }

  .slider {
    max-width: 100%;
    min-height: 240px;
  }

  .slider__range-js::-webkit-slider-thumb,
  .slider__range-js::-moz-range-thumb {
    width: 44px;
    height: 44px;
  }

  .prices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card__hint {
    font-size: 12px;
  }

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

  .footer__col--contact {
    border-left: none;
    padding-left: 0;
  }

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

  .footer__phone {
    font-size: 24px;
  }

  .footer__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__schedule {
    max-width: 100%;
    min-height: auto;
  }

  .footer__map-frame iframe {
    width: 100%;
    transform: none;
    height: 220px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .topbar {
    display: none;
  }

  .mobile-menu-trigger,
  .mobile-menu__backdrop {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .mobile-menu-trigger {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top));
    right: 16px;
    padding: 0;
    z-index: 985;
  }

  .mobile-menu-trigger__inner {
    width: auto;
    margin: 0;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  h1 {
    font-size: clamp(30px, 7vw, 38px);
  }

  h2 {
    font-size: clamp(26px, 6vw, 32px);
  }

  h3 {
    font-size: 20px;
  }

  .brand {
    font-size: 12px;
  }

  .brand img {
    height: 44px;
  }

  .button {
    padding: 14px 20px;
    font-size: 15px;
  }

  .hero__note {
    font-size: 14px;
  }

  .hero--merged {
    padding: 80px 0 60px;
  }

  .hero__media--video {
    max-width: 100%;
  }

  .hero--merged .hero__media--video {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .hero--merged .hero__text--merged {
    max-width: 440px;
    margin: 0 auto;
  }

  .hero--merged .hero__media--video {
    width: 100%;
  }

  .hero__text--merged {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .hero__text--merged .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__cta--merged .button {
    width: 100%;
  }

  .implantation__title {
    font-size: 26px;
  }

  .implantation__brands {
    padding: 16px;
  }

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

  .implant-method__meta {
    width: 100%;
    justify-items: start;
  }

  .implant-list li {
    grid-template-columns: 32px 1fr;
    row-gap: 4px;
    column-gap: 12px;
  }

  .implant-list li span {
    grid-column: 2;
    margin-left: 0;
  }

  .implant-list li strong {
    grid-column: 2;
    margin-left: 0;
    justify-self: start;
  }

  .hero__trust {
    font-size: 14px;
  }

  .hero__media {
    max-width: 380px;
  }

  .hero__bullets {
    gap: 8px;
  }

  .pill {
    padding: 8px 10px;
    font-size: 12px;
  }

  .approach-video-card {
    border-radius: 26px;
    min-height: 380px;
    aspect-ratio: 3 / 4;
  }

  .approach-float-list {
    left: 10px;
    bottom: 10px;
    gap: 8px;
    max-width: calc(100% - 20px);
  }

  .approach-float-list__item {
    font-size: 13px;
    padding: 10px 12px;
  }

  .approach-info-card {
    padding: 20px 22px;
  }

  .video-overlay {
    padding: 12px 12px 72px;
  }

  .video-placeholder {
    max-height: 60vh;
  }

  .video-overlay__heading {
    display: none;
  }

  .video-chat {
    position: relative;
    display: block;
    margin-top: 0;
    overflow: hidden;
    min-height: 200px;
  }

  .video-chat__track {
    position: relative;
    display: block;
    max-width: 100%;
    padding-bottom: 0;
    height: 100%;
    width: 100%;
    transition: none;
  }

  .chat-bubble {
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;
    max-width: min(calc(100% - 24px), 360px);
    margin: 0;
    position: absolute;
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    top: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    animation: none;
    pointer-events: none;
    transition: none;
    font-size: 14px;
    padding: 10px 12px;
  }

  .chat-bubble.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .video-chat:not(.is-cycling) .chat-bubble:first-child {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .chat-bubble--right,
  .chat-bubble--left {
    margin: 0;
  }

  .chat-bubble--left {
    left: 12px;
    right: auto;
  }

  .chat-bubble--right {
    left: auto;
    right: 12px;
  }

  .chat-bubble--lead {
    font-size: 13px;
  }

  .chat-bubble__text {
    display: block;
    overflow: visible;
  }

  .chat-bubble--lead .chat-bubble__text {
    -webkit-line-clamp: unset;
  }

  .chat-bubble--point .chat-bubble__text {
    -webkit-line-clamp: unset;
  }

  .video-actions {
    right: 12px;
    bottom: 12px;
  }

  .video-chat__nav {
    display: flex;
  }

  .video-chat__dots {
    display: flex;
  }

  .works-slider__controls {
    flex-direction: column;
  }

  .slider-btn {
    width: 100%;
  }

  .reviews-carousel {
    padding: 6px;
  }

  .review-card {
    padding: 14px 16px;
  }

  .modal-backdrop {
    align-items: flex-start;
    overflow-y: auto;
    padding: 12px;
  }

  .modal {
    width: 100%;
    max-width: 520px;
    padding: 22px 18px;
    margin: 24px auto;
    max-height: calc(100vh - 48px);
    overflow: auto;
  }

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

  .modal__title {
    font-size: 22px;
  }

  .modal__price {
    font-size: 18px;
    white-space: normal;
  }

  .modal__list {
    font-size: 15px;
    line-height: 1.6;
  }

  .modal__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .modal__item-text {
    min-width: 0;
  }

  .modal__item-price {
    white-space: normal;
    padding-left: 0;
  }

  .modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .topbar__inner {
    gap: 8px;
    padding: 10px 0;
  }

  .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 4px;
  }

  .nav a {
    white-space: nowrap;
    font-size: 13px;
  }

  .topbar__cta {
    gap: 8px;
  }

  .button,
  .topbar__cta {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .phone {
    font-size: 16px;
  }

  .hero {
    padding: 70px 0 48px;
  }

  .hero__media {
    padding: 12px;
    border-radius: 22px;
    max-width: 320px;
  }

  .implant-card__title {
    font-size: 20px;
  }

  .implant-method__price {
    font-size: 16px;
  }

  .approach-video-card {
    border-radius: 22px;
    min-height: 340px;
    aspect-ratio: 3 / 4;
  }


  .approach-float-list__item {
    font-size: 12px;
    padding: 8px 10px;
  }

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

  .section {
    padding: 80px 0;
  }

  .video-placeholder {
    min-height: 220px;
    max-height: 55vh;
  }

  .video-overlay__heading {
    font-size: 20px;
  }

  .video-overlay {
    padding: 10px 10px 68px;
  }

  .video-chat {
    min-height: 180px;
  }

  .video-chat__track {
    padding-bottom: 0;
  }

  .chat-bubble {
    font-size: 13px;
    line-height: 1.35;
    max-width: min(calc(100% - 20px), 320px);
    top: auto;
  }

  .chat-bubble--lead .chat-bubble__text {
    -webkit-line-clamp: 2;
  }

  .chat-bubble--point .chat-bubble__text {
    -webkit-line-clamp: 2;
  }

  .chat-bubble--lead,
  .chat-bubble--point {
    font-size: 13px;
  }

  .chat-bubble--left {
    margin-left: 0;
  }

  .chat-bubble--right {
    margin-right: 0;
  }

  .video-actions .button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .video-chat__btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .video-chat__dots {
    bottom: 10px;
  }

  .reviews-carousel__slide {
    gap: 14px;
  }

  .review-card {
    padding: 14px;
  }

  .modal {
    padding: 18px 14px;
    border-radius: 18px;
    margin: 16px auto;
  }

  .modal__title {
    font-size: 20px;
  }

  .modal__price {
    font-size: 16px;
  }

  .footer {
    padding: 50px 0 32px;
  }

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