  .dhi-home {
    --navy-950: #051329;
    --navy-900: #071b35;
    --navy-800: #0a294c;
    --navy-700: #103c68;
    --blue-600: #1678bb;
    --blue-500: #24a6dc;
    --blue-300: #8ad8f4;
    --ice: #edf9fd;
    --white: #ffffff;
    --ink: #0a1b2f;
    --muted: #5d6b7c;
    --line: #dce8ef;
    --success: #1ca77b;
    --shadow: 0 24px 70px rgba(5, 19, 41, 0.14);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    overflow: hidden;
    background: var(--white);
  }

  .dhi-home *,
  .dhi-home *::before,
  .dhi-home *::after {
    box-sizing: border-box;
  }

  .dhi-home h1,
  .dhi-home h2,
  .dhi-home h3,
  .dhi-home p,
  .dhi-home ul,
  .dhi-home figure {
    margin: 0;
  }

  .dhi-home img,
  .dhi-home svg {
    display: block;
    max-width: 100%;
  }

  .dhi-home button,
  .dhi-home input,
  .dhi-home select,
  .dhi-home textarea {
    font: inherit;
  }

  .dhi-home a {
    color: inherit;
    text-decoration: none;
  }

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

  .dhi-section {
    position: relative;
    padding: 108px 0;
  }

  .dhi-section--soft {
    background: #f4f9fc;
  }

  .dhi-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .dhi-eyebrow::before {
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-500);
    content: "";
  }

  .dhi-title {
    max-width: 780px;
    color: var(--navy-950);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.06;
  }

  .dhi-title em {
    color: var(--blue-600);
    font-style: normal;
  }

  .dhi-lead {
    max-width: 680px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
  }

  .dhi-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }

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

  .dhi-btn--primary {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    box-shadow: 0 12px 28px rgba(22, 120, 187, 0.3);
  }

  .dhi-btn--light {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
  }

  .dhi-btn svg {
    width: 18px;
    height: 18px;
  }

  /* HERO SLIDER */
  .dhi-hero {
    position: relative;
    min-height: 780px;
    color: var(--white);
    background: var(--navy-950);
  }

  .dhi-hero__slides {
    position: absolute;
    inset: 0;
  }

  .dhi-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 800ms ease, transform 6s ease;
    pointer-events: none;
  }

  .dhi-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .dhi-hero__slide::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(5, 19, 41, 0.98) 0%, rgba(5, 19, 41, 0.88) 41%, rgba(5, 19, 41, 0.34) 72%, rgba(5, 19, 41, 0.58) 100%),
      linear-gradient(0deg, rgba(5, 19, 41, 0.68), transparent 42%);
    content: "";
  }

  .dhi-hero__slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
    background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.7px, transparent 0.7px);
    background-size: 8px 8px;
    content: "";
    mask-image: linear-gradient(90deg, #000, transparent 62%);
  }

  .dhi-hero__slide--one {
    background: #071b35 url("https://dhiclinicturkey.com/wp-content/uploads/2026/08/clinic.webp") center 28% / cover no-repeat;
  }

  .dhi-hero__slide--two {
    background: #071b35 url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=2000&q=88") center / cover no-repeat;
  }

  .dhi-hero__slide--three {
    background: #071b35 url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=2000&q=88") center / cover no-repeat;
  }

  .dhi-hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 780px;
    align-items: center;
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) 390px;
    padding: 78px 0 92px;
  }

  .dhi-hero__content {
    max-width: 690px;
    padding-top: 16px;
  }

  .dhi-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(138, 216, 244, 0.33);
    border-radius: 999px;
    color: #d9f6ff;
    background: rgba(21, 82, 124, 0.32);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }

  .dhi-hero__tag span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #53d5b3;
    box-shadow: 0 0 0 6px rgba(83, 213, 179, 0.13);
  }

  .dhi-hero h1,
  .dhi-hero__headline {
    max-width: 720px;
    color: var(--white);
    font-size: clamp(44px, 5.1vw, 74px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .dhi-hero h1 em,
  .dhi-hero__headline em {
    color: var(--blue-300);
    font-style: normal;
  }

  .dhi-hero__text {
    max-width: 620px;
    margin-top: 25px;
    color: #d4e4ef;
    font-size: 18px;
    line-height: 1.72;
  }

  .dhi-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }

  .dhi-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    margin-top: 32px;
    color: #d7eaf4;
    font-size: 13px;
    font-weight: 700;
  }

  .dhi-hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .dhi-hero__proof svg {
    width: 18px;
    color: #52d6b4;
  }

  .dhi-form-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 26px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
  }

  .dhi-form-card::before {
    position: absolute;
    top: 0;
    right: 26px;
    left: 26px;
    height: 3px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-300));
    content: "";
  }

  .dhi-form-card__label {
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .dhi-form-card h2 {
    margin-top: 8px;
    color: var(--navy-950);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
  }

  .dhi-form-card__intro {
    margin-top: 10px !important;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
  }

  .dhi-form {
    display: grid;
    gap: 11px;
    margin-top: 20px;
  }

  .dhi-form__row {
    display: grid;
    gap: 10px;
    grid-template-columns: 92px 1fr;
  }

  .dhi-form input,
  .dhi-form select,
  .dhi-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #d8e3e9;
    border-radius: 11px;
    outline: none;
    color: var(--ink);
    background: #f8fbfc;
    font-size: 13px;
    transition: border 160ms ease, box-shadow 160ms ease;
  }

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

  .dhi-form input:focus,
  .dhi-form select:focus,
  .dhi-form textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(36, 166, 220, 0.11);
  }

  .dhi-form__consent {
    display: grid;
    align-items: start;
    gap: 9px;
    color: #667585;
    font-size: 11px;
    line-height: 1.45;
    grid-template-columns: 16px 1fr;
  }

  .dhi-form__consent input {
    min-height: auto;
    margin-top: 2px;
  }

  .dhi-form .dhi-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
  }

  .dhi-form__message {
    display: none;
    padding: 10px 12px;
    border-radius: 9px;
    color: #106a50;
    background: #e7f8f2;
    font-size: 12px;
    line-height: 1.45;
  }

  .dhi-form__message.is-visible {
    display: block;
  }

  /* Contact Form 7 compatibility */
  .dhi-form-card .wpcf7,
  .dhi-form-card .wpcf7-form,
  .dhi-form .dhi-form__field,
  .dhi-form .wpcf7-form-control-wrap,
  .dhi-form .iti {
    width: 100%;
  }

  .dhi-form-card .wpcf7-form {
    margin: 0;
  }

  .dhi-form p,
  .dhi-form .dhi-form__field p,
  .dhi-form .dhi-form__submit p {
    margin: 0 !important;
    padding: 0 !important;
  }

  .dhi-form .dhi-form__field,
  .dhi-form .wpcf7-form-control-wrap,
  .dhi-form .iti {
    display: block;
  }

  .dhi-form .iti input[type="tel"] {
    width: 100% !important;
    padding-left: 54px !important;
  }

  .dhi-form__consent {
    display: block;
  }

  .dhi-form__consent .wpcf7-list-item {
    display: block;
    margin: 0;
  }

  .dhi-form__consent label {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    cursor: pointer;
  }

  .dhi-form__consent input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border: 1px solid #b9cbd5;
    border-radius: 3px;
    box-shadow: none !important;
  }

  .dhi-form__consent .wpcf7-list-item-label {
    color: #667585;
    font-size: 11px;
    line-height: 1.45;
  }

  .dhi-form__submit {
    position: relative;
    width: 100%;
  }

  .dhi-form__submit .wpcf7-submit {
    width: 100%;
    margin: 0;
  }

  .dhi-home .dhi-form__submit input.wpcf7-submit.dhi-btn.dhi-btn--primary {
    display: flex !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background-color: var(--blue-600) !important;
    background-image: linear-gradient(135deg, var(--blue-600), var(--blue-500)) !important;
    box-shadow: 0 12px 28px rgba(22, 120, 187, 0.3) !important;
    opacity: 1 !important;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .dhi-home .dhi-form__submit input.wpcf7-submit.dhi-btn.dhi-btn--primary:hover,
  .dhi-home .dhi-form__submit input.wpcf7-submit.dhi-btn.dhi-btn--primary:focus {
    color: #ffffff !important;
    background-color: var(--blue-500) !important;
    background-image: linear-gradient(135deg, var(--blue-500), #2fb8ea) !important;
    box-shadow: 0 15px 32px rgba(22, 120, 187, 0.38) !important;
  }

  .dhi-home .dhi-form__submit input.wpcf7-submit.dhi-btn.dhi-btn--primary:disabled {
    opacity: 0.65 !important;
    cursor: wait;
  }

  .dhi-form__submit .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 14px;
    margin: -12px 0 0;
  }

  .dhi-form-card .wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 10px 12px !important;
    border-width: 1px !important;
    border-radius: 9px;
    font-size: 12px;
    line-height: 1.45;
  }

  .dhi-form .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
  }

  .dhi-hero__nav {
    position: absolute;
    bottom: 34px;
    left: 50%;
    z-index: 5;
    display: flex;
    width: min(1180px, calc(100% - 40px));
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
  }

  .dhi-hero__dot {
    position: relative;
    width: 38px;
    height: 4px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 99px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
  }

  .dhi-hero__dot::after {
    position: absolute;
    inset: 0;
    background: var(--blue-300);
    content: "";
    transform: translateX(-105%);
  }

  .dhi-hero__dot.is-active::after {
    animation: dhi-progress 6s linear forwards;
  }

  @keyframes dhi-progress {
    to { transform: translateX(0); }
  }

  /* TRUST STRIP */
  .dhi-trust {
    position: relative;
    z-index: 7;
    margin-top: -1px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .dhi-trust__item {
    display: flex;
    min-height: 116px;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border-right: 1px solid var(--line);
  }

  .dhi-trust__item:last-child {
    border-right: 0;
  }

  .dhi-trust__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--blue-600);
    background: var(--ice);
  }

  .dhi-trust__icon svg {
    width: 23px;
  }

  .dhi-trust strong {
    display: block;
    color: var(--navy-950);
    font-size: 14px;
  }

  .dhi-trust small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
  }

  /* DHI CLINIC TURKEY GORSELLER */
  .dhi-visuals {
    position: relative;
    overflow: hidden;
    padding: 84px 0 104px;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(circle at 50% 8%, rgba(36, 166, 220, 0.13), transparent 25%),
      linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  }

  .dhi-visuals::before,
  .dhi-visuals::after {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(36, 166, 220, 0.1);
    border-radius: 50%;
    content: "";
    pointer-events: none;
  }

  .dhi-visuals::before {
    top: 86px;
    left: -250px;
    box-shadow: 0 0 0 58px rgba(36, 166, 220, 0.025);
  }

  .dhi-visuals::after {
    right: -260px;
    bottom: 10px;
    box-shadow: 0 0 0 58px rgba(36, 166, 220, 0.025);
  }

  .dhi-visuals__head {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .dhi-visuals__logo-wrap {
    position: relative;
    display: grid;
    width: 290px;
    min-height: 126px;
    margin: 0 auto 26px;
    place-items: center;
  }

  .dhi-clinic--logo-lock {
    padding-top: 84px;
  }

  .dhi-clinic__logo-lock {
    margin-bottom: 46px;
  }

  .dhi-visuals__logo-wrap::before,
  .dhi-visuals__logo-wrap::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(22, 120, 187, 0.23);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
    animation: dhi-logo-ring 3.2s ease-out infinite;
  }

  .dhi-visuals__logo-wrap::after {
    animation-delay: 1.6s;
  }

  .dhi-visuals__logo {
    position: relative;
    z-index: 2;
    width: min(255px, 80vw);
    max-height: 104px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(5, 19, 41, 0.13));
    animation: dhi-logo-float 4.2s ease-in-out infinite;
  }

  @keyframes dhi-logo-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-9px) scale(1.025); }
  }

  @keyframes dhi-logo-ring {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.58); }
    75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.85); }
  }

  .dhi-visuals__head .dhi-title {
    max-width: 860px;
    margin-inline: auto;
    color: var(--navy-950) !important;
  }

  .dhi-visuals__head .dhi-lead {
    max-width: 650px;
    margin-inline: auto;
  }

  .dhi-visuals__grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 20px;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dhi-visuals__card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(22, 120, 187, 0.13);
    border-radius: var(--radius-lg);
    background: var(--navy-900);
    box-shadow: 0 20px 52px rgba(5, 19, 41, 0.12);
    isolation: isolate;
  }

  .dhi-visuals__card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 44%, rgba(5, 19, 41, 0.88) 100%);
    content: "";
    pointer-events: none;
  }

  .dhi-visuals__card::after {
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: calc(var(--radius-lg) - 8px);
    content: "";
    pointer-events: none;
    transition: border-color 260ms ease, inset 260ms ease;
  }

  .dhi-visuals__card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 720ms cubic-bezier(.2, .75, .2, 1), filter 260ms ease;
  }

  .dhi-visuals__card figcaption {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    z-index: 3;
    color: var(--white);
  }

  .dhi-visuals__card figcaption span {
    display: block;
    margin-bottom: 7px;
    color: var(--blue-300);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .dhi-visuals__card figcaption strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
  }

  .dhi-visuals__card:hover img {
    filter: saturate(1.06);
    transform: scale(1.055);
  }

  .dhi-visuals__card:hover::after {
    inset: 8px;
    border-color: rgba(138, 216, 244, 0.5);
  }

  /* DHI EXPLAINER */
  .dhi-explainer {
    overflow: hidden;
  }

  .dhi-explainer::before {
    position: absolute;
    top: 40px;
    left: -170px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 166, 220, 0.12), transparent 68%);
    content: "";
  }

  .dhi-explainer__grid {
    display: grid;
    align-items: center;
    gap: 80px;
    grid-template-columns: 0.92fr 1.08fr;
  }

  .dhi-pen-card {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
      radial-gradient(circle at 65% 24%, rgba(50, 185, 230, 0.2), transparent 28%),
      linear-gradient(150deg, #0b3158, #041327 76%);
    box-shadow: var(--shadow);
  }

  .dhi-pen-card__watermark {
    position: absolute;
    right: -40px;
    bottom: 6px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 136px;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.7;
    writing-mode: vertical-rl;
  }

  .dhi-pen-card__svg {
    position: absolute;
    inset: 34px 24px 112px;
    width: calc(100% - 48px);
    height: calc(100% - 146px);
  }

  .dhi-graft {
    transform-box: fill-box;
    transform-origin: center;
    animation: dhi-graft-drop 3.2s ease-in-out infinite;
  }

  @keyframes dhi-graft-drop {
    0%, 18% { opacity: 0; transform: translateY(-16px); }
    36%, 76% { opacity: 1; transform: translateY(0); }
    92%, 100% { opacity: 0; }
  }

  .dhi-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: dhi-ring 2.2s ease-out infinite;
  }

  @keyframes dhi-ring {
    0% { opacity: 0.7; transform: scale(0.72); }
    100% { opacity: 0; transform: scale(1.6); }
  }

  .dhi-pen-card__legend {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
  }

  .dhi-pen-card__legend span {
    padding: 11px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #d5ecf8;
    background: rgba(255, 255, 255, 0.07);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
  }

  .dhi-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .dhi-feature {
    display: grid;
    align-items: start;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: #f7fafc;
    grid-template-columns: 42px 1fr;
    transition: border 180ms ease, transform 180ms ease, background 180ms ease;
  }

  .dhi-feature:hover {
    border-color: #cceaf4;
    background: var(--white);
    transform: translateX(6px);
  }

  .dhi-feature__num {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--blue-600);
    background: var(--ice);
    font-size: 12px;
    font-weight: 900;
  }

  .dhi-feature h3 {
    color: var(--navy-950);
    font-size: 17px;
    font-weight: 800;
  }

  .dhi-feature p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.62;
  }

  /* METHOD STEPS */
  .dhi-method {
    color: var(--white);
    background:
      radial-gradient(circle at 88% 16%, rgba(36, 166, 220, 0.15), transparent 28%),
      var(--navy-950);
  }

  .dhi-method .dhi-eyebrow {
    color: var(--blue-300);
  }

  .dhi-method .dhi-title {
    color: var(--white);
  }

  .dhi-method .dhi-lead {
    color: #b9cad8;
  }

  .dhi-method__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
  }

  .dhi-method__tabs {
    display: flex;
    gap: 8px;
  }

  .dhi-tab {
    min-width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    cursor: pointer;
    color: #bcd0dd;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 900;
  }

  .dhi-tab.is-active {
    border-color: var(--blue-500);
    color: var(--navy-950);
    background: var(--blue-300);
  }

  .dhi-method__panels {
    margin-top: 52px;
  }

  .dhi-method__panel {
    display: none;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1fr 1fr;
  }

  .dhi-method__panel.is-active {
    display: grid;
    animation: dhi-panel-in 480ms ease both;
  }

  @keyframes dhi-panel-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .dhi-method__visual {
    position: relative;
    display: grid;
    min-height: 410px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      rgba(255, 255, 255, 0.035);
    background-size: 28px 28px;
  }

  .dhi-method__visual::after {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(138, 216, 244, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(36, 166, 220, 0.13);
    content: "";
  }

  .dhi-method__visual svg {
    position: relative;
    z-index: 1;
    width: 78%;
    max-height: 330px;
  }

  .dhi-method__copy small {
    color: var(--blue-300);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .dhi-method__copy h3 {
    margin-top: 12px;
    color: var(--white) !important;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .dhi-method__copy p {
    margin-top: 18px;
    color: #b9cad8;
    font-size: 16px;
    line-height: 1.75;
  }

  .dhi-checks {
    display: grid;
    gap: 13px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
  }

  .dhi-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e4eff5;
    font-size: 14px;
  }

  .dhi-checks li::before {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-950);
    background: #53d5b3;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
  }

  /* BEFORE AFTER */
  .dhi-results__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
  }

  .dhi-results__note {
    max-width: 320px;
    padding: 14px 16px;
    border-left: 3px solid var(--blue-500);
    color: var(--muted);
    background: var(--ice);
    font-size: 12px;
    line-height: 1.55;
  }

  .dhi-results__grid {
    display: grid;
    gap: 22px;
    margin-top: 46px;
    grid-template-columns: repeat(3, 1fr);
  }

  .dhi-compare {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 14px 44px rgba(5, 19, 41, 0.08);
  }

  .dhi-compare__stage {
    position: relative;
    padding: 14px;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 12%, rgba(36, 166, 220, 0.3), transparent 28%),
      linear-gradient(145deg, var(--navy-950), var(--navy-700));
  }

  .dhi-compare__stage::before,
  .dhi-compare__stage::after {
    position: absolute;
    z-index: 3;
    width: 48px;
    height: 48px;
    content: "";
    pointer-events: none;
  }

  .dhi-compare__stage::before {
    top: 7px;
    left: 7px;
    border-top: 2px solid var(--blue-300);
    border-left: 2px solid var(--blue-300);
    border-radius: 12px 0 0;
  }

  .dhi-compare__stage::after {
    right: 7px;
    bottom: 7px;
    border-right: 2px solid var(--blue-300);
    border-bottom: 2px solid var(--blue-300);
    border-radius: 0 0 12px;
  }

  .dhi-compare__photo-frame {
    position: relative;
    width: 100%;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 24px rgba(138, 216, 244, 0.09), 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .dhi-compare__photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    background: var(--white);
    transition: transform 500ms ease, filter 300ms ease;
  }

  .dhi-compare__case {
    position: absolute;
    top: 24px;
    left: 50%;
    z-index: 4;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: var(--white);
    background: rgba(5, 19, 41, 0.78);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .dhi-compare:hover .dhi-compare__photo {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.018);
  }

  .dhi-compare__meta {
    padding: 19px 20px 21px;
  }

  .dhi-compare__meta strong {
    color: var(--navy-950);
    font-size: 16px;
  }

  .dhi-compare__meta p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
  }

  /* CLINIC GALLERY */
  .dhi-clinic__grid {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: 0.86fr 1.14fr;
  }

  .dhi-clinic__facts {
    display: grid;
    gap: 1px;
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
    grid-template-columns: 1fr 1fr;
  }

  .dhi-clinic__fact {
    padding: 19px;
    background: var(--white);
  }

  .dhi-clinic__fact strong {
    display: block;
    color: var(--navy-950);
    font-size: 14px;
  }

  .dhi-clinic__fact span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
  }

  .dhi-gallery {
    position: relative;
    display: grid;
    min-height: 590px;
    gap: 16px;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 0.8fr;
  }

  .dhi-gallery figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #dbe7ed;
  }

  .dhi-gallery figure:first-child {
    grid-row: 1 / 3;
  }

  .dhi-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
  }

  .dhi-gallery figure:hover img {
    transform: scale(1.045);
  }

  .dhi-gallery figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 11px 13px;
    border-radius: 11px;
    color: var(--white);
    background: rgba(5, 19, 41, 0.76);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(8px);
  }

  .dhi-gallery__badge {
    position: absolute;
    bottom: -24px;
    left: -30px;
    z-index: 2;
    display: grid;
    width: 136px;
    height: 136px;
    place-items: center;
    border: 8px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
    box-shadow: var(--shadow);
    text-align: center;
  }

  .dhi-gallery__badge strong {
    display: block;
    font-size: 24px;
  }

  .dhi-gallery__badge span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
  }

  /* PROCESS */
  .dhi-process__head {
    text-align: center;
  }

  .dhi-process__head .dhi-title,
  .dhi-process__head .dhi-lead {
    margin-inline: auto;
  }

  .dhi-process__track {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 54px;
    grid-template-columns: repeat(6, 1fr);
  }

  .dhi-process__track::before {
    position: absolute;
    top: 37px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-500), #bfe8f6);
    content: "";
  }

  .dhi-process__item {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .dhi-process__icon {
    display: grid;
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    place-items: center;
    border: 8px solid var(--white);
    border-radius: 50%;
    color: var(--blue-600);
    background: var(--ice);
    box-shadow: 0 8px 24px rgba(5, 19, 41, 0.1);
  }

  .dhi-process__icon svg {
    width: 24px;
  }

  .dhi-process__item small {
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .dhi-process__item h3 {
    margin-top: 7px;
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 800;
  }

  .dhi-process__item p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
  }

  /* CTA BAND */
  .dhi-cta {
    padding: 0;
  }

  .dhi-cta__box {
    position: relative;
    display: grid;
    min-height: 290px;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 56px 62px;
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
      radial-gradient(circle at 82% 20%, rgba(138, 216, 244, 0.22), transparent 24%),
      linear-gradient(120deg, var(--navy-950), #0d416e);
    grid-template-columns: 1fr auto;
  }

  .dhi-cta__box::after {
    position: absolute;
    right: 220px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.02);
  }

  .dhi-cta__copy,
  .dhi-cta__actions {
    position: relative;
    z-index: 1;
  }

  .dhi-cta__copy small {
    color: var(--blue-300);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .dhi-cta__copy h2 {
    max-width: 700px;
    margin-top: 12px;
    font-size: clamp(31px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
  }

  .dhi-cta__copy p {
    max-width: 640px;
    margin-top: 14px;
    color: #c8dce7;
    font-size: 15px;
    line-height: 1.65;
  }

  .dhi-cta__actions {
    display: grid;
    gap: 10px;
    min-width: 225px;
  }

  /* SEO TEXT */
  .dhi-seo__grid {
    display: grid;
    align-items: start;
    gap: 74px;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .dhi-seo__sticky {
    position: sticky;
    top: 28px;
  }

  .dhi-seo__nav {
    display: grid;
    gap: 8px;
    margin-top: 30px;
  }

  .dhi-seo__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted);
    background: var(--white);
    font-size: 12px;
    font-weight: 750;
  }

  .dhi-seo__nav a:hover {
    border-color: #aedcec;
    color: var(--blue-600);
  }

  .dhi-seo__content {
    display: grid;
    gap: 38px;
  }

  .dhi-seo__block {
    padding-bottom: 38px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 30px;
  }

  .dhi-seo__block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .dhi-seo__block h2,
  .dhi-seo__block h3 {
    color: var(--navy-950);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
  }

  .dhi-seo__block p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.82;
  }

  /* FAQ */
  .dhi-faq__grid {
    display: grid;
    align-items: start;
    gap: 70px;
    grid-template-columns: 0.72fr 1.28fr;
  }

  .dhi-faq__list {
    border-top: 1px solid var(--line);
  }

  .dhi-faq__item {
    border-bottom: 1px solid var(--line);
  }

  .dhi-faq__question {
    display: grid;
    width: 100%;
    align-items: center;
    gap: 16px;
    padding: 21px 0;
    border: 0;
    cursor: pointer;
    color: var(--navy-950);
    background: none;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    grid-template-columns: 1fr 32px;
  }

  .dhi-faq__plus {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-600);
    background: var(--ice);
    transition: transform 180ms ease;
  }

  .dhi-faq__item.is-open .dhi-faq__plus {
    transform: rotate(45deg);
  }

  .dhi-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
  }

  .dhi-faq__answer p {
    padding: 0 48px 22px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
  }

  /* FLOATING CTA */
  .dhi-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 19px;
    border-radius: 999px;
    color: var(--white) !important;
    background: #0b9c72;
    box-shadow: 0 12px 32px rgba(11, 156, 114, 0.32);
    font-size: 13px;
    font-weight: 850;
    transition: transform 180ms ease;
  }

  .dhi-home .dhi-cta__copy h2 {
  color: #ffffff !important;
}

  .dhi-float:hover { transform: translateY(-3px); }
  .dhi-float svg { width: 21px; }

  @media (max-width: 1080px) {
    .dhi-hero__inner { grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; }
    .dhi-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .dhi-trust__item:nth-child(2) { border-right: 0; }
    .dhi-trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .dhi-process__track { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
    .dhi-process__track::before { display: none; }
  }

  @media (max-width: 860px) {
    .dhi-section { padding: 82px 0; }
    .dhi-hero, .dhi-hero__inner { min-height: 980px; }
    .dhi-hero__inner { grid-template-columns: 1fr; align-content: center; padding: 62px 0 94px; }
    .dhi-hero__content { padding-top: 0; }
    .dhi-form-card { max-width: 540px; }
    .dhi-hero__slide::before { background: linear-gradient(90deg, rgba(5,19,41,.96), rgba(5,19,41,.72)), linear-gradient(0deg, rgba(5,19,41,.84), transparent); }
    .dhi-visuals { padding: 72px 0 84px; }
    .dhi-clinic--logo-lock { padding-top: 72px; }
    .dhi-clinic__logo-lock { margin-bottom: 38px; }
    .dhi-visuals__grid { grid-template-columns: 1fr 1fr; }
    .dhi-visuals__card:last-child { grid-column: 1 / 3; }
    .dhi-explainer__grid,
    .dhi-method__panel,
    .dhi-clinic__grid,
    .dhi-seo__grid,
    .dhi-faq__grid { grid-template-columns: 1fr; }
    .dhi-explainer__grid { gap: 48px; }
    .dhi-method__panel { gap: 36px; }
    .dhi-results__grid { grid-template-columns: 1fr 1fr; }
    .dhi-results__grid .dhi-compare:last-child { display: none; }
    .dhi-clinic__grid { gap: 48px; }
    .dhi-seo__grid, .dhi-faq__grid { gap: 44px; }
    .dhi-seo__sticky { position: static; }
    .dhi-seo__nav { grid-template-columns: 1fr 1fr; }
    .dhi-cta__box { padding: 48px; grid-template-columns: 1fr; }
    .dhi-cta__actions { display: flex; flex-wrap: wrap; }
    .dhi-method__top, .dhi-results__head { align-items: start; flex-direction: column; }
  }

  @media (max-width: 620px) {
    .dhi-container { width: min(100% - 28px, 1180px); }
    .dhi-section { padding: 66px 0; }
    .dhi-title { font-size: 36px; }
    .dhi-lead { font-size: 16px; line-height: 1.68; }
    .dhi-hero, .dhi-hero__inner { min-height: 1030px; }
    .dhi-hero__inner { gap: 30px; padding-top: 44px; }
    .dhi-hero h1, .dhi-hero__headline { font-size: 45px; }
    .dhi-hero__text { font-size: 16px; }
    .dhi-hero__actions .dhi-btn { width: 100%; }
    .dhi-hero__proof { gap: 10px; }
    .dhi-form-card { padding: 23px; }
    .dhi-form__row { grid-template-columns: 82px 1fr; }
    .dhi-trust__item { min-height: 104px; padding: 18px 12px; gap: 10px; }
    .dhi-trust__icon { width: 40px; height: 40px; flex-basis: 40px; }
    .dhi-trust__icon svg { width: 20px; }
    .dhi-trust strong { font-size: 12px; }
    .dhi-trust small { font-size: 10px; }
    .dhi-visuals { padding: 58px 0 66px; }
    .dhi-clinic--logo-lock { padding-top: 58px; }
    .dhi-clinic__logo-lock { margin-bottom: 30px; }
    .dhi-visuals__logo-wrap { width: 240px; min-height: 108px; margin-bottom: 20px; }
    .dhi-visuals__logo { width: 215px; }
    .dhi-visuals__grid { gap: 15px; margin-top: 36px; grid-template-columns: 1fr; }
    .dhi-visuals__card,
    .dhi-visuals__card img { min-height: 310px; }
    .dhi-visuals__card:last-child { grid-column: auto; }
    .dhi-visuals__card figcaption { right: 24px; bottom: 23px; left: 24px; }
    .dhi-pen-card { min-height: 500px; }
    .dhi-pen-card__legend { right: 16px; bottom: 16px; left: 16px; }
    .dhi-pen-card__legend span { font-size: 8px; }
    .dhi-feature { padding: 15px; }
    .dhi-method__visual { min-height: 330px; }
    .dhi-results__grid {
      display: grid;
      gap: 15px;
      padding: 2px 1px 18px;
      overflow-x: auto;
      grid-auto-columns: 88%;
      grid-auto-flow: column;
      grid-template-columns: none;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior-inline: contain;
      -webkit-overflow-scrolling: touch;
    }
    .dhi-results__grid::-webkit-scrollbar { display: none; }
    .dhi-compare { scroll-snap-align: start; scroll-snap-stop: always; }
    .dhi-results__grid .dhi-compare:last-child { display: block; }
    .dhi-compare__stage { height: auto; }
    .dhi-gallery { min-height: 500px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr .8fr; }
    .dhi-gallery figure:first-child { grid-column: 1 / 3; grid-row: 1; }
    .dhi-gallery__badge { left: -7px; width: 112px; height: 112px; }
    .dhi-process__track { grid-template-columns: 1fr 1fr; }
    .dhi-cta__box { padding: 38px 26px; border-radius: 22px; }
    .dhi-cta__actions { display: grid; }
    .dhi-seo__nav { grid-template-columns: 1fr; }
    .dhi-float { right: 14px; bottom: 14px; width: 52px; padding: 0; justify-content: center; }
    .dhi-float span { display: none; }
  }

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