/*--------------------------------------------------------------
  DTechBox — main stylesheet

  1.  Tokens
  2.  Reset & base
  3.  Layout helpers
  4.  Buttons
  5.  Section headings
  6.  Preloader
  7.  Header & navigation
  8.  Mobile navigation
  9.  Hero slider
  10. Page hero (inner pages)
  11. Services
  12. About
  13. CTA band
  14. Working process
  15. Sliding marquee
  16. Projects
  17. Why choose us
  18. Team
  19. Counters
  20. Testimonials
  21. Blog
  22. Newsletter
  23. Brands
  24. Pricing
  25. FAQ accordion
  26. Contact
  27. Forms & alerts
  28. Footer
  29. Floating widgets
  30. Scroll reveal
  31. Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 1. Tokens
--------------------------------------------------------------*/
:root {
  --dt-font: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --dt-font-head: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --dt-base: #f8b13c;
  --dt-base-rgb: 110, 84, 243;
  --dt-base-dark: #573ee0;
  --dt-black: #070d1a;
  --dt-black-rgb: 7, 13, 26;
  --dt-ink: #131b2e;
  --dt-gray: #666666;
  --dt-extra: #edf0fa;
  --dt-secondary: #fffcf0;
  --dt-white: #ffffff;
  --dt-line: #e4e8f4;

  --dt-radius: 5px;
  --dt-radius-lg: 14px;
  --dt-shadow: 0 10px 40px rgba(7, 13, 26, .08);
  --dt-shadow-lg: 0 24px 60px rgba(7, 13, 26, .12);

  --dt-section-y: 120px;
  --dt-container: 1200px;
  --dt-gutter: 30px;

  --dt-ease: cubic-bezier(.25, .8, .25, 1);
}

/*--------------------------------------------------------------
# 2. Reset & base
--------------------------------------------------------------*/
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--dt-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dt-gray);
  background: var(--dt-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  font-family: var(--dt-font-head);
  color: var(--dt-black);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 60px; }
h2 { font-size: 44px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p { margin: 0 0 15px; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--dt-base);
  text-decoration: none;
  transition: color .3s var(--dt-ease);
}
a:hover { color: var(--dt-base-dark); }

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

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--dt-base);
  outline-offset: 3px;
}

/*--------------------------------------------------------------
# 3. Layout helpers
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--dt-container);
  margin: 0 auto;
}

.section { padding: var(--dt-section-y) 0; }
.section--tight { padding: 80px 0; }
.section--soft { background: var(--dt-secondary); }
.section--extra { background: var(--dt-extra); }

.section--dark {
  background: var(--dt-black);
  color: rgba(255, 255, 255, .72);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--dt-white); }

.grid { display: grid; gap: var(--dt-gutter); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

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

/*--------------------------------------------------------------
# 4. Buttons
--------------------------------------------------------------*/
.btn {
  --btn-bg: var(--dt-base);
  --btn-fg: var(--dt-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border: 0;
  border-radius: 40px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--dt-font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--dt-ease), box-shadow .35s var(--dt-ease), transform .35s var(--dt-ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dt-black);
  transform: translateY(101%);
  transition: transform .4s var(--dt-ease);
  z-index: -1;
}

.btn:hover {
  color: var(--dt-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--dt-base-rgb), .28);
}
.btn:hover::after { transform: translateY(0); }

.btn svg { width: 16px; height: 16px; flex: none; }

.btn--light { --btn-bg: var(--dt-white); --btn-fg: var(--dt-black); }
.btn--dark { --btn-bg: var(--dt-black); --btn-fg: var(--dt-white); }
.btn--dark::after { background: var(--dt-base); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--dt-white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
}

.btn--sm { padding: 11px 24px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dt-font-head);
  font-weight: 600;
  color: var(--dt-black);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .3s var(--dt-ease); }
.link-arrow:hover { color: var(--dt-base); }
.link-arrow:hover svg { transform: translateX(4px); }

/*--------------------------------------------------------------
# 5. Section headings
--------------------------------------------------------------*/
.sec-head { margin-bottom: 55px; }
.sec-head--center { text-align: center; max-width: 640px; margin-inline: auto; }

