/* ============================================================
   designsherman.com — Design System
   Palette: Coral #E8421A + Near-Black #111111 + White #FFFFFF
   Fonts:   Epilogue (headings) + Nunito Sans (body)
   Nav:     Transparent → filled on scroll
   Hero:    Dark overlay fullscreen typographic
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --dsh-black:   #111111;
  --dsh-dark:    #1C1C1E;
  --dsh-coral:   #E8421A;
  --dsh-coral2:  #FF6040;
  --dsh-white:   #FFFFFF;
  --dsh-cream:   #FAFAFA;
  --dsh-gray:    #F3F3F1;
  --dsh-mid:     #555555;
  --dsh-muted:   #999999;
  --dsh-border:  rgba(17,17,17,.1);
  --dsh-border2: rgba(17,17,17,.06);
  --dsh-ease:    all .22s ease;
  --dsh-ease-s:  all .18s ease;
  --dsh-r4:      4px;
  --dsh-r6:      6px;
  --dsh-r10:     10px;
  --dsh-r16:     16px;
  --dsh-r24:     24px;
  --dsh-wrap:    1140px;
  --dsh-fh:      'Epilogue', sans-serif;
  --dsh-fb:      'Nunito Sans', sans-serif;
  --dsh-shadow:  0 2px 12px rgba(17,17,17,.07);
  --dsh-shadow2: 0 8px 40px rgba(17,17,17,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--dsh-fb);
  font-size: .9375rem;
  line-height: 1.72;
  color: var(--dsh-mid);
  background: var(--dsh-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--dsh-fh);
  color: var(--dsh-black);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; }
p  { max-width: 68ch; word-wrap: break-word; }

/* ── LAYOUT ─────────────────────────────────────── */
.dsh-contain  { max-width: var(--dsh-wrap); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.dsh-slab     { padding: clamp(4rem, 8vw, 6rem) 0; }
.dsh-slab-sm  { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.dsh-slab-alt { background: var(--dsh-gray); }
.dsh-slab-dk  { background: var(--dsh-black); }

/* ── EYEBROW ─────────────────────────────────────── */
.dsh-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--dsh-fb); font-size: .8125rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--dsh-coral);
  margin-bottom: .875rem;
}
.dsh-eyebrow::before {
  content: ''; width: 20px; height: 2px; background: var(--dsh-coral); flex-shrink: 0;
}
.dsh-eyebrow-lt { color: rgba(255,255,255,.5); }
.dsh-eyebrow-lt::before { background: rgba(255,255,255,.5); }

.dsh-section-intro { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.dsh-section-intro h2 { margin-bottom: .75rem; }
.dsh-section-intro p  { color: var(--dsh-muted); font-size: 1.0625rem; }
.dsh-center { text-align: center; }
.dsh-center p { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────── */
.dsh-btn-coral {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8125rem 1.75rem;
  background: var(--dsh-coral); color: var(--dsh-white);
  font-family: var(--dsh-fh); font-size: .9375rem; font-weight: 700;
  border: 2px solid var(--dsh-coral); border-radius: var(--dsh-r4);
  transition: var(--dsh-ease); white-space: nowrap; letter-spacing: .01em;
}
.dsh-btn-coral:hover {
  background: var(--dsh-black); border-color: var(--dsh-black);
  transform: translateY(-1px);
}

.dsh-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8125rem 1.75rem;
  background: transparent; color: var(--dsh-black);
  font-family: var(--dsh-fh); font-size: .9375rem; font-weight: 700;
  border: 2px solid var(--dsh-black); border-radius: var(--dsh-r4);
  transition: var(--dsh-ease); white-space: nowrap;
}
.dsh-btn-outline:hover { background: var(--dsh-black); color: var(--dsh-white); }

.dsh-btn-outline-lt {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8125rem 1.75rem;
  background: transparent; color: var(--dsh-white);
  font-family: var(--dsh-fh); font-size: .9375rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,.35); border-radius: var(--dsh-r4);
  transition: var(--dsh-ease); white-space: nowrap;
}
.dsh-btn-outline-lt:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }

.dsh-btn-text {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--dsh-fh); font-size: .9375rem; font-weight: 700;
  color: var(--dsh-coral); background: none; border: none; padding: 0;
  transition: gap .2s ease;
}
.dsh-btn-text:hover { gap: .65rem; }

.dsh-btn-sm { padding: .5625rem 1.25rem; font-size: .875rem; }

/* ── NAVIGATION ──────────────────────────────────── */
.dsh-nav-outer {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.dsh-nav-outer.dsh-nav-clear { background: transparent; }
.dsh-nav-outer.dsh-nav-filled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(17,17,17,.08);
}
.dsh-nav-rail {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}
.dsh-nav-logo {
  font-family: var(--dsh-fh); font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
  font-weight: 900; color: var(--dsh-white); letter-spacing: -.03em;
  flex-shrink: 0; transition: color .3s ease;
}
.dsh-nav-outer.dsh-nav-filled .dsh-nav-logo { color: var(--dsh-black); }
.dsh-logo-s { color: var(--dsh-coral); }
.dsh-nav-links {
  display: flex; align-items: center; gap: 0; flex: 1; justify-content: center;
}
.dsh-nav-link {
  font-family: var(--dsh-fb); font-size: 1.0rem; font-weight: 600;
  color: rgba(255,255,255,.8); padding: .5rem .875rem;
  transition: color .25s ease; white-space: nowrap; position: relative;
}
.dsh-nav-outer.dsh-nav-filled .dsh-nav-link { color: var(--dsh-mid); }
.dsh-nav-link:hover { color: var(--dsh-coral); }
.dsh-nav-outer.dsh-nav-filled .dsh-nav-link:hover { color: var(--dsh-coral); }
.dsh-nav-link.dsh-nav-on { color: var(--dsh-coral) !important; }
.dsh-nav-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.dsh-nav-cta-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.125rem;
  font-family: var(--dsh-fh); font-size: .875rem; font-weight: 700;
  color: var(--dsh-white); border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--dsh-r4); transition: var(--dsh-ease);
}
.dsh-nav-outer.dsh-nav-filled .dsh-nav-cta-ghost {
  color: var(--dsh-black); border-color: var(--dsh-black);
}
.dsh-nav-cta-ghost:hover { background: var(--dsh-coral); color: var(--dsh-white); border-color: var(--dsh-coral); }
.dsh-mob-btn {
  display: none; background: none; border: none;
  color: var(--dsh-white); padding: .4rem; transition: color .3s;
}
.dsh-nav-outer.dsh-nav-filled .dsh-mob-btn { color: var(--dsh-black); }
.dsh-nav-pad { height: 72px; }

