/* ==============================
DIGITECTSERVE EDITABLE CONTENT (DESIGN TOKENS)
Change brand colours, fonts and radii here.
Text content (phone, email, stats, portfolio, testimonials) lives in script.js → DS_CONFIG.
================================ */
.ds {
  --pink: #E20A5E;
  --pink-600: #C1074F;
  --pink-050: #FDECF3;
  --navy: #0A0F3A;
  --navy-2: #141B52;
  --navy-3: #1E2766;
  --white: #FFFFFF;
  --bg: #F7F7FA;
  --ink: #111111;
  --line: #EDEDF2;
  --muted: #565A74;
  --muted-dark: #A9ACC8;

  --f-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --shadow: 0 1px 2px rgba(10,15,58,.04), 0 12px 32px -12px rgba(10,15,58,.14);
  --shadow-lg: 0 30px 80px -30px rgba(10,15,58,.35);
  --ease: cubic-bezier(.2,.7,.2,1);
  --nav-h: 76px;
}
/* ============ END EDITABLE TOKENS ============ */

/* ---------- Scoped reset (safe inside WordPress/Elementor) ---------- */
.ds, .ds *, .ds *::before, .ds *::after { box-sizing: border-box; }
.ds {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}
.ds :where(h1,h2,h3,h4,p,ul,ol,li,figure,blockquote,table,caption) { margin: 0; padding: 0; }
.ds :where(ul,ol) { list-style: none; }
.ds :where(h1,h2,h3,h4) { font-family: var(--f-display); color: inherit; font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }
.ds a { color: inherit; text-decoration: none; }
.ds :where(button,input,select,textarea) { font: inherit; color: inherit; }
.ds button { cursor: pointer; background: none; border: 0; padding: 0; }
.ds img, .ds svg { display: block; max-width: 100%; }
.ds em { font-style: normal; }
.ds ::selection { background: var(--pink); color: #fff; }
.ds :focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 8px; }
.ds-dark :focus-visible { outline-color: #fff; }
.ds section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

.ds-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ds .ds-i { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ds-visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ds .ds-skip { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px; transition: top .2s; }
.ds .ds-skip:focus { top: 16px; }

/* ---------- Layout ---------- */
.ds-wrap { width: min(1240px, 100% - 48px); margin-inline: auto; }
.ds-sec { padding-block: clamp(84px, 10vw, 140px); position: relative; }
.ds-dark { background: var(--navy); color: #fff; }
.ds-center { display: flex; justify-content: center; }

/* ---------- Type ---------- */
.ds .ds-h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.3vw, 3.55rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.028em;
  text-transform: uppercase; /* delete this line for sentence-case headings */
  max-width: 18ch;
  text-wrap: balance;
}
.ds .ds-h2 em { color: var(--pink); }
.ds .ds-dark .ds-h2 { color: #fff; }
.ds-lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink); }
.ds p { color: var(--muted); max-width: 62ch; }
.ds-dark p { color: var(--muted-dark); }
.ds-head { margin-bottom: clamp(40px, 5vw, 64px); }
.ds-head--split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px 64px; align-items: end; }
.ds-head--split p { margin-bottom: 14px; }
.ds-head--center { text-align: center; }
.ds-head--center .ds-h2 { margin-inline: auto; max-width: 20ch; }
.ds-head--center p { margin: 18px auto 0; }

