/* ==========================================================================
   DSP Invest Luxembourg
   Bright editorial layout: light page, white sheet, rounded photo blocks.
   ========================================================================== */

:root {
  --page: #e7edf5;
  --sheet: #ffffff;

  --ink: #0a1a33;
  --ink2: #354a66;
  --muted: #77899f;

  --line: #e7ecf3;
  --card: #f3f6fb;
  --card2: #eaf0f8;

  --accent: #1f5ae5;
  --accent-hi: #3b82f6;
  --accent-soft: #e8f0ff;
  --navy: #0a1a33;
  --navy2: #12294a;

  --r-sheet: 30px;
  --r-xl: 26px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(10, 26, 51, .05);
  --shadow-md: 0 8px 30px rgba(10, 26, 51, .07);
  --shadow-lg: 0 24px 70px rgba(10, 26, 51, .13);

  --pad: 34px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmosphere behind the sheet: a soft sky wash so the white panel floats. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1100px 620px at 12% -8%, #cfe0f7 0%, transparent 62%),
    radial-gradient(980px 560px at 92% 4%, #dbe6f6 0%, transparent 58%),
    linear-gradient(180deg, #e9eff7 0%, #e3eaf3 100%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

.dsp-sr {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--r-sm) 0; z-index: 999;
}
.dsp-sr:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------- shell */

.dsp-shell {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 14px auto;
  padding: 0 14px;
}

.dsp-sheet {
  background: var(--sheet);
  border-radius: var(--r-sheet);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  overflow: clip;
}

/* ---------------------------------------------------------------- header */

.dsp-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  margin-bottom: 14px;
}

.dsp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 20px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.dsp-header.stuck .dsp-header-inner {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.dsp-logo { display: flex; align-items: center; flex: none; }
/* Source art is only 384x177, so 36px is about as large as it stays crisp. */
.dsp-logo img { height: 36px; width: auto; }

.dsp-nav {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}
.dsp-nav a {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.dsp-nav a:hover { color: var(--ink); background: var(--card); }

.dsp-actions { display: flex; align-items: center; gap: 8px; flex: none; }

.dsp-lang {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink2);
  font: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.dsp-lang:hover { border-color: #cfd9e6; color: var(--ink); }
.dsp-lang .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.dsp-lang .caret { font-size: 9px; color: var(--muted); }

.dsp-lang-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 152px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
}
.dsp-lang-menu.open { display: block; }
.dsp-lang-menu button {
  display: block; width: 100%;
  padding: 9px 12px;
  border: 0; border-radius: var(--r-sm);
  background: none;
  font: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--ink2); text-align: left; cursor: pointer;
}
.dsp-lang-menu button:hover { background: var(--card); color: var(--ink); }

.dsp-cta {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  white-space: nowrap;
  transition: background-color .22s var(--ease), transform .22s var(--ease);
}
.dsp-cta:hover { background: var(--accent); transform: translateY(-1px); }
.dsp-cta .arrow { transition: transform .22s var(--ease); }
.dsp-cta:hover .arrow { transform: translate(2px, -2px); }

.dsp-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.dsp-burger span,
.dsp-burger::before,
.dsp-burger::after {
  content: '';
  position: absolute; left: 50%;
  width: 15px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.dsp-burger::before { top: 14px; }
.dsp-burger span { top: 19.1px; }
.dsp-burger::after { top: 24px; }
.dsp-burger[aria-expanded="true"]::before { top: 19.1px; transform: translateX(-50%) rotate(45deg); }
.dsp-burger[aria-expanded="true"] span { opacity: 0; }
.dsp-burger[aria-expanded="true"]::after { top: 19.1px; transform: translateX(-50%) rotate(-45deg); }

/* ---------------------------------------------------------------- hero */

.dsp-hero {
  position: relative;
  min-height: 560px;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 76px 40px;
  isolation: isolate;
}
.dsp-hero > img,
.dsp-hero > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* The render is a bright sky, so white type needs a scrim that stays dark exactly
   where the copy sits (the middle) - a plain top-to-bottom fade leaves it stranded. */
.dsp-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 78% at 50% 44%, rgba(6, 20, 40, .5) 0%, rgba(6, 20, 40, .16) 62%, transparent 100%),
    linear-gradient(180deg, rgba(6, 20, 40, .4) 0%, rgba(6, 20, 40, .16) 40%, rgba(6, 20, 40, .58) 100%);
}

.dsp-hero-body { text-align: center; max-width: 840px; }

.dsp-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4.1vw, 50px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.025em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(4, 16, 34, .38);
}
.dsp-hero-body p {
  margin: 0 auto 30px;
  max-width: 500px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 16px rgba(4, 16, 34, .5);
}

