:root {
  --color-primary: #d71920;
  --color-primary-contrast: #ffffff;
  --color-secondary: #586074;
  --color-surface: #f9f9ff;
  --color-surface-alt: #e9edff;
  --color-text: #141b2b;
  --color-text-muted: #5d3f3c;
  --color-border: #e5e7eb;
  --color-border-strong: #c7d0e4;
  --color-card: #ffffff;
  --color-card-hover: #fbfbff;
  --color-badge: #f1f5ff;
  --color-button: #d71920;
  --color-button-hover: #b60d15;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 14px rgba(20, 27, 43, 0.06);
  --shadow-md: 0 12px 28px rgba(20, 27, 43, 0.10);
  --shadow-lg: 0 24px 48px rgba(20, 27, 43, 0.16);
  --section-gap: 88px;
  --card-padding: 28px;
  --border-width: 1px;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-surface);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.has-dtl-modal {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.dtl-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dtl-container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.dtl-main {
  flex: 1;
}

.dtl-section {
  padding: var(--section-gap) 0;
}

.dtl-section--alt {
  background: var(--color-surface-alt);
}

.dtl-section--dark {
  background: #293040;
  color: #fff;
}

.dtl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

.dtl-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.dtl-section-subtitle {
  margin: 0;
  max-width: 760px;
  color: color-mix(in srgb, var(--color-text) 70%, #fff 30%);
}

.dtl-grid {
  display: grid;
  gap: 24px;
}

.dtl-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dtl-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dtl-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.dtl-card {
  background: var(--color-card);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.dtl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--color-card-hover);
}

.dtl-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #eef2ff;
  overflow: hidden;
}

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

.dtl-card-body {
  padding: var(--card-padding);
}

.dtl-card-title {
  margin: 8px 0 10px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.22;
}

.dtl-card-text,
.dtl-muted {
  color: var(--color-text-muted);
}

.dtl-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 800;
}

.dtl-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--color-secondary);
  font-size: .95rem;
}

.dtl-spec-list li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dtl-spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: #7d818d;
  font-size: 10px;
  line-height: 1;
}

.dtl-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.dtl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.dtl-btn-primary {
  background: var(--color-button);
  color: var(--color-primary-contrast);
}

.dtl-btn-primary:hover {
  background: var(--color-button-hover);
}

.dtl-btn-ghost {
  border-color: var(--color-border-strong);
  background: transparent;
  color: var(--color-text);
}

.dtl-btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.dtl-btn.is-active {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  border-color: var(--color-primary);
}

.dtl-header,
.dtl-footer {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
}

.dtl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
}

.dtl-header.is-home-transparent {
  background: linear-gradient(180deg, rgba(16, 23, 37, 0.72), rgba(16, 23, 37, 0.08));
  border-bottom-color: rgba(255,255,255,.12);
}

.dtl-header.is-home-transparent .dtl-brand strong,
.dtl-header.is-home-transparent .dtl-nav a,
.dtl-header.is-home-transparent .dtl-muted {
  color: #fff;
}

.dtl-header.is-home-transparent .dtl-btn-ghost {
  border-color: rgba(255,255,255,.34);
  color: #fff;
}

.dtl-header-inner,
.dtl-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.dtl-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dtl-nav a {
  font-weight: 600;
  color: var(--color-text);
}

.dtl-nav a:hover,
.dtl-nav .current-menu-item > a {
  color: var(--color-primary);
}

.dtl-nav-mobile {
  display: none;
}

.dtl-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.dtl-hero-inner {
  min-height: clamp(560px, 80vh, 860px);
  display: grid;
  align-items: center;
}

.dtl-hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.2), rgba(15,23,42,.45));
}

.dtl-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}

.dtl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 0;
  color: #fff;
}

.dtl-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.dtl-hero-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  color: rgba(255,255,255,.88);
}

.dtl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.dtl-hero-actions .dtl-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.48);
}