/* Mobile overlay panel */
.dsh-mob-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--dsh-black);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 2rem; overflow-y: auto; display: flex; flex-direction: column;
}
.dsh-mob-overlay.dsh-mob-open { transform: translateX(0); }
.dsh-mob-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.dsh-mob-logo { font-family: var(--dsh-fh); font-size: 1.5rem; font-weight: 900; color: var(--dsh-white); }
.dsh-mob-close-btn { background: none; border: none; color: rgba(255,255,255,.6); }
.dsh-mob-links { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.dsh-mob-nav-link {
  font-family: var(--dsh-fh); font-size: 1.5rem; font-weight: 700;
  color: rgba(255,255,255,.7); padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.dsh-mob-nav-link:hover { color: var(--dsh-coral); }
.dsh-mob-foot { margin-top: 2rem; }

/* ── FOOTER ──────────────────────────────────────── */
.dsh-footer { background: var(--dsh-black); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.dsh-footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
.dsh-ft-logo {
  font-family: var(--dsh-fh); font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 900; color: var(--dsh-white); letter-spacing: -.03em;
  margin-bottom: .875rem;
}
.dsh-ft-tagline { font-size: .875rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; max-width: 28ch; line-height: 1.6; }
.dsh-ft-social { display: flex; gap: .5rem; margin-bottom: .875rem; }
.dsh-ft-soc-ico {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: var(--dsh-ease);
}
.dsh-ft-soc-ico:hover { border-color: var(--dsh-coral); color: var(--dsh-coral); }
.dsh-ft-disc { font-size: .75rem; color: rgba(255,255,255,.25); line-height: 1.55; }
.dsh-ft-col-head { font-family: var(--dsh-fh); font-size: .8125rem; font-weight: 700; color: var(--dsh-white); margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.dsh-ft-links { display: flex; flex-direction: column; gap: .5rem; }
.dsh-ft-link { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .2s; }
.dsh-ft-link:hover { color: var(--dsh-coral); }
.dsh-ft-contact-row { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: .625rem; }
.dsh-ft-contact-row svg { color: var(--dsh-coral); flex-shrink: 0; margin-top: .2rem; }
.dsh-ft-contact-row a { color: rgba(255,255,255,.6); transition: color .2s; }
.dsh-ft-contact-row a:hover { color: var(--dsh-coral); }
.dsh-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.dsh-ft-copy { font-size: .8125rem; color: rgba(255,255,255,.25); }
.dsh-ft-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.dsh-ft-legal-link { font-size: .8125rem; color: rgba(255,255,255,.3); transition: color .2s; }
.dsh-ft-legal-link:hover { color: var(--dsh-coral); }

/* ── HERO ────────────────────────────────────────── */
.dsh-hero {
  position: relative; min-height: 100vh;
  background: var(--dsh-black); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.dsh-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0a05 0%, #0d0d10 50%, #050810 100%);
}
.dsh-hero-bg-img {
  position: absolute; inset: 0; object-fit: cover; object-position: center;
  width: 100%; height: 100%; opacity: .25; mix-blend-mode: luminosity;
}
.dsh-hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(232,66,26,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,66,26,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.dsh-hero-body { position: relative; z-index: 2; padding-top: 120px; }
.dsh-hero-kicker {
  display: inline-flex; align-items: center; gap: .625rem;
  font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.4);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2rem;
  font-family: var(--dsh-fb);
}
.dsh-hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dsh-coral); animation: dsh-pulse 2.5s ease infinite; }
@keyframes dsh-pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.dsh-hero h1 { color: var(--dsh-white); margin-bottom: 1.5rem; }
.dsh-hero h1 .dsh-hero-accent { color: var(--dsh-coral); }
.dsh-hero-desc { font-size: clamp(.9375rem, 1.8vw, 1.125rem); color: rgba(255,255,255,.55); margin-bottom: 2.5rem; max-width: 52ch; line-height: 1.75; }
.dsh-hero-acts { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.dsh-hero-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 2rem; }
.dsh-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.dsh-hero-stat {
  padding: 1.25rem 0; border-right: 1px solid rgba(255,255,255,.08);
  padding-right: 1.5rem; padding-left: .5rem;
}
.dsh-hero-stat:first-child { padding-left: 0; }
.dsh-hero-stat:last-child { border-right: none; }
.dsh-hero-stat-n {
  font-family: var(--dsh-fh); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900; color: var(--dsh-white); line-height: 1; margin-bottom: .25rem;
}
.dsh-hero-stat-l { font-size: .8125rem; color: rgba(255,255,255,.35); }
.dsh-hero-scroll-hint {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 2;
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: rgba(255,255,255,.3); font-family: var(--dsh-fb);
  animation: dsh-float 3s ease infinite;
}
@keyframes dsh-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

/* ── WORK GRID ───────────────────────────────────── */
.dsh-works-mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.dsh-work-tile {
  position: relative; border-radius: var(--dsh-r10); overflow: hidden;
  aspect-ratio: 4/3; background: var(--dsh-gray); cursor: pointer;
}
.dsh-work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dsh-work-tile:hover img { transform: scale(1.06); }
.dsh-work-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.9) 40%, transparent 75%);
  opacity: 0; transition: opacity .35s ease; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.dsh-work-tile:hover .dsh-work-shade { opacity: 1; }
