:root {
  --dl-deep: #071827;
  --dl-navy: #0B263B;
  --dl-text: #111820;
  --dl-mute: #606C76;
  --dl-mist: #F3F5F6;
  --dl-paper: #FFFFFF;
  --dl-signal: #0099D8;
  --dl-hair: #D5DCE1;
  --dl-wrap: 1440px;
  --dl-gutter: 56px;
  --dl-bar: 82px;
  --dl-section: 108px;
}

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

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--dl-paper);
  color: var(--dl-text);
  font-family: Inter, "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
p, h1, h2, h3, ul { margin: 0; }

h1, h2, h3, strong {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.dl-page { background: var(--dl-paper); }

.dl-wrap {
  width: min(var(--dl-wrap), calc(100% - (var(--dl-gutter) * 2)));
  margin-inline: auto;
}

.dl-skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.dl-skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--dl-paper);
}

.dl-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid var(--dl-paper);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dl-act--solid {
  background: var(--dl-paper);
  color: var(--dl-deep);
}

.dl-act--ghost {
  background: rgba(255,255,255,.08);
  color: var(--dl-paper);
}

.dl-act:hover { opacity: .9; }

.dl-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0A3A52;
}

.dl-more::after { content: "→"; font-weight: 400; }

.dl-section-more { margin-top: 22px; }

.dl-work__lead {
  max-width: 62ch;
  margin: 0 0 28px;
  color: var(--dl-mute);
  font-size: 17px;
}

.dl-reason .dl-kicker { color: #006B96; }

.dl-kicker {
  margin-bottom: 18px;
  color: #006B96;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* Header */
.dl-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--dl-bar);
  background: #F3F5F6;
  border-bottom: 1px solid #E4E8EB;
  transition: height .18s ease, box-shadow .18s ease;
}

.dl-bar.is-tight {
  height: 72px;
  box-shadow: 0 8px 22px rgba(7, 24, 39, .06);
}

.dl-bar__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 24px;
  min-width: 0;
}

.dl-bar__brand img {
  width: 184px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.dl-bar__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  min-width: 0;
}

.dl-bar__nav > .dl-nav-item {
  flex: 0 0 auto;
  min-width: 0;
}

.dl-bar__nav > .dl-nav-item > a {
  position: relative;
  padding: 10px 12px;
  color: #111820;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.dl-bar__nav > .dl-nav-item > a:hover {
  color: #008FD0;
}

.dl-bar__nav > .dl-nav-item > a.is-active {
  color: #008FD0;
}

.dl-bar__nav > .dl-nav-item > a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: #008FD0;
}

.dl-bar__tools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.dl-bar__phone {
  color: #111820;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.dl-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 46px;
  padding: 0 18px;
  border-radius: 5px;
  background: #008FD0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}

.dl-bar__cta:hover { opacity: .92; color: #FFFFFF; }

.dl-bar__burger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid #008FD0;
  border-radius: 10px;
  background: #008FD0;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(0, 143, 208, .22);
  cursor: pointer;
  transition: all .22s ease;
}

.dl-bar__burger-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
}

.dl-bar__burger-box span {
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #FFFFFF;
  transform-origin: center;
  transition:
    transform .25s cubic-bezier(.2, .7, .2, 1),
    opacity .25s cubic-bezier(.2, .7, .2, 1),
    top .25s cubic-bezier(.2, .7, .2, 1),
    background-color .22s ease;
}

.dl-bar__burger-box span:nth-child(1) { top: 0; }
.dl-bar__burger-box span:nth-child(2) { top: 7px; }
.dl-bar__burger-box span:nth-child(3) { top: 14px; }

@media (hover: hover) and (pointer: fine) {
  .dl-bar__burger:hover {
    background: #0A9FE0;
    border-color: #0A9FE0;
    color: #FFFFFF;
    transform: translateY(-1px);
  }
}

.dl-bar__burger:active {
  background: #0A9FE0;
  border-color: #0A9FE0;
}

.dl-bar__burger[aria-expanded="true"] {
  background: #008FD0;
  border-color: #008FD0;
  color: #FFFFFF;
  transform: none;
  box-shadow: 0 8px 20px rgba(0, 143, 208, .28);
}

.dl-bar__burger[aria-expanded="true"] .dl-bar__burger-box span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.dl-bar__burger[aria-expanded="true"] .dl-bar__burger-box span:nth-child(2) {
  opacity: 0;
}

.dl-bar__burger[aria-expanded="true"] .dl-bar__burger-box span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.dl-bar__burger:focus-visible {
  outline: 2px solid #008FD0;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .dl-bar__burger,
  .dl-bar__burger-box span {
    transition: none !important;
  }
}

/* Premium mobile drawer */
.dl-drawer {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
  visibility: hidden;
}

.dl-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.dl-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(5, 24, 39, .48);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  opacity: 0;
  cursor: pointer;
  transition: opacity .3s ease;
}

.dl-drawer.is-open .dl-drawer__overlay {
  opacity: 1;
}

.dl-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(88vw, 390px);
  height: 100dvh;
  max-height: 100%;
  background: #F7F9FA;
  box-shadow: -18px 0 50px rgba(7, 24, 39, .14);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.dl-drawer.is-open .dl-drawer__panel {
  transform: translateX(0);
}

.dl-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  height: 74px;
  padding: 0 16px;
  border-bottom: 1px solid #E8EDF0;
  background: #FFFFFF;
}

.dl-drawer__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.dl-drawer__brand img {
  display: block;
  width: auto;
  max-width: 132px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
}

.dl-drawer__close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: background-color .2s ease;
}

.dl-drawer__close span {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 50%;
  height: 1.5px;
  background: #17212B;
  border-radius: 1px;
}

.dl-drawer__close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.dl-drawer__close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.dl-drawer__close:hover,
.dl-drawer__close:active {
  background: rgba(0, 143, 208, .08);
}