.dsp-hero-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }


.dsp-chip-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .02em;
}


/* ---------------------------------------------------------------- buttons */

.dsp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 22px;
  background: var(--accent);
  color: #fff;
  border: 0; border-radius: 999px;
  font: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.dsp-btn:hover {
  background: var(--accent-hi);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(31, 90, 229, .34);
}
.dsp-btn span { transition: transform .22s var(--ease); }
.dsp-btn:hover span { transform: translate(2px, -2px); }

.dsp-btn-ghost {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dsp-btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(6, 20, 40, .22);
}

.dsp-btn-dark { background: var(--navy); }
.dsp-btn-dark:hover { background: var(--accent); box-shadow: 0 10px 26px rgba(10, 26, 51, .3); }

.dsp-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700;
  color: var(--accent);
}
.dsp-link span { transition: transform .22s var(--ease); }
.dsp-link:hover span { transform: translate(2px, -2px); }

.dsp-pill-btn {
  display: inline-flex; align-items: center; gap: 7px;
  flex: none;
  white-space: nowrap;
  height: 36px; padding: 0 15px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  color: var(--ink2);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.dsp-pill-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------------------------------------------------------------- sections */

.dsp-section { padding: 74px var(--pad); }
.dsp-section-tight { padding: 44px var(--pad); }

.dsp-chip {
  display: inline-flex; align-items: center;
  padding: 7px 13px;
  background: var(--card);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.dsp-chip-blue { background: var(--accent-soft); color: var(--accent); }

.dsp-h2 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 33px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -.022em;
  color: var(--ink);
}
.dsp-lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink2);
}
.dsp-muted { color: var(--muted); }

/* intro: chip left, statement right */
.dsp-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 44px;
}
.dsp-intro-text {
  max-width: 620px;
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.58;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.012em;
}

/* ---------------------------------------------------------------- bento */

.dsp-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.dsp-bento-card {
  border-radius: var(--r-lg);
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dsp-bento-dark {
  background: linear-gradient(160deg, var(--navy2) 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dsp-bento-dark::after {
  content: '';
  position: absolute;
  right: -70px; bottom: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 90, 229, .5) 0%, transparent 70%);
}
.dsp-bento-dark h3 {
  position: relative;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.015em;
}
.dsp-bento-dark h3 em {
  font-style: normal;
  color: #8ab4ff;
}
.dsp-bento-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid; place-items: center;
}

.dsp-bento-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 300px;
}
.dsp-bento-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.dsp-bento-img:hover img { transform: scale(1.05); }
.dsp-bento-img .dsp-chip-glass { position: absolute; top: 18px; left: 18px; }

.dsp-bento-stat { background: var(--card); }
.dsp-bento-stat .big {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.dsp-bento-stat .cap {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
  max-width: 210px;
}

.dsp-bars { display: flex; flex-direction: column; gap: 11px; }
.dsp-bar-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink2);
}
.dsp-bar-row .val { color: var(--muted); font-variant-numeric: tabular-nums; }
.dsp-dots { display: flex; gap: 3.5px; }
.dsp-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d3dded;
  transform: scale(0);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.dsp-dots i.on { background: var(--accent); }
