/* D-SafeGuard static site styles */

/* ── DESIGN TOKENS ────────────────────────────────────────────────────────── */
:root {
  --ds-blue-900: #041d3a;
  --ds-blue-800: #0a2e5c;
  --ds-blue-700: #1246a0;
  --ds-blue-600: #1a5fc4;
  --ds-blue-500: #2478e8;
  --ds-blue-400: #4d95f3;
  --ds-blue-300: #86b8f9;
  --ds-blue-100: #dbeafe;
  --ds-blue-50:  #eff6ff;

  --ds-coral-600: #c94a28;
  --ds-coral-400: #e5673a;
  --ds-coral-200: #f5b09a;
  --ds-coral-50:  #fdf0eb;

  --ds-slate-950: #0c1117;
  --ds-slate-900: #111820;
  --ds-slate-800: #1a2331;
  --ds-slate-700: #253040;
  --ds-slate-600: #374357;
  --ds-slate-500: #4d5f73;
  --ds-slate-400: #6b7f96;
  --ds-slate-300: #94a6b8;
  --ds-slate-200: #c4ced8;
  --ds-slate-100: #e4eaf0;
  --ds-slate-50:  #f5f7fa;

  --ds-white: #ffffff;
  --ds-font: 'DM Sans', sans-serif;
  --ds-mono: 'DM Mono', monospace;

  --ds-radius-sm: 6px;
  --ds-radius-md: 10px;
  --ds-radius-lg: 16px;
  --ds-radius-xl: 24px;

  --ds-shadow-card:  0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --ds-shadow-float: 0 8px 32px rgba(0,0,0,.12);
}

/* ── GLOBAL RESETS ────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body.ds-page,
body.ds-page *::before,
body.ds-page *::after {
  box-sizing: border-box;
}

body.ds-page {
  margin: 0;
  font-family: var(--ds-font);
  color: var(--ds-slate-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--ds-white);
}

body.ds-page a { text-decoration: none; }

/* Zero-specificity reset — matches prototype * { margin:0; padding:0 }; component classes override */
:where(body.ds-page *) {
  margin: 0;
  padding: 0;
}

:where(body.ds-page ul) {
  list-style: none;
}

body.ds-page main {
  display: block;
}

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.ds-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ds-slate-100);
}
.ds-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ds-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ds-nav-logo img {
  display: block;
  height: 48px;
  width: auto;
}
.ds-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ds-nav-links a {
  font-size: 14px;
  color: var(--ds-slate-600);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--ds-radius-sm);
  transition: color .15s, background .15s;
}
.ds-nav-links a:hover {
  color: var(--ds-slate-900);
  background: var(--ds-slate-50);
}

.ds-nav-links a.is-active {
  color: var(--ds-blue-700);
  font-weight: 500;
  background: var(--ds-blue-50);
}

.ds-nav-links a.is-active:hover {
  color: var(--ds-blue-800);
  background: var(--ds-blue-50);
}

.ds-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ds-blue-700);
  color: var(--ds-white) !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--ds-radius-md);
  text-decoration: none;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.ds-nav-cta:hover {
  background: var(--ds-blue-600);
  transform: translateY(-1px);
}
.ds-nav-cta svg { width: 14px; height: 14px; }

.ds-nav-cta--mobile {
  display: none;
}

@media (min-width: 781px) {
  .ds-nav-cta--mobile {
    display: none !important;
  }
}

.ds-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ds-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}

.ds-lang-switcher a {
  color: var(--ds-slate-500);
  padding: 4px 8px;
  border-radius: var(--ds-radius-sm);
  transition: color .15s, background .15s;
}

.ds-lang-switcher a:hover {
  color: var(--ds-slate-900);
  background: var(--ds-slate-50);
}

.ds-lang-switcher a.is-active {
  color: var(--ds-slate-900);
  font-weight: 500;
}

.ds-lang-switcher span {
  color: var(--ds-slate-300);
  user-select: none;
}

.ds-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ds-slate-100);
  border-radius: var(--ds-radius-sm);
  background: var(--ds-white);
  cursor: pointer;
  color: var(--ds-slate-700);
}