.dsh-work-type { font-size: .75rem; color: rgba(255,255,255,.55); margin-bottom: .3rem; font-family: var(--dsh-fb); text-transform: uppercase; letter-spacing: .08em; }
.dsh-work-title { font-family: var(--dsh-fh); font-size: 1.0625rem; font-weight: 700; color: var(--dsh-white); margin-bottom: .375rem; }
.dsh-work-year { font-size: .75rem; color: rgba(255,255,255,.4); }
.dsh-work-color-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

/* ── SERVICES LIST ───────────────────────────────── */
.dsh-svc-editorial { display: flex; flex-direction: column; }
.dsh-svc-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 2rem; padding: 2rem 0;
  border-bottom: 1px solid var(--dsh-border);
  transition: var(--dsh-ease); cursor: pointer;
  text-decoration: none; color: inherit;
}
.dsh-svc-row:first-child { border-top: 1px solid var(--dsh-border); }
.dsh-svc-row:hover { background: var(--dsh-gray); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.dsh-svc-row:hover .dsh-svc-row-num { color: var(--dsh-coral); }
.dsh-svc-row:hover .dsh-svc-row-arrow { transform: translateX(6px) rotate(-45deg); color: var(--dsh-coral); }
.dsh-svc-row-num { font-family: var(--dsh-fh); font-size: 2rem; font-weight: 900; color: var(--dsh-border); letter-spacing: -.04em; transition: color .25s; }
.dsh-svc-row-ico { width: 40px; height: 40px; border-radius: var(--dsh-r6); background: var(--dsh-gray); display: flex; align-items: center; justify-content: center; color: var(--dsh-coral); margin-bottom: .625rem; flex-shrink: 0; }
.dsh-svc-row-body { display: flex; flex-direction: column; }
.dsh-svc-row-name { font-family: var(--dsh-fh); font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 700; color: var(--dsh-black); margin-bottom: .375rem; }
.dsh-svc-row-desc { font-size: .9375rem; color: var(--dsh-muted); max-width: 55ch; }
.dsh-svc-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.dsh-svc-row-price { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); font-size: 1.0625rem; white-space: nowrap; }
.dsh-svc-row-arrow { transition: transform .25s ease, color .25s ease; color: var(--dsh-muted); }

/* ── ABOUT BAND ──────────────────────────────────── */
.dsh-about-band {
  background: var(--dsh-black); padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.dsh-about-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.dsh-about-img-wrap { position: relative; border-radius: var(--dsh-r16); overflow: hidden; aspect-ratio: 4/5; background: #222; }
.dsh-about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dsh-about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--dsh-coral); color: var(--dsh-white);
  font-family: var(--dsh-fh); font-size: .875rem; font-weight: 700;
  padding: .625rem 1rem; border-radius: var(--dsh-r4);
}
.dsh-about-copy h2 { color: var(--dsh-white); margin-bottom: 1rem; }
.dsh-about-copy p { color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.dsh-about-vals { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dsh-about-val-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--dsh-r10); padding: 1.125rem;
}
.dsh-about-val-title { font-family: var(--dsh-fh); font-size: .9375rem; font-weight: 700; color: var(--dsh-white); margin-bottom: .375rem; }
.dsh-about-val-body { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; }

/* ── PROCESS ─────────────────────────────────────── */
.dsh-process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--dsh-border); border: 1px solid var(--dsh-border);
  border-radius: var(--dsh-r10); overflow: hidden;
}
.dsh-proc-cell {
  background: var(--dsh-white); padding: 2rem 1.5rem;
  transition: background .25s ease;
}
.dsh-proc-cell:hover { background: var(--dsh-coral); }
.dsh-proc-cell:hover .dsh-proc-num { color: rgba(255,255,255,.3); }
.dsh-proc-cell:hover .dsh-proc-title { color: var(--dsh-white); }
.dsh-proc-cell:hover .dsh-proc-body { color: rgba(255,255,255,.75); }
.dsh-proc-cell:hover .dsh-proc-ico { background: rgba(255,255,255,.15); color: var(--dsh-white); }
.dsh-proc-num { font-family: var(--dsh-fh); font-size: 2.25rem; font-weight: 900; color: var(--dsh-border); margin-bottom: 1.25rem; transition: color .25s; }
.dsh-proc-ico { width: 40px; height: 40px; border-radius: var(--dsh-r6); background: var(--dsh-gray); display: flex; align-items: center; justify-content: center; color: var(--dsh-coral); margin-bottom: 1rem; transition: var(--dsh-ease); }
.dsh-proc-title { font-family: var(--dsh-fh); font-size: 1rem; font-weight: 700; color: var(--dsh-black); margin-bottom: .625rem; transition: color .25s; }
.dsh-proc-body { font-size: .875rem; color: var(--dsh-muted); line-height: 1.7; transition: color .25s; }