.sec-head__sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgb(243 216 84 / 10%);
  color: var(--dt-base);
  font-family: var(--dt-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sec-head__sub::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.section--dark .sec-head__sub {
  background: rgba(255, 255, 255, .1);
  color: var(--dt-white);
}

.sec-head__title { margin-bottom: 0; }
.sec-head__title em {
  font-style: normal;
  color: var(--dt-base);
}
.sec-head__text { margin-top: 16px; }

/*--------------------------------------------------------------
# 6. Preloader
--------------------------------------------------------------*/
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dt-white);
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dt-base);
  animation: dt-bounce 1.2s infinite ease-in-out both;
}
.preloader span:nth-child(2) { animation-delay: .15s; opacity: .7; }
.preloader span:nth-child(3) { animation-delay: .3s; opacity: .45; }

@keyframes dt-bounce {
  0%, 80%, 100% { transform: scale(.5); }
  40% { transform: scale(1); }
}

/*--------------------------------------------------------------
# 7. Header & navigation
--------------------------------------------------------------*/
.topbar {
  background: var(--dt-black);
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.topbar__list { display: flex; align-items: center; gap: 28px; }
.topbar__list li { display: flex; align-items: center; gap: 8px; }
.topbar__list a { color: inherit; }
.topbar__list a:hover { color: var(--dt-white); }
.topbar svg { width: 15px; height: 15px; color: var(--dt-base); flex: none; }

.topbar__social { display: flex; gap: 14px; }
.topbar__social a { color: rgba(255, 255, 255, .7); }
.topbar__social a:hover { color: var(--dt-base); }

.header {
  position: relative;
  z-index: 100;
  background: var(--dt-white);
  box-shadow: 0 1px 0 var(--dt-line);
}

.header.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: dt-drop .4s var(--dt-ease);
  box-shadow: var(--dt-shadow);
}

@keyframes dt-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 88px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dt-font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--dt-black);
  letter-spacing: -.5px;
}
.logo:hover { color: var(--dt-black); }
.logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--dt-base);
  color: var(--dt-white);
  font-size: 20px;
}
.logo em { font-style: normal; color: var(--dt-base); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 34px; }

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 32px 0;
  font-family: var(--dt-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dt-black);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 0;
  height: 2px;
  background: var(--dt-base);
  transition: width .3s var(--dt-ease);
}
.nav__item:hover > .nav__link::after,
.nav__item.is-active > .nav__link::after { width: 100%; }
.nav__item:hover > .nav__link,
.nav__item.is-active > .nav__link { color: var(--dt-base); }

.nav__caret { width: 11px; height: 11px; opacity: .6; }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 230px;
  padding: 12px 0;
  background: var(--dt-white);
  border-radius: var(--dt-radius);
  box-shadow: var(--dt-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s var(--dt-ease);
}
.nav__item:hover > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 9px 26px;
  font-family: var(--dt-font-head);
  font-weight: 500;
  color: var(--dt-black);
}
.nav__dropdown a:hover {
  color: var(--dt-base);
  padding-left: 32px;
  background: var(--dt-secondary);
}

.header__actions { display: flex; align-items: center; gap: 22px; }

.header__phone {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__phone-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--dt-base-rgb), .1);
  color: var(--dt-base);
}
.header__phone-icon svg { width: 18px; height: 18px; }
.header__phone-label {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.header__phone-value {
  font-family: var(--dt-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dt-black);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: var(--dt-radius);
  background: var(--dt-black);
  color: var(--dt-white);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; margin: 0 auto; }

/*--------------------------------------------------------------
# 8. Mobile navigation
--------------------------------------------------------------*/
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
}
.mobile-nav.is-open { visibility: visible; }

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 26, .6);
  opacity: 0;
  transition: opacity .4s var(--dt-ease);
}
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 86vw);
  padding: 30px 26px 40px;
  background: var(--dt-black);
  color: rgba(255, 255, 255, .7);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .45s var(--dt-ease);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-nav__head .logo { color: var(--dt-white); }

.mobile-nav__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--dt-white);
  cursor: pointer;
}
.mobile-nav__close svg { width: 18px; height: 18px; margin: 0 auto; }

.mobile-nav__list > li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-nav__row { display: flex; align-items: center; }
.mobile-nav__row > a {
  flex: 1;
  padding: 13px 0;
  font-family: var(--dt-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dt-white);
}
.mobile-nav__expand {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--dt-radius);
  background: rgba(255, 255, 255, .08);
  color: var(--dt-white);
  cursor: pointer;
  transition: transform .3s var(--dt-ease);
}
.mobile-nav__expand svg { width: 14px; height: 14px; margin: 0 auto; }
.mobile-nav__expand.is-open { transform: rotate(180deg); background: var(--dt-base); }

