/**
 * Deferred CSS for Dedicated Teams Page
 * Contains: Below-fold section styles
 * Loaded asynchronously after first paint
 */

/* =====================
   SOLUTIONS SECTION
   ===================== */
.dt-solutions {
  padding: 60px 0;
  background: #fff;
}

.dt-solutions__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 45px;
  align-items: stretch;
}

.dt-solutions__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  align-items: flex-start;
}

.dt-solutions__label {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.dt-solutions__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
}

.dt-solutions__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.dt-solutions__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 350px;
  letter-spacing: 0.02em;
}

.dt-solutions__card {
  background: #fff;
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.dt-solutions__card:hover {
  box-shadow: 0 8px 30px rgba(32, 109, 209, 0.1);
}

.dt-solutions__card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-solutions__card-icon svg,
.dt-solutions__card-icon img {
  width: 48px;
  height: 48px;
}

.dt-solutions__card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.dt-solutions__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* =====================
   TEAMS CAROUSEL SECTION
   ===================== */
.dt-teams {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.dt-teams__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.dt-teams__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.dt-teams__accent {
  color: var(--color-primary);
}

.dt-teams__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-top: 8px;
}

.dt-teams__prev,
.dt-teams__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d0d0d0; /* intentional: inactive nav state */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s ease;
}

.dt-teams__prev:hover,
.dt-teams__next:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.dt-teams__counter {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  min-width: 50px;
  text-align: center;
}

.dt-teams__counter .dt-teams__total {
  color: #b0b0b0; /* intentional: muted counter denominator */
}

/* Slider wrapper - overflow visible */
.dt-teams__slider {
  overflow: visible;
  padding: 0 calc((100% - min(1440px, calc(100% - 60px))) / 2 + 30px);
}

/* Pre-Swiper: mimic carousel layout before JS init */
.dt-teams__swiper:not(.swiper-initialized) {
  overflow: hidden;
}

.dt-teams__swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 24px;
}

.dt-teams__swiper:not(.swiper-initialized) .dt-teams__slide {
  flex: 0 0 calc(100% / 1.4 - 24px * 0.4 / 1.4);
  min-width: 0;
  opacity: 0.5;
}

.dt-teams__swiper:not(.swiper-initialized) .dt-teams__slide:first-child {
  opacity: 1;
}

/* Post-Swiper: restore overflow */
.dt-teams__swiper.swiper-initialized {
  overflow: visible;
}

.dt-teams__slide {
  height: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.dt-teams__slide .dt-teams__flip-wrapper {
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.dt-teams__slide.swiper-slide-active {
  opacity: 1;
}

.dt-teams__slide.swiper-slide-active .dt-teams__flip-wrapper {
  transform: scale(1);
}

.dt-teams__slide.swiper-slide-active .dt-teams__card {
  box-shadow: 0px 0px 10px 0px #81818140;
}

/* Team card - two column: content left, image right */
.dt-teams__card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  gap: 90px;
  align-items: center;
}

.dt-teams__card-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dt-teams__card-image {
  flex: 1 1 50%;
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
}

.dt-teams__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.dt-teams__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 400;
  padding: 6px 18px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 24px;
}

.dt-teams__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
}

.dt-teams__card-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.dt-teams__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.dt-teams__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.dt-teams__tag {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  padding: 4px 20px;
  border-radius: 50px;
  border: 1px solid #f5f5f5;
  white-space: nowrap;
  background: #f5f5f5;
}

.dt-teams__tag--ghost {
  border-color: #f5f5f5;
  color: var(--color-text);
  background: #f5f5f5;
}