.ds-nav-toggle svg {
  width: 20px;
  height: 20px;
}

.ds-nav-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ds-nav-toggle-icon[hidden] {
  display: none;
}

/* ── INNER PAGES ──────────────────────────────────────────────────────────── */
.ds-page-hero {
  background: var(--ds-slate-950);
  color: var(--ds-white);
  padding: 72px 32px 56px;
}

.ds-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.ds-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ds-page-hero-intro {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ds-slate-300);
  max-width: 640px;
}

.ds-page-hero .ds-hero-actions {
  margin-top: 28px;
}

.ds-page-body {
  padding: 56px 32px 80px;
  background: var(--ds-white);
}

.ds-page-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

.ds-page-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ds-slate-700);
}

.ds-page-body p + p {
  margin-top: 1.25rem;
}

.ds-page-body-wide {
  max-width: 1100px;
}

.ds-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ds-tool-card {
  display: flex;
  flex-direction: column;
  background: var(--ds-slate-50);
  border: 1px solid var(--ds-slate-100);
  border-radius: var(--ds-radius-lg);
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}

.ds-tool-card:hover {
  border-color: var(--ds-blue-300);
  box-shadow: var(--ds-shadow-card);
}

.ds-tool-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ds-slate-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ds-tool-card-desc {
  flex: 1;
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ds-slate-600);
}

.ds-tool-card-link {
  align-self: flex-start;
  margin-top: 20px;
  font-size: 14px;
  padding: 11px 18px;
}

.ds-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ds-slate-400);
  margin-bottom: 16px;
}

.ds-page-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds-blue-400);
}

.ds-page-hero h1 em {
  font-style: normal;
  color: var(--ds-blue-600);
}

.ds-about-split {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}

.ds-about-split-copy > p + .ds-about-list {
  margin-top: 1rem;
}

.ds-about-split-copy > .ds-about-list + p {
  margin-top: 1.25rem;
}

.ds-about-split-photo {
  margin: 0;
}

.ds-about-split-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.ds-about-split--reverse {
  grid-template-columns: 240px 1fr;
}

.ds-about-split--reverse .ds-about-split-photo {
  order: -1;
}

body.ds-page .ds-about-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.25rem;
}

body.ds-page .ds-about-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ds-slate-700);
}

body.ds-page .ds-about-list li + li {
  margin-top: 0.75rem;
}

body.ds-page .ds-about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds-blue-500);
}

body.ds-page .ds-about-list li strong {
  color: var(--ds-slate-900);
  font-weight: 600;
}

.ds-about-founder {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--ds-slate-200);
}

.ds-about-subsection {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--ds-slate-200);
}

.ds-about-subsection-title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ds-slate-900);
  margin-bottom: 16px;
}

.ds-about-founder-meta {
  margin-top: 24px;
}

.ds-about-founder-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ds-slate-900);
}

.ds-about-founder-credentials,
.ds-about-founder-role {
  font-size: 0.9375rem;
  color: var(--ds-slate-600);
}

.ds-about-founder-credentials {
  margin-top: 4px;
}

.ds-about-founder-role {
  margin-top: 2px;
  font-style: italic;
}

.ds-about-quote {
  margin-top: 24px;
}

.ds-about-quote figcaption {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ds-slate-900);
  margin-bottom: 8px;
}

.ds-about-quote blockquote {
  margin: 0;
  padding: 20px 24px;
  border-left: 3px solid var(--ds-blue-500);
  background: var(--ds-slate-50);
  border-radius: 0 8px 8px 0;
}

.ds-about-quote blockquote p {
  font-style: italic;
  color: var(--ds-slate-700);
}

.ds-about-founder-photo {
  margin: 0;
}

.ds-about-founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

body.ds-page .ds-about-values {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.25rem;
}

body.ds-page .ds-about-values li {
  position: relative;
  padding-left: 20px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ds-slate-700);
}

body.ds-page .ds-about-values li + li {
  margin-top: 0.75rem;
}

body.ds-page .ds-about-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds-blue-500);
}

body.ds-page .ds-about-values li strong {
  color: var(--ds-slate-900);
  font-weight: 600;
}