.mobile-nav__sub {
  display: none;
  padding: 0 0 12px 14px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  margin-left: 4px;
}
.mobile-nav__sub.is-open { display: block; }
.mobile-nav__sub a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
}
.mobile-nav__sub a:hover { color: var(--dt-base); }

.mobile-nav__meta { margin-top: 30px; display: grid; gap: 14px; font-size: 15px; }
.mobile-nav__meta a { color: rgba(255, 255, 255, .75); }

/*--------------------------------------------------------------
# 9. Hero slider
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: var(--dt-black);
  overflow: hidden;
}

.hero__slides { position: relative; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--dt-ease), visibility .9s;
}
.hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  min-height: 660px;
  padding: 90px 0;
}

.hero__content { position: relative; z-index: 2; max-width: 620px; }

.hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  color: var(--dt-white);
  font-family: var(--dt-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.hero__sub::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dt-base);
  box-shadow: 0 0 0 4px rgba(var(--dt-base-rgb), .3);
}

.hero__title {
  color: var(--dt-white);
  font-size: 62px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__text {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--dt-white);
  font-family: var(--dt-font-head);
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
}
.hero__play-btn {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dt-white);
  color: var(--dt-base);
  position: relative;
}
.hero__play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: dt-ripple 2s infinite;
}
.hero__play-btn svg { width: 18px; height: 18px; margin-left: 3px; }

@keyframes dt-ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero__figure { position: relative; }
.hero__figure img {
  width: 100%;
  border-radius: 20px;
}

.hero__phone {
  position: absolute;
  left: -30px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 14px;
  background: var(--dt-white);
  box-shadow: var(--dt-shadow-lg);
}
.hero__phone svg { width: 20px; height: 20px; color: var(--dt-base); }
.hero__phone span { display: block; font-size: 13px; line-height: 1.4; }
.hero__phone strong {
  font-family: var(--dt-font-head);
  font-size: 18px;
  color: var(--dt-black);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__blob--1 {
  width: 420px; height: 420px;
  background: rgb(243 238 84 / 22%);
  top: -120px; left: -100px;
}
.hero__blob--2 {
  width: 340px; height: 340px;
  background: rgba(80, 200, 255, .16);
  bottom: -140px; right: 10%;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--dt-ease);
}
.hero__dot.is-active {
  background: var(--dt-base);
  border-color: var(--dt-base);
  width: 34px;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# 10. Page hero (inner pages)
--------------------------------------------------------------*/
.page-hero {
  position: relative;
  padding: 110px 0;
  background: var(--dt-black);
  text-align: center;
  overflow: hidden;
}
.page-hero__title { color: var(--dt-white); font-size: 52px; margin-bottom: 12px; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--dt-font-head);
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
}
.breadcrumb a { color: var(--dt-white); }
.breadcrumb a:hover { color: var(--dt-base); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; }

/*--------------------------------------------------------------
# 11. Services
--------------------------------------------------------------*/
.service-card {
  position: relative;
  background: var(--dt-white);
  border: 1px solid var(--dt-line);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  transition: transform .4s var(--dt-ease), box-shadow .4s var(--dt-ease), border-color .4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dt-shadow-lg);
  border-color: transparent;
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dt-secondary);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--dt-ease);
}
.service-card:hover .service-card__media img { transform: scale(1.07); }

.service-card__icon {
  position: absolute;
  right: 22px;
  bottom: 5px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  color: var(--dt-white);
  box-shadow: 0 10px 24px rgba(var(--dt-base-rgb), .35);
  transition: transform .4s var(--dt-ease);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.06); }

.service-card__body { padding: 34px 28px 30px; }
.service-card__title { font-size: 23px; margin-bottom: 10px; }
.service-card__title a { color: inherit; }
.service-card__title a:hover { color: var(--dt-base); }
.service-card__text { margin-bottom: 18px; }

/* Service detail */
.service-detail__media {
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  margin-bottom: 34px;
}
.service-detail h2 { font-size: 36px; }
.service-detail__list { display: grid; gap: 12px; margin-top: 24px; }
.service-detail__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-detail__list svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 5px;
  color: var(--dt-base);
}

.service-detail__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail__list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail__list svg {
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .service-detail__list {
        grid-template-columns: 1fr;
    }
}