/* View All tag */
.dt-teams__tag--viewall {
  cursor: pointer;
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ---- Flip Card ---- */
.dt-teams__flip-wrapper {
  perspective: 1200px;
  width: 100%;
  height: 100%;
}

.dt-teams__flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.dt-teams__flip.is-flipped {
  transform: rotateY(180deg);
}

.dt-teams__card--front,
.dt-teams__card--back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dt-teams__card--front {
  position: relative;
}

.dt-teams__card--back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

/* Back face content */
.dt-teams__back-content {
  padding: 0px 56px;
  overflow-y: auto;
  height: 100%;
}

.dt-teams__back-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dt-teams__back-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text);
  padding: 0;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dt-teams__back-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.dt-teams__back-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

.dt-teams__back-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 32px;
}

.dt-teams__back-roles {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 16px;
  justify-content: start;
}

.dt-teams__back-tag {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  background: #f5f5f5;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  text-align: center;
}

.dt-teams__card-ctas {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.dt-teams__card-ctas .btn--outline {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.dt-teams__card-ctas .btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* =====================
   BUILD YOUR OWN TEAM SECTION
   ===================== */
.dt-build {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.dt-build__content {
  max-width: 750px;
  margin: 0 auto;
}

.dt-build__title {
  font-size: clamp(40px, 5vw, 75px);
  font-weight: 600;
  line-height: 1.17;
  color: var(--color-text);
  margin-bottom: 24px;
  position: relative;
}

.dt-build__accent {
  background: linear-gradient(to right, var(--color-primary), #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dt-build__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0 auto 32px;
}

.dt-build__divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 32px;
}

.dt-build__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
}

.dt-build__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.dt-build__stat-value {
  font-size: clamp(22px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-primary);
}

.dt-build__stat-label {
  font-size: clamp(22px, 1.5vw, 22px);
  font-weight: 500;
  color: var(--color-text);
}

.dt-build__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =====================
   EMPOWERING SECTION (Dark)
   ===================== */
.dt-empower {
  padding: 80px 0;
  background: var(--color-bg-dark, #000000);
  border-radius: 24px;
}

.dt-empower__label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

.dt-empower__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
}

.dt-empower__accent {
  background: linear-gradient(to right, var(--color-primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dt-empower__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff; /* intentional: muted text on dark bg */
  margin-bottom: 48px;
}

.dt-empower__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.dt-empower__stat-line {
  width: 95px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 20px;
}

.dt-empower__stat-value {
  display: block;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.02rem;
}

.dt-empower__stat-label {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff; /* intentional: muted text on dark bg */
  line-height: 1.4;
}

/* =====================
   HOW IT WORKS SECTION
   ===================== */
.dt-how {
  padding: 80px 0;
  background: #fff;
}

.dt-how__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 48px;
}

.dt-how__steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.dt-how__step {
  flex: 1;
}

.dt-how__number {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 20px;
}

.dt-how__step-title {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.02rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 16px;
}

.dt-how__step-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 320px;
}

.dt-how__divider {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 40px 0 0;
  margin-top: 20px;
  align-self: center;
}

.dt-how__divider svg {
  display: block;
}

.dt-how__cta {
  margin-top: 48px;
}

/* =====================
   CORE VALUES SECTION
   ===================== */
.dt-values {
  padding: 80px 0;
  background: #fff;
}

.dt-values__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.dt-values__header {
  position: sticky;
  top: 100px;
}

.dt-values__label {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}

.dt-values__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.dt-values__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
}

.dt-values__cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.dt-values__cards:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background-image: radial-gradient(var(--color-primary), transparent 60%);
  left: 50%;
  transform: translateX(-50%);
}