.dl-drawer__close:focus-visible {
  outline: 2px solid #008FD0;
  outline-offset: 2px;
}

.dl-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.dl-drawer__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 8px 0 12px;
}

.dl-drawer__link,
.dl-mnav__root {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid #E8EDF0;
  background: transparent;
  color: #17212B;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease;
}

.dl-drawer__link:hover,
.dl-drawer__link:active,
.dl-mnav__root:hover,
.dl-mnav__root:active {
  background: rgba(0, 143, 208, .055);
  color: #008FD0;
}

.dl-drawer__link.is-active,
.dl-drawer__link[aria-current="page"] {
  color: #008FD0;
  background: linear-gradient(90deg, rgba(0, 143, 208, .10), transparent);
  box-shadow: inset 3px 0 0 #008FD0;
}

.dl-drawer__link:focus-visible,
.dl-mnav__root:focus-visible,
.dl-mnav__sub:focus-visible,
.dl-mnav__all:focus-visible,
.dl-mnav__svc:focus-visible,
.dl-mnav__cat-btn:focus-visible,
.dl-drawer__cta:focus-visible,
.dl-drawer__phone:focus-visible {
  outline: 2px solid #008FD0;
  outline-offset: -2px;
}

.dl-drawer__foot {
  flex: 0 0 auto;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #E8EDF0;
  background: #FFFFFF;
}

.dl-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 49px;
  border-radius: 8px;
  background: #008FD0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .22s ease, opacity .22s ease;
}

.dl-drawer__cta:hover {
  background: #007bb8;
  color: #fff;
}

.dl-drawer__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  color: #5F6C76;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.dl-drawer__phone:hover {
  color: #008FD0;
}

.dl-drawer__phone-ico {
  display: inline-flex;
  color: currentColor;
}

.dl-drawer__phone-ico .footer-icon-svg {
  width: 15px;
  height: 15px;
  display: block;
}

body.dl-menu-open {
  overflow: hidden;
  touch-action: none;
}

body.dl-menu-open .dl-contact-dock,
body.dl-menu-open .dl-scroll-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .2s ease, visibility .2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .dl-drawer__overlay,
  .dl-drawer__panel,
  .dl-drawer__link,
  .dl-mnav__root,
  .dl-mnav__chev {
    transition: none !important;
  }
}

/* Hero */
.dl-stage {
  position: relative;
  min-height: 760px;
  height: min(86vh, 860px);
  color: var(--dl-paper);
  overflow: hidden;
  background: var(--dl-deep);
}

.dl-stage__media {
  position: absolute;
  inset: 0;
}

/* Critical LCP path: first hero slide visible before prod-extra.css loads */
.dl-stage [data-hero-slide] {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  visibility: hidden;
  transition: opacity .55s ease;
}

.dl-stage [data-hero-slide].active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.dl-stage [data-hero-slide] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.dl-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.dl-stage__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,39,.56) 0%, rgba(7,24,39,.18) 46%, rgba(7,24,39,.06) 100%),
    linear-gradient(180deg, rgba(7,24,39,.06) 0%, rgba(7,24,39,.58) 100%);
}

.dl-stage__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  height: 100%;
  padding: 120px 0 118px;
}

.dl-stage h1 {
  max-width: 14ch;
  font-size: 74px;
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.04;
}

.dl-stage h1 span { display: block; }

.dl-stage__lead {
  max-width: 40ch;
  margin-top: 26px;
  color: rgba(255,255,255,.88);
  font-size: 22px;
  line-height: 1.55;
}

.dl-stage__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.dl-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(7,24,39,.68);
}

.dl-rail__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 76px;
}

.dl-rail span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 8px;
  border-left: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

.dl-rail span:first-child { border-left: 0; padding-left: 0; }

/* Referans logo bandı */
.dl-logos {
  padding: 30px 0 34px;
  background: #F7F8F9;
  border-bottom: 1px solid #E4E8EB;
  overflow: hidden;
}

.dl-logos__label {
  margin: 0 0 16px;
  color: #0B263B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-logos__band {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.dl-logos__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  min-height: 100px;
  will-change: transform;
}

.dl-logos__track.is-run {
  animation: dl-logo-marquee var(--dl-logo-dur, 36s) linear infinite;
}

.dl-logos__band:hover .dl-logos__track.is-run {
  animation-play-state: paused;
}

.dl-logo-item {
  flex: 0 0 280px;
  width: 280px;
}

.dl-logo-frame {
  width: 260px;
  height: 100px;
  margin: 0 auto;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.dl-logo-frame img {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: .84;
  transition: opacity 240ms ease-out, filter 240ms ease-out, transform 240ms ease-out;
}

.dl-logo-frame span {
  display: block;
  max-width: 100%;
  color: var(--dl-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: break-word;
}

.dl-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

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

/* Hakkımızda */
.dl-firm {
  padding: 68px 0;
  background: var(--dl-paper);
}

.dl-firm__grid {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  gap: 48px;
  align-items: center;
}

.dl-firm h2 {
  max-width: none;
  margin: 12px 0 22px;
  font-size: 46px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.dl-firm__copy p:not(.dl-kicker) {
  max-width: none;
  color: var(--dl-mute);
  font-size: 20px;
  line-height: 1.7;
}

.dl-firm__frame {
  margin: 0;
  aspect-ratio: 5 / 4;
  max-height: 620px;
  overflow: hidden;
  background: var(--dl-navy);
}

.dl-firm__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hizmetler */
.dl-skill {
  padding: 100px 0;
  background: var(--dl-mist);
}

.dl-skill__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px 48px;
  align-items: end;
  margin-bottom: 48px;
}

.dl-skill h2 {
  max-width: 16em;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.dl-skill__note {
  max-width: 46ch;
  margin-top: 16px;
  color: var(--dl-mute);
  font-size: 18px;
  line-height: 1.6;
}

.dl-skill__head .dl-section-more { margin-top: 0; }

.dl-skill__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.dl-offer {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  color: inherit;
}

.dl-offer__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce3e8;
  border-radius: 4px;
}

.dl-offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.dl-offer__copy h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.dl-offer__copy p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
  color: var(--dl-mute);
  font-size: 16px;
  line-height: 1.6;
}

.dl-offer .dl-more {
  margin-top: 12px;
  color: #006B96;
}

.dl-offer:hover h3 { color: var(--dl-navy); }

/* Projeler */
.dl-work {
  padding: 110px 0;
  background: #F7F8F8;
}

.dl-work__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px 48px;
  align-items: end;
  margin-bottom: 72px;
}

