:root {
  --dtfit-white: #ffffff;
  --dtfit-bg: #f7fbfd;
  --dtfit-ice: #eef8fb;
  --dtfit-blue: #dceff5;
  --dtfit-teal: #0b9694;
  --dtfit-teal-dark: #08787a;
  --dtfit-green: #178d68;
  --dtfit-navy: #102f45;
  --dtfit-slate: #425967;
  --dtfit-muted: #72838d;
  --dtfit-border: #d7e8ee;
  --dtfit-line: #e9f2f5;
  --dtfit-shadow: 0 22px 56px rgba(16, 47, 69, 0.11);
  --dtfit-soft-shadow: 0 10px 28px rgba(16, 47, 69, 0.06);
  --dtfit-radius: 8px;
  --dtfit-max: 1280px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body.dtfit-lp-body {
  margin: 0;
  color: var(--dtfit-navy);
  background: var(--dtfit-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0;
}

.dtfit-lp-main *,
.dtfit-lp-main *::before,
.dtfit-lp-main *::after {
  box-sizing: border-box;
}

.dtfit-lp-main a {
  color: inherit;
}

.dtfit-lp {
  overflow: hidden;
  background: var(--dtfit-white);
}

.dtfit-hero {
  position: relative;
  padding: 24px 20px 72px;
  background:
    linear-gradient(180deg, var(--dtfit-white) 0%, var(--dtfit-white) 72%, var(--dtfit-bg) 100%);
}

.dtfit-hero-inner,
.dtfit-section-inner {
  width: min(100%, var(--dtfit-max));
  margin: 0 auto;
}

.dtfit-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 54px;
  margin-bottom: 58px;
}

.dtfit-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--dtfit-navy);
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
}

.dtfit-brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border-radius: 8px;
  font-weight: 900;
}

.dtfit-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1 1 auto;
}

.dtfit-nav a {
  color: var(--dtfit-slate);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.dtfit-nav a:hover {
  color: var(--dtfit-teal-dark);
}

.dtfit-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(11, 150, 148, 0.22);
}

.dtfit-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr);
  gap: 56px;
  align-items: center;
}

.dtfit-hero-copy {
  max-width: 640px;
}

.dtfit-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--dtfit-navy);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.18;
}

.dtfit-hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--dtfit-slate);
  font-size: 17px;
  font-weight: 550;
  line-height: 2;
}

.dtfit-hero-actions,
.dtfit-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.dtfit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dtfit-button svg {
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

.dtfit-button-primary {
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  box-shadow: 0 14px 28px rgba(11, 150, 148, 0.24);
}

.dtfit-button-secondary {
  color: var(--dtfit-teal-dark);
  background: var(--dtfit-white);
  border: 1px solid #b8dfe6;
}

.dtfit-button:hover,
.dtfit-submit:hover,
.dtfit-nav-cta:hover {
  transform: translateY(-2px);
}

.dtfit-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.dtfit-feature {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-feature strong {
  display: block;
  margin-bottom: 7px;
  color: var(--dtfit-navy);
  font-size: 14px;
  line-height: 1.45;
}

.dtfit-feature span {
  display: block;
  color: var(--dtfit-muted);
  font-size: 13px;
  line-height: 1.75;
}

.dtfit-hero-media {
  position: relative;
  min-height: 410px;
  aspect-ratio: 1.08 / 1;
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-hero.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  box-shadow: var(--dtfit-shadow);
}

.dtfit-section {
  padding: 96px 20px;
  background: var(--dtfit-white);
}

.dtfit-section-alt {
  background: var(--dtfit-bg);
}

.dtfit-section-soft {
  background: linear-gradient(180deg, var(--dtfit-white) 0%, var(--dtfit-ice) 100%);
}

.dtfit-section h2 {
  position: relative;
  margin: 0 0 18px;
  color: var(--dtfit-navy);
  font-size: 34px;
  font-weight: 850;
  line-height: 1.38;
  text-align: center;
}

.dtfit-section h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--dtfit-teal);
  border-radius: 999px;
}