.dtl-hero-actions .dtl-btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

.dtl-experience-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  max-width: 420px;
}

.dtl-experience-point {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.dtl-experience-point-icon {
  width: 20px;
  height: 20px;
  color: #f4f1ef;
  margin-top: 2px;
}

.dtl-experience-point-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dtl-experience-point-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

.dtl-experience-point-copy p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  line-height: 1.45;
}

.dtl-footer {
  background: #2f3647;
  color: #eef2ff;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.06);
}

.dtl-footer a { color: #eef2ff; }

.dtl-footer h4 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: .86rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.dtl-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.dtl-footer-main {
  display: grid;
  grid-template-columns: 1.15fr .95fr .95fr .95fr 1.2fr;
  gap: 34px;
  padding: 34px 0 28px;
}

.dtl-footer-brand h4 {
  color: #ffb09a;
  text-transform: none;
  font-size: 1rem;
}

.dtl-footer-brand p {
  max-width: 180px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: .72rem;
  line-height: 1.55;
}

.dtl-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.dtl-footer-social a {
  width: 16px;
  height: 16px;
  color: #fff;
  opacity: .92;
}

.dtl-footer-social svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dtl-footer-nav-group a,
.dtl-footer-nav-group li,
.dtl-footer-contact li,
.dtl-footer-contact span {
  color: rgba(255,255,255,.78);
  font-size: .71rem;
  line-height: 1.45;
}

.dtl-footer-nav-group a:hover {
  color: #fff;
}

.dtl-footer-contact li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.dtl-footer-contact-icon {
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,.9);
  margin-top: 2px;
}

.dtl-footer-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dtl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0 18px;
  text-align: center;
}

.dtl-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: .62rem;
  line-height: 1.4;
}

.dtl-mobile-bottom {
  display: none;
}

.dtl-quick-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: grid;
  gap: 10px;
}

.dtl-quick-float-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17,24,39,.94);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.dtl-quick-float-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.dtl-quick-float.hide-desktop {
  display: grid;
}

.dtl-breadcrumbs {
  font-size: .95rem;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.dtl-breadcrumb-sep {
  opacity: .55;
  margin: 0 6px;
}

.dtl-breadcrumbs a {
  color: var(--color-secondary);
}

.dtl-content {
  padding: 56px 0;
}

.dtl-content article,
.dtl-prose {
  background: transparent;
}

.dtl-prose h2,
.dtl-prose h3 {
  font-family: var(--font-heading);
  line-height: 1.16;
}

.dtl-prose blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  background: var(--color-surface-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.dtl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.dtl-filter-bar select,
.dtl-filter-bar input {
  min-height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  padding: 0 14px;
  background: #fff;
}

.dtl-sticky-nav {
  position: sticky;
  top: 84px;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dtl-sticky-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--color-secondary);
}

.dtl-sticky-nav a:hover {
  background: var(--color-surface-alt);
  color: var(--color-primary);
}

.dtl-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
}

.dtl-badge-new { background: #64748b; }
.dtl-badge-featured { background: #64748b; }
.dtl-badge-best-seller { background: #7c3aed; }

.dtl-home-cards {
  background: #eef0ff;
}

.dtl-home-cards .dtl-card-media,
.dtl-post-card .dtl-card-media {
  aspect-ratio: 4 / 3;
}

.dtl-home-featured-head {
  text-align: center;
}

.dtl-home-featured-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.dtl-featured-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dtl-featured-filter {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #cfc7d7;
  background: rgba(255,255,255,.75);
  color: #585b66;
  font: inherit;
  font-size: .76rem;
  cursor: pointer;
}

.dtl-featured-filter.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.dtl-featured-grid {
  margin-top: 26px;
  gap: 14px;
}

.dtl-featured-grid [hidden] {
  display: none !important;
}

.dtl-home-featured-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.dtl-home-featured-more {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: .84rem;
  text-transform: uppercase;
}

.dtl-home-news-head {
  text-align: center;
}

.dtl-home-news-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #1b2335;
}

.dtl-home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

.dtl-home-news-featured-card {
  position: relative;
  min-height: 100%;
}

.dtl-home-news-featured-media {
  position: relative;
  display: block;
  min-height: 318px;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe3ee;
}

.dtl-home-news-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 318px;
  object-fit: cover;
}

.dtl-home-news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,16,24,0.04) 0%, rgba(12,16,24,0.72) 100%);
}