[data-reveal].in .dsp-dots i { transform: scale(1); }

/* ---------------------------------------------------------------- stats */

.dsp-stats-band {
  text-align: center;
  padding: 58px var(--pad) 66px;
}
.dsp-stats-band > .cap {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 30px;
}
.dsp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dsp-stat .num {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.dsp-stat .label {
  margin-top: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------------------------------------------------------------- services */

.dsp-svc {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
}
.dsp-svc-intro { position: sticky; top: 90px; }
.dsp-svc-intro .dsp-chip { margin-bottom: 16px; }
.dsp-svc-intro p {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink2);
}

.dsp-svc-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.dsp-svc-rail::-webkit-scrollbar { display: none; }

/* Staggered from the rail's own reveal, not per-card: a card scrolled off to the
   right never intersects the viewport, so a card-level observer would leave it
   stuck at opacity 0 until swiped. */
/* The rail carries the trigger but must not fade itself, or its fade would stack
   on top of the children's and mud the whole thing. */
.dsp-svc-rail[data-reveal] { opacity: 1; transform: none; }
.dsp-svc-rail[data-reveal] .dsp-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.dsp-svc-rail[data-reveal].in .dsp-card { opacity: 1; transform: none; }
.dsp-svc-rail.in .dsp-card:nth-child(2) { transition-delay: 60ms; }
.dsp-svc-rail.in .dsp-card:nth-child(3) { transition-delay: 120ms; }
.dsp-svc-rail.in .dsp-card:nth-child(4) { transition-delay: 180ms; }
.dsp-svc-rail.in .dsp-card:nth-child(5) { transition-delay: 240ms; }
.dsp-svc-rail.in .dsp-card:nth-child(6) { transition-delay: 300ms; }

.dsp-card {
  scroll-snap-align: start;
  position: relative;
  height: 350px;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  isolation: isolate;
}
.dsp-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .9s var(--ease);
}
/* The scrim has to be dark from ~55% down: the copy block starts well above the
   bottom edge, and these photos are bright (white van, open sky) right there. */
.dsp-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 20, 40, .26) 0%, rgba(6, 20, 40, .02) 30%, rgba(6, 20, 40, .48) 60%, rgba(6, 20, 40, .89) 100%);
}
.dsp-card:hover img { transform: scale(1.06); }

.dsp-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.dsp-card-num {
  font-size: 12px; font-weight: 800;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .06em;
  text-shadow: 0 1px 10px rgba(4, 16, 34, .6);
}
.dsp-card-body h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.018em;
  color: #fff;
  text-shadow: 0 1px 14px rgba(4, 16, 34, .5);
}
.dsp-card-body p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .84);
  text-shadow: 0 1px 12px rgba(4, 16, 34, .55);
}
.dsp-card-go {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 13px;
  transition: transform .24s var(--ease), background-color .24s var(--ease), color .24s var(--ease);
}
.dsp-card:hover .dsp-card-go {
  background: var(--accent);
  color: #fff;
  transform: translate(2px, -2px);
}

.dsp-rail-nav { display: flex; gap: 8px; }
.dsp-rail-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 14px;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), opacity .2s var(--ease);
}
.dsp-rail-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.dsp-rail-btn:disabled { opacity: .35; cursor: default; }
.dsp-rail-btn:disabled:hover { background: #fff; color: var(--ink); border-color: var(--line); }

/* ---------------------------------------------------------------- portfolio */

.dsp-pf-band {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 34px;
}
.dsp-pf {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

.dsp-pf-feature {
  position: relative;
  background: linear-gradient(155deg, var(--accent-hi) 0%, var(--accent) 100%);
  border-radius: var(--r-lg);
  padding: 26px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(31, 90, 229, .28);
}
.dsp-pf-feature::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}
.dsp-pf-feature .tag {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dsp-pf-feature h3 {
  position: relative;
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.022em;
}
.dsp-pf-feature .sub { position: relative; font-size: 13.5px; opacity: .88; margin-bottom: 18px; }
.dsp-pf-feature .count {
  position: absolute;
  top: 26px; right: 26px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.dsp-pf-feature ul {
  position: relative;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
}
.dsp-pf-feature li { display: flex; align-items: center; gap: 6px; opacity: .95; }
.dsp-pf-feature li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
}
.dsp-pf-feature .dsp-btn {
  position: relative;
  background: #fff;
  color: var(--accent);
  height: 40px;
}
.dsp-pf-feature .dsp-btn:hover { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(6, 20, 40, .3); }

.dsp-pf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 16px 16px 16px 22px;
  background: #fff;
  border-radius: var(--r-lg);
  transition: box-shadow .24s var(--ease), transform .24s var(--ease);
}
.dsp-pf-row:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.dsp-pf-row h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
}
.dsp-pf-row .n { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 3px; }