.sidebar { display: grid; gap: 30px; align-content: start; }

.widget {
  padding: 30px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-secondary);
}
.widget__title {
  font-size: 21px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dt-line);
}
.widget__links li + li { margin-top: 4px; }
.widget__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--dt-radius);
  background: var(--dt-white);
  color: var(--dt-black);
  font-family: var(--dt-font-head);
  font-weight: 600;
}
.widget__links a:hover,
.widget__links a.is-active {
  background: var(--dt-base);
  color: var(--dt-white);
}
.widget__links svg { width: 15px; height: 15px; }

.widget--cta {
  background: var(--dt-black);
  color: rgba(255, 255, 255, .72);
  text-align: center;
}
.widget--cta .widget__title { color: var(--dt-white); border-color: rgba(255, 255, 255, .12); }

.widget-post {
  display: flex;
  gap: 14px;
  align-items: center;
}
.widget-post + .widget-post { margin-top: 18px; }
.widget-post img {
  width: 76px;
  height: 66px;
  object-fit: cover;
  border-radius: var(--dt-radius);
  flex: none;
}
.widget-post__date { font-size: 14px; color: var(--dt-base); }
.widget-post__title {
  font-family: var(--dt-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--dt-black);
  line-height: 1.4;
  display: block;
}
.widget-post__title:hover { color: var(--dt-base); }

/*--------------------------------------------------------------
# 12. About
--------------------------------------------------------------*/
.about__figures {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: end;
}
.about__figures img { border-radius: var(--dt-radius-lg); width: 100%; }

.about__badge {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 10px;
  border-radius: 50%;
  background: var(--dt-base);
  color: var(--dt-white);
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 16px 36px rgba(var(--dt-base-rgb), .35);
}
.about__badge strong {
  display: block;
  font-family: var(--dt-font-head);
  font-size: 34px;
}
.about__badge span { font-size: 13px; }

.about__points { display: grid; gap: 14px; margin: 26px 0 30px; }
.about__points li { display: flex; gap: 12px; align-items: flex-start; }
.about__points svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: var(--dt-base);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.about__stat-value {
  font-family: var(--dt-font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--dt-black);
  line-height: 1;
}
.about__stat-label { font-size: 15px; }

.about__meter {
  margin-top: 10px;
  height: 6px;
  border-radius: 4px;
  background: var(--dt-extra);
  overflow: hidden;
}
.about__meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: var(--dt-base);
  transition: width 1.4s var(--dt-ease);
}

.about__footer {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--dt-line);
}
.about__author { display: flex; align-items: center; gap: 12px; }
.about__author svg { width: 22px; height: 22px; color: var(--dt-base); }
.about__author strong {
  display: block;
  font-family: var(--dt-font-head);
  color: var(--dt-black);
  font-size: 18px;
}

/*--------------------------------------------------------------
# 13. CTA band
--------------------------------------------------------------*/
.cta-band {
  position: relative;
  padding: 70px 0;
  background: var(--dt-base);
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.cta-band::before { width: 320px; height: 320px; top: -140px; left: -60px; }
.cta-band::after { width: 240px; height: 240px; bottom: -120px; right: 8%; }

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band__title {
  color: var(--dt-white);
  font-size: 40px;
  margin: 0;
  max-width: 700px;
}

.cta-band--dark { background: var(--dt-black); }

/*--------------------------------------------------------------
# 14. Working process
--------------------------------------------------------------*/
.process { position: relative; }

.process__grid { position: relative; }
.process__grid::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--dt-line) 55%, transparent 0);
  background-size: 14px 2px;
}

.process-step { position: relative; text-align: center; }

.process-step__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--dt-white);
  border: 2px solid var(--dt-line);
  color: var(--dt-base);
  transition: all .4s var(--dt-ease);
}
.process-step__icon svg { width: 36px; height: 36px; }
.process-step:hover .process-step__icon {
  background: var(--dt-base);
  border-color: var(--dt-base);
  color: var(--dt-white);
  transform: translateY(-6px);
}

.process-step__number {
  position: absolute;
  top: -4px;
  right: calc(50% - 60px);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dt-black);
  color: var(--dt-white);
  font-family: var(--dt-font-head);
  font-size: 14px;
  font-weight: 700;
}

.process-step__title { font-size: 21px; margin-bottom: 8px; }