.dt-values__cards:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-image: radial-gradient(var(--color-primary), transparent 60%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dt-values__card {
  padding: 0;
}

.dt-values__card-icon {
  width: 65px;
  height: 65px;
  background: #ddeafb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dt-values__card-icon svg,
.dt-values__card-icon img {
  width: 45px;
  height: 45px;
}

.dt-values__card-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.dt-values__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* =====================
   CASE STUDY SECTION
   ===================== */
.dt-case {
  padding: 80px 0;
  background: #fff;
}

.dt-case__box {
  display: flex;
  align-items: center;
  gap: 60px;
  background: url("https://deltadots.com/wp-content/uploads/2026/02/dd-bg.webp")
    center/cover no-repeat;
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.dt-case__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.dt-case__label {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}

.dt-case__title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
  max-width: 400px;
}

.dt-case__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ccc; /* intentional: light text on dark bg image */
  margin-bottom: 32px;
  max-width: 420px;
}

.dt-case__image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

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

/* =====================
   RESPONSIVE — Tablet (≤ 1023px)
   ===================== */
@media (max-width: 1023px) {
  /* Solutions */
  .dt-solutions {
    padding: 60px 0;
  }

  .dt-solutions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .dt-solutions__header {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 16px;
  }

  .dt-solutions__desc {
    max-width: 500px;
  }

  /* Teams Carousel */
  .dt-teams {
    padding: 60px 0;
  }

  .dt-teams__header {
    flex-direction: column;
    gap: 20px;
  }

  .dt-teams__slider {
    padding: 0 30px;
  }

  .dt-teams__swiper:not(.swiper-initialized) .dt-teams__slide {
    flex: 0 0 calc(100% / 1.3 - 24px * 0.3 / 1.3);
  }

  .dt-teams__card {
    padding: 32px 24px;
    gap: 40px;
  }

  .dt-teams__card-image {
    flex: 1 1 40%;
  }

  /* Build */
  .dt-build {
    padding: 60px 0;
  }

  .dt-build__title {
    line-height: 1.15;
  }

  /* Empower */
  .dt-empower {
    padding: 60px 0;
  }

  .dt-empower__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .dt-empower__stat-label {
    font-size: 18px;
  }

  /* How It Works */
  .dt-how {
    padding: 60px 0;
  }

  .dt-how__divider {
    padding: 0 16px;
  }

  .dt-how__step-desc {
    font-size: 16px;
  }

  /* Core Values */
  .dt-values {
    padding: 60px 0;
  }

  .dt-values__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dt-values__header {
    position: static;
  }

  .dt-values__cards {
    gap: 60px 40px;
  }

  /* Case Study */
  .dt-case {
    padding: 60px 0;
  }

  .dt-case__box {
    flex-direction: column;
    padding: 40px 32px;
    gap: 32px;
  }

  .dt-case__title,
  .dt-case__desc {
    max-width: 100%;
  }

  .dt-case__image {
    width: 100%;
    text-align: center;
  }
}

/* =====================
   RESPONSIVE — Mobile (≤ 768px)
   ===================== */
@media (max-width: 768px) {
  /* Solutions */
  .dt-solutions {
    padding: 40px 0;
  }

  .dt-solutions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dt-solutions__header {
    margin-bottom: 12px;
  }

  .dt-solutions__title {
    font-size: 28px;
  }

  .dt-solutions__desc {
    font-size: 15px;
    max-width: 100%;
  }

  .dt-solutions__card {
    padding: 28px 24px;
  }

  .dt-solutions__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .dt-solutions__card-icon svg,
  .dt-solutions__card-icon img {
    width: 40px;
    height: 40px;
  }

  .dt-solutions__card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .dt-solutions__card-desc {
    font-size: 14px;
  }

  /* Teams Carousel */
  .dt-teams {
    padding: 50px 0;
  }

  .dt-teams__title {
    font-size: 26px;
  }

  .dt-teams__slider {
    padding: 0 24px;
  }

  .dt-teams__swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 16px;
  }

  .dt-teams__swiper:not(.swiper-initialized) .dt-teams__slide {
    flex: 0 0 calc(100% / 1.1 - 16px * 0.1 / 1.1);
  }

  .dt-teams__card {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .dt-teams__card-content {
    flex: none;
    width: 100%;
    padding: 28px 20px;
  }

  .dt-teams__card-image {
    flex: none;
    width: 100%;
    height: 220px;
    order: -1;
    border-radius: 12px 12px 0 0;
  }

  .dt-teams__card-image img {
    border-radius: 12px 12px 0 0;
  }

  .dt-teams__card-title {
    font-size: 22px;
  }

  .dt-teams__card-desc {
    font-size: 14px;
  }

  .dt-teams__tag {
    font-size: 13px;
    padding: 4px 14px;
  }

  .dt-teams__card-ctas {
    flex-direction: column;
  }

  /* Flip card — mobile */
  .dt-teams__back-content {
    padding: 0px 20px;
  }

  .dt-teams__back-roles {
    grid-template-columns: repeat(2, auto);
    gap: 8px;
  }

  .dt-teams__back-tag {
    font-size: 13px;
    padding: 6px 16px;
  }

  .dt-teams__back-excerpt,
  .dt-teams__back-desc {
    font-size: 14px;
  }

  /* Build */
  .dt-build {
    padding: 50px 0;
  }

  .dt-build__title {
    font-size: 36px;
    line-height: 1.2;
  }

  .dt-build__desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .dt-build__stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .dt-build__ctas {
    flex-direction: column;
    align-items: center;
  }

  /* Empower */
  .dt-empower {
    padding: 50px 24px;
    border-radius: 20px;
  }

  .dt-empower__title {
    font-size: 24px;
  }

  .dt-empower__stats {
    gap: 24px;
  }

  .dt-empower__stat-value {
    font-size: 32px;
  }

  .dt-empower__stat-label {
    font-size: 14px;
  }

  /* How It Works */
  .dt-how {
    padding: 50px 0;
  }

  .dt-how__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .dt-how__steps {
    flex-direction: column;
    gap: 40px;
  }

  .dt-how__divider {
    display: none;
  }

  .dt-how__number {
    font-size: 40px;
  }

  .dt-how__step-title {
    font-size: 18px;
  }

  .dt-how__step-desc {
    max-width: 100%;
    font-size: 14px;
  }

  /* Core Values */
  .dt-values {
    padding: 50px 0;
  }

  .dt-values__title {
    font-size: 26px;
  }

  .dt-values__desc {
    font-size: 16px;
  }

  .dt-values__cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Hide cross dividers on single column */
  .dt-values__cards:before,
  .dt-values__cards:after {
    display: none;
  }

  .dt-values__card-icon {
    width: 55px;
    height: 55px;
  }

  .dt-values__card-icon svg,
  .dt-values__card-icon img {
    width: 36px;
    height: 36px;
  }

  .dt-values__card-title {
    font-size: 20px;
  }

  .dt-values__card-desc {
    font-size: 14px;
  }

  /* Case Study */
  .dt-case {
    padding: 50px 0;
  }

  .dt-case__box {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .dt-case__title {
    font-size: 24px;
  }

  .dt-case__desc {
    font-size: 14px;
  }
}

/* =====================
   RESPONSIVE — Small Mobile (≤ 480px)
   ===================== */
@media (max-width: 480px) {
  /* Solutions */
  .dt-solutions__grid {
    gap: 16px;
  }

  .dt-solutions__card {
    padding: 24px 20px;
  }

  .dt-solutions__card-icon {
    width: 44px;
    height: 44px;
  }

  .dt-solutions__card-icon svg,
  .dt-solutions__card-icon img {
    width: 36px;
    height: 36px;
  }

  .dt-solutions__card-title {
    font-size: 17px;
  }

  /* Teams — tighter padding */
  .dt-teams__card-content {
    padding: 24px 18px;
  }

  .dt-teams__card-image {
    height: 180px;
  }

  /* Build */
  .dt-build__title {
    font-size: 35px;
  }

  .dt-build__stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Empower */
  .dt-empower {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .dt-empower__title {
    font-size: 22px;
  }

  .dt-empower__stats {
    gap: 20px;
  }

  .dt-empower__stat-value {
    font-size: 28px;
  }

  /* How It Works */
  .dt-how__steps {
    gap: 32px;
  }

  /* Core Values */
  .dt-values__cards {
    gap: 28px;
  }
}