.dsp-pf-side .dsp-chip { margin-bottom: 14px; }
.dsp-pf-side h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2.1vw, 26px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.022em;
}
.dsp-pf-side p { margin: 0 0 24px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.dsp-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dsp-logo-cell {
  height: 62px;
  background: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  padding: 12px;
}
.dsp-logo-cell img {
  max-height: 30px; width: auto;
  object-fit: contain;
  /* contrast() rescues the pale marks: grayscale alone leaves the lighter logos
     (Instyle, ABSAAR Solar) almost invisible against the white cell. */
  filter: grayscale(1) contrast(1.35);
  opacity: .78;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.dsp-logo-cell:hover img { filter: none; opacity: 1; }

/* ---------------------------------------------------------------- quote */

.dsp-quote-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: center;
}
.dsp-quote-grid .dsp-chip { margin-bottom: 22px; }
.dsp-quote-grid blockquote {
  margin: 0 0 26px;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
  color: var(--ink);
}
.dsp-quote-name { font-size: 18px; font-weight: 700; letter-spacing: -.015em; }
.dsp-quote-role { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 3px; }
.dsp-quote-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.4;
  background: var(--card);
}
.dsp-quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.dsp-quote-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 26px;
}
.dsp-quote-idx {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.dsp-quote-idx b { color: var(--ink); font-size: 26px; letter-spacing: -.03em; }

/* ---------------------------------------------------------------- faq */

.dsp-faq-band { background: var(--card); border-radius: var(--r-xl); padding: 34px; }
.dsp-faq {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.dsp-faq-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--card2);
}
.dsp-faq-photo img { width: 100%; height: 100%; object-fit: cover; }
.dsp-faq-head { margin-bottom: 22px; }
.dsp-faq-head .dsp-chip { margin-bottom: 14px; background: #fff; }
.dsp-faq-head p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink2); }

.dsp-acc-item {
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.dsp-acc-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 18px;
  font-size: 14.5px; font-weight: 600;
  color: var(--ink); text-align: left;
  cursor: pointer;
}
.dsp-acc-icon {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--card);
  color: var(--ink2);
  display: grid; place-items: center;
  position: relative;
  transition: background-color .24s var(--ease), color .24s var(--ease), transform .3s var(--ease);
}
.dsp-acc-icon::before,
.dsp-acc-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: opacity .24s var(--ease);
}
.dsp-acc-icon::before { width: 10px; height: 1.6px; }
.dsp-acc-icon::after { width: 1.6px; height: 10px; }
.dsp-acc-item[open] .dsp-acc-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}
.dsp-acc-item[open] .dsp-acc-icon::after { opacity: 0; }
.dsp-acc-a {
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 620px;
}
.dsp-acc-item summary { list-style: none; }
.dsp-acc-item summary::-webkit-details-marker { display: none; }

.dsp-faq-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
}

/* ---------------------------------------------------------------- cta banner */