.dtl-home-news-category-badge {
  position: absolute;
  left: 18px;
  bottom: 96px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 8px;
  border-radius: 3px;
  background: #e11b22;
  color: #fff;
  font-size: .56rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.dtl-home-news-featured-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.dtl-home-news-featured-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.24;
  font-weight: 800;
}

.dtl-home-news-featured-copy p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.84);
  font-size: .72rem;
  line-height: 1.48;
}

.dtl-home-news-list {
  display: grid;
  gap: 14px;
}

.dtl-home-news-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.dtl-home-news-item-media {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #e7ebf5;
}

.dtl-home-news-item-media img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.dtl-home-news-item-copy {
  padding-top: 2px;
}

.dtl-home-news-item-category {
  color: #e11b22;
  font-size: .52rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.dtl-home-news-item-copy h3 {
  margin: 4px 0 6px;
  color: #171f32;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.22;
  font-weight: 700;
}

.dtl-home-news-item-copy p {
  margin: 0;
  color: #7d7b84;
  font-size: .68rem;
  line-height: 1.45;
}

.dtl-home-news-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.dtl-home-news-more {
  min-height: 28px;
  padding: 0 22px;
  border: 1px solid #c7b9bd;
  border-radius: 4px;
  background: transparent;
  color: #424451;
  font-size: .54rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.dtl-home-news-more:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.dtl-car-card {
  border-color: #edccd2;
  border-radius: 10px;
  box-shadow: none;
}

.dtl-car-card:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(20, 27, 43, 0.08);
}

.dtl-car-card .dtl-card-media {
  aspect-ratio: 1.45 / 1;
  margin: 10px 10px 0;
  border-radius: 6px;
  background: #f7f7fb;
}

.dtl-car-card .dtl-card-media img {
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #fafafb);
}

.dtl-car-card .dtl-card-body {
  padding: 16px 14px 14px;
}

.dtl-car-card .dtl-card-title {
  margin: 6px 0 8px;
  font-size: 1.05rem;
  line-height: 1.32;
}

.dtl-car-line {
  color: #757b88;
  font-size: .72rem;
}

.dtl-car-card .dtl-spec-list {
  gap: 8px 12px;
  margin: 0 0 10px;
  font-size: .72rem;
  color: #6b7280;
}

.dtl-car-card .dtl-price {
  font-size: 1.08rem;
  line-height: 1.2;
}

.dtl-car-price-note {
  margin-top: 3px;
  color: #8f8f99;
  font-size: .63rem;
}

.dtl-car-card .dtl-card-actions {
  margin-top: 12px;
  gap: 8px;
  flex-wrap: nowrap;
}

.dtl-car-card .dtl-btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: .72rem;
  flex: 1;
  white-space: nowrap;
}

.dtl-card-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #7a7a86;
  font-size: .8rem;
  line-height: 1;
}

.dtl-modal[hidden] {
  display: none !important;
}

.dtl-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.dtl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 27, 43, 0.55);
}

.dtl-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(20, 27, 43, 0.24);
}

.dtl-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 1.5rem;
  cursor: pointer;
}

.dtl-modal-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.dtl-modal-content .wpcf7,
.dtl-modal-content form {
  display: grid;
  gap: 14px;
}