.dtfit-section-lead {
  max-width: 780px;
  margin: 0 auto 38px;
  color: var(--dtfit-slate);
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.dtfit-problem-list,
.dtfit-card-grid,
.dtfit-work-grid,
.dtfit-tag-grid,
.dtfit-steps,
.dtfit-faq-list,
.dtfit-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dtfit-problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dtfit-problem-list li,
.dtfit-card,
.dtfit-work-card,
.dtfit-point,
.dtfit-step,
.dtfit-faq-list details {
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-radius: var(--dtfit-radius);
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-problem-list li {
  position: relative;
  min-height: 112px;
  padding: 22px 18px 18px;
  color: var(--dtfit-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.dtfit-problem-list li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 150, 148, 0.2) 0 38%, transparent 39%),
    var(--dtfit-ice);
  border: 1px solid var(--dtfit-border);
  border-radius: 50%;
}

.dtfit-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.dtfit-split h2,
.dtfit-split .dtfit-section-lead {
  text-align: left;
}

.dtfit-split h2::after {
  margin-left: 0;
}

.dtfit-split .dtfit-section-lead {
  margin-left: 0;
  margin-right: 0;
}

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

.dtfit-reason {
  position: relative;
  padding: 22px 22px 22px 26px;
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-reason::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 4px;
  background: var(--dtfit-teal);
  border-radius: 0 4px 4px 0;
}

.dtfit-reason h3,
.dtfit-point h3 {
  margin: 0 0 10px;
  color: var(--dtfit-navy);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.5;
}

.dtfit-reason p,
.dtfit-point p,
.dtfit-card p,
.dtfit-work-card p,
.dtfit-step p {
  margin: 0;
  color: var(--dtfit-slate);
  font-size: 15px;
  line-height: 1.85;
}

.dtfit-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dtfit-card,
.dtfit-work-card,
.dtfit-point,
.dtfit-step {
  padding: 22px;
}

.dtfit-card {
  min-height: 170px;
}

.dtfit-card h3,
.dtfit-work-card h3 {
  margin: 0 0 10px;
  color: var(--dtfit-navy);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.48;
}

.dtfit-card h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 14px;
  background: var(--dtfit-teal);
  border-radius: 999px;
}

.dtfit-tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 940px;
  margin: 0 auto;
}

.dtfit-tag-grid li {
  padding: 12px 16px;
  color: var(--dtfit-navy);
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(16, 47, 69, 0.04);
}

.dtfit-editorial {
  max-width: 900px;
  padding: 44px;
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-left: 5px solid var(--dtfit-teal);
  border-radius: 8px;
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-editorial h2 {
  text-align: left;
}

.dtfit-editorial h2::after {
  margin-left: 0;
}

.dtfit-editorial p {
  margin: 0 0 19px;
  color: var(--dtfit-slate);
  font-size: 16px;
  line-height: 2.05;
}

.dtfit-editorial p:last-child {
  margin-bottom: 0;
}

.dtfit-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.dtfit-point {
  background: #fbfdfe;
}

.dtfit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dtfit-step {
  min-height: 158px;
  background: var(--dtfit-white);
}

.dtfit-step-number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.dtfit-step h3 {
  margin: 0 0 8px;
  color: var(--dtfit-navy);
  font-size: 16px;
  font-weight: 850;
}

.dtfit-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dtfit-faq-list details {
  padding: 0;
  overflow: hidden;
}

.dtfit-faq-list summary {
  cursor: pointer;
  position: relative;
  min-height: 62px;
  padding: 18px 48px 18px 46px;
  color: var(--dtfit-navy);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.65;
}

.dtfit-faq-list summary::before {
  content: "Q";
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--dtfit-teal);
  font-weight: 900;
}

.dtfit-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--dtfit-teal-dark);
  font-size: 18px;
  line-height: 1;
}

.dtfit-faq-list details[open] summary::after {
  content: "-";
}

.dtfit-faq-list p {
  margin: 0;
  padding: 0 20px 20px 46px;
  color: var(--dtfit-slate);
  font-size: 14px;
  line-height: 1.9;
}

#register .dtfit-section-inner {
  max-width: 980px;
}

.dtfit-assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 24px;
}

.dtfit-assurance span {
  display: block;
  padding: 14px 15px;
  color: var(--dtfit-green);
  background: #edf8f3;
  border: 1px solid #caeadf;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.dtfit-form-wrap {
  background: var(--dtfit-white);
  border: 2px solid #bee4ef;
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--dtfit-shadow);
}