.dsp-cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 74px 40px;
  isolation: isolate;
}
.dsp-cta-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.dsp-cta-band::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(6, 18, 38, .78) 0%, rgba(6, 18, 38, .42) 60%, rgba(6, 18, 38, .2) 100%);
}
.dsp-cta-band .dsp-chip-glass { margin-bottom: 18px; }
.dsp-cta-band h2 {
  margin: 0 0 26px;
  max-width: 620px;
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(4, 16, 34, .4);
}
.dsp-cta-form {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  max-width: 430px;
}
.dsp-cta-form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 16px;
  background: none;
  border: 0;
  color: #fff;
  font: inherit; font-size: 14px; font-weight: 600;
}
.dsp-cta-form input::placeholder { color: rgba(255, 255, 255, .7); }
.dsp-cta-form input:focus { outline: none; }
.dsp-cta-form button {
  flex: none;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.dsp-cta-form button:hover { background: #fff; color: var(--accent); transform: scale(1.06); }
.dsp-cta-msg {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 12px rgba(4, 16, 34, .6);
  min-height: 18px;
}

/* ---------------------------------------------------------------- footer */

.dsp-footer {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 14px auto;
  padding: 0 14px;
}
.dsp-footer-sheet {
  background: linear-gradient(170deg, var(--navy2) 0%, var(--navy) 100%);
  border-radius: var(--r-sheet);
  padding: 40px 40px 22px;
  color: #fff;
  overflow: clip;
}

.dsp-footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}
.dsp-footer-top h2 {
  margin: 12px 0 0;
  max-width: 480px;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.025em;
}
.dsp-footer-top .dsp-chip { background: rgba(255, 255, 255, .1); color: #8ab4ff; }
.dsp-footer-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.dsp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 40px 0;
}
.dsp-footer-col h4 {
  margin: 0 0 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #6f88a8;
}
.dsp-footer-col p,
.dsp-footer-col .body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.72;
  color: #a9bcd4;
  max-width: 300px;
}
.dsp-footer-col a {
  font-size: 13.5px;
  color: #a9bcd4;
  transition: color .2s var(--ease);
}
.dsp-footer-col a:hover { color: #fff; }
.dsp-footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.dsp-footer-logo img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 16px; }

.dsp-mega {
  font-size: clamp(44px, 12.4vw, 168px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .92;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, .04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  margin: 10px 0 -6px;
  white-space: nowrap;
}

.dsp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: 12.5px;
  color: #7f95b1;
  font-weight: 600;
}
.dsp-footer-bottom a { color: #7f95b1; }
.dsp-footer-bottom a:hover { color: #fff; }

/* ---------------------------------------------------------------- marquee */

.dsp-marquee-wrap {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.dsp-marquee {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: dsp-scroll 46s linear infinite;
}
.dsp-marquee-wrap:hover .dsp-marquee { animation-play-state: paused; }
@keyframes dsp-scroll {
  to { transform: translateX(-50%); }
}
.dsp-cust-tile {
  flex: none;
  width: 148px; height: 74px;
  background: var(--card);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  padding: 14px;
}
.dsp-cust-tile img {
  max-height: 32px; max-width: 108px;
  width: auto; object-fit: contain;
  filter: grayscale(1) contrast(1.3);
  opacity: .7;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.dsp-cust-tile:hover img { filter: none; opacity: 1; }

/* ---------------------------------------------------------------- reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dsp-svc-rail[data-reveal] .dsp-card { opacity: 1; transform: none; transition: none; }
  .dsp-marquee { animation: none; }
  .dsp-dots i { transform: scale(1); }
}

/* ---------------------------------------------------------------- service page */

.dsp-svc-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 84px 40px;
  isolation: isolate;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dsp-svc-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.dsp-svc-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 18, 38, .5) 0%, rgba(6, 18, 38, .18) 45%, rgba(6, 18, 38, .8) 100%);
}
.dsp-svc-hero .dsp-chip-glass { align-self: flex-start; margin-bottom: 16px; }
.dsp-svc-hero h1 {
  margin: 0 0 14px;
  max-width: 700px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.026em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(4, 16, 34, .4);
}
.dsp-svc-hero p {
  margin: 0;
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 14px rgba(4, 16, 34, .55);
}

.dsp-crumbs {
  display: flex; align-items: center; gap: 8px;
  padding: 18px var(--pad) 0;
  font-size: 12.5px; font-weight: 600;
  color: var(--muted);
}
.dsp-crumbs a:hover { color: var(--accent); }
.dsp-crumbs .sep { opacity: .5; }

.dsp-prose {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.dsp-prose-body { max-width: 640px; }
.dsp-prose-body p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink2);
}
.dsp-prose-body p.lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.012em;
  line-height: 1.55;
}