@media (max-width: 768px) {
  .ds-about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ds-about-split-photo,
  .ds-about-split--reverse .ds-about-split-photo {
    order: -1;
    max-width: 240px;
    margin: 0 auto;
  }

  .ds-about-founder {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ds-about-founder-photo {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.ds-hero {
  background: var(--ds-slate-950);
  color: var(--ds-white);
  padding: 96px 32px 80px;
  position: relative;
  overflow: hidden;
}
.ds-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(18,70,160,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(36,120,232,.10) 0%, transparent 60%);
  pointer-events: none;
}
.ds-hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ds-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ds-blue-300);
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(77,149,243,.08);
  border: 1px solid rgba(77,149,243,.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.ds-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds-blue-400);
  flex-shrink: 0;
  animation: ds-pulse 2s ease-in-out infinite;
}
@keyframes ds-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}
.ds-hero h1 {
  font-family: var(--ds-font);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--ds-white);
  margin-bottom: 20px;
}
.ds-hero h1 em {
  font-style: normal;
  color: var(--ds-blue-400);
}
.ds-hero-sub {
  font-size: 17px;
  color: var(--ds-slate-300);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.ds-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.ds-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ds-blue-500);
  color: var(--ds-white) !important;
  font-family: var(--ds-font);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--ds-radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.ds-btn-primary:hover {
  background: var(--ds-blue-400);
  transform: translateY(-1px);
  color: var(--ds-white) !important;
}
.ds-btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }
.ds-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ds-slate-200) !important;
  font-family: var(--ds-font);
  font-size: 15px;
  font-weight: 400;
  padding: 13px 24px;
  border-radius: var(--ds-radius-md);
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.ds-btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.3);
}

/* ── HERO FEATURE CARD ────────────────────────────────────────────────────── */
.ds-hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--ds-radius-xl);
  padding: 28px;
}
.ds-hero-card-title {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ds-slate-400);
  margin-bottom: 16px;
}
.ds-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ds-hero-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ds-hero-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(77,149,243,.12);
  border-radius: var(--ds-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-hero-feature-icon svg,
.ds-hero-feature-icon svg * {
  width: 16px;
  height: 16px;
  stroke: var(--ds-blue-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ds-hero-feature-text {
  font-size: 13.5px;
  color: var(--ds-slate-200);
  line-height: 1.5;
}
.ds-hero-feature-text strong {
  color: var(--ds-white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.ds-trust-bar {
  background: var(--ds-slate-900);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 20px 32px;
}
.ds-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.ds-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ds-slate-300);
  white-space: nowrap;
}
.ds-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds-blue-500);
  flex-shrink: 0;
}

/* ── FOUNDER SPOTLIGHT (home) ─────────────────────────────────────────────── */
.ds-founder-spotlight {
  padding: 48px 32px;
  background: var(--ds-slate-50);
  border-bottom: 1px solid var(--ds-slate-200);
}

.ds-founder-spotlight-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ds-founder-spotlight-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.ds-founder-spotlight-heading {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ds-slate-900);
  margin-bottom: 8px;
}

.ds-founder-spotlight-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-slate-600);
  margin-bottom: 16px;
  max-width: 52ch;
}

.ds-founder-spotlight-copy .ds-btn-ghost {
  display: inline-flex;
  color: var(--ds-blue-700) !important;
  border-color: var(--ds-slate-300);
}

.ds-founder-spotlight-copy .ds-btn-ghost:hover {
  background: var(--ds-white);
  border-color: var(--ds-blue-500);
  color: var(--ds-blue-800) !important;
}

@media (max-width: 640px) {
  .ds-founder-spotlight-inner {
    flex-direction: column;
    text-align: center;
  }

  .ds-founder-spotlight-text {
    max-width: none;
  }
}