.dtfit-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dtfit-form label,
.dtfit-form-fieldset legend {
  color: var(--dtfit-navy);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.dtfit-form label span {
  display: inline-block;
  margin-left: 6px;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 850;
}

.dtfit-form input[type="text"],
.dtfit-form input[type="email"],
.dtfit-form input[type="tel"],
.dtfit-form select,
.dtfit-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--dtfit-navy);
  background: var(--dtfit-white);
  border: 1px solid #cddfe6;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.dtfit-form textarea {
  min-height: 112px;
}

.dtfit-form input:focus,
.dtfit-form select:focus,
.dtfit-form textarea:focus {
  outline: 3px solid rgba(11, 150, 148, 0.18);
  border-color: var(--dtfit-teal);
}

.dtfit-form-wide,
.dtfit-form-fieldset {
  grid-column: 1 / -1;
}

.dtfit-form-fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
  margin: 0;
  padding: 17px 18px 18px;
  border: 1px solid #cddfe6;
  border-radius: 8px;
}

.dtfit-form-fieldset legend {
  padding: 0 6px;
}

.dtfit-form-fieldset label,
.dtfit-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 750;
}

.dtfit-consent {
  margin: 20px 0 0;
  color: var(--dtfit-slate);
  font-size: 14px;
  line-height: 1.8;
}

.dtfit-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(11, 150, 148, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtfit-submit:hover {
  background: var(--dtfit-teal-dark);
}

.dtfit-form-note {
  margin: 13px 0 0;
  color: var(--dtfit-muted);
  font-size: 13px;
  line-height: 1.75;
}

.dtfit-form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 850;
}

.dtfit-form-message-success {
  color: #146044;
  background: #eaf7f0;
}

.dtfit-form-message-error {
  color: #8a2d2d;
  background: #fff0ef;
}

