/* =============================================================
   Datarecuperatie – Design System  v4
   
   NAMESPACE POLICY: Every selector in this file uses the
   "dr-" prefix. We never override classes from style.css or
   mods.css. Zero specificity conflicts possible.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─────────────────────────────────────────────────────────────
   1. TOKENS
   ───────────────────────────────────────────────────────────── */
:root {
  --dr-blue:        #17289B;
  --dr-blue-dark:   #0e1c6e;
  --dr-blue-light:  #3ba6d3;
  --dr-text:        #1a1d2e;
  --dr-muted:       #5a607a;
  --dr-surface:     #f4f6fb;
  --dr-white:       #ffffff;
  --dr-radius:      12px;
  --dr-radius-lg:   20px;
}

/* ─────────────────────────────────────────────────────────────
   2. ROW 1 — white nav (unchanged original look)
   ───────────────────────────────────────────────────────────── */
.dr-row1 {
  background: #fff;
  border-bottom: 1px solid rgba(23,40,155,.09);
  position: sticky;
  top: 0;
  z-index: 300;
  font-family: 'DM Sans', sans-serif;
}
.dr-row1__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}
.dr-row1__logo            { flex-shrink: 0; }
.dr-row1__logo img        { height: 44px; width: auto; display: block; }
.dr-row1__links           { display: flex; gap: 2px; margin-right: auto; }
.dr-row1__links a         { font-size: 14px; color: var(--dr-muted); padding: 6px 12px; border-radius: 8px; transition: color .2s, background .2s; text-decoration: none; }
.dr-row1__links a:hover,
.dr-row1__links a.active  { color: var(--dr-blue); background: rgba(23,40,155,.06); }
.dr-row1__lang            { display: flex; gap: 2px; border-left: 1px solid rgba(0,0,0,.09); padding-left: 14px; }
.dr-row1__lang a          { font-size: 12px; font-weight: 500; color: var(--dr-muted); padding: 5px 8px; border-radius: 6px; transition: color .2s, background .2s; text-decoration: none; }
.dr-row1__lang a:hover,
.dr-row1__lang a.active   { color: var(--dr-blue); background: rgba(23,40,155,.06); }
.dr-row1__lang a.active   { font-weight: 700; }
.dr-row1__cta {
  background: var(--dr-blue);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  margin-left: 8px;
  transition: background .2s;
  text-decoration: none !important;
  display: inline-block;
}
.dr-row1__cta:hover       { background: var(--dr-blue-dark); }
.dr-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(23,40,155,.2);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--dr-blue);
  line-height: 1;
  margin-left: 8px;
}

/* ─────────────────────────────────────────────────────────────
   3. ROW 2 — blue bar with icon tabs
   ───────────────────────────────────────────────────────────── */