.dl-work__head .dl-section-more { margin-top: 0; }

.dl-work h2 {
  max-width: 16em;
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.dl-work .dl-work__lead {
  max-width: 48ch;
  margin: 16px 0 0;
}

.dl-work__list {
  display: grid;
  gap: 96px;
}

.dl-study {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px 56px;
  align-items: center;
  min-width: 0;
  color: inherit;
}

.dl-study--alt {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.dl-study--alt .dl-study__copy { order: 1; }
.dl-study--alt .dl-study__media { order: 2; }

.dl-study__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E8ECF0;
  border-radius: 2px;
}

.dl-study__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.dl-study__media--contain img {
  object-fit: contain;
  object-position: center;
}

.dl-study__copy {
  position: relative;
  isolation: isolate;
  z-index: 1;
  min-width: 0;
  padding-top: 8px;
}

.dl-study__num {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 0;
  color: rgba(11, 38, 59, .07);
  font-size: 88px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: .8;
  pointer-events: none;
}

.dl-study__tag {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--dl-mute);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dl-study h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.dl-study p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--dl-mute);
  font-size: 17px;
  line-height: 1.65;
}

.dl-study .dl-more {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: #006B96;
}

/* Sektörler */
.dl-fields {
  padding: var(--dl-section) 0;
  background: var(--dl-mist);
}

.dl-fields h2 {
  margin: 12px 0 40px;
  font-size: 48px;
  letter-spacing: -0.035em;
}

.dl-fields__row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(180px, auto);
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid #D0D7DC;
  transition: color .15s ease;
}

.dl-fields__row:last-child { border-bottom: 1px solid #D0D7DC; }

.dl-fields__row b {
  color: var(--dl-mute);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.dl-fields__row strong {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.dl-fields__row span {
  color: var(--dl-mute);
  font-size: 16px;
  text-align: right;
}

.dl-fields__row:hover strong { color: var(--dl-navy); }
.dl-fields__row:hover b { color: var(--dl-signal); }

/* Neden Dolphin */
.dl-reason {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #071827;
  color: var(--dl-paper);
}

.dl-reason::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.dl-reason::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -8%;
  width: 42%;
  height: 76%;
  border: 1px solid rgba(0, 153, 216, .12);
  transform: rotate(18deg);
  pointer-events: none;
}

.dl-reason__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .4fr) minmax(0, .6fr);
  gap: 64px 80px;
  align-items: start;
}

.dl-reason__intro { max-width: 16em; }

.dl-reason h2 {
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.dl-reason__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: border-color .2s ease;
}

.dl-reason__item:first-child { border-top: 1px solid rgba(255,255,255,.12); }

.dl-reason__item b {
  color: rgba(255,255,255,.38);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.dl-reason__item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: color .2s ease;
}

.dl-reason__item p {
  margin-top: 8px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.65;
}

.dl-reason__item i {
  color: rgba(255,255,255,.35);
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  transition: transform .2s ease, color .2s ease;
}

.dl-reason__item:hover { border-color: rgba(0, 153, 216, .45); }
.dl-reason__item:hover strong { color: var(--dl-signal); }
.dl-reason__item:hover i {
  color: var(--dl-signal);
  transform: translateX(4px);
}

@media (hover: none) {
  .dl-reason__item:hover { border-color: rgba(255,255,255,.12); }
  .dl-reason__item:hover strong { color: inherit; }
  .dl-reason__item:hover i { color: rgba(255,255,255,.35); transform: none; }
}

/* Blog — editorial insights (compact) */
.dl-insights {
  --dl-insights-accent: #008FD0;
  padding: 80px 0;
  background: #F7F9FA;
}

.dl-insights__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.dl-insights__kicker {
  margin: 0 0 8px;
  color: #006B96;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dl-insights__head h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--dl-deep);
}

.dl-insights__lede {
  margin: 10px 0 0;
  max-width: 48ch;
  color: var(--dl-mute);
  font-size: 15px;
  line-height: 1.55;
}

.dl-insights__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dl-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 143, 208, .45);
  padding-bottom: 4px;
  transition: color .25s ease-out, border-color .25s ease-out;
}

.dl-insights__all:hover {
  color: var(--dl-insights-accent);
  border-color: var(--dl-insights-accent);
}

.dl-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dl-insights__card {
  min-width: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1), transform .45s cubic-bezier(.22, 1, .36, 1);
}

.dl-insights.is-in .dl-insights__card {
  opacity: 1;
  transform: none;
}

.dl-insights.is-in .dl-insights__card:nth-child(1) { transition-delay: 0s; }
.dl-insights.is-in .dl-insights__card:nth-child(2) { transition-delay: .045s; }
.dl-insights.is-in .dl-insights__card:nth-child(3) { transition-delay: .09s; }

.dl-insights__hit {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(7, 24, 39, .07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  transition: transform .28s ease-out, border-color .28s ease-out, box-shadow .28s ease-out;
}

.dl-insights__media {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #E8EEF2;
}

.dl-insights__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease-out;
}

.dl-insights__media.is-empty {
  display: grid;
  place-items: center;
  color: rgba(7, 24, 39, .28);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dl-insights__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 16px 18px;
}