/* ---------- Buttons ---------- */
.ds .ds-btn {
  --bg-c: var(--navy); --fg-c: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font-family: var(--f-display); font-weight: 600; font-size: .95rem; letter-spacing: .005em;
  background: var(--bg-c); color: var(--fg-c); border: 1.5px solid transparent;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s, color .25s, border-color .25s;
  white-space: nowrap; text-decoration: none;
}
.ds .ds-btn .ds-i { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.ds .ds-btn:hover .ds-i:last-child { transform: translateX(4px); }
.ds .ds-btn::after { /* shine sweep */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.ds .ds-btn:hover::after { transform: translateX(120%); }
.ds .ds-btn:active { transform: scale(.97); }
.ds .ds-btn--pink { --bg-c: var(--pink); box-shadow: 0 10px 28px -10px rgba(226,10,94,.7); }
.ds .ds-btn--pink:hover { --bg-c: var(--pink-600); box-shadow: 0 16px 36px -12px rgba(226,10,94,.8); }
.ds .ds-btn--dark:hover { --bg-c: var(--navy-3); }
.ds .ds-btn--ghost { --bg-c: transparent; --fg-c: var(--navy); border-color: rgba(10,15,58,.18); }
.ds .ds-btn--ghost:hover { border-color: var(--navy); --bg-c: rgba(10,15,58,.04); }
.ds .ds-btn--light { --bg-c: rgba(255,255,255,.08); --fg-c: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.ds .ds-btn--light:hover { --bg-c: #fff; --fg-c: var(--navy); }
.ds .ds-btn--lg { min-height: 56px; padding: 14px 30px; font-size: 1rem; }
.ds .ds-btn--sm { min-height: 42px; padding: 9px 18px; font-size: .88rem; }

.ds .ds-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; color: var(--pink); }
.ds .ds-link .ds-i { transition: transform .3s var(--ease); }
.ds .ds-link:hover .ds-i { transform: translateX(5px); }

.ds .ds-tag { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: .72rem; font-weight: 600; background: rgba(255,255,255,.1); color: #fff; }
.ds .ds-tag--pink { background: var(--pink); color: #fff; }

/* ---------- Glass ---------- */
.ds-glass {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, var(--shadow-lg);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
.ds-glass-dark {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Custom cursor (desktop only) ---------- */
.ds-cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .ds--cursor .ds-cursor {
    display: block; position: fixed; left: 0; top: 0; z-index: 999; pointer-events: none;
    width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%;
    border: 1.5px solid var(--pink); opacity: 0;
    transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background-color .25s, opacity .25s;
  }
  .ds--cursor .ds-cursor.is-on { opacity: .9; }
  .ds--cursor .ds-cursor.is-hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(226,10,94,.12); }
}

/* =========================================================
   1. NAVBAR
   ========================================================= */
.ds-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .35s, box-shadow .35s, height .35s;
}
.ds-nav.is-scrolled { background: rgba(255,255,255,.92); box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(10,15,58,.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); --nav-h: 66px; }
.ds-nav__in { display: flex; align-items: center; gap: 28px; }
.ds .ds-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -.02em; color: var(--navy); }
.ds .ds-logo b { font-weight: 800; color: var(--pink); }
.ds-logo__mark { width: 34px; height: 34px; transition: transform .5s var(--ease); }
.ds .ds-logo:hover .ds-logo__mark { transform: rotate(-8deg) scale(1.05); }
.ds-logo--light { color: #fff !important; }
.ds-nav__links { display: flex; gap: 4px; margin-left: auto; }
.ds .ds-nav__links a { position: relative; padding: 8px 12px; font-size: .92rem; font-weight: 500; color: var(--navy); border-radius: 10px; }
.ds .ds-nav__links a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; background: var(--pink); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.ds .ds-nav__links a:hover::after, .ds .ds-nav__links a.is-current::after { transform: scaleX(1); }
.ds-burger { display: none; flex: none; width: 46px; height: 46px; border-radius: 14px !important; background: var(--navy) !important; position: relative; margin-left: auto; }
.ds-burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), top .35s var(--ease); }
.ds-burger span:first-child { top: 18px; }
.ds-burger span:last-child { top: 26px; }
.ds-burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.ds-burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.ds-mobile {
  position: fixed; inset: 0; z-index: 99; background: var(--navy); color: #fff;
  padding: calc(var(--nav-h) + 24px) 24px 32px; display: flex; flex-direction: column; justify-content: space-between;
  clip-path: circle(0% at calc(100% - 46px) 38px); visibility: hidden;
  transition: clip-path .6s var(--ease), visibility 0s linear .6s;
  overflow-y: auto;
}
.ds-mobile.is-open { clip-path: circle(150% at calc(100% - 46px) 38px); visibility: visible; transition: clip-path .6s var(--ease), visibility 0s; }
.ds-mobile__links { display: flex; flex-direction: column; }
.ds .ds-mobile__links a {
  font-family: var(--f-display); font-size: clamp(1.9rem, 8vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.25;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateY(16px); transition: opacity .4s, transform .4s var(--ease), color .2s;
}
.ds .ds-mobile__links a:hover { color: var(--pink); }
.ds-mobile.is-open .ds-mobile__links a { opacity: 1; transform: none; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(1) { transition-delay: .12s; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(2) { transition-delay: .16s; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(3) { transition-delay: .2s; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(4) { transition-delay: .24s; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(5) { transition-delay: .28s; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(6) { transition-delay: .32s; }
.ds-mobile.is-open .ds-mobile__links a:nth-child(7) { transition-delay: .36s; }
.ds-mobile__foot { display: grid; gap: 14px; margin-top: 32px; }
.ds-mobile__foot .ds-btn { width: 100%; }
.ds-mobile__quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ds .ds-mobile__quick a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .9rem; font-weight: 500; }

/* =========================================================
   2. HERO
   ========================================================= */
.ds-hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 48px) 0 72px; background: var(--bg); overflow: hidden; }
.ds-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.ds-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: ds-drift 18s ease-in-out infinite alternate; }
.ds-blob--1 { width: 520px; height: 520px; right: -120px; top: -120px; background: radial-gradient(circle, rgba(226,10,94,.55), transparent 65%); }
.ds-blob--2 { width: 460px; height: 460px; right: 22%; bottom: -200px; background: radial-gradient(circle, rgba(10,15,58,.35), transparent 65%); animation-duration: 22s; }
.ds-blob--3 { width: 300px; height: 300px; left: -80px; top: 30%; background: radial-gradient(circle, rgba(226,10,94,.22), transparent 65%); animation-duration: 26s; }
.ds-gridbg { position: absolute; inset: 0; background-image: radial-gradient(rgba(10,15,58,.09) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%); }
@keyframes ds-drift { to { transform: translate3d(-40px, 30px, 0) scale(1.08); } }

.ds-hero__in { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ds .ds-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 26px; box-shadow: var(--shadow); max-width: none; }
.ds-eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(226,10,94,.18); }
.ds .ds-hero__title {
  font-size: clamp(2.6rem, 5.9vw, 5.4rem); font-weight: 800; line-height: .98; letter-spacing: -.04em;
  text-transform: uppercase; color: var(--navy);
}
.ds-hero__title .ds-line { display: block; }
.ds-hero__title em {
  background: linear-gradient(100deg, var(--pink) 20%, #FF4F8B 50%, var(--pink) 80%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: ds-sheen 6s linear infinite;
}
@keyframes ds-sheen { to { background-position: -200% 0; } }
.ds .ds-hero__lead { font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: var(--muted); margin: 26px 0 34px; max-width: 52ch; }
.ds-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.ds-hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 36px; }
.ds .ds-hero__trust li { font-family: var(--f-display); font-weight: 600; font-size: .95rem; color: var(--navy); display: flex; align-items: center; gap: 22px; }
.ds .ds-hero__trust li:not(:last-child)::after { content: ""; width: 5px; height: 5px; background: var(--pink); border-radius: 1px; transform: rotate(45deg); }

/* Load-in sequence (the one orchestrated moment) */
.ds--js .ds-hero__copy > * { opacity: 0; transform: translateY(22px); animation: ds-in .9s var(--ease) forwards; }
.ds--js .ds-hero__copy > :nth-child(2) { animation-delay: .08s; }
.ds--js .ds-hero__copy > :nth-child(3) { animation-delay: .18s; }
.ds--js .ds-hero__copy > :nth-child(4) { animation-delay: .26s; }
.ds--js .ds-hero__copy > :nth-child(5) { animation-delay: .34s; }
.ds--js .ds-hero__visual { opacity: 0; animation: ds-in-scale 1.1s .2s var(--ease) forwards; }
@keyframes ds-in { to { opacity: 1; transform: none; } }
@keyframes ds-in-scale { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: none; } }

/* Hero visual */
.ds-hero__visual { position: relative; perspective: 1200px; }
.ds-stage { position: relative; padding: 40px 56px 76px 28px; transform-style: preserve-3d; transition: transform .6s var(--ease); }
.ds-dash { position: relative; border-radius: var(--r-lg); padding: 20px; z-index: 1; }
.ds-dash__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ds-dots { display: inline-flex; gap: 6px; }
.ds-dots i { width: 9px; height: 9px; border-radius: 50%; background: #E2E3EC; }
.ds-dots i:first-child { background: var(--pink); }
.ds-dash__title { font-family: var(--f-display); font-weight: 600; font-size: .9rem; color: var(--navy); }
.ds-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: #0E8A56; background: #E6F6EE; padding: 4px 10px; border-radius: 999px; }
.ds-live i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: ds-blink 1.6s infinite; }
@keyframes ds-blink { 50% { opacity: .25; } }
.ds-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ds-kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px; }
.ds-kpi span { display: block; font-size: .7rem; color: var(--muted); line-height: 1.3; min-height: 1.8em; }
.ds-kpi strong { display: block; font-family: var(--f-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 700; color: var(--navy); letter-spacing: -.02em; margin-top: 4px; }
.ds-kpi--hl { background: var(--navy); border-color: var(--navy); }
.ds-kpi--hl span { color: var(--muted-dark); }
.ds-kpi--hl strong { color: #fff; }
.ds-chart { margin-top: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 14px 6px; }
.ds-chart__head { display: flex; justify-content: flex-start; gap: 12px; align-items: center; font-size: .75rem; color: var(--muted); margin-bottom: 6px; }
.ds-chip-up { display: inline-flex; align-items: center; gap: 4px; color: var(--pink); font-weight: 600; }
.ds-chip-up .ds-i { width: 14px; height: 14px; }
.ds-chart__svg { width: 100%; height: 130px; overflow: visible; }
.ds-chart__grid path { stroke: var(--line); stroke-width: 1; vector-effect: non-scaling-stroke; }
.ds-chart__line { fill: none; stroke: var(--pink); stroke-width: 3; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.ds-chart__line2 { fill: none; stroke: var(--navy); stroke-opacity: .3; stroke-width: 2; vector-effect: non-scaling-stroke; }
.ds-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: ds-draw 2.2s .6s var(--ease) forwards; }
.ds-chart__line2.ds-draw { stroke-dasharray: 1; animation-delay: .9s; }
@keyframes ds-draw { to { stroke-dashoffset: 0; } }
.ds-channels { display: grid; gap: 8px; margin-top: 12px; }
.ds-channels div { display: grid; grid-template-columns: 78px 1fr 36px; align-items: center; gap: 10px; font-size: .74rem; color: var(--muted); }
.ds-channels b { height: 6px; border-radius: 6px; background: var(--line); position: relative; overflow: hidden; }
.ds-channels b::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w); background: linear-gradient(90deg, var(--navy), var(--pink)); border-radius: inherit; transform-origin: left; animation: ds-grow 1.6s 1s var(--ease) both; }
@keyframes ds-grow { from { transform: scaleX(0); } }
.ds-channels em { font-weight: 600; color: var(--navy); text-align: right; }

.ds-float { position: absolute; z-index: 2; border-radius: 18px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; animation: ds-float 7s ease-in-out infinite; }
.ds-float small { display: block; font-size: .7rem; color: var(--muted); line-height: 1.3; }
.ds-float strong { display: block; font-family: var(--f-display); font-size: .95rem; color: var(--navy); line-height: 1.2; }
@keyframes ds-float { 50% { transform: translateY(-10px); } }
.ds-float--ads { left: -6px; top: 6px; animation-delay: -1s; }
.ds-float__ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; color: #fff; }
.ds-float__ico--g { background: conic-gradient(from 200deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4); }
.ds-float--seo { right: 0; top: 47%; flex-direction: column; align-items: flex-start; gap: 4px; min-width: 128px; animation-delay: -3s; }
.ds-rank { display: flex; align-items: baseline; gap: 8px; }
.ds-rank strong { font-size: 1.6rem; color: var(--pink); }
.ds-rank span { font-size: .72rem; font-weight: 700; color: #0E8A56; }
.ds-rank__bars { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.ds-rank__bars i { width: 6px; border-radius: 2px; background: var(--pink); opacity: .3; }
.ds-rank__bars i:nth-child(1) { height: 30%; } .ds-rank__bars i:nth-child(2) { height: 45%; } .ds-rank__bars i:nth-child(3) { height: 60%; } .ds-rank__bars i:nth-child(4) { height: 80%; }
.ds-rank__bars i:nth-child(5) { height: 100%; opacity: 1; }
.ds-float--social { left: 0; bottom: 0; flex-direction: column; align-items: flex-start; gap: 8px; animation-delay: -5s; }
.ds-socialrow { display: flex; gap: 6px; }
.ds-socialrow span { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--navy); color: #fff; }
.ds-socialrow span:first-child { background: linear-gradient(135deg, #F58529, #DD2A7B 55%, #8134AF); }
.ds-socialrow .ds-i { width: 15px; height: 15px; }
.ds-float--social small b { color: var(--pink); }
.ds-float--lead { right: 10%; bottom: 10px; animation-delay: -2s; }
.ds-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(226,10,94,.6); animation: ds-pulse 2s infinite; }
@keyframes ds-pulse { 70% { box-shadow: 0 0 0 12px rgba(226,10,94,0); } 100% { box-shadow: 0 0 0 0 rgba(226,10,94,0); } }
.ds .ds-demo-note { font-size: .72rem; color: var(--muted); text-align: right; margin: 6px 20px 0 auto; opacity: .8; }
.ds .ds-demo-note--inline { text-align: left; margin: 10px 0 0; }

/* =========================================================
   3. TRUST STRIP + MARQUEE
   ========================================================= */
.ds-trust { background: #fff; border-bottom: 1px solid var(--line); }
.ds-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.ds-stat { padding: 44px 24px; border-right: 1px solid var(--line); }
.ds-stat:first-child { padding-left: 0; }
.ds-stat:last-child { border-right: 0; }
.ds-stat strong { display: block; font-family: var(--f-display); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--navy); }
.ds-stat strong { background: linear-gradient(135deg, var(--navy) 40%, var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ds-stat > span { display: block; margin-top: 8px; font-size: .92rem; color: var(--muted); }
.ds-marquee { overflow: hidden; background: var(--navy); color: #fff; padding: 18px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ds-marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: ds-marquee 36s linear infinite; }
.ds-marquee:hover .ds-marquee__track { animation-play-state: paused; }
.ds-marquee__track span { font-family: var(--f-display); font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.35rem); text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; }
.ds-marquee__track i { width: 10px; height: 10px; background: var(--pink); transform: rotate(45deg); flex: none; }
@keyframes ds-marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Scroll reveal
   ========================================================= */
.ds--js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.ds--js [data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   4. ABOUT
   ========================================================= */
.ds-about { background: var(--bg); }
.ds-about__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.ds-about__copy .ds-h2 { max-width: 16ch; margin-bottom: 26px; }
.ds-about__copy p + p { margin-top: 14px; }
.ds-pillars { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 32px; }
.ds .ds-pillars li { padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .88rem; color: var(--navy); }

.ds-flow { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 28px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.ds-flow::before { content: ""; position: absolute; width: 360px; height: 360px; right: -140px; top: -160px; background: radial-gradient(circle, rgba(226,10,94,.5), transparent 65%); pointer-events: none; }
.ds-flow__head { position: relative; display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted-dark); margin-bottom: 14px; }
.ds-flow__count b { color: #fff; font-weight: 600; }
.ds-flow__list { position: relative; }
.ds .ds-flow__step { width: 100%; text-align: left; display: grid; grid-template-columns: 1fr; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.32); transition: color .4s; }
.ds-flow__list li:last-child .ds-flow__step { border-bottom: 0; }
.ds-flow__word { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -.03em; line-height: 1.05; text-transform: uppercase; display: flex; align-items: center; }
.ds-flow__word::before { content: "→"; font-size: .6em; color: var(--pink); width: 0; opacity: 0; overflow: hidden; transition: width .4s var(--ease), opacity .4s; }
.ds-flow__desc { display: grid; grid-template-rows: 0fr; font-size: .95rem; color: var(--muted-dark); transition: grid-template-rows .45s var(--ease), margin .45s; overflow: hidden; }
.ds .ds-flow__step:hover { color: rgba(255,255,255,.6); }
.ds .ds-flow__step.is-active { color: #fff; }
.ds-flow__step.is-active .ds-flow__word::before { width: 1.4em; opacity: 1; }
.ds-flow__step.is-active .ds-flow__desc { grid-template-rows: 1fr; margin-top: 6px; }
.ds-flow__desc > span { min-height: 0; overflow: hidden; }
.ds-flow__bar { position: relative; height: 3px; background: rgba(255,255,255,.1); border-radius: 3px; margin-top: 18px; overflow: hidden; }
.ds-flow__bar i { position: absolute; inset: 0 auto 0 0; width: 20%; background: var(--pink); border-radius: 3px; transition: width .6s var(--ease); }

/* =========================================================
   5. SERVICES
   ========================================================= */
.ds-services { background: #fff; }
.ds-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ds-svc {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; min-height: 300px; padding: 26px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s, color .3s;
}
.ds-svc::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(145deg, var(--pink) 0%, #A1064A 55%, var(--navy) 130%); opacity: 0; transition: opacity .45s var(--ease); }
.ds-svc__n { font-family: var(--f-display); font-weight: 600; font-size: .8rem; color: var(--muted); transition: color .3s; }
.ds-svc__ico { position: absolute; right: 22px; top: 22px; width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; background: #fff; color: var(--pink); box-shadow: var(--shadow); transition: transform .5s var(--ease), background-color .3s, color .3s; }
.ds-svc__ico .ds-i { width: 24px; height: 24px; }
.ds .ds-svc h3 { font-size: 1.18rem; margin-top: auto; padding-top: 56px; color: var(--navy); transition: color .3s; max-width: 14ch; }
.ds .ds-svc p { font-size: .9rem; margin-top: 10px; color: var(--muted); transition: color .3s; }
.ds .ds-svc__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: .88rem; color: var(--pink); transition: color .3s; }
.ds .ds-svc__go::before { content: ""; position: absolute; inset: 0; } /* whole card clickable */
.ds-svc__go .ds-i { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.ds-svc:hover, .ds-svc:focus-within { transform: translateY(-6px) scale(1.015); box-shadow: 0 30px 60px -28px rgba(226,10,94,.55); border-color: transparent; }
.ds-svc:hover::before, .ds-svc:focus-within::before { opacity: 1; }
.ds-svc:hover .ds-svc__ico, .ds-svc:focus-within .ds-svc__ico { transform: rotate(-10deg) scale(1.08); background: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.ds .ds-svc:hover h3, .ds .ds-svc:hover .ds-svc__go, .ds .ds-svc:focus-within h3, .ds .ds-svc:focus-within .ds-svc__go { color: #fff; }
.ds .ds-svc:hover p, .ds .ds-svc:focus-within p, .ds .ds-svc:hover .ds-svc__n { color: rgba(255,255,255,.9); }
.ds-svc:hover .ds-svc__go .ds-i { transform: translateX(6px); }

/* =========================================================
   6. WHY
   ========================================================= */
.ds-why { overflow: hidden; }
.ds-why__bgword {
  position: absolute; right: -2vw; bottom: -6vw; font-family: var(--f-display); font-weight: 800;
  font-size: clamp(9rem, 30vw, 28rem); line-height: .8; letter-spacing: -.06em; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.07); pointer-events: none; user-select: none;
}
.ds-why__in { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.ds-why__intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.ds-why__intro p { margin: 22px 0 30px; }
.ds-why__list { border-top: 1px solid rgba(255,255,255,.12); }
.ds-why__item { display: grid; grid-template-columns: 44px 56px 1fr; gap: 18px; align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.12); transition: padding .4s var(--ease); }
.ds-why__n { font-family: var(--f-display); font-weight: 600; color: var(--pink); padding-top: 14px; }
.ds-why__ico { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #fff; transition: background-color .35s, border-color .35s; }
.ds-why__ico .ds-i { width: 26px; height: 26px; }
.ds .ds-why__item h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); margin-bottom: 6px; }
.ds .ds-why__item p { font-size: .95rem; }
.ds-why__item:hover { padding-left: 10px; }
.ds-why__item:hover .ds-why__ico { background: var(--pink); border-color: var(--pink); }
/* icon animations — play once on reveal, and on hover */
.ds-why__item.is-in .ds-anim-spin .ds-i, .ds-why__item:hover .ds-anim-spin .ds-i { animation: ds-spin 1.2s var(--ease); }
.ds-why__item.is-in .ds-anim-lift .ds-i, .ds-why__item:hover .ds-anim-lift .ds-i { animation: ds-lift 1s var(--ease); }
.ds-why__item.is-in .ds-anim-pulse .ds-i, .ds-why__item:hover .ds-anim-pulse .ds-i { animation: ds-beat 1s var(--ease); }
.ds-why__item.is-in .ds-anim-bars .ds-i, .ds-why__item:hover .ds-anim-bars .ds-i { animation: ds-squash 1s var(--ease); }
.ds-why__item.is-in .ds-anim-rise .ds-i, .ds-why__item:hover .ds-anim-rise .ds-i { animation: ds-rise 1s var(--ease); }
@keyframes ds-spin { from { transform: rotate(-180deg); } }
@keyframes ds-lift { 40% { transform: translateY(-6px); } }
@keyframes ds-beat { 30% { transform: scale(1.25); } 60% { transform: scale(.95); } }
@keyframes ds-squash { 40% { transform: scaleY(.5); transform-origin: bottom; } }
@keyframes ds-rise { 0% { transform: translate(-6px, 6px); opacity: 0; } }

/* =========================================================
   7. PROCESS
   ========================================================= */
.ds-process { background: #fff; }
.ds-timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.ds-timeline::before, .ds-timeline::after { content: ""; position: absolute; left: 28px; right: 28px; top: 27px; height: 2px; border-radius: 2px; }
.ds-timeline::before { background: var(--line); }
.ds-timeline::after { background: linear-gradient(90deg, var(--pink), var(--navy)); transform: scaleX(0); transform-origin: left; transition: transform 2.2s var(--ease); }
.ds-timeline.is-in::after { transform: scaleX(1); }
.ds-tl { position: relative; z-index: 1; }
.ds-tl__dot {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem;
  background: #fff; color: var(--muted); border: 2px solid var(--line);
  transition: background-color .4s, color .4s, border-color .4s, transform .4s var(--ease);
}
.ds .ds-tl h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .01em; color: var(--navy); margin: 22px 0 8px; }
.ds .ds-tl p { font-size: .9rem; }
.ds-timeline.is-in .ds-tl__dot { background: var(--pink); color: #fff; border-color: var(--pink); }
.ds-timeline.is-in .ds-tl:nth-child(1) .ds-tl__dot { transition-delay: .1s; }
.ds-timeline.is-in .ds-tl:nth-child(2) .ds-tl__dot { transition-delay: .45s; }
.ds-timeline.is-in .ds-tl:nth-child(3) .ds-tl__dot { transition-delay: .8s; }
.ds-timeline.is-in .ds-tl:nth-child(4) .ds-tl__dot { transition-delay: 1.15s; }
.ds-timeline.is-in .ds-tl:nth-child(5) .ds-tl__dot { transition-delay: 1.5s; }
.ds-timeline.is-in .ds-tl:nth-child(6) .ds-tl__dot { transition-delay: 1.85s; background: var(--navy); border-color: var(--navy); }
.ds-tl:hover .ds-tl__dot { transform: scale(1.1); }

/* =========================================================
   8. PORTFOLIO
   ========================================================= */
.ds-work { background: var(--bg); }
.ds-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.ds .ds-filter { padding: 10px 16px; border-radius: 999px; font-size: .86rem; font-weight: 600; color: var(--navy); background: #fff; border: 1px solid var(--line); transition: background-color .25s, color .25s, border-color .25s; }
.ds .ds-filter:hover { border-color: var(--navy); }
.ds .ds-filter.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.ds-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(250px, 24vw, 330px); grid-auto-flow: dense; gap: 18px; }
.ds-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--navy); isolation: isolate; animation: ds-cardin .6s var(--ease) both; }
.ds-card.is-feature { grid-column: span 2; grid-row: span 2; }
@keyframes ds-cardin { from { opacity: 0; transform: translateY(18px); } }
.ds-card__media { position: absolute; inset: 0; transition: transform 1s var(--ease); }
.ds-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ds-card__ph { position: absolute; inset: 0; display: grid; place-items: start center; padding-top: 24px; background: var(--ph, linear-gradient(135deg, #1E2766, #0A0F3A)); }
.ds-card__ph::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 40px 40px; }
.ds-card__ph span { position: relative; font-size: .78rem; color: rgba(255,255,255,.6); border: 1px dashed rgba(255,255,255,.3); padding: 8px 14px; border-radius: 999px; }
.ds-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,58,0) 30%, rgba(10,15,58,.92) 100%); z-index: 1; transition: background-color .5s; }
.ds-card__info { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: #fff; transform: translateY(46px); transition: transform .55s var(--ease); }
.ds-card__cat { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; padding: 5px 10px; border-radius: 999px; background: var(--pink); margin-bottom: 12px; }
.ds .ds-card h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.ds .ds-card__meta { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 6px; }
.ds .ds-card__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 600; font-size: .9rem; opacity: 0; transition: opacity .4s .05s; }
.ds .ds-card__cta::before { content: ""; position: absolute; inset: -1200px 0 0 0; } /* whole card clickable */
.ds-card:hover .ds-card__media, .ds-card:focus-within .ds-card__media { transform: scale(1.07); }
.ds-card:hover::after, .ds-card:focus-within::after { background-color: rgba(10,15,58,.35); }
.ds-card:hover .ds-card__info, .ds-card:focus-within .ds-card__info { transform: none; }
.ds-card:hover .ds-card__cta, .ds-card:focus-within .ds-card__cta { opacity: 1; }
.ds-work-empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--muted); }

/* =========================================================
   9. PERFORMANCE SHOWCASE
   ========================================================= */
.ds-perf { overflow: hidden; background: radial-gradient(900px 500px at 90% 10%, rgba(226,10,94,.22), transparent 60%), var(--navy); }
.ds-perf__in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.ds-perf__copy p { margin: 22px 0 24px; }
.ds-ticks { display: grid; gap: 12px; margin-bottom: 32px; }
.ds .ds-ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.88); }
.ds .ds-ticks--light li { color: var(--ink); }
.ds-ticks .ds-i { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--pink); color: #fff; stroke-width: 3; }
.ds-perf__panel { border-radius: var(--r-lg); padding: 22px; }
.ds-perf__top { display: flex; justify-content: space-between; align-items: center; font-family: var(--f-display); font-weight: 600; margin-bottom: 16px; }
.ds-perf__kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.ds-perf__kpis > div { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-sm); padding: 12px; }
.ds-perf__kpis > div > span { font-size: .72rem; color: var(--muted-dark); }
.ds-perf__kpis strong { display: block; font-family: var(--f-display); font-size: clamp(1rem, 1.5vw, 1.3rem); letter-spacing: -.02em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.ds-perf__kpis > div:first-child strong { color: #FF5C98; }
.ds-table-wrap { margin-top: 14px; overflow-x: auto; }
.ds-table { width: 100%; border-collapse: collapse; font-size: .86rem; font-variant-numeric: tabular-nums; }
.ds .ds-table th, .ds .ds-table td { padding: 12px 10px; text-align: right; border-bottom: 1px solid rgba(255,255,255,.08); white-space: nowrap; background: none; color: inherit; }
.ds .ds-table thead th { font-size: .72rem; font-weight: 500; color: var(--muted-dark); }
.ds .ds-table th[scope="row"], .ds .ds-table thead th:first-child { text-align: left; font-weight: 500; }
.ds-table tbody tr { transition: background-color .25s; }
.ds-table tbody tr:hover { background: rgba(255,255,255,.04); }
.ds-ch { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.ds-ch--g { background: #4C8DF6; }
.ds-ch--m { background: var(--pink); }
.ds-perf__bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-top: 16px; }
.ds-perf__bars span { flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--pink), rgba(226,10,94,.2)); transform: scaleY(0); transform-origin: bottom; transition: transform 1s var(--ease); }
.ds-perf__panel.is-in .ds-perf__bars span { transform: none; }
.ds-perf__bars span:nth-child(2) { transition-delay: .06s; } .ds-perf__bars span:nth-child(3) { transition-delay: .12s; } .ds-perf__bars span:nth-child(4) { transition-delay: .18s; } .ds-perf__bars span:nth-child(5) { transition-delay: .24s; } .ds-perf__bars span:nth-child(6) { transition-delay: .3s; } .ds-perf__bars span:nth-child(7) { transition-delay: .36s; } .ds-perf__bars span:nth-child(8) { transition-delay: .42s; } .ds-perf__bars span:nth-child(9) { transition-delay: .48s; } .ds-perf__bars span:nth-child(10) { transition-delay: .54s; }

/* =========================================================
   10. WEBSITE SHOWCASE
   ========================================================= */
.ds-web { background: #fff; overflow: hidden; }
.ds-mock { position: relative; max-width: 1040px; margin: 0 auto; padding-bottom: 40px; }
.ds-browser { border-radius: 22px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.ds-browser__bar { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--bg); border-bottom: 1px solid var(--line); }
.ds-browser__url { flex: 1; max-width: 360px; margin: 0 auto; text-align: center; font-size: .78rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; }
.ds-browser__view { height: clamp(260px, 38vw, 440px); overflow: hidden; }
.ds-site { padding: 22px 30px; transition: transform 5s var(--ease); }
.ds-mock:hover .ds-site { transform: translateY(-34%); }
.ds-site__nav { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.ds-site__nav b { width: 90px; height: 14px; border-radius: 6px; background: var(--navy); }
.ds-site__nav span { width: 50px; height: 8px; border-radius: 4px; background: var(--line); }
.ds-site__nav span:first-of-type { margin-left: auto; }
.ds-site__nav em { width: 80px; height: 26px; border-radius: 999px; background: var(--pink); }
.ds-site__hero { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-bottom: 36px; }
.ds-sk { display: block; height: 10px; border-radius: 6px; background: var(--line); margin-bottom: 10px; width: 90%; }
.ds-sk--h { height: 22px; width: 95%; background: var(--navy); }
.ds-sk--h2 { height: 22px; width: 70%; background: var(--pink); margin-bottom: 18px; }
.ds-sk--s { width: 60%; }
.ds-sk--t { height: 12px; width: 70%; background: #C9CBD8; }
.ds-site__btn { display: inline-block; width: 130px; height: 34px; border-radius: 999px; background: var(--navy); margin-top: 10px; }
.ds-site__img { aspect-ratio: 4/3; border-radius: 16px; background: radial-gradient(circle at 70% 30%, rgba(226,10,94,.55), transparent 55%), linear-gradient(135deg, #1E2766, var(--navy)); }
.ds-site__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.ds-site__cards div { height: 110px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); }
.ds-site__band { height: 120px; border-radius: 16px; background: linear-gradient(120deg, var(--pink), #8B0A55 60%, var(--navy)); margin-bottom: 28px; }
.ds-phone { position: absolute; right: -10px; bottom: 0; width: clamp(130px, 17vw, 190px); aspect-ratio: 9 / 19; border-radius: 30px; background: #fff; border: 7px solid var(--navy); box-shadow: var(--shadow-lg); overflow: hidden; animation: ds-float 8s ease-in-out infinite; }
.ds-phone__notch { width: 40%; height: 14px; background: var(--navy); margin: 0 auto 8px; border-radius: 0 0 10px 10px; }
.ds-site--m { padding: 6px 12px; }
.ds-site--m .ds-site__nav { margin-bottom: 18px; }
.ds-site--m .ds-site__nav b { width: 50px; height: 8px; }
.ds-site--m .ds-site__nav em { width: 18px; height: 12px; margin-left: auto; border-radius: 4px; }
.ds-site--m .ds-sk { height: 6px; margin-bottom: 6px; }
.ds-site--m .ds-sk--h, .ds-site--m .ds-sk--h2 { height: 12px; }
.ds-site--m .ds-site__btn { width: 70px; height: 18px; margin: 4px 0 12px; }
.ds-site--m .ds-site__img { border-radius: 10px; margin-bottom: 10px; }
.ds-site--m .ds-site__cards { grid-template-columns: 1fr 1fr; gap: 6px; }
.ds-site--m .ds-site__cards div { height: 44px; border-radius: 8px; }
.ds-feats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 44px auto 36px; max-width: 1120px; }
.ds .ds-feats li { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--navy); transition: transform .3s var(--ease), border-color .3s; }
.ds-feats .ds-i { color: var(--pink); }
.ds .ds-feats li:hover { transform: translateY(-3px); border-color: var(--pink); }

/* =========================================================
   11. SEO
   ========================================================= */
.ds-seo { background: var(--bg); }
.ds-seo__in { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.ds-seo__copy p { margin: 22px 0 24px; }
.ds-seo__vis { display: grid; gap: 14px; }
.ds-serp { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow); }
.ds-serp__bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(10,15,58,.06); margin-bottom: 14px; font-size: .92rem; color: var(--ink); }
.ds-serp__bar .ds-i { color: var(--muted); width: 18px; height: 18px; }
.ds-caret { width: 1.5px; height: 18px; background: var(--pink); animation: ds-blink 1s steps(1) infinite; }
.ds-serp__list li { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: 16px; transition: background-color .3s; }
.ds-serp__list li + li { margin-top: 4px; opacity: .6; }
.ds-serp__list li.is-you { background: var(--pink-050); outline: 1.5px solid rgba(226,10,94,.35); }
.ds-serp__pos { font-family: var(--f-display); font-weight: 700; color: var(--muted); }
.is-you .ds-serp__pos { color: var(--pink); }
.ds-serp__list small { display: block; font-size: .72rem; color: #188038; }
.ds-serp__list b { display: block; font-size: .98rem; color: #1A0DAB; font-weight: 600; margin: 2px 0 6px; }
.ds-serp__list .ds-sk { margin: 0; height: 8px; }
.ds-seo__graph { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 20px; }
.ds-seo__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.ds-seo__stats span { font-size: .75rem; color: var(--muted-dark); }
.ds-seo__stats strong { display: block; font-family: var(--f-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; color: #fff; }
.ds-seo__stats div:first-child strong { color: #FF5C98; }
.ds-seo__graph svg { width: 100%; height: 110px; }
.ds-seo__graph svg path:first-of-type { fill: rgba(226,10,94,.15); }
.ds-seo__line { fill: none; stroke: #FF5C98; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.ds--js .ds-seo__vis .ds-draw { animation: none; }
.ds--js .ds-seo__vis.is-in .ds-draw { animation: ds-draw 2s .2s var(--ease) forwards; }
.ds .ds-seo__graph .ds-demo-note { color: var(--muted-dark); }

/* =========================================================
   12. INDUSTRIES
   ========================================================= */
.ds-ind { background: #fff; }
.ds-ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.ds .ds-ind-grid li {
  position: relative; display: flex; align-items: center; gap: 16px; padding: 30px 24px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; color: var(--navy);
  overflow: hidden; isolation: isolate; transition: color .35s;
}
.ds-ind-grid li::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--pink); transform: translateY(101%); transition: transform .45s var(--ease); }
.ds-ind-grid .ds-i { width: 30px; height: 30px; color: var(--pink); transition: transform .45s var(--ease), color .35s; }
.ds .ds-ind-grid li:hover { color: #fff; }
.ds-ind-grid li:hover::before { transform: none; }
.ds-ind-grid li:hover .ds-i { color: #fff; transform: translateY(-3px) rotate(-6deg); }

/* =========================================================
   13. RESULTS
   ========================================================= */
.ds-results { background: var(--pink); color: #fff; overflow: hidden; }
.ds-results__bg { position: absolute; inset: 0; background: radial-gradient(600px 400px at 10% 0%, rgba(255,255,255,.18), transparent 60%), radial-gradient(700px 500px at 100% 100%, rgba(10,15,58,.5), transparent 60%); }
.ds-results .ds-wrap { position: relative; }
.ds .ds-results__title { color: #fff; max-width: none; font-size: clamp(2.6rem, 7vw, 6rem); margin-bottom: 48px; }
.ds-results__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.35); }
.ds-results__grid li { padding: 32px 24px 8px 0; }
.ds-results__grid li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.35); }
.ds-results__grid strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.ds-results__grid li > span { display: block; margin-top: 10px; font-weight: 500; }
.ds .ds-results__note { margin-top: 40px; font-size: .82rem; color: rgba(255,255,255,.85); }

/* =========================================================
   14. TESTIMONIALS
   ========================================================= */
.ds-testi { background: var(--bg); }
.ds-slider__nav { display: flex; gap: 10px; justify-content: flex-end; }
.ds .ds-round { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--navy); transition: background-color .25s, color .25s, transform .25s var(--ease); }
.ds .ds-round:hover { background: var(--navy); color: #fff; }
.ds .ds-round:active { transform: scale(.94); }
.ds .ds-round:disabled { opacity: .35; pointer-events: none; }
.ds-slider { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 36px) / 3); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px; margin: -4px; }
.ds-slider::-webkit-scrollbar { display: none; }
.ds-quote { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; min-height: 300px; }
.ds-quote__mark { font-family: var(--f-display); font-size: 4rem; line-height: .6; color: var(--pink); height: 30px; }
.ds .ds-quote blockquote p { font-size: 1.08rem; color: var(--ink); margin-top: 16px; }
.ds-quote footer { margin-top: auto; padding-top: 24px; display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.ds-quote__av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--navy)); display: grid; place-items: center; color: #fff; font-family: var(--f-display); font-weight: 700; flex: none; overflow: hidden; }
.ds-quote__av img { width: 100%; height: 100%; object-fit: cover; }
.ds-quote cite { font-style: normal; display: block; font-weight: 600; color: var(--navy); }
.ds-quote small { color: var(--muted); font-size: .84rem; }
.ds-dots-nav { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.ds .ds-dots-nav button { width: 10px; height: 10px; border-radius: 999px; background: #D5D6E2; transition: width .35s var(--ease), background-color .3s; }
.ds .ds-dots-nav button[aria-current="true"] { width: 30px; background: var(--pink); }

/* =========================================================
   15. FAQ
   ========================================================= */
.ds-faq { background: #fff; }
.ds-faq__in { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.ds-faq__intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.ds-faq__intro p { margin: 20px 0 28px; }
.ds-acc { border-top: 1px solid var(--line); }
.ds-acc__item { border-bottom: 1px solid var(--line); }
.ds-acc__item h3 { font-size: inherit; }
.ds .ds-acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; text-align: left; font-family: var(--f-display); font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--navy); transition: color .25s; }
.ds .ds-acc__btn:hover { color: var(--pink); }
.ds-acc__ico { position: relative; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; transition: background-color .3s, border-color .3s, transform .4s var(--ease); }
.ds-acc__ico::before, .ds-acc__ico::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease); }
.ds-acc__ico::after { transform: rotate(90deg); }
.ds-acc__btn[aria-expanded="true"] .ds-acc__ico { background: var(--pink); border-color: var(--pink); color: #fff; transform: rotate(180deg); }
.ds-acc__btn[aria-expanded="true"] .ds-acc__ico::after { transform: rotate(0deg); }
.ds-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.ds-acc__panel > div { overflow: hidden; min-height: 0; }
.ds-acc__panel p { padding: 0 56px 24px 0; }
.ds-acc__item.is-open .ds-acc__panel { grid-template-rows: 1fr; }

/* =========================================================
   16. FINAL CTA
   ========================================================= */
.ds-final { overflow: hidden; text-align: center; padding-block: clamp(110px, 14vw, 200px); }
.ds-orb {
  position: absolute; left: 50%; top: 50%; width: min(820px, 120vw); aspect-ratio: 1; margin: calc(min(820px, 120vw) / -2) 0 0 calc(min(820px, 120vw) / -2);
  border-radius: 50%; background: conic-gradient(from 0deg, var(--pink), #7B0B6B, var(--navy-3), #FF4F8B, var(--pink));
  filter: blur(90px); opacity: .55; animation: ds-orb 16s linear infinite;
}
@keyframes ds-orb { 0% { transform: rotate(0) scale(1); } 50% { transform: rotate(180deg) scale(1.12); } 100% { transform: rotate(360deg) scale(1); } }
.ds-final__in { position: relative; }
.ds .ds-final__title { font-size: clamp(2.6rem, 7.4vw, 6.6rem); font-weight: 800; line-height: .95; letter-spacing: -.045em; text-transform: uppercase; max-width: 14ch; margin: 0 auto; text-wrap: balance; }
.ds .ds-final__title em { color: #fff; -webkit-text-stroke: 0; background: linear-gradient(90deg, #FF7BAC, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ds .ds-final p { margin: 26px auto 38px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.82); }
.ds-final__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* =========================================================
   17. CONTACT
   ========================================================= */
.ds-contact { background: var(--bg); }
.ds-contact__in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.ds-contact__info p { margin: 22px 0 30px; }
.ds-channels-list { display: grid; gap: 10px; }
.ds .ds-channels-list a { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.ds .ds-channels-list a:hover { border-color: var(--pink); transform: translateX(4px); box-shadow: var(--shadow); }
.ds-cico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--navy); color: #fff; flex: none; }
.ds-cico--wa { background: #1FAF55; }
.ds-channels-list small { display: block; font-size: .75rem; color: var(--muted); }
.ds-channels-list b { font-weight: 600; color: var(--navy); word-break: break-word; }
.ds-channels-list .ds-go { margin-left: auto; color: var(--pink); transition: transform .3s var(--ease); }
.ds-channels-list a:hover .ds-go { transform: translateX(4px); }

.ds-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3.2vw, 40px); box-shadow: var(--shadow-lg); }
.ds-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ds-field { display: grid; gap: 7px; align-content: start; }
.ds-field--full { grid-column: 1 / -1; }
.ds .ds-field label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.ds .ds-field label span { color: var(--pink); }
.ds .ds-field :is(input, select, textarea) {
  width: 100%; min-height: 52px; padding: 13px 16px; border-radius: 14px;
  background: var(--bg); border: 1.5px solid transparent; color: var(--ink); font-size: 1rem;
  transition: border-color .25s, background-color .25s, box-shadow .25s; appearance: none; -webkit-appearance: none; box-shadow: none; margin: 0;
}
.ds .ds-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%230A0F3A' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.ds .ds-field textarea { resize: vertical; min-height: 120px; }
.ds .ds-field :is(input, select, textarea):hover { border-color: var(--line); }
.ds .ds-field :is(input, select, textarea):focus { outline: none; border-color: var(--pink); background-color: #fff; box-shadow: 0 0 0 4px rgba(226,10,94,.12); }
.ds .ds-field.is-invalid :is(input, select) { border-color: #D1123F; background-color: #FFF5F7; }
.ds-err { font-size: .78rem; color: #C0103A; min-height: 0; }
.ds-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ds-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 26px; }
.ds .ds-form__note { font-size: .82rem; }
.ds-form__status { margin-top: 18px; }
.ds-form__status:empty { display: none; }
.ds-form__status.is-ok { padding: 14px 18px; border-radius: 14px; background: #E8F7EF; color: #0B6B43; font-weight: 500; }
.ds-form__status.is-err { padding: 14px 18px; border-radius: 14px; background: #FFF0F3; color: #A30D33; font-weight: 500; }

/* =========================================================
   18. FOOTER
   ========================================================= */
.ds-footer { position: relative; overflow: hidden; padding: 88px 0 0; }
.ds-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ds-footer__brand p { margin: 18px 0 22px; max-width: 32ch; }
.ds .ds-footer h3 { font-size: .95rem; margin-bottom: 18px; color: #fff; }
.ds .ds-footer nav li + li, .ds .ds-footer__contact li + li { margin-top: 10px; }
.ds .ds-footer nav a, .ds .ds-footer__contact a, .ds .ds-footer__contact span { color: var(--muted-dark); font-size: .92rem; transition: color .2s; }
.ds .ds-footer nav a:hover, .ds .ds-footer__contact a:hover { color: #fff; }
.ds .ds-footer__contact li { display: flex; gap: 10px; align-items: center; }
.ds-footer__contact .ds-i { color: var(--pink); width: 18px; height: 18px; }
.ds-social { display: flex; gap: 10px; }
.ds .ds-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #fff; transition: background-color .25s, transform .25s var(--ease); }
.ds .ds-social a:hover { background: var(--pink); transform: translateY(-3px); }
.ds-social .ds-i { width: 18px; height: 18px; }
.ds-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 24px 0; }
.ds .ds-footer__bottom p { font-size: .85rem; max-width: none; }
.ds .ds-footer__bottom a { margin-left: 20px; }
.ds .ds-footer__bottom a:hover { color: #fff; }
.ds-footer__word { font-family: var(--f-display); font-weight: 800; font-size: clamp(3.4rem, 15vw, 14rem); letter-spacing: -.06em; line-height: .78; text-align: center; color: rgba(255,255,255,.04); user-select: none; white-space: nowrap; margin-bottom: -.1em; }

/* Floating WhatsApp */
.ds .ds-wa-float { position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 90; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #1FAF55; color: #fff; box-shadow: 0 14px 30px -10px rgba(31,175,85,.7); transition: transform .3s var(--ease); }
.ds .ds-wa-float .ds-i { width: 28px; height: 28px; }
.ds .ds-wa-float:hover { transform: scale(1.08); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  .ds-svc-grid { grid-template-columns: repeat(4, 1fr); }
  .ds-svc { padding: 22px; }
}
@media (max-width: 1100px) {
  .ds-nav__links { gap: 0; }
  .ds .ds-nav__links a { padding: 8px 9px; font-size: .88rem; }
  .ds-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-svc { min-height: 250px; }
  .ds .ds-svc h3 { max-width: none; }
  .ds-perf__in { grid-template-columns: 1fr; }
  .ds-perf__copy { max-width: 640px; }
  .ds-timeline { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
  .ds-timeline::before, .ds-timeline::after { display: none; }
}
@media (max-width: 1024px) {
  .ds { --nav-h: 68px; }
  .ds-nav__links { display: none; }
  .ds-nav__cta { margin-left: auto; }
  .ds .ds-burger { margin-left: 0; }
  .ds-burger { display: block; }
  .ds-hero__in { grid-template-columns: 1fr; }
  .ds-hero { min-height: 0; }
  .ds-hero__copy { max-width: 720px; }
  .ds-hero__visual { max-width: 640px; }
  .ds-about__in, .ds-seo__in, .ds-contact__in, .ds-faq__in, .ds-why__in { grid-template-columns: 1fr; }
  .ds-why__intro, .ds-faq__intro { position: static; }
  .ds-head--split { grid-template-columns: 1fr; }
  .ds-filters { justify-content: flex-start; }
  .ds-slider__nav { justify-content: flex-start; }
  .ds-slider { grid-auto-columns: calc((100% - 18px) / 2); }
  .ds-ind-grid { grid-template-columns: repeat(3, 1fr); }
  .ds-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ds-wrap { width: calc(100% - 40px); }
  .ds-stats { grid-template-columns: 1fr 1fr; }
  .ds-stat { padding: 28px 16px; border-bottom: 1px solid var(--line); }
  .ds-stat:nth-child(odd) { padding-left: 0; }
  .ds-stat:nth-child(2) { border-right: 0; }
  .ds-stat:nth-child(n+3) { border-bottom: 0; }
  .ds-work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .ds-card.is-feature { grid-row: span 1; }
  .ds-perf__kpis { grid-template-columns: repeat(3, 1fr); }
  .ds-results__grid { grid-template-columns: 1fr 1fr; }
  .ds-results__grid li:nth-child(3) { padding-left: 0; border-left: 0; }
  .ds-results__grid li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.35); margin-top: 24px; }
  .ds-phone { right: 0; }
}

/* ---- Dedicated mobile layouts ---- */
@media (max-width: 600px) {
  .ds { font-size: 15.5px; }
  .ds-wrap { width: calc(100% - 36px); }
  .ds-sec { padding-block: 76px; }
  .ds .ds-h2 { font-size: clamp(1.85rem, 8.4vw, 2.4rem); max-width: none; }

  /* Hero: stacked, full-width CTAs, compact visual */
  .ds-hero { padding: calc(var(--nav-h) + 28px) 0 48px; }
  .ds .ds-eyebrow { font-size: .62rem; letter-spacing: .1em; padding: 7px 12px; margin-bottom: 20px; }
  .ds .ds-hero__title { font-size: clamp(2.2rem, 11vw, 3rem); letter-spacing: -.035em; }
  .ds .ds-hero__lead { margin: 20px 0 26px; }
  .ds-hero__ctas { display: grid; grid-template-columns: 1fr; }
  .ds-hero__ctas .ds-btn { width: 100%; }
  .ds-hero__trust { gap: 6px 14px; margin-top: 26px; }
  .ds .ds-hero__trust li { gap: 14px; font-size: .85rem; }
  .ds-hero__visual { margin-top: 12px; }
  .ds-stage { padding: 22px 0 58px; }
  .ds .ds-nav__cta { display: none; }
  .ds .ds-burger { margin-left: auto; }
  .ds-dash { padding: 14px; border-radius: 22px; }
  .ds-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ds-float--seo, .ds-float--social { display: none; }
  .ds-float--ads { left: auto; right: 6px; top: -4px; padding: 8px 12px; }
  .ds-float--lead { right: auto; left: 8px; bottom: 0; padding: 10px 12px; }
  .ds-chart__svg { height: 100px; }
  .ds .ds-demo-note { margin-right: 0; }

  /* Services: compact list rows */
  .ds-svc-grid { grid-template-columns: 1fr; gap: 10px; }
  .ds-svc { min-height: 0; padding: 20px 20px 20px 84px; }
  .ds-svc__ico { left: 20px; right: auto; top: 20px; width: 48px; height: 48px; }
  .ds-svc__n { position: absolute; right: 20px; top: 20px; }
  .ds .ds-svc h3 { padding-top: 0; margin-top: 0; font-size: 1.08rem; padding-right: 26px; }
  .ds .ds-svc p { font-size: .88rem; margin-top: 6px; }
  .ds .ds-svc__go { margin-top: 10px; }
  .ds-svc:hover, .ds-svc:focus-within { transform: none; }

  .ds-why__item { grid-template-columns: 48px 1fr; gap: 14px; padding: 22px 0; }
  .ds-why__n { display: none; }
  .ds-why__ico { width: 48px; height: 48px; border-radius: 14px; }

  /* Process: vertical timeline */
  .ds-timeline { grid-template-columns: 1fr; gap: 0; padding-left: 0; }
  .ds-timeline::before, .ds-timeline::after { display: block; left: 23px; right: auto; top: 10px; bottom: 90px; width: 2px; height: auto; }
  .ds-timeline::after { transform: scaleY(0); transform-origin: top; background: linear-gradient(180deg, var(--pink), var(--navy)); }
  .ds-timeline.is-in::after { transform: scaleY(1); }
  .ds-tl { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; padding-bottom: 26px; }
  .ds-tl__dot { width: 48px; height: 48px; grid-row: span 2; font-size: .85rem; }
  .ds .ds-tl h3 { margin: 4px 0 4px; }

  /* Portfolio: horizontal scroll filters, single column */
  .ds-filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: -18px; padding: 0 18px 4px; scrollbar-width: none; }
  .ds-filters::-webkit-scrollbar { display: none; }
  .ds .ds-filter { flex: none; }
  .ds-work-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin-inline: -18px; padding: 0 18px 8px; scroll-padding-inline: 18px; scrollbar-width: none; }
  .ds-work-grid::-webkit-scrollbar { display: none; }
  .ds-card, .ds-card.is-feature { flex: 0 0 84%; height: 380px; scroll-snap-align: start; }
  .ds-card__info { transform: none; padding: 20px; }
  .ds .ds-card__cta { opacity: 1; }

  /* Performance: table becomes stacked cards */
  .ds-perf__panel { padding: 16px; margin-inline: -4px; }
  .ds-perf__kpis { grid-template-columns: 1fr 1fr; }
  .ds-perf__kpis > div:first-child { grid-column: 1 / -1; }
  .ds-table thead { display: none; }
  .ds-table, .ds-table tbody, .ds-table tr { display: block; }
  .ds-table tr { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .ds .ds-table th[scope="row"] { grid-column: 1 / -1; padding: 0 0 6px; border: 0; font-weight: 600; }
  .ds .ds-table td { display: flex; flex-direction: column; text-align: left; padding: 0; border: 0; font-size: .82rem; }
  .ds-table td::before { content: attr(data-label); font-size: .66rem; color: var(--muted-dark); }

  .ds-browser__view { height: 240px; }
  .ds-site { padding: 16px; }
  .ds-site__hero { grid-template-columns: 1fr; }
  .ds-site__img { display: none; }
  .ds-phone { width: 112px; right: -4px; border-width: 5px; border-radius: 22px; }
  .ds-feats { display: grid; grid-template-columns: 1fr 1fr; margin: 32px 0 28px; }
  .ds .ds-feats li { padding: 12px 14px; font-size: .86rem; }
  .ds-center .ds-btn { width: 100%; }

  .ds-serp { padding: 12px; }
  .ds-serp__bar { font-size: .82rem; }
  .ds-serp__list li { grid-template-columns: 36px 1fr; padding: 10px; }
  .ds-serp__list .ds-tag { display: none; }

  .ds-ind-grid { grid-template-columns: 1fr 1fr; }
  .ds .ds-ind-grid li { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 16px; font-size: .92rem; }

  .ds-results__grid li, .ds-results__grid li + li { padding: 24px 12px 0 0; }
  .ds-results__grid li:nth-child(even) { padding-left: 16px; }

  .ds-slider { grid-auto-columns: 88%; gap: 12px; }
  .ds-quote { padding: 24px; min-height: 280px; }

  .ds .ds-acc__btn { padding: 20px 0; }
  .ds-acc__panel p { padding-right: 0; }

  .ds-final__ctas { display: grid; }
  .ds-final__ctas .ds-btn { width: 100%; }

  .ds-form__grid { grid-template-columns: 1fr; gap: 14px; }
  .ds-form__foot .ds-btn { width: 100%; }

  .ds-footer { padding-top: 64px; }
  .ds-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .ds-footer__brand { grid-column: 1 / -1; }
  .ds-footer__grid > div:last-child { grid-column: 1 / -1; }
  .ds-footer__bottom { flex-direction: column; }
  .ds .ds-footer__bottom a { margin: 0 18px 0 0; }
  .ds .ds-wa-float { width: 52px; height: 52px; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 360px) {
  .ds .ds-hero__title { font-size: 2.05rem; }
  .ds-kpi { padding: 10px; }
  .ds-table tr { grid-template-columns: repeat(3, 1fr); row-gap: 10px; }
  .ds-feats { grid-template-columns: 1fr; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .ds *, .ds *::before, .ds *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .ds--js [data-reveal], .ds--js .ds-hero__copy > *, .ds--js .ds-hero__visual { opacity: 1 !important; transform: none !important; }
  .ds-marquee__track { animation: none !important; }
  .ds-draw { stroke-dashoffset: 0 !important; }
  .ds-cursor { display: none !important; }
}

/* Navbar while mobile menu is open */
.ds-nav.is-menu { background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
.ds .ds-nav.is-menu .ds-logo { color: #fff; }
.ds-nav.is-menu .ds-burger { background: var(--pink) !important; }