/*--------------------------------------------------------------
# 15. Sliding marquee
--------------------------------------------------------------*/
.marquee {
  padding: 26px 0;
  background: var(--dt-base);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: dt-marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: var(--dt-font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--dt-white);
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
}

@keyframes dt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/*--------------------------------------------------------------
# 16. Projects
--------------------------------------------------------------*/
.project-card {
  position: relative;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--dt-ease);
}
.project-card:hover img { transform: scale(1.08); }

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 26, .88) 0%, rgba(7, 13, 26, .1) 55%, transparent 100%);
  opacity: .75;
  transition: opacity .4s var(--dt-ease);
}
.project-card:hover::after { opacity: 1; }

.project-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
  transform: translateY(14px);
  transition: transform .45s var(--dt-ease);
}
.project-card:hover .project-card__body { transform: translateY(0); }

.project-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 30px;
  background: var(--dt-base);
  color: var(--dt-white);
  font-family: var(--dt-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.project-card__title { color: var(--dt-white); font-size: 24px; margin-bottom: 4px; }
.project-card__meta { color: rgba(255, 255, 255, .72); font-size: 15px; }

.project-card__go {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dt-white);
  color: var(--dt-black);
  opacity: 0;
  transform: scale(.7);
  transition: all .4s var(--dt-ease);
}
.project-card:hover .project-card__go { opacity: 1; transform: scale(1); }
.project-card__go svg { width: 18px; height: 18px; }

/*--------------------------------------------------------------
# 17. Why choose us
--------------------------------------------------------------*/
.why__list { display: grid; gap: 22px; margin-top: 30px; }

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-white);
  border: 1px solid var(--dt-line);
  transition: all .4s var(--dt-ease);
}
.why-item:hover {
  border-color: transparent;
  box-shadow: var(--dt-shadow);
  transform: translateX(6px);
}

.why-item__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(var(--dt-base-rgb), .1);
  color: var(--dt-base);
  font-family: var(--dt-font-head);
  font-size: 20px;
  font-weight: 800;
  transition: all .4s var(--dt-ease);
}
.why-item:hover .why-item__num { background: var(--dt-base); color: var(--dt-white); }
.why-item__title { font-size: 20px; margin-bottom: 6px; }

.why__figure { position: relative; }
.why__figure img { border-radius: var(--dt-radius-lg); width: 100%; }

.why__float {
  position: absolute;
  right: -20px;
  bottom: 40px;
  padding: 22px 26px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-base);
  color: var(--dt-white);
  text-align: center;
  box-shadow: var(--dt-shadow-lg);
}
.why__float strong { display: block; font-family: var(--dt-font-head); font-size: 34px; line-height: 1; }
.why__float span { font-size: 14px; }

/*--------------------------------------------------------------
# 18. Team
--------------------------------------------------------------*/
.team-card { text-align: center; }

.team-card__media {
  position: relative;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--dt-secondary);
  aspect-ratio: 1 / 1.08;
}
.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--dt-ease);
}
.team-card:hover .team-card__media img { transform: scale(1.06); }

.team-card__social {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 20px);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 40px;
  background: var(--dt-white);
  box-shadow: var(--dt-shadow);
  opacity: 0;
  transition: all .45s var(--dt-ease);
}
.team-card:hover .team-card__social { opacity: 1; transform: translate(-50%, 0); }
.team-card__social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--dt-black);
}
.team-card__social a:hover { background: var(--dt-base); color: var(--dt-white); }
.team-card__social svg { width: 15px; height: 15px; }

.team-card__name { font-size: 21px; margin-bottom: 2px; }
.team-card__role { color: var(--dt-base); font-weight: 600; }

/*--------------------------------------------------------------
# 19. Counters
--------------------------------------------------------------*/
.counters { background: var(--dt-black); }
.counter { text-align: center; position: relative; }
.counter + .counter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, .12);
}
.counter__value {
  font-family: var(--dt-font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--dt-white);
  line-height: 1;
  margin-bottom: 8px;
}
.counter__value span { color: var(--dt-base); }
.counter__label { color: rgba(255, 255, 255, .68); font-size: 17px; }

/*--------------------------------------------------------------
# 20. Testimonials
--------------------------------------------------------------*/
.testimonials__viewport { overflow: hidden; }
.testimonials__track {
  display: flex;
  transition: transform .6s var(--dt-ease);
}
.testimonials__slide {
  flex: 0 0 100%;
  padding: 0 15px;
}

