/* Digiency 2026 - Dark theme (SEO pages unchanged) */
:root {
  --de-brand: #ff2d6a;
  --de-brand-dark: #e91e63;
  --de-brand-soft: rgba(255, 45, 106, 0.14);
  --de-bg: #0b0f19;
  --de-bg-alt: #101827;
  --de-surface: #151d2e;
  --de-surface-2: #1c2738;
  --de-navy: #0b0f19;
  --de-navy-2: #151d2e;
  --de-heading: #f1f5f9;
  --de-text: #c5ced9;
  --de-muted: #8b99ad;
  --de-border: rgba(255, 255, 255, 0.09);
  --de-border-strong: rgba(255, 255, 255, 0.14);
  --de-white: var(--de-surface);
  --de-radius: 14px;
  --de-radius-lg: 22px;
  --de-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --de-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --de-font: "Inter", system-ui, sans-serif;
  --de-max: 1180px;
  --de-header-h: 76px;
  --de-topbar-h: 42px;
  --de-gradient-hero: linear-gradient(135deg, #0b0f19 0%, #1a2744 50%, #0b0f19 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  font-family: var(--de-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--de-text);
  background: var(--de-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ff6b9d; text-decoration: none; transition: 0.2s; }
a:hover { color: #ff8fb1; }
h1, h2, h3, h4 { color: var(--de-heading); font-weight: 700; line-height: 1.2; margin-top: 0; }
p { margin-top: 0; }
label { color: var(--de-heading); }

.container, .custom-container {
  width: 100%;
  max-width: var(--de-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.de-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--de-border);
}
.de-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--de-header-h);
  gap: 12px;
}

@media (max-width: 991.98px) {
  .de-header__inner > nav {
    display: none;
  }

  .de-header__actions {
    margin-left: auto;
  }
}
.de-logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  border-radius: 10px;
  background: transparent;
  flex-shrink: 0;
}
.de-logo img { height: 80px; width: auto; max-width: 280px; object-fit: contain; }

@media (max-width: 767px) {
  .de-logo img {
    height: 50px;
    max-width: 200px;
  }
  .de-header__inner {
    min-height: 58px;
  }
}