/* ── TESTIMONIALS ────────────────────────────────── */
.dsh-testi-big {
  position: relative; background: var(--dsh-gray);
  border-radius: var(--dsh-r24); padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.dsh-testi-bg-q {
  position: absolute; top: -1rem; right: 2rem;
  font-family: var(--dsh-fh); font-size: 18rem; font-weight: 900;
  color: rgba(17,17,17,.04); line-height: 1; pointer-events: none;
  user-select: none;
}
.dsh-testi-slide { display: none; }
.dsh-testi-slide.dsh-tactive { display: block; }
.dsh-testi-stars { display: flex; gap: .2rem; color: var(--dsh-coral); margin-bottom: 1.5rem; }
.dsh-testi-q { font-family: var(--dsh-fh); font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; color: var(--dsh-black); line-height: 1.5; margin-bottom: 2rem; max-width: 72ch; position: relative; z-index: 1; }
.dsh-testi-byline { display: flex; align-items: center; gap: 1rem; }
.dsh-testi-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dsh-coral); display: flex; align-items: center; justify-content: center;
  font-family: var(--dsh-fh); font-weight: 900; font-size: 1.0625rem; color: var(--dsh-white);
  flex-shrink: 0;
}
.dsh-testi-name { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); font-size: .9375rem; }
.dsh-testi-role { font-size: .8125rem; color: var(--dsh-muted); }
.dsh-testi-controls { display: flex; gap: .75rem; margin-top: 2rem; }
.dsh-testi-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--dsh-border);
  background: transparent; display: flex; align-items: center; justify-content: center;
  color: var(--dsh-mid); transition: var(--dsh-ease);
}
.dsh-testi-btn:hover { background: var(--dsh-coral); border-color: var(--dsh-coral); color: var(--dsh-white); }
.dsh-testi-dots { display: flex; gap: .5rem; align-items: center; margin-top: 1.25rem; }
.dsh-testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dsh-border); transition: background .2s, width .2s;
}
.dsh-testi-dot.dsh-tdot-on { background: var(--dsh-coral); width: 24px; border-radius: 4px; }

/* ── PRICING ─────────────────────────────────────── */
.dsh-pkg-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.dsh-pkg-block {
  border: 1.5px solid var(--dsh-border); border-radius: var(--dsh-r16);
  padding: 2rem; transition: var(--dsh-ease); position: relative; background: var(--dsh-white);
}
.dsh-pkg-block:hover { box-shadow: var(--dsh-shadow2); transform: translateY(-3px); }
.dsh-pkg-block.dsh-pop { background: var(--dsh-black); border-color: var(--dsh-black); }
.dsh-pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--dsh-coral); color: var(--dsh-white);
  font-family: var(--dsh-fh); font-size: .75rem; font-weight: 700;
  padding: .3rem .875rem; border-radius: 100px; white-space: nowrap;
}
.dsh-pkg-name { font-family: var(--dsh-fh); font-size: 1.25rem; font-weight: 800; color: var(--dsh-black); margin-bottom: .375rem; }
.dsh-pkg-block.dsh-pop .dsh-pkg-name { color: var(--dsh-white); }
.dsh-pkg-tag { font-size: .875rem; color: var(--dsh-muted); margin-bottom: 1.75rem; }
.dsh-pkg-block.dsh-pop .dsh-pkg-tag { color: rgba(255,255,255,.5); }
.dsh-pkg-amt {
  display: flex; align-items: baseline; gap: .2rem;
  margin-bottom: 1.75rem;
}
.dsh-pkg-sym { font-family: var(--dsh-fh); font-size: 1.25rem; font-weight: 700; color: var(--dsh-coral); }
.dsh-pkg-num { font-family: var(--dsh-fh); font-size: 2.75rem; font-weight: 900; color: var(--dsh-black); line-height: 1; }
.dsh-pkg-block.dsh-pop .dsh-pkg-num { color: var(--dsh-white); }
.dsh-pkg-dec { font-family: var(--dsh-fh); font-size: 1.25rem; font-weight: 700; color: var(--dsh-coral); align-self: flex-end; }
.dsh-pkg-inc { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.dsh-pkg-inc-item { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--dsh-mid); line-height: 1.5; }
.dsh-pkg-block.dsh-pop .dsh-pkg-inc-item { color: rgba(255,255,255,.65); }
.dsh-pkg-inc-ck { color: var(--dsh-coral); flex-shrink: 0; margin-top: .15rem; }

/* ── CTA SECTION ─────────────────────────────────── */
.dsh-cta-band { background: var(--dsh-coral); padding: clamp(3rem, 6vw, 5rem) 0; }
.dsh-cta-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.dsh-cta-band h2 { color: var(--dsh-white); }
.dsh-cta-band p  { color: rgba(255,255,255,.75); }

/* ── FAQ ─────────────────────────────────────────── */
.dsh-faq-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dsh-border); border: 1px solid var(--dsh-border); border-radius: var(--dsh-r10); overflow: hidden; }
.dsh-faq-unit { background: var(--dsh-white); overflow: hidden; }
.dsh-faq-trigger {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-family: var(--dsh-fh); font-size: .9375rem; font-weight: 600;
  color: var(--dsh-black); cursor: pointer; transition: background .2s;
}
.dsh-faq-trigger:hover { background: var(--dsh-gray); }
.dsh-faq-ico { flex-shrink: 0; color: var(--dsh-coral); transition: transform .25s; }
.dsh-faq-unit.dsh-fopen .dsh-faq-ico { transform: rotate(45deg); }
.dsh-faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.dsh-faq-unit.dsh-fopen .dsh-faq-body { max-height: 600px; }
.dsh-faq-inner { padding: 0 1.5rem 1.25rem; font-size: .9375rem; color: var(--dsh-muted); line-height: 1.75; }