.dtfit-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dtfit-final {
  color: var(--dtfit-white);
  background: linear-gradient(135deg, #12344a 0%, #0b7578 100%);
}

.dtfit-final h2,
.dtfit-final p {
  color: var(--dtfit-white);
}

.dtfit-final h2::after {
  background: rgba(255, 255, 255, 0.72);
}

.dtfit-final .dtfit-section-lead {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .dtfit-nav {
    display: none;
  }

  .dtfit-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dtfit-hero-copy {
    max-width: 760px;
  }

  .dtfit-hero h1,
  .dtfit-hero-lead {
    max-width: 720px;
  }

  .dtfit-hero-media {
    min-height: 320px;
    aspect-ratio: 16 / 7;
    background-position: center 42%;
  }

  .dtfit-problem-list,
  .dtfit-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dtfit-split,
  .dtfit-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 0;
  }

  .dtfit-hero {
    padding: 22px 18px 56px;
  }

  .dtfit-topbar {
    gap: 12px;
    margin-bottom: 40px;
  }

  .dtfit-brand {
    font-size: 15px;
  }

  .dtfit-brand-mark {
    width: 34px;
    height: 34px;
  }

  .dtfit-nav-cta {
    min-height: 38px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .dtfit-hero h1 {
    font-size: 34px;
    line-height: 1.24;
  }

  .dtfit-hero-lead {
    font-size: 16px;
    line-height: 1.95;
  }

  .dtfit-hero-actions,
  .dtfit-cta-row {
    gap: 12px;
  }

  .dtfit-button {
    width: 100%;
    min-height: 50px;
  }

  .dtfit-feature-strip,
  .dtfit-problem-list,
  .dtfit-card-grid,
  .dtfit-work-grid,
  .dtfit-steps,
  .dtfit-assurance,
  .dtfit-form-grid,
  .dtfit-form-fieldset,
  .dtfit-faq-list {
    grid-template-columns: 1fr;
  }

  .dtfit-hero-media {
    min-height: 220px;
    aspect-ratio: 1.45 / 1;
  }

  .dtfit-feature-strip {
    display: none;
  }

  .dtfit-section {
    padding: 64px 18px;
  }

  .dtfit-section h2 {
    font-size: 27px;
    text-align: left;
  }

  .dtfit-section h2::after {
    margin-left: 0;
  }

  .dtfit-section-lead {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .dtfit-problem-list li,
  .dtfit-card,
  .dtfit-work-card,
  .dtfit-point,
  .dtfit-step,
  .dtfit-form-wrap,
  .dtfit-editorial {
    padding: 20px;
  }

  .dtfit-card {
    min-height: auto;
  }

  .dtfit-editorial {
    border-left-width: 4px;
  }

  .dtfit-faq-list summary {
    padding-right: 42px;
  }

  .dtfit-assurance span {
    padding: 13px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .dtfit-button,
  .dtfit-submit,
  .dtfit-nav-cta {
    transition: none;
  }
}

/* High-fidelity pass based on the accepted design concept. */
.dtfit-brand {
  gap: 0;
  font-size: 22px;
  font-weight: 900;
}

.dtfit-brand-mark {
  display: none;
}

.dtfit-topbar {
  min-height: 44px;
  margin-bottom: 54px;
}

.dtfit-nav {
  gap: 24px;
  justify-content: flex-end;
}

.dtfit-nav a {
  color: var(--dtfit-navy);
  font-size: 12px;
  font-weight: 850;
}

.dtfit-nav-cta {
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
}

.dtfit-nav-cta svg {
  width: 15px;
  height: 15px;
  margin-left: 8px;
}

.dtfit-hero {
  padding-top: 28px;
  padding-bottom: 0;
  background: var(--dtfit-white);
}

.dtfit-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.dtfit-hero h1 {
  max-width: 680px;
  font-size: 48px;
  line-height: 1.32;
  letter-spacing: 0;
}

.dtfit-hero h1 span {
  display: block;
  white-space: nowrap;
}

.dtfit-hero-lead {
  max-width: 620px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.05;
}

.dtfit-button {
  min-height: 50px;
  min-width: 198px;
  border-radius: 8px;
  font-size: 14px;
}

.dtfit-button-primary {
  background: #099b98;
  box-shadow: 0 12px 24px rgba(9, 155, 152, 0.22);
}

.dtfit-button-secondary {
  color: #098b89;
  border-color: #079995;
}

.dtfit-feature-strip {
  display: none;
}

.dtfit-hero-media {
  min-height: 420px;
  aspect-ratio: 1.27 / 1;
  border: 0;
  border-radius: 86px 0 0 0;
  background-position: center;
  box-shadow: none;
}

.dtfit-section {
  padding: 72px 20px;
}

.dtfit-section-alt {
  background: #f4fbfd;
}

.dtfit-section h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}

.dtfit-section h2::after {
  width: 26px;
  height: 2px;
  margin-top: 12px;
}

.dtfit-section-lead {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 2;
}

.dtfit-problem-list {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.dtfit-problem-list li {
  min-height: 128px;
  padding: 22px 16px 18px;
  color: var(--dtfit-navy);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  line-height: 1.7;
}

.dtfit-problem-list li::before {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: #edf7fb;
  border: 0;
}

.dtfit-center-note {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--dtfit-navy);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.9;
  text-align: center;
}

#problems .dtfit-cta-row {
  display: none;
}

.dtfit-reason-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dtfit-reason {
  padding: 24px 18px 22px;
  text-align: center;
}

.dtfit-reason::before {
  position: static;
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  background: transparent;
  border: 2px solid #0a9a96;
  border-radius: 50%;
}

.dtfit-reason h3 {
  margin-bottom: 8px;
  color: #089891;
  font-size: 16px;
}

.dtfit-reason p {
  font-size: 12px;
  line-height: 1.8;
}

.dtfit-card-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dtfit-card {
  min-height: 0;
  padding: 0 0 18px;
  overflow: hidden;
}

.dtfit-card-media,
.dtfit-article-media {
  display: block;
  width: 100%;
  aspect-ratio: 1.7 / 1;
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-hero.webp");
  background-size: cover;
  background-position: center;
}

.dtfit-card-inhouse .dtfit-card-media {
  background-position: 42% center;
}

.dtfit-card-cad .dtfit-card-media {
  background-position: 72% center;
}

.dtfit-card-ceramic .dtfit-card-media {
  background-position: 90% center;
}

.dtfit-card h3 {
  margin: 15px 16px 7px;
  font-size: 16px;
  text-align: center;
}

.dtfit-card h3::before {
  display: none;
}

.dtfit-card p {
  margin: 0 16px;
  font-size: 12px;
  text-align: center;
}

.dtfit-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.dtfit-article {
  overflow: hidden;
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-article-market .dtfit-article-media {
  background-position: 34% center;
}

.dtfit-article-career .dtfit-article-media {
  background-position: 75% center;
}

.dtfit-article-workplace .dtfit-article-media {
  background-position: 56% center;
}

.dtfit-article h3 {
  margin: 16px 18px 8px;
  color: var(--dtfit-navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.dtfit-article p {
  margin: 0 18px 13px;
  color: var(--dtfit-slate);
  font-size: 12px;
  line-height: 1.85;
}

.dtfit-article a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 18px 18px;
  color: var(--dtfit-teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.dtfit-article svg {
  width: 14px;
  height: 14px;
}

.dtfit-steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 940px;
  margin: 0 auto;
  padding: 20px 18px;
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
}

.dtfit-step {
  position: relative;
  min-height: 118px;
  padding: 4px 18px 0;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.dtfit-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -7px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--dtfit-muted);
  border-right: 2px solid var(--dtfit-muted);
  transform: rotate(45deg);
}

.dtfit-step-number {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  font-size: 11px;
}

.dtfit-step h3 {
  font-size: 14px;
}

.dtfit-step p {
  font-size: 12px;
  line-height: 1.7;
}

#flow .dtfit-cta-row {
  display: none;
}

.dtfit-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.dtfit-faq-list summary {
  min-height: 44px;
  padding: 12px 46px 12px 42px;
  font-size: 12px;
}

.dtfit-faq-list summary::before,
.dtfit-faq-list summary::after {
  top: 14px;
}

#register .dtfit-section-inner {
  max-width: 1060px;
}

.dtfit-register-panel {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  align-items: end;
  padding: 26px;
  background: var(--dtfit-white);
  border: 3px solid #bce4f4;
  border-radius: 8px;
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-register-side {
  position: relative;
  min-height: 360px;
}

.dtfit-register-side img {
  position: absolute;
  left: 26px;
  bottom: -26px;
  width: 178px;
  height: auto;
}

.dtfit-consultant-bubble {
  position: absolute;
  top: 18px;
  left: 0;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--dtfit-teal-dark);
  background: #f0fbff;
  border: 1px solid #c9edf6;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.dtfit-line-panel {
  align-self: center;
  padding: 18px 12px 18px 0;
}

.dtfit-line-panel h3 {
  margin: 0 0 14px;
  color: var(--dtfit-navy);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
}

.dtfit-line-panel p {
  margin: 0;
  color: var(--dtfit-slate);
  font-size: 15px;
  line-height: 2;
}

.dtfit-line-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dtfit-line-flow li {
  min-height: 86px;
  padding: 17px 14px 14px;
  color: var(--dtfit-navy);
  background: #f4fbfd;
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.65;
  text-align: center;
}

.dtfit-line-flow span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0 auto 9px;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.dtfit-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: min(100%, 420px);
  margin-top: 26px;
  padding: 14px 24px;
  color: var(--dtfit-white);
  background: var(--dtfit-teal);
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(11, 150, 148, 0.24);
}