.testimonial {
  padding: 40px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-white);
  box-shadow: var(--dt-shadow);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.testimonial__quote { width: 44px; height: 44px; margin: 0 auto 18px; color: var(--dt-base); opacity: .25; }
.testimonial__text { font-size: 20px; line-height: 1.7; color: var(--dt-ink); margin-bottom: 26px; }
.testimonial__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; color: #ffb400; }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial__person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial__person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.testimonial__name { font-family: var(--dt-font-head); font-size: 19px; font-weight: 700; color: var(--dt-black); }
.testimonial__role { font-size: 15px; }

.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.slider-nav button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--dt-line);
  border-radius: 50%;
  background: var(--dt-white);
  color: var(--dt-black);
  cursor: pointer;
  transition: all .3s var(--dt-ease);
}
.slider-nav button:hover { background: var(--dt-base); border-color: var(--dt-base); color: var(--dt-white); }
.slider-nav svg { width: 18px; height: 18px; }

/*--------------------------------------------------------------
# 21. Blog
--------------------------------------------------------------*/
.blog-card {
  background: var(--dt-white);
  border: 1px solid var(--dt-line);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  transition: all .4s var(--dt-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dt-shadow-lg);
  border-color: transparent;
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dt-secondary);
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--dt-ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.07); }

.blog-card__date {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 16px;
  border-radius: var(--dt-radius);
  background: var(--dt-base);
  color: var(--dt-white);
  font-family: var(--dt-font-head);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}
.blog-card__date strong { display: block; font-size: 20px; }

.blog-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--dt-gray);
}
.blog-card__meta li { display: flex; align-items: center; gap: 7px; }
.blog-card__meta svg { width: 14px; height: 14px; color: var(--dt-base); }

.blog-card__title { font-size: 22px; line-height: 1.35; margin-bottom: 10px; }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--dt-base); }
.blog-card__excerpt { margin-bottom: 18px; flex: 1; }

/* Blog detail */
.post__media { border-radius: var(--dt-radius-lg); overflow: hidden; margin-bottom: 30px; }
.post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
  font-size: 15px;
}
.post__meta li { display: flex; align-items: center; gap: 8px; }
.post__meta svg { width: 15px; height: 15px; color: var(--dt-base); }
.post__title { font-size: 40px; }
.post__body p { margin-bottom: 20px; font-size: 17px; }

.post__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--dt-line); }
.post__tags a {
  padding: 7px 18px;
  border-radius: 30px;
  background: var(--dt-secondary);
  color: var(--dt-black);
  font-size: 14px;
  font-family: var(--dt-font-head);
  font-weight: 600;
}
.post__tags a:hover { background: var(--dt-base); color: var(--dt-white); }

/*--------------------------------------------------------------
# 22. Newsletter
--------------------------------------------------------------*/
.newsletter {
  position: relative;
  padding: 64px 60px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-base);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  top: -160px;
  right: -80px;
}
.newsletter__title { color: var(--dt-white); font-size: 38px; margin-bottom: 8px; }
.newsletter__text { color: rgba(255, 255, 255, .82); margin: 0; }

.newsletter__form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1 1 240px;
  height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 40px;
  background: var(--dt-white);
  font-family: var(--dt-font);
  font-size: 16px;
  color: var(--dt-black);
}
.newsletter__form input:focus { outline: 3px solid rgba(255, 255, 255, .6); }
.newsletter__form .btn { --btn-bg: var(--dt-black); }

/*--------------------------------------------------------------
# 23. Brands
--------------------------------------------------------------*/
.brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}
.brands img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: .55;
  transition: all .4s var(--dt-ease);
}
.brands img:hover { filter: none; opacity: 1; }

/*--------------------------------------------------------------
# 24. Pricing
--------------------------------------------------------------*/
.price-card {
  position: relative;
  padding: 40px 34px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-white);
  border: 1px solid var(--dt-line);
  transition: all .4s var(--dt-ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--dt-shadow-lg); border-color: transparent; }