/* ── SERVICE PAGE ────────────────────────────────── */
.dsh-svp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; padding: clamp(3rem, 6vw, 5rem) 0; }
.dsh-svp-main { min-width: 0; }
.dsh-svp-cover { border-radius: var(--dsh-r16); overflow: hidden; aspect-ratio: 16/7; background: var(--dsh-gray); margin-bottom: 2.5rem; }
.dsh-svp-cover img { width: 100%; height: 100%; object-fit: cover; }
.dsh-svp-body p { color: var(--dsh-mid); margin-bottom: 1.125rem; line-height: 1.82; font-size: .9375rem; }
.dsh-svp-feats { background: var(--dsh-gray); border-radius: var(--dsh-r10); padding: 1.5rem; margin-top: 2rem; }
.dsh-svp-feats h4 { font-size: .875rem; font-weight: 700; color: var(--dsh-black); margin-bottom: 1rem; font-family: var(--dsh-fh); text-transform: uppercase; letter-spacing: .06em; }
.dsh-svp-feats ul { display: flex; flex-direction: column; gap: .5rem; }
.dsh-svp-feats li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9375rem; color: var(--dsh-mid); }
.dsh-svp-feats li svg { color: var(--dsh-coral); flex-shrink: 0; margin-top: .15rem; }
.dsh-svp-sidebar { position: sticky; top: 84px; }
.dsh-svp-side-card { background: var(--dsh-black); border-radius: var(--dsh-r16); padding: 1.75rem; }
.dsh-svp-side-name { font-family: var(--dsh-fh); font-size: 1.125rem; font-weight: 700; color: var(--dsh-white); margin-bottom: .375rem; }
.dsh-svp-price-row { display: flex; align-items: baseline; gap: .2rem; margin: .875rem 0 .375rem; }
.dsh-svp-price-sym { font-family: var(--dsh-fh); font-size: 1.125rem; font-weight: 700; color: var(--dsh-coral); }
.dsh-svp-price-main { font-family: var(--dsh-fh); font-size: 2.25rem; font-weight: 900; color: var(--dsh-white); line-height: 1; }
.dsh-svp-note { font-size: .8125rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.dsh-svp-info-box { background: rgba(255,255,255,.06); border-radius: var(--dsh-r6); padding: .875rem 1rem; margin-bottom: .875rem; }
.dsh-svp-info-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--dsh-coral); margin-bottom: .3rem; font-family: var(--dsh-fh); }
.dsh-svp-info-val { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── PAGE HERO ───────────────────────────────────── */
.dsh-page-banner { background: var(--dsh-black); padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.dsh-page-banner h1 { color: var(--dsh-white); text-align: center; }
.dsh-page-banner-sub { color: rgba(255,255,255,.5); font-size: clamp(.9375rem, 1.8vw, 1.0625rem); text-align: center; margin: .875rem auto 0; max-width: 56ch; }

/* ── BUILDER ─────────────────────────────────────── */
.dsh-builder-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.dsh-builder-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.dsh-step-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--dsh-coral); margin-bottom: .625rem; font-family: var(--dsh-fh); }
.dsh-step-head { font-family: var(--dsh-fh); font-size: 1.25rem; font-weight: 700; color: var(--dsh-black); margin-bottom: 1rem; }
.dsh-pkg-opts { display: flex; flex-direction: column; gap: .75rem; }
.dsh-pkg-opt-row {
  border: 2px solid var(--dsh-border); border-radius: var(--dsh-r10);
  padding: 1.25rem; cursor: pointer; transition: var(--dsh-ease);
  display: flex; gap: 1rem; align-items: flex-start;
}
.dsh-pkg-opt-row:hover { border-color: var(--dsh-coral); }
.dsh-pkg-opt-row.dsh-chosen { border-color: var(--dsh-black); background: rgba(17,17,17,.03); }
.dsh-radio-ring {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--dsh-border); flex-shrink: 0; margin-top: .15rem;
  display: flex; align-items: center; justify-content: center; transition: var(--dsh-ease);
}
.dsh-pkg-opt-row.dsh-chosen .dsh-radio-ring { border-color: var(--dsh-coral); background: var(--dsh-coral); }
.dsh-radio-ring::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--dsh-white); opacity: 0; }
.dsh-pkg-opt-row.dsh-chosen .dsh-radio-ring::after { opacity: 1; }
.dsh-opt-inf { flex: 1; min-width: 0; }
.dsh-opt-name { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); margin-bottom: .25rem; }
.dsh-opt-desc { font-size: .875rem; color: var(--dsh-muted); }
.dsh-opt-price { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); white-space: nowrap; font-size: .9375rem; }
.dsh-addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.dsh-addon-tile {
  border: 2px solid var(--dsh-border); border-radius: var(--dsh-r10);
  padding: 1rem; cursor: pointer; transition: var(--dsh-ease);
  display: flex; gap: .75rem; align-items: flex-start;
}
.dsh-addon-tile:hover { border-color: var(--dsh-coral); }
.dsh-addon-tile.dsh-picked { border-color: var(--dsh-black); background: rgba(17,17,17,.03); }
.dsh-check-sq {
  width: 18px; height: 18px; border-radius: 3px;
  border: 2px solid var(--dsh-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: var(--dsh-ease);
}
.dsh-addon-tile.dsh-picked .dsh-check-sq { background: var(--dsh-black); border-color: var(--dsh-black); }
.dsh-check-mark { display: none; color: var(--dsh-white); }
.dsh-addon-tile.dsh-picked .dsh-check-mark { display: block; }
.dsh-addon-nm { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); font-size: .9375rem; margin-bottom: .2rem; }
.dsh-addon-pr { font-size: .875rem; color: var(--dsh-muted); }
.dsh-hrs-wrap { margin-top: .75rem; }
.dsh-hrs-row { display: flex; align-items: center; gap: 1rem; }
.dsh-hrs-slider { flex: 1; accent-color: var(--dsh-coral); }
.dsh-hrs-val { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); font-size: 1.0625rem; min-width: 60px; }
.dsh-sum-card { background: var(--dsh-black); border-radius: var(--dsh-r16); padding: 1.75rem; position: sticky; top: 84px; }
.dsh-sum-head { font-family: var(--dsh-fh); font-weight: 700; font-size: 1.0625rem; color: var(--dsh-white); margin-bottom: 1.25rem; }
.dsh-sum-body { min-height: 4rem; margin-bottom: 1.25rem; }
.dsh-sum-ln { display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; margin-bottom: .5rem; }
.dsh-sum-ln-n { color: rgba(255,255,255,.6); }
.dsh-sum-ln-v { font-weight: 600; color: var(--dsh-white); white-space: nowrap; }
.dsh-sum-empty { font-size: .875rem; color: rgba(255,255,255,.35); font-style: italic; }
.dsh-sum-rule { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: .75rem 0; }
.dsh-sum-tot { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.dsh-sum-tot-l { font-size: .875rem; color: rgba(255,255,255,.55); }
.dsh-sum-tot-v { font-family: var(--dsh-fh); font-size: 1.875rem; font-weight: 900; color: var(--dsh-coral); }
.dsh-sum-note { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: .875rem; line-height: 1.6; }

/* ── CHECKOUT ────────────────────────────────────── */
.dsh-chk-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; padding: clamp(3rem, 6vw, 5rem) 0; }
.dsh-chk-form-box { background: var(--dsh-white); border: 1.5px solid var(--dsh-border); border-radius: var(--dsh-r16); padding: 2rem; }
.dsh-chk-form-hed { font-family: var(--dsh-fh); font-size: 1.25rem; font-weight: 700; color: var(--dsh-black); margin-bottom: 1.5rem; }
.dsh-field-wrap { margin-bottom: 1.25rem; }
.dsh-field-wrap label { display: block; font-size: .875rem; font-weight: 700; color: var(--dsh-black); margin-bottom: .375rem; font-family: var(--dsh-fh); }
.dsh-field-wrap input, .dsh-field-wrap select, .dsh-field-wrap textarea {
  width: 100%; padding: .6875rem 1rem;
  border: 1.5px solid var(--dsh-border); border-radius: var(--dsh-r6);
  font-family: var(--dsh-fb); font-size: .9375rem; color: var(--dsh-black);
  background: var(--dsh-cream); transition: border-color .2s; -webkit-appearance: none;
}
.dsh-field-wrap input:focus, .dsh-field-wrap select:focus, .dsh-field-wrap textarea:focus {
  outline: none; border-color: var(--dsh-coral);
}
.dsh-field-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dsh-agree-row { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--dsh-mid); margin: 1.25rem 0; }
.dsh-agree-row input { width: auto; flex-shrink: 0; margin-top: .2rem; }
.dsh-agree-row a { color: var(--dsh-coral); font-weight: 600; }
.dsh-ord-box { background: var(--dsh-black); border-radius: var(--dsh-r16); padding: 1.75rem; position: sticky; top: 84px; }
.dsh-ord-hed { font-family: var(--dsh-fh); font-size: 1.0625rem; font-weight: 700; color: var(--dsh-white); margin-bottom: 1.25rem; }
.dsh-ord-ln { display: flex; justify-content: space-between; gap: 1rem; font-size: .9375rem; margin-bottom: .625rem; }
.dsh-ord-ln-n { color: rgba(255,255,255,.6); }
.dsh-ord-ln-v { font-weight: 600; color: var(--dsh-white); white-space: nowrap; }
.dsh-ord-rule { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: .875rem 0; }
.dsh-ord-tot { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.dsh-ord-tot-l { font-family: var(--dsh-fh); font-weight: 600; color: rgba(255,255,255,.7); }
.dsh-ord-tot-v { font-family: var(--dsh-fh); font-size: 2rem; font-weight: 900; color: var(--dsh-coral); }
.dsh-ord-next { background: rgba(255,255,255,.06); border-radius: var(--dsh-r6); padding: .875rem; }
.dsh-ord-next-lbl { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; font-family: var(--dsh-fh); margin-bottom: .3rem; }
.dsh-ord-next-val { font-size: .875rem; color: rgba(255,255,255,.65); }

/* ── CONFIRM PAGES ───────────────────────────────── */
.dsh-ok-wrap { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 72px); padding: 2rem; }
.dsh-ok-box { max-width: 520px; width: 100%; text-align: center; }
.dsh-ok-ico { margin: 0 auto 1.5rem; }
.dsh-ok-ico-yes { width: 72px; height: 72px; border-radius: 50%; background: rgba(232,66,26,.1); display: flex; align-items: center; justify-content: center; color: var(--dsh-coral); }
.dsh-ok-ico-no  { width: 72px; height: 72px; border-radius: 50%; background: rgba(17,17,17,.08); display: flex; align-items: center; justify-content: center; color: var(--dsh-mid); }
.dsh-ok-box h1 { margin-bottom: .75rem; }
.dsh-ok-box p  { color: var(--dsh-muted); margin-bottom: 1.5rem; }
.dsh-ok-steps { background: var(--dsh-gray); border-radius: var(--dsh-r10); padding: 1.5rem; text-align: left; margin-bottom: 1.75rem; }
.dsh-ok-step { display: flex; gap: .875rem; margin-bottom: 1rem; }
.dsh-ok-step:last-child { margin-bottom: 0; }
.dsh-ok-step-n { width: 28px; height: 28px; border-radius: 50%; background: var(--dsh-coral); color: var(--dsh-white); font-family: var(--dsh-fh); font-size: .8125rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dsh-ok-step strong { display: block; font-family: var(--dsh-fh); color: var(--dsh-black); margin-bottom: .2rem; }
.dsh-ok-step p { font-size: .875rem; color: var(--dsh-muted); margin: 0; }
.dsh-ok-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT PAGE ────────────────────────────────── */
.dsh-contact-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.dsh-contact-info h2 { margin-bottom: 1rem; }
.dsh-contact-info p { color: var(--dsh-mid); margin-bottom: 1.5rem; }
.dsh-contact-det { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.dsh-contact-det-ico { width: 40px; height: 40px; border-radius: var(--dsh-r6); background: var(--dsh-gray); color: var(--dsh-coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dsh-contact-det-lbl { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--dsh-coral); font-family: var(--dsh-fh); margin-bottom: .2rem; }
.dsh-contact-det-val { color: var(--dsh-mid); font-size: .9375rem; }
.dsh-contact-det-val a { color: var(--dsh-black); font-weight: 600; }
.dsh-cf-box { background: var(--dsh-gray); border-radius: var(--dsh-r16); padding: 2rem; }
.dsh-cf-box h3 { margin-bottom: 1.5rem; }
.dsh-cf-success { background: rgba(232,66,26,.08); border: 1px solid rgba(232,66,26,.2); border-radius: var(--dsh-r6); padding: 1.25rem; margin-bottom: 1rem; color: var(--dsh-coral); font-size: .9375rem; display: none; }

/* ── LEGAL ───────────────────────────────────────── */
.dsh-legal-shell { max-width: 840px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem); }
.dsh-legal-shell h1 { text-align: center; }
.dsh-legal-date { text-align: center; color: var(--dsh-muted); font-size: .875rem; margin-bottom: 3rem; }
.dsh-legal-body h2 { font-size: 1.25rem; font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); margin: 2.5rem 0 .875rem; }
.dsh-legal-body h3 { font-size: 1.0625rem; font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); margin: 1.75rem 0 .625rem; }
.dsh-legal-body p { color: var(--dsh-mid); margin-bottom: 1rem; line-height: 1.8; }
.dsh-legal-body ul, .dsh-legal-body ol { margin: .875rem 0 1rem 1.5rem; }
.dsh-legal-body li { color: var(--dsh-mid); margin-bottom: .5rem; line-height: 1.7; }
.dsh-legal-body ul li { list-style: disc; }
.dsh-legal-body ol li { list-style: decimal; }