.dr-row2 {
  background: var(--dr-blue);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  z-index: 200;
}
.dr-row2__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 44px;
  gap: 2px;
}
.dr-has-drop               { position: relative; }
.dr-has-drop > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 5px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s, background .2s;
  text-decoration: none !important;
  font-family: 'DM Sans', sans-serif;
}
.dr-has-drop > a svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.dr-chev { width: 9px !important; height: 9px !important; stroke-width: 1.8 !important; }
.dr-has-drop:hover > a,
.dr-has-drop > a.active    { color: #fff; background: rgba(255,255,255,.15); }
.dr-row2__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  background: #fff;
  color: var(--dr-blue) !important;
  padding: 5px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  transition: background .2s;
  text-decoration: none !important;
}
.dr-row2__cta svg          { width: 13px; height: 13px; stroke: var(--dr-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dr-row2__cta:hover        { background: #e8edff; }

/* ─────────────────────────────────────────────────────────────
   4. DROPDOWNS
   ───────────────────────────────────────────────────────────── */
.dr-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(23,40,155,.1);
  border-radius: 14px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(23,40,155,.14);
  z-index: 500;
}
.dr-dropdown--wide         { min-width: 500px; }
.dr-has-drop:hover .dr-dropdown       { display: block; }
.dr-has-drop:hover .dr-dropdown--wide { display: grid; grid-template-columns: 1fr 1fr; }

/* ── Bridge the gap between tab and dropdown so the mouse
   doesn't lose hover state while crossing the 6px space.
   The ::before pseudo-element fills that gap invisibly. ── */
.dr-has-drop::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;   /* covers the 6px gap + a small margin */
  background: transparent;
  z-index: 499;   /* just below the dropdown (z-index 500) */
}
/* Nudge the dropdown down to sit below the bridge */
.dr-dropdown {
  margin-top: 4px;
}
.dr-dropdown__col          { padding: 0; }
.dr-dropdown__heading {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--dr-muted);
  padding: 6px 10px 4px;
  margin: 0;
}
.dr-dropdown__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 9px;
  transition: background .15s;
  color: var(--dr-text);
  text-decoration: none !important;
}
.dr-dropdown__item:hover   { background: var(--dr-surface); }
.dr-dropdown__ico {
  width: 30px; height: 30px;
  background: rgba(23,40,155,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dr-dropdown__ico svg      { width: 14px; height: 14px; stroke: var(--dr-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dr-dropdown__text         { font-size: 13px; font-weight: 500; line-height: 1.2; color: var(--dr-text); }
.dr-dropdown__text small   { display: block; font-size: 11px; color: var(--dr-muted); font-weight: 400; }
.dr-dropdown__footer       { border-top: 1px solid rgba(23,40,155,.06); margin-top: 4px; padding-top: 4px; }
.dr-dropdown__footer a     { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--dr-blue-light); font-weight: 600; padding: 7px 10px; border-radius: 8px; transition: background .15s; text-decoration: none; }
.dr-dropdown__footer a:hover { background: var(--dr-surface); }
.dr-dropdown__footer svg   { width: 11px; height: 11px; stroke: var(--dr-blue-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────────────────────────────────────────────────────
   5. BREADCRUMB
   ───────────────────────────────────────────────────────────── */
.dr-breadcrumb             { background: #fff; border-bottom: 1px solid rgba(23,40,155,.06); padding: 0 40px; font-family: 'DM Sans', sans-serif; }
.dr-breadcrumb__inner      { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 34px; gap: 6px; font-size: 12px; color: var(--dr-muted); }
.dr-breadcrumb__inner a    { color: var(--dr-muted); transition: color .2s; text-decoration: none; }
.dr-breadcrumb__inner a:hover { color: var(--dr-blue); }
.dr-breadcrumb__inner svg  { width: 12px; height: 12px; stroke: rgba(23,40,155,.2); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }
.dr-breadcrumb__home svg   { stroke: var(--dr-muted); width: 13px; height: 13px; }
.dr-breadcrumb__cur        { color: var(--dr-blue); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   6. MOBILE DRAWER
   ───────────────────────────────────────────────────────────── */
.dr-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 32px rgba(23,40,155,.14);
  z-index: 1000;
  overflow-y: auto;
  transition: right .28s ease;
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', sans-serif;
}
.dr-drawer--open           { right: 0; }
.dr-drawer__head           { background: var(--dr-blue); color: #fff; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.dr-drawer__head button    { background: none; border: none; color: #fff; cursor: pointer; padding: 4px; border-radius: 6px; transition: background .2s; }
.dr-drawer__head button:hover { background: rgba(255,255,255,.15); }
.dr-drawer__section-label  { padding: 10px 16px 4px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dr-muted); font-family: 'Syne', sans-serif; }
.dr-drawer__item           { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; color: var(--dr-text); border-bottom: 1px solid rgba(23,40,155,.04); transition: background .15s, color .15s; text-decoration: none !important; }
.dr-drawer__item:hover     { background: var(--dr-surface); color: var(--dr-blue); }
.dr-drawer__item.active    { color: var(--dr-blue); font-weight: 600; }
.dr-drawer__item svg       { width: 14px; height: 14px; stroke: var(--dr-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dr-drawer__item--sub      { padding-left: 30px; font-size: 12px; color: var(--dr-muted); }
.dr-drawer__lang           { display: flex; gap: 6px; padding: 12px 16px; flex-wrap: wrap; border-top: 1px solid rgba(23,40,155,.06); }
.dr-drawer__lang a         { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(23,40,155,.15); color: var(--dr-muted); transition: all .2s; text-decoration: none; }
.dr-drawer__lang a:hover   { color: var(--dr-blue); border-color: var(--dr-blue); }
.dr-drawer__lang a.active  { background: var(--dr-blue); color: #fff; border-color: var(--dr-blue); }
.dr-drawer__cta            { display: block; margin: 8px 12px 16px; background: var(--dr-blue); color: #fff !important; text-align: center; padding: 11px; border-radius: 9px; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; transition: background .2s; text-decoration: none !important; }
.dr-drawer__cta:hover      { background: var(--dr-blue-dark); }

/* ─────────────────────────────────────────────────────────────
   7. PAGE LAYOUT
   ───────────────────────────────────────────────────────────── */
.dr-page                   { padding: 56px 40px; font-family: 'DM Sans', sans-serif; }
.dr-page__inner            { max-width: 1200px; margin: 0 auto; }
.dr-section                { padding: 72px 40px; font-family: 'DM Sans', sans-serif; }
.dr-section--surface       { background: var(--dr-surface); }
.dr-section--white         { background: #fff; }
.dr-section__inner         { max-width: 1200px; margin: 0 auto; }
.dr-section__label         { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dr-blue); margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.dr-section__title         { font-size: 34px; font-weight: 700; margin-bottom: 12px; font-family: 'Syne', sans-serif; }
.dr-section__sub           { font-size: 16px; color: var(--dr-muted); font-weight: 300; max-width: 540px; }

/* ─────────────────────────────────────────────────────────────
   8. HERO
   ───────────────────────────────────────────────────────────── */
.dr-hero                   { background: linear-gradient(135deg, var(--dr-blue-dark) 0%, var(--dr-blue) 60%, #2547cc 100%); color: #fff; padding: 72px 40px 0; overflow: hidden; position: relative; font-family: 'DM Sans', sans-serif; }
.dr-hero::before           { content: ''; position: absolute; top: -60px; right: -100px; width: 480px; height: 480px; background: rgba(59,166,211,.1); border-radius: 50%; pointer-events: none; }
.dr-hero__inner            { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.dr-hero h1                { font-size: 46px; font-weight: 800; color: #fff; margin-bottom: 18px; font-family: 'Syne', sans-serif; line-height: 1.1; }
.dr-hero h1 em             { font-style: normal; color: #7eb8ea; }
.dr-hero__sub              { font-size: 16px; color: rgba(255,255,255,.72); font-weight: 300; margin-bottom: 30px; max-width: 460px; }
.dr-hero__badge            { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,166,211,.2); border: 1px solid rgba(59,166,211,.3); padding: 5px 13px; border-radius: 20px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.9); margin-bottom: 20px; }
.dr-hero__badge::before    { content: ''; width: 6px; height: 6px; background: #3ba6d3; border-radius: 50%; display: inline-block; }
.dr-hero__actions          { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dr-hero__stats            { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dr-stat                   { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--dr-radius); padding: 14px 16px; }
.dr-stat__val              { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }
.dr-stat__lbl              { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.dr-hero__trust            { background: rgba(255,255,255,.08); margin: 40px -40px 0; padding: 14px 40px; border-top: 1px solid rgba(255,255,255,.1); }
.dr-hero__trust-inner      { max-width: 1200px; margin: 0 auto; display: flex; gap: 36px; flex-wrap: wrap; }
.dr-trust-item             { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.7); }
.dr-trust-item::before     { content: ''; width: 5px; height: 5px; background: #3ba6d3; border-radius: 50%; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   9. BUTTONS
   ───────────────────────────────────────────────────────────── */
.dr-btn                    { display: inline-flex; align-items: center; gap: 7px; background: var(--dr-blue); color: #fff; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-family: 'Syne', sans-serif; font-size: 14px; border: none; cursor: pointer; transition: all .2s; text-decoration: none !important; }
.dr-btn:hover              { background: var(--dr-blue-dark); transform: translateY(-1px); color: #fff; }
.dr-btn--ghost             { background: transparent; border: 1.5px solid rgba(23,40,155,.3); color: var(--dr-blue); }
.dr-btn--ghost:hover       { background: rgba(23,40,155,.06); }
.dr-btn--ghost-white       { border-color: rgba(255,255,255,.3); color: #fff; }
.dr-btn--ghost-white:hover { background: rgba(255,255,255,.1); }
.dr-btn--white             { background: #fff; color: var(--dr-blue); }
.dr-btn--white:hover       { background: #e8edff; color: var(--dr-blue); }

/* ─────────────────────────────────────────────────────────────
   10. CARDS
   ───────────────────────────────────────────────────────────── */
.dr-card                   { background: #fff; border-radius: var(--dr-radius-lg); padding: 24px 20px; border: 1px solid rgba(23,40,155,.07); transition: all .22s; font-family: 'DM Sans', sans-serif; }
.dr-card:hover             { border-color: rgba(23,40,155,.2); transform: translateY(-2px); }
.dr-card--featured         { background: var(--dr-blue); color: #fff; border-color: transparent; }
.dr-card--featured p       { color: rgba(255,255,255,.72); }
.dr-card__icon             { width: 44px; height: 44px; background: rgba(23,40,155,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.dr-card__icon svg         { width: 20px; height: 20px; stroke: var(--dr-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dr-card--featured .dr-card__icon { background: rgba(255,255,255,.15); }
.dr-card--featured .dr-card__icon svg { stroke: #fff; }
.dr-card h3                { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.dr-card p                 { font-size: 13px; color: var(--dr-muted); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────
   11. REFERENCES BAR
   ───────────────────────────────────────────────────────────── */
.dr-refs-bar               { background: #fff; border-bottom: 2px solid var(--dr-surface); padding: 36px 40px; font-family: 'DM Sans', sans-serif; }
.dr-refs-bar__inner        { max-width: 1200px; margin: 0 auto; }
.dr-refs-bar__label        { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dr-muted); margin-bottom: 20px; text-align: center; font-family: 'Syne', sans-serif; }
.dr-refs-bar__grid         { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.dr-ref-tile               { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--dr-surface); border-radius: var(--dr-radius); padding: 16px 10px; border: 1px solid rgba(23,40,155,.06); transition: all .22s; }
.dr-ref-tile:hover         { border-color: rgba(23,40,155,.18); background: #fff; transform: translateY(-2px); }
.dr-ref-tile img           { height: 44px; object-fit: contain; filter: grayscale(100%); opacity: .65; transition: all .22s; }
.dr-ref-tile:hover img     { filter: grayscale(0%); opacity: 1; }
.dr-ref-tile span          { font-size: 11px; color: var(--dr-muted); text-align: center; font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   12. CTA BANNER
   ───────────────────────────────────────────────────────────── */
.dr-cta-banner             { background: linear-gradient(135deg, var(--dr-blue-dark), var(--dr-blue)); padding: 60px 40px; text-align: center; color: #fff; font-family: 'DM Sans', sans-serif; }
.dr-cta-banner h2          { font-size: 36px; font-weight: 800; margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.dr-cta-banner p           { color: rgba(255,255,255,.68); font-size: 16px; font-weight: 300; margin-bottom: 28px; }

/* ─────────────────────────────────────────────────────────────
   13. FOOTER
   ───────────────────────────────────────────────────────────── */
.dr-footer                 { background: #0e1c6e; color: #fff; padding: 52px 40px 28px; font-family: 'DM Sans', sans-serif; }
.dr-footer__grid           { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 36px; }
.dr-footer__brand p        { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 10px; max-width: 240px; line-height: 1.65; }
.dr-footer h5              { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .07em; color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: 14px; }
.dr-footer ul              { list-style: none; padding: 0; }
.dr-footer ul li           { margin-bottom: 7px; }
.dr-footer ul a            { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; text-decoration: none; }
.dr-footer ul a:hover      { color: #fff; }
.dr-footer__contact-item   { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 7px; }
.dr-footer__contact-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.dr-footer__contact-item a:hover { color: #fff; }
.dr-footer__bottom         { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.dr-footer__bottom p       { font-size: 12px; color: rgba(255,255,255,.28); }

/* ─────────────────────────────────────────────────────────────
   14. SERVICE CARDS (allservices page)
   ───────────────────────────────────────────────────────────── */
.dr-service-grid           { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.dr-service-card           { background: #fff; border-radius: var(--dr-radius-lg); border: 1px solid rgba(23,40,155,.08); padding: 28px 24px; transition: all .22s; position: relative; overflow: hidden; font-family: 'DM Sans', sans-serif; }
.dr-service-card::before   { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--dr-blue); }
.dr-service-card:hover     { border-color: rgba(23,40,155,.2); transform: translateY(-2px); }
.dr-service-card__icon     { width: 48px; height: 48px; background: rgba(23,40,155,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.dr-service-card__icon svg { width: 22px; height: 22px; stroke: var(--dr-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dr-service-card__img      { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; margin-bottom: 14px; display: block; }
.dr-service-card h3        { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dr-text); }
.dr-service-card p         { font-size: 13px; color: var(--dr-muted); line-height: 1.65; }
.dr-service-card--wide     { grid-column: span 2; }
.dr-service-card--featured { background: var(--dr-blue); color: #fff; }
.dr-service-card--featured::before { background: rgba(255,255,255,.25); }
.dr-service-card--featured .dr-service-card__icon { background: rgba(255,255,255,.15); }
.dr-service-card--featured .dr-service-card__icon svg { stroke: #fff; }
.dr-service-card--featured h3 { color: #fff; }
.dr-service-card--featured p  { color: rgba(255,255,255,.72); }
.dr-service-sidebar        { display: flex; flex-direction: column; gap: 20px; }
.dr-sidebar-cta            { background: var(--dr-blue); border-radius: var(--dr-radius); padding: 22px; color: #fff; font-family: 'DM Sans', sans-serif; }
.dr-sidebar-cta h4         { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.dr-sidebar-cta p          { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 14px; line-height: 1.6; }
.dr-sidebar-info           { background: var(--dr-surface); border-radius: var(--dr-radius); padding: 22px; border: 1px solid rgba(23,40,155,.07); font-family: 'DM Sans', sans-serif; }
.dr-sidebar-info h4        { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--dr-text); }
.dr-sidebar-row            { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--dr-muted); margin-bottom: 8px; }
.dr-sidebar-row a          { color: var(--dr-blue); font-weight: 500; text-decoration: none; }
.dr-sidebar-row svg        { flex-shrink: 0; margin-top: 2px; }

/* ─────────────────────────────────────────────────────────────
   15. BLOG / ARTICLES
   ───────────────────────────────────────────────────────────── */
.dr-article                { border-bottom: 1px solid var(--dr-surface); padding-bottom: 36px; margin-bottom: 36px; font-family: 'DM Sans', sans-serif; }
.dr-article h2             { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.dr-article h2 a:hover     { color: var(--dr-blue); }
.dr-article__content p     { color: var(--dr-muted); font-size: 15px; line-height: 1.7; }
.dr-read-more a            { color: var(--dr-blue); font-weight: 600; font-size: 13px; text-decoration: none; }
.dr-read-more a::after     { content: ' →'; }

/* ─────────────────────────────────────────────────────────────
   16. ANALYSIS STEPS
   ───────────────────────────────────────────────────────────── */
.dr-steps-row              { display: flex; align-items: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.dr-step-box               { display: flex; align-items: center; gap: 8px; background: var(--dr-surface); border-radius: 8px; padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--dr-muted); border: 1px solid rgba(23,40,155,.08); font-family: 'DM Sans', sans-serif; }
.dr-step-box.dr-done       { background: var(--dr-blue); color: #fff; border-color: transparent; }

/* ─────────────────────────────────────────────────────────────
   17. CONTACT PAGE
   ───────────────────────────────────────────────────────────── */
.dr-loc-grid               { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 52px; }
.dr-loc-card               { background: #fff; border-radius: 16px; border: 1px solid rgba(23,40,155,.08); overflow: hidden; transition: all .22s; font-family: 'DM Sans', sans-serif; }
.dr-loc-card:hover         { border-color: rgba(23,40,155,.2); transform: translateY(-2px); }
.dr-loc-card__img          { width: 100%; height: 168px; object-fit: cover; display: block; }
.dr-loc-card__body         { padding: 22px; }
.dr-loc-card__flag         { font-size: 18px; margin-bottom: 6px; }
.dr-loc-card__title        { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--dr-blue); margin-bottom: 8px; }
.dr-loc-card__addr         { font-size: 12px; color: var(--dr-muted); line-height: 1.75; margin-bottom: 14px; }
.dr-loc-card__link         { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--dr-muted); margin-bottom: 7px; transition: color .2s; text-decoration: none; }
.dr-loc-card__link:hover   { color: var(--dr-blue); }
.dr-loc-card__link svg     { flex-shrink: 0; width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dr-hours-row              { display: grid; grid-template-columns: auto 1fr; gap: 36px; margin-bottom: 52px; align-items: start; }
.dr-hours-label            { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dr-muted); margin-bottom: 12px; }
.dr-hours-table            { border-collapse: collapse; font-size: 13px; min-width: 240px; font-family: 'DM Sans', sans-serif; }
.dr-hours-table td         { padding: 7px 16px 7px 0; border-top: 1px solid var(--dr-surface); color: var(--dr-text); }
.dr-hours-table td:last-child { color: var(--dr-muted); }
.dr-hours-table tr.dr-closed td { color: #d1d5db; }
.dr-emergency              { background: linear-gradient(135deg, var(--dr-blue-dark), var(--dr-blue)); border-radius: 16px; padding: 28px; color: #fff; font-family: 'DM Sans', sans-serif; }
.dr-emergency h3           { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.dr-emergency p            { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 18px; line-height: 1.6; }
.dr-emergency .dr-phone    { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; text-decoration: none; }
.dr-emergency span         { font-size: 11px; color: rgba(255,255,255,.45); }
.dr-input                  { width: 100%; padding: 10px 13px; border: 1px solid rgba(23,40,155,.15); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--dr-text); background: #fff; outline: none; transition: border-color .2s; }
.dr-input:focus            { border-color: var(--dr-blue); box-shadow: 0 0 0 3px rgba(23,40,155,.07); }
.dr-input::placeholder     { color: #9ca3af; }
.dr-submit                 { width: 100%; padding: 13px; background-color: var(--dr-blue) !important; color: #fff !important; border: none !important; border-radius: 10px; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: .02em; }
.dr-submit:hover           { background-color: var(--dr-blue-dark) !important; transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────────────
   18. RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dr-hero__inner          { grid-template-columns: 1fr; }
  .dr-hero__stats          { display: none; }
  .dr-refs-bar__grid       { grid-template-columns: repeat(3,1fr); }
  .dr-footer__grid         { grid-template-columns: 1fr 1fr; }
  .dr-service-grid         { grid-template-columns: 1fr 1fr; }
  .dr-service-card--wide   { grid-column: span 2; }
  .dr-loc-grid             { grid-template-columns: 1fr; }
  .dr-hours-row            { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .dr-row1__links          { display: none; }
  .dr-row1__lang           { display: none; }
  .dr-row1__cta            { display: none; }
  .dr-row2                 { display: none; }
  .dr-hamburger            { display: block; }
}
@media (max-width: 768px) {
  .dr-row1__inner          { padding: 0 20px; }
  .dr-hero                 { padding: 48px 20px 0; }
  .dr-hero h1              { font-size: 32px; }
  .dr-section, .dr-page    { padding: 48px 20px; }
  .dr-breadcrumb           { padding: 0 20px; }
  .dr-refs-bar             { padding: 24px 20px; }
  .dr-refs-bar__grid       { grid-template-columns: repeat(2,1fr); }
  .dr-footer__grid         { grid-template-columns: 1fr; }
  .dr-footer               { padding: 40px 20px 24px; }
  .dr-service-grid         { grid-template-columns: 1fr; }
  .dr-service-card--wide   { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────────────────
   19. TARGETED SUPPRESSIONS
       These are the ONLY non-dr- rules in this file.
       They suppress specific old elements that must never
       appear alongside the new header. display:none !important
       wins over anything in style.css regardless of specificity.
   ───────────────────────────────────────────────────────────── */