.price-card--featured {
  background: var(--dt-black);
  color: rgba(255, 255, 255, .72);
  border-color: transparent;
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__amount { color: var(--dt-white); }
.price-card--featured .price-card__features li { color: rgba(255, 255, 255, .78); }

.price-card__flag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 14px;
  border-radius: 30px;
  background: var(--dt-base);
  color: var(--dt-white);
  font-size: 12px;
  font-family: var(--dt-font-head);
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.price-card__name { font-size: 20px; margin-bottom: 6px; }
.price-card__amount {
  font-family: var(--dt-font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--dt-black);
  line-height: 1;
}
.price-card__amount sup { font-size: 24px; top: -18px; }
.price-card__amount small { font-size: 16px; font-weight: 500; color: var(--dt-gray); }
.price-card__text { margin: 12px 0 22px; }

.price-card__features { display: grid; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-card__features li { display: flex; gap: 11px; align-items: flex-start; }
.price-card__features svg { flex: none; width: 19px; height: 19px; margin-top: 4px; color: var(--dt-base); }

/*--------------------------------------------------------------
# 25. FAQ accordion
--------------------------------------------------------------*/
.faq { display: grid; gap: 16px; }

.faq-item {
  border: 1px solid var(--dt-line);
  border-radius: var(--dt-radius-lg);
  background: var(--dt-white);
  overflow: hidden;
  transition: box-shadow .3s var(--dt-ease);
}
.faq-item.is-open { box-shadow: var(--dt-shadow); border-color: transparent; }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 26px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--dt-font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--dt-black);
}
.faq-item.is-open .faq-item__q { color: var(--dt-base); }

.faq-item__sign {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dt-secondary);
  color: var(--dt-base);
  transition: all .3s var(--dt-ease);
}
.faq-item.is-open .faq-item__sign { background: var(--dt-base); color: var(--dt-white); transform: rotate(180deg); }
.faq-item__sign svg { width: 15px; height: 15px; }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--dt-ease);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; }
.faq-item__a p { padding: 0 26px 24px; margin: 0; }

/*--------------------------------------------------------------
# 26. Contact
--------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info { display: grid; gap: 20px; }

.contact-info__item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-secondary);
}
.contact-info__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dt-base);
  color: var(--dt-white);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-family: var(--dt-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dt-black);
  margin-bottom: 2px;
}
.contact-info__value a { color: var(--dt-gray); }
.contact-info__value a:hover { color: var(--dt-base); }

.contact-form {
  padding: 40px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-white);
  box-shadow: var(--dt-shadow);
}

.map-embed {
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  height: 420px;
  filter: grayscale(.4);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/*--------------------------------------------------------------
# 27. Forms & alerts
--------------------------------------------------------------*/
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--dt-font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--dt-black);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--dt-line);
  border-radius: var(--dt-radius);
  background: var(--dt-secondary);
  font-family: var(--dt-font);
  font-size: 16px;
  color: var(--dt-black);
  transition: border-color .3s, background .3s;
}
.form-field textarea { min-height: 150px; resize: vertical; }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--dt-base);
  background: var(--dt-white);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid { border-color: #e0364f; }

.form-error {
  display: block;
  margin-top: 6px;
  color: #e0364f;
  font-size: 14px;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--dt-radius);
  margin-bottom: 24px;
  font-weight: 600;
  font-family: var(--dt-font-head);
}
.alert--success {
  background: #e7f8ef;
  color: #1a7f4b;
  border-left: 4px solid #1a7f4b;
}

/*--------------------------------------------------------------
# 28. Footer
--------------------------------------------------------------*/
.footer {
  background: var(--dt-black);
  color: rgba(255, 255, 255, .66);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.25fr 1.2fr;
  gap: 40px;
  padding: 90px 0 70px;
}

.footer__title {
  color: var(--dt-white);
  font-size: 21px;
  margin-bottom: 24px;
}

.footer .logo { color: var(--dt-white); margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--dt-white);
}
.footer__social a:hover { background: var(--dt-base); }
.footer__social svg { width: 16px; height: 16px; }

.footer__links li + li { margin-top: 11px; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .66);
}
.footer__links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dt-base);
  transition: transform .3s var(--dt-ease);
}
.footer__links a:hover { color: var(--dt-white); }
.footer__links a:hover::before { transform: scale(1.5); }

.footer-post { display: flex; gap: 14px; }
.footer-post + .footer-post { margin-top: 20px; }
.footer-post img {
  width: 74px;
  height: 66px;
  border-radius: var(--dt-radius);
  object-fit: cover;
  flex: none;
}
.footer-post__date { font-size: 14px; color: var(--dt-base); }
.footer-post__title {
  display: block;
  font-family: var(--dt-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--dt-white);
  line-height: 1.4;
}
.footer-post__title:hover { color: var(--dt-base); }