.dtfit-line-button svg {
  width: 17px;
  height: 17px;
  margin-left: 10px;
}

.dtfit-line-note {
  margin-top: 14px !important;
  color: var(--dtfit-muted) !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.dtfit-register-form .dtfit-form-wrap {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.dtfit-form-grid {
  gap: 13px 16px;
}

.dtfit-form label,
.dtfit-form-fieldset legend {
  font-size: 12px;
}

.dtfit-form input[type="text"],
.dtfit-form input[type="email"],
.dtfit-form input[type="tel"],
.dtfit-form select,
.dtfit-form textarea {
  padding: 10px 12px;
  font-size: 14px;
}

.dtfit-form-fieldset {
  padding: 12px 14px;
}

.dtfit-submit {
  min-height: 42px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .dtfit-brand {
    font-size: 18px;
  }

  .dtfit-nav-cta {
    border-radius: 8px;
  }

  .dtfit-hero-layout {
    grid-template-columns: 1fr;
  }

  .dtfit-problem-list,
  .dtfit-reason-list,
  .dtfit-card-grid,
  .dtfit-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dtfit-register-panel {
    grid-template-columns: 1fr;
  }

  .dtfit-register-side {
    display: none;
  }

  .dtfit-line-panel {
    padding: 0;
  }
}

@media (max-width: 720px) {
  .dtfit-brand {
    font-size: 16px;
  }

  .dtfit-nav-cta {
    width: auto;
    padding: 10px 12px;
    font-size: 12px;
  }

  .dtfit-nav-cta svg {
    display: none;
  }

  .dtfit-hero {
    padding-bottom: 0;
  }

  .dtfit-hero h1 {
    font-size: 33px;
    line-height: 1.3;
  }

  .dtfit-hero h1 span {
    white-space: normal;
  }

  .dtfit-hero-lead {
    font-size: 15px;
    font-weight: 650;
  }

  .dtfit-hero-media {
    min-height: 210px;
    border-radius: 8px 8px 0 0;
  }

  .dtfit-problem-list,
  .dtfit-reason-list,
  .dtfit-card-grid,
  .dtfit-article-grid {
    grid-template-columns: 1fr;
  }

  .dtfit-problem-list li {
    min-height: auto;
  }

  .dtfit-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .dtfit-step {
    min-height: auto;
    padding: 0;
  }

  .dtfit-step:not(:last-child)::after {
    display: none;
  }

  .dtfit-register-panel {
    padding: 20px;
  }

  .dtfit-line-panel h3 {
    font-size: 22px;
  }

  .dtfit-line-flow {
    grid-template-columns: 1fr;
  }

  .dtfit-line-button {
    width: 100%;
  }
}

.dtfit-brand {
  width: 260px;
  max-width: 32vw;
  line-height: 0;
}

.dtfit-brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .dtfit-brand {
    width: 220px;
    max-width: 42vw;
  }
}

@media (max-width: 720px) {
  .dtfit-brand {
    width: 172px;
    max-width: 48vw;
  }

  .dtfit-brand-logo {
    max-height: 44px;
  }
}

@media (max-width: 380px) {
  .dtfit-brand {
    width: 150px;
  }
}

.dtfit-footer {
  color: rgba(255, 255, 255, 0.88);
  background: #082f45;
  padding: 42px 20px 28px;
}

.dtfit-footer-inner {
  width: min(100%, var(--dtfit-max));
  margin: 0 auto;
}

.dtfit-footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dtfit-footer-brand {
  display: inline-flex;
  align-items: center;
  width: 240px;
  max-width: 100%;
  padding: 8px 10px;
  background: var(--dtfit-white);
  border-radius: 8px;
  line-height: 0;
  text-decoration: none;
}

.dtfit-footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.dtfit-footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.dtfit-footer-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--dtfit-white);
  background: #099b98;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(9, 155, 152, 0.2);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.dtfit-footer-line svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.dtfit-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 24px 0;
}