/* ── CHAT WIDGET ─────────────────────────────────── */
.dsh-chat-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--dsh-coral); color: var(--dsh-white);
  display: flex; align-items: center; justify-content: center;
  border: none; box-shadow: 0 4px 20px rgba(232,66,26,.4);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.dsh-chat-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(232,66,26,.5); }
.dsh-chat-box {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 500; width: 320px;
  background: var(--dsh-white); border: 1px solid var(--dsh-border);
  border-radius: var(--dsh-r16); box-shadow: var(--dsh-shadow2);
  overflow: hidden; display: none; flex-direction: column;
}
.dsh-chat-box.dsh-chat-on { display: flex; }
.dsh-chat-hd { background: var(--dsh-coral); padding: .875rem 1.125rem; display: flex; align-items: center; justify-content: space-between; }
.dsh-chat-hd-title { font-family: var(--dsh-fh); font-weight: 700; font-size: .9375rem; color: var(--dsh-white); }
.dsh-chat-hd-sub { font-size: .75rem; color: rgba(255,255,255,.65); }
.dsh-chat-hd-close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; }
.dsh-chat-msgs { padding: 1rem; min-height: 130px; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .625rem; }
.dsh-chat-msg { max-width: 85%; padding: .5rem .875rem; border-radius: 10px; font-size: .875rem; line-height: 1.55; }
.dsh-chat-msg.dsh-cm-bot { background: var(--dsh-gray); color: var(--dsh-mid); align-self: flex-start; border-bottom-left-radius: 3px; }
.dsh-chat-msg.dsh-cm-usr { background: var(--dsh-coral); color: var(--dsh-white); align-self: flex-end; border-bottom-right-radius: 3px; }
.dsh-chat-in-row { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--dsh-border); }
.dsh-chat-inp { flex: 1; border: 1px solid var(--dsh-border); border-radius: var(--dsh-r6); padding: .5rem .75rem; font-family: var(--dsh-fb); font-size: .875rem; }
.dsh-chat-inp:focus { outline: none; border-color: var(--dsh-coral); }
.dsh-chat-send-btn { background: var(--dsh-coral); color: var(--dsh-white); border: none; border-radius: var(--dsh-r6); padding: .5rem .75rem; transition: background .2s; }
.dsh-chat-send-btn:hover { background: var(--dsh-black); }