.dl-insights__body time {
  color: var(--dl-mute);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.dl-insights__body h3 {
  margin: 0;
  color: var(--dl-deep);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  overflow-wrap: break-word;
  transition: color .25s ease-out;
}

.dl-insights__body p {
  margin: 0;
  color: var(--dl-mute);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dl-insights__link {
  margin-top: 4px;
  color: var(--dl-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color .25s ease-out;
}

@media (hover: hover) {
  .dl-insights__hit:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 143, 208, .24);
    box-shadow: 0 8px 20px rgba(7, 24, 39, .05);
  }

  .dl-insights__hit:hover .dl-insights__media img {
    transform: scale(1.03);
  }

  .dl-insights__hit:hover h3,
  .dl-insights__hit:hover .dl-insights__link {
    color: var(--dl-insights-accent);
  }
}

/* CTA — premium close band with action panel */
.dl-ask {
  --dl-ask-accent: #008FD0;
  position: relative;
  overflow: clip;
  color: #fff;
  background: linear-gradient(115deg, #061725 0%, #09263A 65%, #0A3047 100%);
}

.dl-ask__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 46% 78% at 88% 42%, rgba(0, 143, 208, .16) 0%, transparent 68%),
    radial-gradient(ellipse 34% 56% at 12% 88%, rgba(255, 255, 255, .04) 0%, transparent 62%);
}

.dl-ask__fx::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -30%;
  width: 52%;
  height: 160%;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
  transform: rotate(12deg);
}

.dl-ask__fx::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: 18%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 143, 208, .22), transparent);
  opacity: .7;
}

.dl-ask__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: 36px 48px;
  align-items: center;
  padding: 72px 0;
  min-height: 0;
}

.dl-ask__copy {
  min-width: 0;
}

.dl-ask__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--dl-ask-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
}

.dl-ask__bar {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--dl-ask-accent);
  flex-shrink: 0;
}

.dl-ask h2 {
  margin: 0;
  max-width: 12.5em;
  color: #fff;
  font-size: clamp(40px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  overflow-wrap: break-word;
  opacity: 0;
  transform: translateY(12px);
}

.dl-ask__lede {
  margin: 16px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
}

.dl-ask__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(10px);
}

.dl-ask__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.3;
}

.dl-ask__trust li + li {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.dl-ask__trust svg {
  color: var(--dl-ask-accent);
  flex-shrink: 0;
}

.dl-ask__panel {
  position: relative;
  min-width: 0;
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
  opacity: 0;
  transform: translateX(12px);
}

.dl-ask__deco {
  position: absolute;
  right: -18px;
  top: -22px;
  width: 118px;
  height: 118px;
  color: rgba(0, 143, 208, .55);
  opacity: .08;
  pointer-events: none;
}

.dl-ask__panel-kicker {
  position: relative;
  margin: 0 0 10px;
  color: var(--dl-ask-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dl-ask__panel h3 {
  position: relative;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.dl-ask__panel-acts {
  position: relative;
  display: grid;
  gap: 12px;
}

.dl-ask__btn,
.dl-ask__btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .26s ease-out, color .26s ease-out, border-color .26s ease-out, transform .26s ease-out, box-shadow .26s ease-out;
}

.dl-ask__btn {
  background: #008FD0;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}

.dl-ask__btn-wa {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
}

.dl-ask__btn-ico {
  display: block;
  flex-shrink: 0;
}

.dl-ask.is-in .dl-ask__kicker,
.dl-ask.is-in h2,
.dl-ask.is-in .dl-ask__lede,
.dl-ask.is-in .dl-ask__trust,
.dl-ask.is-in .dl-ask__panel {
  opacity: 1;
  transform: none;
}

.dl-ask.is-in .dl-ask__kicker {
  transition: opacity .44s ease-out, transform .44s ease-out;
}

.dl-ask.is-in h2 {
  transition: opacity .46s ease-out .045s, transform .46s ease-out .045s;
}

.dl-ask.is-in .dl-ask__lede {
  transition: opacity .46s ease-out .09s, transform .46s ease-out .09s;
}

.dl-ask.is-in .dl-ask__trust {
  transition: opacity .46s ease-out .09s, transform .46s ease-out .09s;
}

.dl-ask.is-in .dl-ask__panel {
  transition: opacity .46s ease-out .09s, transform .46s ease-out .09s;
}

@media (hover: hover) {
  .dl-ask__btn:hover {
    background: #19a0db;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
  }

  .dl-ask__btn-wa:hover {
    border-color: var(--dl-ask-accent);
    color: var(--dl-ask-accent);
    transform: translateY(-2px);
  }
}

/* Footer */
.dl-end {
  padding: 0 0 0;
  background: var(--dl-deep);
  color: rgba(255,255,255,.72);
}

.dl-end__top {
  display: grid;
  grid-template-columns: minmax(140px, .19fr) minmax(0, .59fr) minmax(150px, .22fr);
  gap: 20px 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 36px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: transparent;
}

.dl-end__brand,
.dl-end__intro,
.dl-end__follow {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--dl-end-d, 0) * 80ms);
}

.dl-end.is-in .dl-end__brand,
.dl-end.is-in .dl-end__intro,
.dl-end.is-in .dl-end__follow {
  opacity: 1;
  transform: none;
}

.dl-end__brand {
  display: flex;
  align-items: center;
}

.dl-end__brand img {
  display: block;
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 44px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

.dl-end__intro {
  min-width: 0;
}

.dl-end__blurb {
  margin: 0;
  max-width: none;
  color: #F2F5F7;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.dl-end__loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
}

.dl-end__loc .footer-icon-svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  opacity: .7;
}

.dl-end__follow {
  justify-self: end;
  text-align: left;
}

.dl-end__follow-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,.55);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
}