.dtl-modal-content input[type="text"],
.dtl-modal-content input[type="email"],
.dtl-modal-content input[type="tel"],
.dtl-modal-content input[type="url"],
.dtl-modal-content input[type="number"],
.dtl-modal-content select,
.dtl-modal-content textarea {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  padding: 12px 14px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.dtl-modal-content textarea {
  min-height: 140px;
}

.dtl-modal-content input:focus,
.dtl-modal-content select:focus,
.dtl-modal-content textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.dtl-modal-content .wpcf7-submit,
.dtl-modal-content button[type="submit"] {
  min-height: 48px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-button);
  color: var(--color-primary-contrast);
  font: inherit;
  font-weight: 700;
  padding: 0 20px;
  cursor: pointer;
}

.dtl-modal-content .wpcf7-submit:hover,
.dtl-modal-content button[type="submit"]:hover {
  background: var(--color-button-hover);
}

.dtl-home-reasons {
  text-align: center;
  background: #f7f8ff;
}

.dtl-home-reasons-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #1a2236;
}

.dtl-home-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 46px;
  align-items: start;
}

.dtl-home-reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dtl-home-reason-icon {
  width: 58px;
  height: 58px;
  color: #b30d19;
}

.dtl-home-reason-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dtl-home-reason-heading {
  margin: 20px 0 10px;
  font-family: var(--font-body);
  font-size: 1.14rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  color: #1b2437;
}

.dtl-home-reason-text {
  max-width: 240px;
  margin: 0;
  color: #74717a;
  font-size: 0.98rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .dtl-grid-4,
  .dtl-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .dtl-home-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dtl-home-news-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .no-mobile-header .dtl-header {
    display: none;
  }

  .dtl-container {
    width: min(100% - 28px, 100%);
  }

  .dtl-header-inner,
  .dtl-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dtl-nav ul {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .dtl-nav {
    display: none;
  }

  .dtl-nav-mobile {
    display: block;
    width: 100%;
  }

  .dtl-nav-mobile ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dtl-grid-2,
  .dtl-grid-3,
  .dtl-grid-4,
  .dtl-footer-main {
    grid-template-columns: 1fr;
  }

  .dtl-home-reasons-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
  }

  .dtl-home-reasons-title {
    font-size: 2rem;
  }

  .dtl-home-news-item {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .dtl-home-news-item-media img {
    height: 74px;
  }

  .dtl-hero-content {
    padding: 96px 0;
  }

  .dtl-sticky-nav {
    top: 72px;
    border-radius: 24px;
  }

  .dtl-mobile-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(17,24,39,.96);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .dtl-mobile-bottom a {
    padding: 10px 6px;
    text-align: center;
    font-size: .78rem;
  }

  .dtl-quick-float {
    right: 12px;
    bottom: 74px;
  }

  .dtl-quick-float.hide-mobile {
    display: none;
  }
}

@media (min-width: 783px) {
  .no-desktop-header .dtl-header {
    display: none;
  }

  .dtl-quick-float.hide-desktop {
    display: none;
  }

  .dtl-quick-float.hide-mobile {
    display: grid;
  }
}

.dtl-prose .wpcf7,
.dtl-prose form {
  display: grid;
  gap: 14px;
}

.dtl-prose input[type="text"],
.dtl-prose input[type="email"],
.dtl-prose input[type="tel"],
.dtl-prose input[type="url"],
.dtl-prose input[type="number"],
.dtl-prose select,
.dtl-prose textarea {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  padding: 12px 14px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.dtl-prose textarea {
  min-height: 140px;
}

.dtl-prose input:focus,
.dtl-prose select:focus,
.dtl-prose textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.dtl-prose .wpcf7-submit,
.dtl-prose button[type="submit"] {
  min-height: 48px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-button);
  color: var(--color-primary-contrast);
  font: inherit;
  font-weight: 700;
  padding: 0 20px;
  cursor: pointer;
}

.dtl-prose .wpcf7-submit:hover,
.dtl-prose button[type="submit"]:hover {
  background: var(--color-button-hover);
}