/* ── SECTION BASE ─────────────────────────────────────────────────────────── */
.ds-section {
  padding: 88px 32px;
}
.ds-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ds-section-label {
  font-family: var(--ds-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ds-blue-600);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.ds-section-title {
  font-family: var(--ds-font);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ds-slate-900);
}
.ds-section-sub {
  font-size: 16.5px;
  color: var(--ds-slate-500);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── WHAT WE HELP WITH ────────────────────────────────────────────────────── */
.ds-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.ds-help-card {
  background: var(--ds-slate-50);
  border-radius: var(--ds-radius-lg);
  padding: 24px;
  border: 1px solid var(--ds-slate-100);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.ds-help-card:hover {
  border-color: var(--ds-blue-300);
  box-shadow: var(--ds-shadow-card);
}
.ds-help-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--ds-blue-50);
  border-radius: var(--ds-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ds-blue-100);
}
.ds-help-icon svg,
.ds-help-icon svg * {
  width: 18px;
  height: 18px;
  stroke: var(--ds-blue-700);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ds-help-text {
  font-size: 14.5px;
  color: var(--ds-slate-700);
  line-height: 1.55;
}
.ds-help-text strong {
  display: block;
  font-weight: 500;
  color: var(--ds-slate-900);
  margin-bottom: 4px;
}

/* ── SERVICES PAGE ────────────────────────────────────────────────────────── */
body.ds-page .ds-service-list--page {
  padding: 0;
  margin-top: 24px;
  max-width: 560px;
}

.ds-help-card--stacked {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.ds-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ds-blue-600) !important;
  text-decoration: none;
  margin-top: auto;
}

.ds-link-arrow:hover {
  color: var(--ds-blue-500) !important;
}

.ds-link-arrow::after {
  content: '→';
}

.ds-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.ds-step-card {
  background: var(--ds-slate-50);
  border: 1px solid var(--ds-slate-100);
  border-radius: var(--ds-radius-lg);
  padding: 24px;
}

.ds-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ds-slate-900);
  letter-spacing: -0.01em;
}

.ds-step-desc {
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ds-slate-600);
}

.ds-callout {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--ds-blue-50);
  border: 1px solid var(--ds-blue-100);
  border-radius: var(--ds-radius-lg);
  max-width: 560px;
}

.ds-callout-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ds-slate-900);
}

.ds-callout-text {
  margin-top: 6px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ds-slate-600);
}

.ds-disclaimer {
  margin-top: 24px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ds-slate-500);
  max-width: 560px;
}

.ds-section .ds-btn-primary {
  margin-top: 24px;
}

.ds-faq {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.ds-faq-item {
  background: var(--ds-white);
  border: 1px solid var(--ds-slate-100);
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
}

.ds-faq-question {
  padding: 18px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ds-slate-900);
  cursor: pointer;
  list-style: none;
}

.ds-faq-question::-webkit-details-marker {
  display: none;
}

.ds-faq-question::after {
  content: '+';
  float: right;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ds-slate-400);
}

.ds-faq-item[open] .ds-faq-question::after {
  content: '−';
}

.ds-faq-answer {
  padding: 0 24px 18px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ds-slate-600);
}

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
.ds-services-bg {
  background: var(--ds-slate-50);
}
.ds-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ds-service-card {
  background: var(--ds-white);
  border-radius: var(--ds-radius-xl);
  border: 1px solid var(--ds-slate-100);
  overflow: hidden;
  box-shadow: var(--ds-shadow-card);
  transition: box-shadow .2s, transform .2s;
}
.ds-service-card:hover {
  box-shadow: var(--ds-shadow-float);
  transform: translateY(-2px);
}
.ds-service-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--ds-slate-100);
  display: flex;
  align-items: center;
  gap: 14px;
}
.ds-service-card-header.blue {
  background: linear-gradient(135deg, var(--ds-blue-50) 0%, var(--ds-white) 60%);
}
.ds-service-card-header.coral {
  background: linear-gradient(135deg, var(--ds-coral-50) 0%, var(--ds-white) 60%);
}
.ds-service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ds-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-service-icon.blue  { background: var(--ds-blue-700); }
.ds-service-icon.coral { background: var(--ds-coral-600); }
.ds-service-icon svg,
.ds-service-icon svg * {
  width: 22px;
  height: 22px;
  stroke: var(--ds-white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ds-service-card-header-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ds-slate-900);
  margin: 0;
}
.ds-service-card-header-text p {
  font-size: 13px;
  color: var(--ds-slate-500);
  margin: 2px 0 0;
}
body.ds-page .ds-service-list {
  padding: 20px 28px 28px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
body.ds-page .ds-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ds-slate-700);
  line-height: 1.5;
}
.ds-service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ds-blue-500);
  flex-shrink: 0;
  margin-top: 7px;
}
body.ds-page .ds-service-card--coral .ds-service-list li::before {
  background: var(--ds-coral-400);
}