/* Nav */
.de-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .de-header__inner > nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 16px;
  }

  .de-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    min-width: 0;
  }

  .de-nav > li {
    position: relative;
  }

  .de-nav > li > a {
    padding: 10px 14px;
    color: var(--de-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .de-nav > li > a:hover {
    background: var(--de-brand-soft);
    color: #ff8fb1;
  }

  .de-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--de-surface-2);
    border: 1px solid var(--de-border-strong);
    border-radius: var(--de-radius);
    box-shadow: var(--de-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s;
    list-style: none;
    margin: 0;
    z-index: 20;
  }

  .de-nav li:hover .de-submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .de-submenu a {
    display: block;
    padding: 10px 12px;
    color: var(--de-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
  }

  .de-submenu a:hover {
    background: var(--de-brand-soft);
    color: #ff8fb1;
  }
}
.de-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.de-menu-toggle {
  position: relative;
  border: 1px solid var(--de-border);
  background: var(--de-surface);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
@media (min-width: 992px) { .de-menu-toggle { display: none; } }
.de-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--de-heading);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.de-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.de-menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.de-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.de-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}
.de-mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}
.de-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.de-mobile-nav.is-open .de-mobile-nav__backdrop { opacity: 1; }
.de-mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 92vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121a2b 0%, #0b0f19 100%);
  border-left: 1px solid var(--de-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.de-mobile-nav.is-open .de-mobile-nav__panel { transform: none; }
.de-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--de-border);
  flex-shrink: 0;
}
.de-mobile-nav__logo img {
  height: 42px;
  width: auto;
  display: block;
}
.de-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--de-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--de-heading);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.de-mobile-nav__close:hover {
  background: var(--de-brand-soft);
  border-color: rgba(255, 45, 106, 0.35);
  color: #ff8fb1;
}
.de-mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 8px;
  -webkit-overflow-scrolling: touch;
}
.de-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.de-mobile-nav__list--main a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  margin-bottom: 4px;
  border-radius: 12px;
  color: var(--de-heading);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.de-mobile-nav__list--main a i {
  width: 18px;
  text-align: center;
  color: var(--de-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.de-mobile-nav__list--main li.active > a,
.de-mobile-nav__list--main a:hover {
  background: var(--de-brand-soft);
  color: #ff8fb1;
}
.de-mobile-nav__list--main li.active > a i,
.de-mobile-nav__list--main a:hover i { color: #ff8fb1; }
.de-mobile-nav__section {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--de-border);
}
.de-mobile-nav__section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 14px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--de-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.de-mobile-nav__section-toggle span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.de-mobile-nav__section-toggle span i { color: var(--de-muted); }
.de-mobile-nav__section-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.de-mobile-nav__chevron {
  font-size: 12px;
  color: var(--de-muted);
  transition: transform 0.25s;
}
.de-mobile-nav__section.is-open .de-mobile-nav__chevron { transform: rotate(180deg); }
.de-mobile-nav__list--sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 4px;
}
.de-mobile-nav__section.is-open .de-mobile-nav__list--sub { max-height: 520px; }
.de-mobile-nav__list--sub a {
  display: block;
  padding: 10px 14px 10px 44px;
  color: var(--de-text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.de-mobile-nav__list--sub li.active > a,
.de-mobile-nav__list--sub a:hover {
  color: #ff8fb1;
  background: rgba(255, 45, 106, 0.08);
}
.de-mobile-nav__foot {
  flex-shrink: 0;
  padding: 14px 18px 20px;
  border-top: 1px solid var(--de-border);
  background: rgba(0, 0, 0, 0.22);
}
.de-mobile-nav__cta {
  width: 100%;
  margin-bottom: 12px;
}
.de-mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.de-mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--de-muted);
  transition: color 0.2s;
}
.de-mobile-nav__contact a i { color: var(--de-brand); font-size: 12px; }
.de-mobile-nav__contact a:hover { color: var(--de-heading); }
body.de-nav-open { overflow: hidden; }

/* Buttons */
.btn, .de-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--de-font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.de-btn--primary, .btn.de-btn--primary {
  background: linear-gradient(135deg, var(--de-brand), #ff6090);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}
.de-btn--primary:hover { transform: translateY(-2px); color: #fff !important; }
.de-btn--outline {
  background: transparent;
  color: var(--de-brand) !important;
  border: 2px solid var(--de-brand);
}
.de-btn--outline:hover { background: var(--de-brand-soft); color: #ff8fb1 !important; }
.de-btn--white {
  background: var(--de-heading);
  color: var(--de-bg) !important;
  box-shadow: var(--de-shadow-sm);
}
.de-btn--white:hover { background: #fff; color: var(--de-bg) !important; }
.de-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Hero - home */
.de-hero:not(.de-hero-swiss) {
  position: relative;
  padding: 100px 0 80px;
  background: var(--de-gradient-hero);
  color: #fff;
  overflow: hidden;
}
.de-hero.de-hero-swiss {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #0b0f19;
}
.de-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.25), transparent 50%);
  pointer-events: none;
}
.de-hero .container { position: relative; z-index: 1; }
.de-hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .de-hero__grid { grid-template-columns: 1fr 1fr; }
}
.de-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.de-hero__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 520px;
}
.de-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.de-hero__media {
  border-radius: var(--de-radius-lg);
  overflow: hidden;
  box-shadow: var(--de-shadow);
  border: 4px solid rgba(255, 255, 255, 0.12);
}
.de-hero__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.de-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.de-stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--de-radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.de-stat strong { display: block; font-size: 1.5rem; color: #fff; }
.de-stat span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }

/* Service page hero with image */
.de-service-hero.de-hero-swiss {
  min-height: auto !important;
  align-items: flex-start !important;
  padding: 0;
}

.de-service-hero:not(.de-hero-swiss) {
  position: relative;
  padding: 0;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--de-navy);
  color: #fff;
}

.de-service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.de-service-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.55) 60%, rgba(11, 15, 25, 0.4) 100%);
}
.de-service-hero:not(.de-hero-swiss) .container {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 56px;
}
.de-service-hero h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 16px; }
.de-service-hero .de-hero__lead { color: rgba(255, 255, 255, 0.9); max-width: 640px; }

.de-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--de-brand);
  margin-bottom: 12px;
}
.de-eyebrow--hero { color: #ff8fb1; }

.de-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  background: var(--de-bg-alt);
  border-bottom: 1px solid var(--de-border);
}
.de-trust span {
  font-size: 13px;
  font-weight: 600;
  color: var(--de-muted);
  padding: 8px 16px;
  background: var(--de-surface);
  border-radius: 999px;
  border: 1px solid var(--de-border);
}