.dsp-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.dsp-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  background: var(--card);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.45;
}
.dsp-feat i {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 9px; font-style: normal;
}

.dsp-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dsp-next-card {
  padding: 20px;
  background: var(--card);
  border-radius: var(--r-lg);
  transition: background-color .24s var(--ease), transform .24s var(--ease);
}
.dsp-next-card:hover { background: var(--card2); transform: translateY(-2px); }
.dsp-next-card .n { font-size: 11.5px; font-weight: 700; color: var(--accent); letter-spacing: .06em; }
.dsp-next-card h4 { margin: 8px 0 0; font-size: 16px; font-weight: 700; letter-spacing: -.015em; }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1024px) {
  :root { --pad: 30px; }
  .dsp-nav { display: none; }
  .dsp-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    margin: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
  }
  .dsp-nav.open a { padding: 12px 14px; }
  .dsp-header-inner { position: relative; }
  .dsp-burger { display: block; order: -1; }
  .dsp-actions { gap: 6px; }

  .dsp-bento { grid-template-columns: 1fr 1fr; }
  .dsp-bento-stat { grid-column: 1 / -1; }
  .dsp-svc { grid-template-columns: 1fr; }
  .dsp-svc-intro { position: static; }
  .dsp-pf { grid-template-columns: 1fr; }
  .dsp-faq { grid-template-columns: 1fr; }
  .dsp-faq-photo { aspect-ratio: 16 / 9; }
  .dsp-quote-grid { grid-template-columns: 1fr 240px; gap: 30px; }
  .dsp-prose, .dsp-intro { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 768px) {
  :root { --pad: 22px; --r-sheet: 24px; --r-xl: 20px; }
  .dsp-shell, .dsp-footer { margin: 8px auto; padding: 0 8px; }
  .dsp-sheet { padding: 8px; }
  .dsp-header { top: 8px; }
  .dsp-section { padding: 52px var(--pad); }
  .dsp-hero { min-height: 480px; padding: 60px 24px; }
  .dsp-stats-row { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .dsp-bento { grid-template-columns: 1fr; }
  .dsp-pf-band, .dsp-faq-band { padding: 26px 22px; }
  .dsp-quote-grid { grid-template-columns: 1fr; }
  .dsp-quote-photo { max-width: 240px; aspect-ratio: 3 / 3.2; }
  .dsp-footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .dsp-footer-sheet { padding: 30px 24px 18px; }
  .dsp-footer-top { flex-direction: column; align-items: flex-start; gap: 22px; }
  .dsp-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dsp-cta-band { padding: 48px 24px; }
  .dsp-feat-grid, .dsp-next { grid-template-columns: 1fr; }
  .dsp-logo-wall { grid-template-columns: repeat(4, 1fr); }
  .dsp-svc-hero { padding: 54px 24px; min-height: 320px; }
}

@media (max-width: 480px) {
  .dsp-logo img { height: 30px; }
  .dsp-lang { display: none; }
  .dsp-cta { padding: 0 14px; font-size: 12.5px; }
  .dsp-footer-grid { grid-template-columns: 1fr; }
  .dsp-logo-wall { grid-template-columns: repeat(3, 1fr); }
  .dsp-svc-rail { grid-auto-columns: 82%; }
}