.dl-end__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.dl-end__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.88);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .5s ease,
    transform .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
  transition-delay: calc(120ms + var(--dl-end-d, 0) * 55ms);
}

.dl-end.is-in .dl-end__social-btn {
  opacity: 1;
  transform: none;
}

.dl-end__social-btn .footer-icon-svg {
  width: 17px;
  height: 17px;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .dl-end__social-btn:hover {
    background: rgba(0, 143, 208, .10);
    border-color: rgba(0, 143, 208, .55);
    color: #fff;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dl-end__brand,
  .dl-end__intro,
  .dl-end__follow,
  .dl-end__social-btn {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.dl-end__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0;
}

.dl-end__links h3 {
  margin-bottom: 14px;
  color: var(--dl-paper);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dl-end__links a {
  display: block;
  margin-top: 10px;
  font-size: 17px;
}

.dl-end__links a:hover { color: var(--dl-signal); }


.dl-end__links a,
.dl-end__links .dl-end__label,
.dl-end__links .dl-end__address {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.dl-end__label {
  color: rgba(255,255,255,.72);
}

.dl-end__address {
  color: rgba(255,255,255,.62);
  max-width: 28ch;
}

.dl-end__more {
  margin-top: 16px !important;
  color: var(--dl-paper);
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .04em;
}

.dl-end__more i {
  display: inline-block;
  color: var(--dl-signal);
  transition: transform .22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .dl-end__more:hover i {
    transform: translateX(4px);
  }
}

.dl-end__base {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.dl-end__base .yusensoft-credit {
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.dl-end__base .yusensoft-credit:hover,
.dl-end__base .yusensoft-credit:focus-visible {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (max-width: 1440px) {
  :root { --dl-gutter: 48px; --dl-section: 100px; }
  .dl-stage h1 { font-size: 68px; }
}

@media (max-width: 1366px) {
  .dl-stage { min-height: 720px; height: 720px; }
  .dl-stage h1 { font-size: 62px; }
  .dl-reason h2 { font-size: 48px; }
  .dl-bar__inner { gap: 16px; }
  .dl-bar__nav { gap: 0; }
  .dl-bar__nav > .dl-nav-item > a { padding: 10px 8px; font-size: 14px; }
  .dl-bar__phone { display: none; }
  .dl-bar__brand img { width: 168px; height: 44px; }
}

@media (max-width: 1280px) {
  :root { --dl-bar: 66px; }
  .dl-bar.is-tight { height: 62px; }
  .dl-bar__nav { display: none !important; }
  .dl-bar__burger { display: inline-flex; }
  .dl-bar__cta { display: none !important; }

  .dl-bar > .dl-wrap.dl-bar__inner,
  .dl-bar__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 14px;
    box-sizing: border-box;
    gap: 8px;
    grid-template-columns: none;
  }

  .dl-bar__brand {
    flex: 0 0 auto;
    flex-shrink: 0;
    margin-right: 0;
  }

  .dl-bar__tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .dl-bar__brand img {
    width: auto;
    max-width: min(148px, 34vw);
    height: auto;
    max-height: 36px;
  }
}

@media (max-width: 1366px) {
  .dl-end__blurb {
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  :root { --dl-gutter: 32px; --dl-section: 80px; }
  .dl-firm__grid,
  .dl-reason__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .dl-end__top {
    grid-template-columns: minmax(130px, .22fr) minmax(0, .55fr) minmax(140px, .23fr);
    gap: 16px 20px;
    padding-top: 38px;
    padding-bottom: 32px;
  }
  .dl-end__follow { justify-self: end; }
  .dl-skill__head,
  .dl-work__head {
    grid-template-columns: 1fr;
  }
  .dl-skill__grid { grid-template-columns: 1fr 1fr; }
  .dl-firm__frame {
    aspect-ratio: 4 / 3;
    max-height: 560px;
    width: 100%;
  }
  .dl-firm__frame img { min-height: 0; }
  .dl-fields__row {
    grid-template-columns: 56px 1fr;
  }
  .dl-fields__row span {
    grid-column: 2;
    text-align: left;
  }
  .dl-fields__row strong { font-size: 28px; }
}

@media (max-width: 1023px) {
  .dl-end__top {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 18px;
  }

  .dl-end__follow {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 1024px) {
  :root { --dl-bar: 66px; }
  .dl-bar.is-tight { height: 62px; }
  .dl-bar__nav { display: none !important; }
  .dl-bar__burger { display: inline-flex; }
  .dl-rail__inner { grid-template-columns: 1fr 1fr; }
  .dl-end__links { grid-template-columns: 1fr 1fr; }
  .dl-firm__frame { max-height: 540px; }
}

@media (max-width: 768px) {
  :root { --dl-gutter: 24px; --dl-section: 64px; }
  .dl-stage { min-height: 640px; height: auto; }
  .dl-stage__media img { object-position: center 40%; }
  .dl-stage__copy { padding: 96px 0 148px; }
  .dl-stage h1 { font-size: 42px; }
  .dl-stage__lead { font-size: 19px; }
  body { font-size: 17px; }
  .dl-firm h2,
  .dl-skill h2,
  .dl-work h2,
  .dl-fields h2 { font-size: 34px; }
  .dl-firm { padding: 64px 0; }
  .dl-firm__frame {
    aspect-ratio: 4 / 3;
    max-height: none;
    width: 100%;
  }
  .dl-reason h2 { font-size: 36px; }
  .dl-study h3 { font-size: 26px; }
  .dl-skill,
  .dl-work { padding: 72px 0; }
  .dl-skill__grid { grid-template-columns: 1fr; gap: 28px; }
  .dl-work__list { gap: 64px; }
  .dl-study,
  .dl-study--alt { grid-template-columns: 1fr; }
  .dl-study--alt .dl-study__copy,
  .dl-study--alt .dl-study__media { order: 0; }
  .dl-study__media { order: 0; }
  .dl-study__copy { order: 1; }
  .dl-study__num {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 42px;
    color: rgba(11, 38, 59, .16);
  }
  .dl-reason { padding: 76px 0; }
  .dl-reason__item { grid-template-columns: 40px minmax(0, 1fr); }
  .dl-reason__item i { display: none; }
  .dl-stage__acts { display: grid; grid-template-columns: 1fr; }
  .dl-ask__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 0;
  }
  .dl-ask h2 {
    max-width: none;
    font-size: 34px;
  }
  .dl-ask__lede { font-size: 15px; }
  .dl-ask__trust {
    gap: 12px 0;
    flex-direction: column;
  }
  .dl-ask__trust li + li {
    padding-left: 0;
    border-left: 0;
  }
  .dl-ask__panel { width: 100%; padding: 24px 22px; }
  .dl-ask__panel-acts { grid-template-columns: 1fr; }
  .dl-ask__btn,
  .dl-ask__btn-wa { min-height: 52px; }
  .dl-act { width: 100%; }
  .dl-bar__cta { width: auto; min-width: 108px; height: 40px; padding: 0 12px; font-size: 11.5px; }
  .dl-logo-item { flex-basis: 190px; width: 190px; }
  .dl-logo-frame { width: 180px; height: 76px; padding: 3px 6px; }
  .dl-logo-frame img { max-width: 92%; max-height: 68px; }
  .dl-logos__track { gap: 36px; min-height: 76px; }
  .dl-logos { min-height: 0; padding: 24px 0 28px; }
  .dl-logos__label {
    font-size: 11px;
    letter-spacing: 0.16em;
    white-space: normal;
  }

  .dl-end__top {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0 28px;
    align-items: start;
  }

  .dl-end__brand img {
    max-width: 148px;
    max-height: 40px;
  }

  .dl-end__blurb {
    font-size: 15px;
    white-space: normal;
  }

  .dl-end__follow {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .dl-end__links { grid-template-columns: 1fr; }
  .dl-rail__inner { min-height: 112px; }
  .dl-rail span { font-size: 11px; letter-spacing: 0.12em; }
  .dl-fields__row strong { font-size: 24px; }
}

@media (max-width: 430px) {
  :root { --dl-gutter: 20px; --dl-section: 56px; }
  .dl-stage h1 { font-size: 36px; }
  .dl-bar__brand img { width: 148px; height: 38px; }
}

@media (max-width: 390px) {
  .dl-bar__cta {
    min-width: 108px;
    height: 40px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dl-logos__track.is-run { animation: none; }
}

/* Homepage projects — editorial cases + why vars */
.dw-why {
  --dx-deep: #071827;
  --dx-signal: #008FD0;
  --dx-ease: cubic-bezier(.22, 1, .36, 1);
}

/* Projects — equal 3x2 case grid */
.dl-cases {
  --dl-cases-accent: #008FD0;
  padding: 88px 0;
  background: #F3F6F8;
}

.dl-cases__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.dl-cases__kicker {
  margin: 0 0 10px;
  color: #006B96;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dl-cases__head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--dl-deep);
}

.dl-cases__lede {
  margin: 12px 0 0;
  max-width: 48ch;
  color: var(--dl-mute);
  font-size: 16px;
  line-height: 1.55;
}

.dl-cases__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dl-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 143, 208, .45);
  padding-bottom: 4px;
  transition: color .25s ease-out, border-color .25s ease-out;
}

.dl-cases__all:hover {
  color: var(--dl-cases-accent);
  border-color: var(--dl-cases-accent);
}

.dl-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dl-cases__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(7, 24, 39, .08);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1), transform .28s ease-out, border-color .28s ease-out, box-shadow .28s ease-out;
}

.dl-cases.is-in .dl-cases__card {
  opacity: 1;
  transform: none;
}

.dl-cases.is-in .dl-cases__card:nth-child(1) { transition-delay: 0s; }
.dl-cases.is-in .dl-cases__card:nth-child(2) { transition-delay: .045s; }
.dl-cases.is-in .dl-cases__card:nth-child(3) { transition-delay: .09s; }
.dl-cases.is-in .dl-cases__card:nth-child(4) { transition-delay: 0s; }
.dl-cases.is-in .dl-cases__card:nth-child(5) { transition-delay: .045s; }
.dl-cases.is-in .dl-cases__card:nth-child(6) { transition-delay: .09s; }

.dl-cases__media {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.dl-cases__media:focus {
  outline: none;
}

.dl-cases__thumb {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E4EBEF;
}

.dl-cases__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease-out;
}

.dl-cases__thumb.is-empty {
  display: grid;
  place-items: center;
  color: rgba(7, 24, 39, .28);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dl-cases__card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 20px;
  min-width: 0;
  flex: 1;
}

.dl-cases__tag {
  margin: 0;
  color: var(--dl-cases-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dl-cases__card h3 {
  margin: 0;
  color: var(--dl-deep);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.dl-cases__title-link {
  color: inherit;
  text-decoration: none;
  transition: color .22s ease-out;
}

.dl-cases__title-link:hover {
  color: var(--dl-cases-accent);
}

.dl-cases__title-link:focus {
  outline: none;
}

.dl-cases__title-link:focus-visible {
  outline: 2px solid var(--dl-cases-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.dl-cases__card-body p {
  margin: 0;
  color: var(--dl-mute);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dl-cases__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  width: fit-content;
  color: var(--dl-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color .25s ease-out;
}

@media (hover: hover) {
  .dl-cases__card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 143, 208, .28);
    box-shadow: 0 12px 26px rgba(7, 24, 39, .06);
    transition-delay: 0s;
  }

  .dl-cases__card:hover .dl-cases__thumb img {
    transform: scale(1.025);
  }

  .dl-cases__card:hover .dl-cases__title-link,
  .dl-cases__card:hover .dl-cases__link {
    color: var(--dl-cases-accent);
  }
}
.dw-why {
  --dw-why-accent: #008FD0;
  --dw-why-accent-mid: #37B8F2;
  --dw-why-accent-soft: #7ED7FF;
  position: relative;
  overflow: clip;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 70% at 92% 18%, rgba(0, 143, 208, .16) 0%, transparent 60%),
    linear-gradient(160deg, #071827 0%, #0A1F30 55%, #0B2436 100%);
  padding: 64px 0;
}

.dw-why-shell {
  display: grid;
  grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
  gap: 28px 36px;
  align-items: center;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
}

.dw-why-copy {
  min-width: 0;
  max-width: 16em;
}

.dw-why-kicker {
  margin: 0 0 12px;
  color: var(--dw-why-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
}

.dw-why-copy h2 {
  margin: 0;
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  overflow-wrap: break-word;
  hyphens: none;
  opacity: 0;
  transform: translateY(12px);
}

.dw-why-lede {
  margin: 14px 0 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
}

.dw-why.is-in .dw-why-kicker,
.dw-why.is-in .dw-why-copy h2,
.dw-why.is-in .dw-why-lede {
  opacity: 1;
  transform: none;
}

.dw-why.is-in .dw-why-kicker {
  transition: opacity .4s var(--dx-ease), transform .4s var(--dx-ease);
}

.dw-why.is-in .dw-why-copy h2 {
  transition: opacity .45s var(--dx-ease) .05s, transform .45s var(--dx-ease) .05s;
}

.dw-why.is-in .dw-why-lede {
  transition: opacity .45s var(--dx-ease) .1s, transform .45s var(--dx-ease) .1s;
}

.dw-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dw-why-card {
  min-width: 0;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s var(--dx-ease), transform .28s ease-out, border-color .28s ease-out, background .28s ease-out;
}

.dw-why.is-in .dw-why-card {
  opacity: 1;
  transform: none;
}

.dw-why.is-in .dw-why-card:nth-child(1) { transition-delay: .08s; }
.dw-why.is-in .dw-why-card:nth-child(2) { transition-delay: .16s; }
.dw-why.is-in .dw-why-card:nth-child(3) { transition-delay: .24s; }
.dw-why.is-in .dw-why-card:nth-child(4) { transition-delay: .32s; }

.dw-why-ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  color: var(--dw-why-accent);
  filter: drop-shadow(0 0 0 transparent);
  transition: color .28s ease-out, transform .28s ease-out, filter .28s ease-out;
}

.dw-why-card:nth-child(1) .dw-why-ico { color: #008FD0; }
.dw-why-card:nth-child(2) .dw-why-ico { color: #37B8F2; }
.dw-why-card:nth-child(3) .dw-why-ico { color: #7ED7FF; }
.dw-why-card:nth-child(4) .dw-why-ico { color: #008FD0; }

.dw-why-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dw-why-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  overflow-wrap: break-word;
  hyphens: none;
}

.dw-why-card p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: break-word;
  hyphens: none;
}

@media (hover: hover) {
  .dw-why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 143, 208, .35);
    background: rgba(255, 255, 255, .055);
    transition-delay: 0s;
  }

  .dw-why-card:hover .dw-why-ico {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(0, 143, 208, .4));
  }

  .dw-why-card:nth-child(2):hover .dw-why-ico {
    filter: drop-shadow(0 0 12px rgba(55, 184, 242, .38));
  }

  .dw-why-card:nth-child(3):hover .dw-why-ico {
    filter: drop-shadow(0 0 12px rgba(126, 215, 255, .36));
  }
}

@media (max-width: 1100px) {
  .dl-cases__grid,
  .dl-insights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .dw-why-shell { width: calc(100% - 40px); }

  .dw-why { padding: 56px 0; }
  .dw-why-shell {
    grid-template-columns: minmax(0, .34fr) minmax(0, .66fr);
    gap: 24px 28px;
  }
  .dw-why-copy h2 { font-size: 32px; }
  .dw-why-grid { gap: 14px; }
  .dw-why-card { padding: 20px 18px 18px; }
  .dw-why-ico { width: 48px; height: 48px; }
  .dw-why-card strong { font-size: 18px; }

  .dl-cases,
  .dl-insights { padding: 72px 0; }
}

@media (max-width: 768px) {
  .dl-cases,
  .dl-insights { padding: 56px 0; }

  .dl-cases__head,
  .dl-insights__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .dl-cases__grid,
  .dl-insights__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dl-cases__card-body,
  .dl-insights__body {
    padding: 16px 16px 18px;
  }

  .dl-insights__body h3 { font-size: 17px; }

  .dw-why { padding: 48px 0; }
  .dw-why-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    gap: 22px;
  }
  .dw-why-copy { max-width: none; }
  .dw-why-copy h2 { font-size: 30px; }
  .dw-why-lede { max-width: 42ch; }
  .dw-why-grid { grid-template-columns: 1fr; gap: 12px; }
  .dw-why-card { padding: 18px 18px 16px; border-radius: 18px; }
  .dw-why-ico { width: 48px; height: 48px; margin-bottom: 12px; }
  .dw-why-card strong { font-size: 18px; }
}

@media (max-width: 430px) {
  .dw-why-shell { width: calc(100% - 40px); }
  .dw-why-copy h2 { font-size: 28px; }
  .dl-cases__head h2,
  .dl-insights__head h2 { font-size: 28px; }
  .dl-ask__inner { padding: 56px 0; }
  .dl-ask h2 { font-size: 30px; }
  .dl-ask__panel-acts { grid-template-columns: 1fr; }
  .dl-ask__btn,
  .dl-ask__btn-wa { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .dl-cases__card,
  .dl-cases__thumb img,
  .dl-insights__card,
  .dl-insights__hit,
  .dl-insights__media img,
  .dl-ask__kicker,
  .dl-ask h2,
  .dl-ask__lede,
  .dl-ask__trust,
  .dl-ask__panel,
  .dl-ask__btn,
  .dl-ask__btn-wa,
  .dw-why-kicker,
  .dw-why-copy h2,
  .dw-why-lede,
  .dw-why-card,
  .dw-why-ico { transition: none !important; }

  .dl-cases__card,
  .dl-insights__card,
  .dl-ask__kicker,
  .dl-ask h2,
  .dl-ask__lede,
  .dl-ask__trust,
  .dl-ask__panel,
  .dw-why-kicker,
  .dw-why-copy h2,
  .dw-why-lede,
  .dw-why-card {
    opacity: 1;
    transform: none;
  }

  .dw-why-ico {
    filter: none !important;
    transform: none !important;
  }

  .dl-cases__thumb img,
  .dl-insights__media img {
    transform: none !important;
  }
}

/* ===== Global premium CTA (.dl-gcta) ===== */
.dl-gcta {
  --dl-gcta-ease: cubic-bezier(.2, .7, .2, 1);
  --dl-gcta-blue: #008FD0;
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background:
    radial-gradient(ellipse 52% 70% at 92% 12%, rgba(0, 143, 208, .16), transparent 58%),
    radial-gradient(ellipse 40% 55% at 6% 90%, rgba(0, 143, 208, .07), transparent 55%),
    linear-gradient(160deg, #071A2B 0%, #082238 48%, #071A2B 100%);
  color: #fff;
}

.dl-gcta__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .55;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 20%, transparent 75%);
}

.dl-gcta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap: 28px 40px;
  align-items: center;
  width: min(1220px, calc(100% - (var(--dl-gutter) * 2)));
}

.dl-gcta__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .46s var(--dl-gcta-ease), transform .46s var(--dl-gcta-ease);
}

.dl-gcta__kicker {
  margin: 0 0 12px;
  color: var(--dl-gcta-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.dl-gcta h2 {
  margin: 0 0 14px;
  max-width: 14em;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.dl-gcta__text {
  margin: 0 0 20px;
  max-width: 560px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.55;
}

.dl-gcta__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-gcta__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .46s var(--dl-gcta-ease), transform .46s var(--dl-gcta-ease);
  transition-delay: calc(var(--dl-gcta-i, 0) * 45ms);
}

.dl-gcta__trust-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 143, 208, .35);
  border-radius: 8px;
  background: rgba(0, 143, 208, .1);
  color: var(--dl-gcta-blue);
  flex-shrink: 0;
}

.dl-gcta__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(8, 28, 46, .72);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .46s var(--dl-gcta-ease), transform .46s var(--dl-gcta-ease);
  transition-delay: .045s;
}

.dl-gcta__panel-kicker {
  margin: 0 0 8px;
  color: var(--dl-gcta-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dl-gcta__panel-text {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  line-height: 1.5;
}

.dl-gcta__acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dl-gcta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}

.dl-gcta__btn--phone {
  background: var(--dl-gcta-blue);
  color: #fff;
}

.dl-gcta__btn--phone:hover {
  background: #1aa0dc;
  color: #fff;
  transform: translateY(-1px);
}

.dl-gcta__btn--wa {
  background: #25D366;
  color: #fff;
}

.dl-gcta__btn--wa:hover {
  background: #20BD5A;
  color: #fff;
  transform: translateY(-1px);
}

.dl-gcta__btn--quote {
  grid-column: 1 / -1;
  background: #0A2A40;
  border-color: rgba(0, 143, 208, .65);
  color: #fff;
}

.dl-gcta__btn--quote:hover {
  background: #0D3A58;
  border-color: #008FD0;
  color: #fff;
  transform: translateY(-1px);
}

.dl-gcta__btn--quote:hover .dl-gcta__arrow {
  transform: translateX(3px);
}

.dl-gcta__arrow {
  display: block;
  transition: transform .2s ease;
}

.dl-gcta__ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dl-gcta__ico svg {
  position: relative;
  z-index: 1;
  display: block;
}

.dl-gcta__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0;
  pointer-events: none;
}

.dl-gcta__ico--wa .dl-gcta__pulse {
  animation: dl-gcta-wa-pulse 2.7s ease-out infinite;
}

.dl-gcta__ico--phone svg {
  animation: dl-gcta-phone-tilt 3.6s ease-in-out infinite;
  transform-origin: 50% 55%;
}

@keyframes dl-gcta-wa-pulse {
  0% { opacity: .3; transform: scale(1); }
  55% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

@keyframes dl-gcta-phone-tilt {
  0%, 70%, 100% { transform: rotate(0deg); }
  76% { transform: rotate(-2deg); }
  84% { transform: rotate(5deg); }
  92% { transform: rotate(-4deg); }
}

.dl-gcta.is-in .dl-gcta__copy,
.dl-gcta.is-in .dl-gcta__panel,
.dl-gcta.is-in .dl-gcta__trust-item {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .dl-gcta__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px 28px;
  }
}

@media (max-width: 768px) {
  .dl-gcta {
    padding: 42px 0;
  }

  .dl-gcta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(var(--dl-wrap), calc(100% - (var(--dl-gutter) * 2)));
  }

  .dl-gcta__panel {
    padding: 20px 18px;
    transform: translateY(18px);
  }

  .dl-gcta__acts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dl-gcta__btn,
  .dl-gcta__btn--quote {
    grid-column: auto;
    width: 100%;
  }

  .dl-gcta h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .dl-gcta__text {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dl-gcta__copy,
  .dl-gcta__panel,
  .dl-gcta__trust-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dl-gcta__ico--wa .dl-gcta__pulse,
  .dl-gcta__ico--phone svg {
    animation: none;
  }

  .dl-gcta__btn--quote:hover,
  .dl-gcta__btn--wa:hover,
  .dl-gcta__btn--phone:hover {
    transform: none;
  }
}