.de-section { padding: 88px 0; }
.de-section--alt { background: var(--de-bg-alt); }
.de-section--dark {
  background: var(--de-surface);
  color: rgba(255, 255, 255, 0.88);
}
.de-section--dark h2, .de-section--dark h3 { color: #fff; }
.de-section__head { max-width: 600px; margin-bottom: 48px; }
.de-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.de-section__head h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); margin-bottom: 12px; }
.de-section__head p { color: var(--de-muted); }

.de-grid-2, .de-grid-3, .de-grid-4 { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .de-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .de-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .de-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) and (max-width: 991px) {
  .de-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.de-card {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 0;
  overflow: hidden;
  height: 100%;
  transition: 0.25s;
  box-shadow: var(--de-shadow-sm);
}
.de-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--de-shadow);
  border-color: rgba(255, 45, 106, 0.35);
}
.de-card__img { height: 180px; overflow: hidden; }
.de-card__img img { width: 100%; height: 100%; object-fit: cover; }
.de-card__body { padding: 24px; }
.de-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--de-brand-soft);
  color: var(--de-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.de-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.de-card h3 a { color: var(--de-heading); }
.de-card p { font-size: 15px; color: var(--de-muted); margin: 0; }

.de-section--dark .de-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.de-section--dark .de-card h3 a { color: #fff; }
.de-section--dark .de-card p { color: rgba(255, 255, 255, 0.75); }

.de-split {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .de-split { grid-template-columns: 1fr 1fr; }
  .de-split--reverse .de-split__img { order: 2; }
}
.de-split__img {
  border-radius: var(--de-radius-lg);
  overflow: hidden;
  box-shadow: var(--de-shadow);
}
.de-split__img img { width: 100%; height: 400px; object-fit: cover; }

.de-value-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.de-value-list li {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
}
.de-value-list i { color: var(--de-brand); margin-top: 4px; }
.de-value-list strong { display: block; color: var(--de-heading); margin-bottom: 4px; }
.de-value-list span { font-size: 14px; color: var(--de-muted); }

.de-page-hero {
  padding: 72px 0;
  background: var(--de-gradient-hero);
  color: #fff;
  text-align: center;
}
.de-page-hero h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 12px; }
.de-page-hero p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 0 auto; }

.de-service-layout { display: grid; gap: 40px; }
@media (min-width: 992px) {
  .de-service-layout { grid-template-columns: 1fr 300px; align-items: start; }
}
.de-service-sidebar {
  background: var(--de-surface-2);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 28px;
  box-shadow: var(--de-shadow-sm);
  position: sticky;
  top: 100px;
}
.de-service-sidebar h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--de-heading);
  margin-bottom: 16px;
}
.de-service-sidebar ul { list-style: none; margin: 0 0 20px; padding: 0; }
.de-service-sidebar li { margin-bottom: 10px; }
.de-service-sidebar a { color: var(--de-heading); font-weight: 600; }
.de-sidebar-cta { padding-top: 16px; border-top: 1px solid var(--de-border); }

.de-checklist { list-style: none; margin: 0; padding: 0; }
.de-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--de-text);
}
.de-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--de-brand);
}
.de-prose p { margin-bottom: 16px; }
.de-mt { margin-top: 32px; }

.de-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) { .de-process { grid-template-columns: repeat(2, 1fr); } }
.de-process li {
  padding: 22px 22px 22px 58px;
  position: relative;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  counter-increment: step;
}
.de-process { counter-reset: step; }
.de-process li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--de-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.de-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.de-tags span {
  padding: 8px 16px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--de-heading);
}

.de-cta:not(.de-cta--signature) {
  padding: 72px 0;
  background: #0b0f19;
  border-top: 1px solid rgba(233, 30, 99, 0.35);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.de-footer {
  background: #060910;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
  border-top: 1px solid var(--de-border);
}
.de-footer a { color: rgba(255, 255, 255, 0.9); }
.de-footer a:hover { color: #fff; }
.de-footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .de-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.de-footer h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.de-footer ul { list-style: none; margin: 0; padding: 0; }
.de-footer li { margin-bottom: 10px; }
.de-logo-footer, .de-footer__logo img { height: 52px; width: auto; max-width: 260px; object-fit: contain; margin-bottom: 16px; }
.de-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.de-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .de-mobile-bar { display: grid; }
  body { padding-bottom: 56px; }
  .de-scroll-top { bottom: 72px !important; }
}
.de-mobile-bar a {
  padding: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff !important;
}
.de-mobile-bar a:first-child { background: #25d366; }
.de-mobile-bar a:last-child { background: var(--de-navy); }

.de-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--de-brand);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.4);
}
.de-scroll-top.is-visible { opacity: 1; visibility: visible; }