/* ── COOKIE BANNER ───────────────────────────────── */
.dsh-ck-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--dsh-black); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s ease;
}
.dsh-ck-bar.dsh-ck-vis { transform: translateY(0); }
.dsh-ck-txt { font-size: .875rem; color: rgba(255,255,255,.65); max-width: 52ch; }
.dsh-ck-txt a { color: var(--dsh-coral); font-weight: 600; }
.dsh-ck-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.dsh-ck-acc { padding: .5rem 1.125rem; background: var(--dsh-coral); color: var(--dsh-white); border: none; border-radius: var(--dsh-r4); cursor: pointer; font-family: var(--dsh-fh); font-size: .875rem; font-weight: 700; transition: background .2s; }
.dsh-ck-acc:hover { background: var(--dsh-coral2); }
.dsh-ck-dec { padding: .5rem 1.125rem; background: transparent; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.2); border-radius: var(--dsh-r4); cursor: pointer; font-family: var(--dsh-fh); font-size: .875rem; transition: var(--dsh-ease); }
.dsh-ck-dec:hover { color: var(--dsh-white); border-color: rgba(255,255,255,.4); }

/* ── REVEAL ANIMATION ────────────────────────────── */
.dsh-reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.dsh-reveal.dsh-shown { opacity: 1; transform: none; }