.dtfit-footer-nav a,
.dtfit-footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.dtfit-footer-nav a:hover,
.dtfit-footer-links a:hover {
  color: var(--dtfit-white);
}

.dtfit-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.dtfit-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.dtfit-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.dtfit-footer-license {
  color: rgba(255, 255, 255, 0.72) !important;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .dtfit-footer-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dtfit-footer-line {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .dtfit-footer {
    padding: 34px 18px 26px;
  }

  .dtfit-footer-main {
    gap: 18px;
    padding-bottom: 24px;
  }

  .dtfit-footer-brand {
    width: 210px;
  }

  .dtfit-footer-line {
    width: 100%;
  }

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

  .dtfit-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .dtfit-footer-license {
    white-space: normal;
  }
}

.dtfit-policy-page {
  background: var(--dtfit-bg);
}

.dtfit-policy-header {
  padding: 24px 20px 64px;
  background: var(--dtfit-white);
}

.dtfit-policy-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, var(--dtfit-max));
  min-height: 54px;
  margin: 0 auto 68px;
}

.dtfit-policy-hero {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.dtfit-policy-kicker {
  margin: 0 0 12px;
  color: var(--dtfit-teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dtfit-policy-hero h1 {
  margin: 0;
  color: var(--dtfit-navy);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
}

.dtfit-policy-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--dtfit-slate);
  font-size: 16px;
  font-weight: 650;
  line-height: 2;
}

.dtfit-policy-hero .dtfit-policy-updated {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 24px;
  padding: 8px 14px;
  color: var(--dtfit-teal-dark);
  background: var(--dtfit-ice);
  border: 1px solid #cbe8ed;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.dtfit-policy-section {
  padding: 56px 20px 72px;
}

.dtfit-policy-content {
  display: grid;
  gap: 18px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.dtfit-policy-card {
  padding: 30px;
  background: var(--dtfit-white);
  border: 1px solid var(--dtfit-border);
  border-radius: 8px;
  box-shadow: var(--dtfit-soft-shadow);
}

.dtfit-policy-card h2 {
  margin: 0 0 16px;
  color: var(--dtfit-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.dtfit-policy-card p,
.dtfit-policy-card li,
.dtfit-policy-card dd {
  color: var(--dtfit-slate);
  font-size: 15px;
  font-weight: 560;
  line-height: 2;
}

.dtfit-policy-card p {
  margin: 0;
}

.dtfit-policy-card p + p,
.dtfit-policy-card ul + p,
.dtfit-policy-card p + ul {
  margin-top: 12px;
}

.dtfit-policy-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.3em;
}

.dtfit-policy-card a {
  color: var(--dtfit-teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dtfit-policy-dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.dtfit-policy-dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--dtfit-line);
}

.dtfit-policy-dl div:last-child {
  border-bottom: 0;
}

.dtfit-policy-dl dt {
  color: var(--dtfit-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 2;
}

.dtfit-policy-dl dd {
  margin: 0;
}

@media (max-width: 720px) {
  .dtfit-policy-header {
    padding: 22px 18px 46px;
  }

  .dtfit-policy-topbar {
    margin-bottom: 42px;
  }

  .dtfit-policy-hero {
    text-align: left;
  }

  .dtfit-policy-hero h1 {
    font-size: 34px;
  }

  .dtfit-policy-hero p {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

  .dtfit-policy-section {
    padding: 34px 18px 52px;
  }

  .dtfit-policy-card {
    padding: 22px;
  }

  .dtfit-policy-card h2 {
    font-size: 20px;
  }

  .dtfit-policy-dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.dtfit-lp-main .dtfit-nav-cta,
.dtfit-lp-main .dtfit-nav-cta:visited,
.dtfit-lp-main .dtfit-nav-cta:hover,
.dtfit-lp-main .dtfit-nav-cta:focus-visible,
.dtfit-lp-main .dtfit-button-primary,
.dtfit-lp-main .dtfit-button-primary:visited,
.dtfit-lp-main .dtfit-button-primary:hover,
.dtfit-lp-main .dtfit-button-primary:focus-visible,
.dtfit-lp-main .dtfit-line-button,
.dtfit-lp-main .dtfit-line-button:visited,
.dtfit-lp-main .dtfit-line-button:hover,
.dtfit-lp-main .dtfit-line-button:focus-visible,
.dtfit-lp-main .dtfit-footer-line,
.dtfit-lp-main .dtfit-footer-line:visited,
.dtfit-lp-main .dtfit-footer-line:hover,
.dtfit-lp-main .dtfit-footer-line:focus-visible,
.dtfit-lp-main .dtfit-submit,
.dtfit-lp-main .dtfit-submit:hover,
.dtfit-lp-main .dtfit-submit:focus-visible {
  color: #ffffff !important;
}

.dtfit-lp-main .dtfit-nav-cta svg,
.dtfit-lp-main .dtfit-button-primary svg,
.dtfit-lp-main .dtfit-line-button svg,
.dtfit-lp-main .dtfit-footer-line svg {
  color: #ffffff !important;
}

:root {
  --dtfit-icon-future: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M10 34h28M14 30l8-8 6 6 10-14' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M34 14h6v6' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --dtfit-icon-salary: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cellipse cx='18' cy='32' rx='10' ry='5' fill='none' stroke='%23099698' stroke-width='4'/%3E%3Cpath d='M8 24c0 3 5 5 10 5s10-2 10-5-5-5-10-5-10 2-10 5Zm0 0v8m20-8v8M30 30l8-8m0 0v8m0-8h-8' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --dtfit-icon-skill: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M13 34V16h22v18M10 34h28' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 25l5 5 10-12' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 10h8M15 6v8M36 8h4M38 6v4' stroke='%23099698' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  --dtfit-icon-workstyle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Ccircle cx='18' cy='18' r='9' fill='none' stroke='%23099698' stroke-width='4'/%3E%3Cpath d='M18 13v6l5 3M10 36h8c6 0 6-8 12-8h8' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M34 24l5 4-5 4' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --dtfit-icon-match: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Ccircle cx='24' cy='24' r='15' fill='none' stroke='%23099698' stroke-width='4'/%3E%3Ccircle cx='24' cy='24' r='6' fill='none' stroke='%23099698' stroke-width='4'/%3E%3Cpath d='M35 13l5-5M37 8h3v3M17 25l5 5 10-12' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --dtfit-icon-specialist: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M15 18c5-12 13-12 18 0-4 18-14 18-18 0Z' fill='none' stroke='%23099698' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M18 23l5 5 9-12' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --dtfit-icon-jobs: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M10 16h28v22H10zM17 16v-5h14v5' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 25h16M16 31h10' stroke='%23099698' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  --dtfit-icon-negotiate: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M11 27l7-7 7 7 5-5 7 7' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 34h20M32 16h6v6' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --dtfit-icon-follow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M24 8l14 6v10c0 10-6 15-14 18-8-3-14-8-14-18V14l14-6Z' fill='none' stroke='%23099698' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M17 25l5 5 10-12' fill='none' stroke='%23099698' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dtfit-problem-list li::before {
  background-color: #edf7fb !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 28px 28px !important;
  border: 1px solid #d4e8ee !important;
}

.dtfit-problem-list li:nth-child(1)::before { background-image: var(--dtfit-icon-future) !important; }
.dtfit-problem-list li:nth-child(2)::before { background-image: var(--dtfit-icon-salary) !important; }
.dtfit-problem-list li:nth-child(3)::before { background-image: var(--dtfit-icon-skill) !important; }
.dtfit-problem-list li:nth-child(4)::before { background-image: var(--dtfit-icon-workstyle) !important; }
.dtfit-problem-list li:nth-child(5)::before { background-image: var(--dtfit-icon-match) !important; }

.dtfit-reason::before {
  background-color: #edf7fb !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 25px 25px !important;
}

.dtfit-reason:nth-child(1)::before { background-image: var(--dtfit-icon-specialist) !important; }
.dtfit-reason:nth-child(2)::before { background-image: var(--dtfit-icon-jobs) !important; }
.dtfit-reason:nth-child(3)::before { background-image: var(--dtfit-icon-negotiate) !important; }
.dtfit-reason:nth-child(4)::before { background-image: var(--dtfit-icon-follow) !important; }

.dtfit-card-media,
.dtfit-article-media {
  background-color: #edf8fb;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.dtfit-card-lab .dtfit-card-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-job-lab.svg") !important;
}

.dtfit-card-inhouse .dtfit-card-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-job-inhouse.svg") !important;
}

.dtfit-card-cad .dtfit-card-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-job-cad.svg") !important;
}

.dtfit-card-ceramic .dtfit-card-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-job-ceramic.svg") !important;
}

.dtfit-article-market .dtfit-article-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-article-market.svg") !important;
}

.dtfit-article-career .dtfit-article-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-article-career.svg") !important;
}

.dtfit-article-workplace .dtfit-article-media {
  background-image: url("/dental-technician/wp-content/uploads/dtfit/dtfit-article-workplace.svg") !important;
}

.dtfit-final .dtfit-cta-row {
  justify-content: center;
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  .dtfit-topbar,
  .dtfit-policy-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: auto;
    min-height: 64px;
    margin: 0;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(215, 232, 238, 0.95);
    box-shadow: 0 10px 24px rgba(16, 47, 69, 0.08);
    backdrop-filter: blur(12px);
  }

  .dtfit-hero {
    padding-top: 88px;
  }

  .dtfit-policy-header {
    padding-top: 88px;
  }
}