.form-default, .de-form-box {
  background: var(--de-surface-2);
  border: 1px solid var(--de-border-strong);
  border-radius: var(--de-radius-lg);
  padding: 32px;
  box-shadow: var(--de-shadow-sm);
}
.section-form__input-field,
.de-input, .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--de-border-strong);
  border-radius: 10px;
  font-family: var(--de-font);
  font-size: 15px;
  margin-bottom: 4px;
  background: var(--de-bg);
  color: var(--de-heading);
}
.section-form__input-field::placeholder,
.form-control::placeholder { color: var(--de-muted); }
.section-form__input-field:focus, .form-control:focus {
  outline: none;
  border-color: var(--de-brand);
  box-shadow: 0 0 0 3px var(--de-brand-soft);
  background: var(--de-surface);
}
.section-form__input-field.textarea { min-height: 130px; resize: vertical; }

.accordion-item {
  border: 1px solid var(--de-border) !important;
  border-radius: var(--de-radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--de-surface) !important;
}
.accordion-button {
  font-weight: 600;
  color: var(--de-heading) !important;
  background: var(--de-surface) !important;
}
.accordion-button:not(.collapsed) {
  background: var(--de-brand-soft) !important;
  color: #ff8fb1 !important;
  box-shadow: none !important;
}
.accordion-button::after { filter: invert(1); opacity: 0.7; }
.accordion-body {
  background: var(--de-surface) !important;
  color: var(--de-text) !important;
}

.blog-block {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--de-shadow-sm);
}
.blog-block__img { height: 200px; overflow: hidden; }
.blog-block__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-block__content { padding: 24px; }
.blog-block__heading a { color: var(--de-heading); font-weight: 700; }
.blog-block__content p { color: var(--de-muted); }

.de-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.de-metric {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 28px 16px;
  box-shadow: var(--de-shadow-sm);
}
.de-metric strong {
  display: block;
  font-size: 2rem;
  color: var(--de-brand);
  line-height: 1.1;
}
.de-metric span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--de-muted);
}
.de-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .de-gallery { grid-template-columns: repeat(4, 1fr); } }
.de-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--de-radius);
}
.de-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .de-quote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .de-quote-grid { grid-template-columns: repeat(3, 1fr); } }
.de-quote {
  margin: 0;
  padding: 28px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  box-shadow: var(--de-shadow-sm);
}
.de-quote p { margin-bottom: 16px; font-style: italic; color: var(--de-text); }
.de-quote footer { font-size: 14px; color: var(--de-heading); }
.de-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 992px) { .de-contact-grid { grid-template-columns: 1fr 1.1fr; } }
.de-contact-info p { margin-bottom: 12px; }
.de-contact-info h3 { font-size: 1rem; margin: 24px 0 8px; }
.de-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.de-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--de-surface);
  color: var(--de-heading) !important;
  border: 1px solid var(--de-border);
}
.de-social a:hover { background: var(--de-brand); color: #fff !important; border-color: var(--de-brand); }
.de-map { margin-top: 0; }
.de-map iframe { display: block; width: 100%; min-height: 420px; border: 0; }
.no-select {
  user-select: none;
  -webkit-user-select: none;
}
.refresh-icon {
  font-size: 18px;
  color: var(--de-brand);
  cursor: pointer;
  margin-left: 10px;
  text-decoration: none;
}
.refresh-icon:hover { color: var(--de-brand-dark); }

.de-page-wrap { width: 100%; overflow-x: hidden; }
.de-img-credit {
  font-size: 11px;
  color: var(--de-muted);
  margin-top: 8px;
}

/* Page hero (new + legacy breadcrumb) */
.de-page-hero {
  padding: 88px 0 72px;
  background: var(--de-gradient-hero);
  color: #fff;
  text-align: center;
}
.de-page-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 820px;
  margin: 0 auto 16px;
}
.de-page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Legacy inner pages - modern skin without URL/SEO changes */
.breadcrumb-area { margin: 0; padding: 0; }
.breadcrumb-area .tg-breadcrumb-bg {
  min-height: 300px !important;
  display: flex !important;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  background-image: linear-gradient(135deg, rgba(11, 15, 25, 0.94), rgba(11, 15, 25, 0.82)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&q=80") !important;
}
.tg-breadcrumb-bg, .breadcrumb-area .tg-breadcrumb-bg,
.de-page-hero { background-size: cover; background-position: center; }
.tg-breadcrumb-title, .tg-breadcrumb h1, .tg-breadcrumb h2, .tg-breadcrumb h3 {
  color: #fff !important;
  font-family: var(--de-font) !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}
.tg-breadcrumb-link { color: rgba(255, 255, 255, 0.75) !important; font-size: 14px; }
.tg-breadcrumb-link a { color: #fff !important; }
.main, .main.position-relative { padding: 0; background: var(--de-bg); }
section.blog, section.about, section.contact, section.price, .about-section,
.benefit, .service.pt-90, .client--area {
  padding: 64px 0 !important;
  font-family: var(--de-font);
  background: var(--de-bg) !important;
  color: var(--de-text) !important;
}
.section-title__main, .section-title__sub, .h2-40, .h2-30, .f2-30 {
  font-family: var(--de-font) !important;
  color: var(--de-heading) !important;
}
.section-title__sub, .primary-color { color: #ff8fb1 !important; }
.price-block, .service-block, .service-block--style5, .client-block {
  background: var(--de-surface) !important;
  border: 1px solid var(--de-border) !important;
  border-radius: var(--de-radius-lg) !important;
  box-shadow: var(--de-shadow-sm) !important;
  padding: 28px !important;
  color: var(--de-text) !important;
}
.price-block .service-block__title,
.service-block__title { color: var(--de-heading) !important; }
.client-block__text { color: var(--de-text) !important; }
.price-block .btn, .main .btn:not(.de-btn) {
  background: linear-gradient(135deg, var(--de-brand), #ff6090) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
}
.de-cta-band {
  background: var(--de-gradient-hero);
  color: #fff;
  text-align: center;
}
.de-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.de-cta-band h2 { color: #fff; margin-bottom: 8px; }
.de-cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.de-blog-grid .col-lg-4 { margin-bottom: 24px; }
.blog-block--style4, .blog-block {
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--de-shadow) !important;
}
.blog-block__img { border-radius: var(--de-radius-lg) var(--de-radius-lg) 0 0; overflow: hidden; }
.blog-block__meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--de-brand);
  font-weight: 700;
}
.de-enquiry-wrap { max-width: 720px; margin: 0 auto; }
.service-block--style2 {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 28px;
  height: 100%;
  box-shadow: var(--de-shadow-sm);
}
.service-block--style2 img { max-width: 72px; }
.about__inner-images ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) { .about__inner-images ul { grid-template-columns: repeat(4, 1fr); } }
.about__inner-images img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--de-radius); }