.footer__contact li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.footer__contact li + li { margin-top: 16px; }
.footer__contact svg { flex: none; width: 18px; height: 18px; margin-top: 5px; color: var(--dt-base); }
.footer__contact a { color: rgba(255, 255, 255, .66); }
.footer__contact a:hover { color: var(--dt-white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255, 255, 255, .66); }
.footer__legal a:hover { color: var(--dt-white); }

/*--------------------------------------------------------------
# 29. Floating widgets
--------------------------------------------------------------*/
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--dt-base);
  color: var(--dt-white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .35s var(--dt-ease);
  box-shadow: 0 10px 26px rgba(var(--dt-base-rgb), .4);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

.chat-launcher {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--dt-black);
  color: var(--dt-white);
  cursor: pointer;
  box-shadow: var(--dt-shadow-lg);
}
.chat-launcher svg { width: 22px; height: 22px; }

.chat-popup {
  position: fixed;
  left: 26px;
  bottom: 94px;
  z-index: 95;
  width: min(340px, calc(100vw - 52px));
  padding: 26px;
  border-radius: var(--dt-radius-lg);
  background: var(--dt-white);
  box-shadow: var(--dt-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .35s var(--dt-ease);
}
.chat-popup.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--dt-secondary);
  color: var(--dt-black);
  cursor: pointer;
}
.chat-popup__close svg { width: 14px; height: 14px; margin: 0 auto; }
.chat-popup p { font-size: 15px; margin-bottom: 16px; }
.chat-popup .form-field + .form-field { margin-top: 12px; }
.chat-popup textarea { min-height: 96px; }
.chat-popup .btn { margin-top: 14px; }

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 13, 26, .88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--dt-ease);
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__frame {
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  background: #000;
}
.video-modal__frame iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--dt-white);
  cursor: pointer;
}
.video-modal__close svg { width: 20px; height: 20px; margin: 0 auto; }

/*--------------------------------------------------------------
# 30. Scroll reveal
--------------------------------------------------------------*/
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--dt-ease), transform .7s var(--dt-ease);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/*--------------------------------------------------------------
# 31. Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  :root { --dt-section-y: 100px; }
  h1 { font-size: 50px; }
  h2 { font-size: 38px; }
  .hero__title { font-size: 50px; }
  .nav__list { gap: 24px; }
  .header__inner { gap: 24px; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
  .brands { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  :root { --dt-section-y: 80px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 23px; }

  .topbar { display: none; }
  .nav,
  .header__phone { display: none; }
  .nav-toggle { display: grid; place-items: center; margin-left: auto; }

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

  .split,
  .contact-grid,
  .newsletter { grid-template-columns: 1fr; gap: 40px; }

  .hero__inner { grid-template-columns: 1fr; min-height: 0; padding: 70px 0 100px; }
  .hero__figure { order: -1; }
  .hero__title { font-size: 40px; }
  .hero__phone { left: 16px; bottom: 16px; padding: 12px 18px; }

  .page-hero { padding: 80px 0; }
  .page-hero__title { font-size: 38px; }

  .process__grid::before { display: none; }

  .about__figures { grid-template-columns: 1fr 1fr; }
  .about__badge { width: 104px; height: 104px; }
  .about__badge strong { font-size: 26px; }

  .cta-band__title { font-size: 30px; }
  .counter + .counter::before { display: none; }
  .why__float { right: 16px; }
  .newsletter { padding: 44px 30px; }
  .marquee__item { font-size: 24px; }
}

@media (max-width: 767px) {
  :root { --dt-section-y: 64px; --dt-gutter: 22px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .hero__title { font-size: 32px; }
  .hero__text { font-size: 16px; }

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

  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; padding: 60px 0 50px; }
  .brands { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact-form,
  .testimonial { padding: 26px; }
  .testimonial__text { font-size: 17px; }

  .sec-head { margin-bottom: 38px; }
  .counter__value { font-size: 42px; }
  .post__title { font-size: 28px; }

  .footer__bottom-inner { justify-content: center; text-align: center; }
  .chat-launcher { left: 18px; bottom: 18px; }
  .to-top { right: 18px; bottom: 18px; }
}

@media (max-width: 479px) {
  .about__figures { grid-template-columns: 1fr; }
  .about__badge { position: static; margin-bottom: 16px; }
  .about__stats { grid-template-columns: 1fr; }
  .hero__actions { gap: 16px; }
  .btn { padding: 13px 26px; font-size: 15px; }
}