/* ── UTILITIES ───────────────────────────────────── */
.dsh-tag { display: inline-block; background: var(--dsh-gray); color: var(--dsh-coral); font-size: .75rem; font-weight: 700; padding: .25rem .625rem; border-radius: 100px; font-family: var(--dsh-fh); }
.dsh-divider { border: none; border-top: 1px solid var(--dsh-border); margin: 2rem 0; }

/* ── ABOUT PAGE ──────────────────────────────────── */
.dsh-about-page-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.dsh-about-page-img { border-radius: var(--dsh-r16); overflow: hidden; aspect-ratio: 4/3; background: var(--dsh-gray); }
.dsh-about-page-img img { width: 100%; height: 100%; object-fit: cover; }
.dsh-about-page-copy h2 { margin-bottom: 1rem; }
.dsh-about-page-copy p { color: var(--dsh-mid); margin-bottom: 1rem; }
.dsh-vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.dsh-val-item { background: var(--dsh-gray); border-radius: var(--dsh-r10); padding: 1.25rem; }
.dsh-val-item h4 { font-family: var(--dsh-fh); font-size: .9375rem; color: var(--dsh-black); margin-bottom: .375rem; }
.dsh-val-item p  { font-size: .875rem; color: var(--dsh-muted); margin: 0; }

/* ── PORTFOLIO ───────────────────────────────────── */
.dsh-port-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.dsh-port-filt-btn {
  padding: .4375rem 1rem; border-radius: 100px;
  font-size: .875rem; font-weight: 600; font-family: var(--dsh-fh);
  border: 1.5px solid var(--dsh-border); background: transparent;
  color: var(--dsh-muted); cursor: pointer; transition: var(--dsh-ease);
}
.dsh-port-filt-btn:hover, .dsh-port-filt-btn.dsh-filt-on {
  background: var(--dsh-black); color: var(--dsh-white); border-color: var(--dsh-black);
}
.dsh-port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dsh-port-card { border-radius: var(--dsh-r10); overflow: hidden; background: var(--dsh-gray); }
.dsh-port-card-img { aspect-ratio: 4/3; overflow: hidden; }
.dsh-port-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dsh-port-card:hover img { transform: scale(1.04); }
.dsh-port-card-info { padding: 1rem 1.125rem; }
.dsh-port-card-type { font-size: .75rem; color: var(--dsh-coral); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; }
.dsh-port-card-title { font-family: var(--dsh-fh); font-weight: 700; color: var(--dsh-black); font-size: 1rem; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .dsh-process-grid { grid-template-columns: repeat(3, 1fr); }
  .dsh-pkg-trio { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .dsh-about-duo { grid-template-columns: 1fr; }
  .dsh-about-img-wrap { order: -1; }
  .dsh-footer-top { grid-template-columns: 1fr 1fr; }
  .dsh-builder-wrap { grid-template-columns: 1fr; }
  .dsh-sum-card { position: static; }
  .dsh-chk-grid { grid-template-columns: 1fr; }
  .dsh-ord-box { position: static; }
  .dsh-svp-layout { grid-template-columns: 1fr; }
  .dsh-svp-sidebar { position: static; }
  .dsh-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .dsh-works-mosaic { grid-template-columns: repeat(2, 1fr); }
  .dsh-contact-duo { grid-template-columns: 1fr; }
  .dsh-about-page-duo { grid-template-columns: 1fr; }
  .dsh-port-grid { grid-template-columns: repeat(2, 1fr); }
  .dsh-cta-row { flex-direction: column; align-items: flex-start; }
  .dsh-addon-grid { grid-template-columns: 1fr; }
  .dsh-faq-pair { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dsh-nav-links { display: none; }
  .dsh-nav-cta-ghost { display: none; }
  .dsh-mob-btn { display: flex; }
  .dsh-process-grid { grid-template-columns: 1fr 1fr; }
  .dsh-works-mosaic { grid-template-columns: 1fr; }
  .dsh-port-grid { grid-template-columns: 1fr; }
  .dsh-footer-top { grid-template-columns: 1fr; }
  .dsh-footer-bottom { flex-direction: column; }
  .dsh-hero-acts { flex-direction: column; }
  .dsh-hero-stats { grid-template-columns: 1fr 1fr; }
  .dsh-field-duo { grid-template-columns: 1fr; }
  .dsh-vals-grid { grid-template-columns: 1fr; }
  .dsh-about-vals { grid-template-columns: 1fr; }
  .dsh-chat-box { width: calc(100vw - 2rem); right: 1rem; }
}