.element, .tgmobile__menu, .tgmenu__wrap, #header-fixed-height { display: none !important; }
.text-muted { color: var(--de-muted) !important; }
.text-danger { color: #f87171 !important; }

/* Bootstrap + misc dark overrides */
select.form-control, select.form-control option {
  background: var(--de-bg);
  color: var(--de-heading);
}
.captcha-container {
  background: var(--de-bg) !important;
  border-color: var(--de-border) !important;
}
.captcha-image .form-control, .captcha-image label {
  background: var(--de-surface) !important;
  color: var(--de-heading) !important;
}
.update-progress-content {
  background: var(--de-surface-2) !important;
  color: var(--de-heading) !important;
}
.modal-content {
  background: var(--de-surface-2) !important;
  color: var(--de-text) !important;
  border: 1px solid var(--de-border) !important;
}
.modal-header, .modal-footer { border-color: var(--de-border) !important; }
.modal-title { color: var(--de-heading) !important; }
.btn-close { filter: invert(1); }
.accordion-body p { color: var(--de-text) !important; }
#homeFaq .accordion-button { background: var(--de-surface) !important; }

/* Legacy SVG icons on dark cards */
.service-block--style5 svg path,
.price-block svg path { stroke: #ff8fb1 !important; }
.contact-block__title { color: var(--de-heading) !important; }
.contact-block__text { color: var(--de-text) !important; }
.benefit__content p, .features-list p { color: var(--de-text) !important; }

@media (max-width: 991px) {
  .de-hero { padding: 72px 0 56px; }
  .de-hero__grid { grid-template-columns: 1fr !important; }
  .de-hero__media img { height: 260px; }
  .de-split { grid-template-columns: 1fr !important; }
  .de-split__img img { height: 280px; }
  .de-section { padding: 56px 0; }
  .de-grid-3, .de-grid-4, .de-grid-2 { grid-template-columns: 1fr !important; }
  .de-service-sidebar { position: static; }
  .de-footer__grid { grid-template-columns: 1fr; }
}