/* ── CTA BAND ─────────────────────────────────────────────────────────────── */
.ds-cta-section {
  background: var(--ds-blue-800);
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
}
.ds-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 120% at 80% 50%, rgba(77,149,243,.15) 0%, transparent 70%);
  pointer-events: none;
}
.ds-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ds-cta-text h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--ds-white);
  margin-bottom: 10px;
}
.ds-cta-text p {
  font-size: 16px;
  color: var(--ds-blue-100);
  line-height: 1.6;
  max-width: 480px;
}
.ds-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.ds-cta-contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ds-cta-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ds-blue-100) !important;
  text-decoration: none;
  transition: color .15s;
}
.ds-cta-contact:hover { color: var(--ds-white) !important; }
.ds-cta-contact svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ds-cta-contact svg path,
.ds-cta-contact svg polyline {
  stroke: currentColor;
  fill: none;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.ds-footer {
  background: var(--ds-slate-950);
  padding: 48px 32px 32px;
  color: var(--ds-slate-400);
}
.ds-footer-inner { max-width: 1100px; margin: 0 auto; }
.ds-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}
.ds-footer-brand { max-width: 280px; }
.ds-footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  text-decoration: none;
}
.ds-footer-logo img {
  display: block;
  height: 56px;
  width: auto;
}
.ds-footer-brand p {
  font-size: 13px;
  color: var(--ds-slate-500);
  line-height: 1.6;
}
.ds-footer-links h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--ds-slate-300);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.ds-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ds-footer-links a {
  font-size: 13.5px;
  color: var(--ds-slate-500);
  text-decoration: none;
  transition: color .15s;
}
.ds-footer-links a:hover { color: var(--ds-slate-200); }
.ds-footer-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ds-slate-600);
  line-height: 1.6;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--ds-radius-sm);
}
.ds-footer-disclaimer strong { color: var(--ds-slate-500); }
.ds-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ds-slate-600);
  margin-top: 24px;
}
.ds-footer-bottom a {
  color: var(--ds-slate-500);
  text-decoration: none;
}
.ds-footer-bottom a:hover { color: var(--ds-slate-300); }
.ds-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ds-slate-400);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 12px;
}
.ds-location-badge svg,
.ds-location-badge svg * {
  width: 11px;
  height: 11px;
  stroke: var(--ds-blue-500);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 780px) {
  .ds-hero { padding: 64px 20px 48px; }
  .ds-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .ds-nav-inner {
    padding: 0 20px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    position: relative;
  }
  .ds-nav-logo img { height: 40px; }
  .ds-nav-toggle { display: inline-flex; }
  .ds-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 4;
    padding: 8px 0 4px;
    border-top: 1px solid var(--ds-slate-100);
  }
  .ds-nav-links.is-open { display: flex; }
  .ds-nav-links a {
    padding: 10px 12px;
  }
  .ds-nav-actions {
    margin-left: auto;
  }
  .ds-nav-cta--desktop {
    display: none;
  }
  .ds-nav-cta--mobile {
    display: inline-flex;
    margin-top: 8px;
    justify-content: center;
  }
  .ds-section { padding: 64px 20px; }
  .ds-services-grid { grid-template-columns: 1fr; }
  .ds-cta-section { padding: 56px 20px; }
  .ds-cta-inner { flex-direction: column; }
  .ds-trust-bar { padding: 16px 20px; }
  .ds-trust-inner { gap: 20px; }
  .ds-trust-item { white-space: normal; font-size: 12px; }
  .ds-footer { padding: 40px 20px 24px; }
  .ds-footer-top { gap: 32px; }
  .ds-footer-brand { max-width: 100%; }
  .ds-steps-grid { grid-template-columns: 1fr; }
  .ds-page-hero { padding: 64px 20px 48px; }
}
