/* ============================================================
   DeltaGCC — Modern Next.js-style Pastel SaaS Theme
   ============================================================ */

:root {
  /* Pastel SaaS palette */
  --blue: #3b82f6;
  --blue-soft: #eff6ff;
  --blue-dark: #2563eb;
  --green: #16a34a;
  --green-soft: #edfdf2;
  --violet: #8b5cf6;
  --violet-soft: #f5f3ff;
  --orange: #f59e0b;
  --orange-soft: #fffbeb;
  --pink: #ec4899;
  --pink-soft: #fce7f3;
  --cyan: #06b6d4;
  --cyan-soft: #ecfeff;
  --red: #ef4444;
  --red-soft: #fef2f2;

  /* Surfaces */
  --bg: #fafbfc;
  --bg-card: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-warm: #f8fafc;

  /* Text */
  --ink: #0f172a;
  --ink-muted: #64748b;
  --ink-light: #94a3b8;

  /* Borders & Shadows */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.1);

  /* Radii */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-pill: 9999px;

  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-head: "Manrope", var(--font-body);

  /* Layout */
  --maxw: 1180px;
  --header-h: 72px;
}

/* ============================================================
   Homepage Engineering Services - image-free premium bento
   ============================================================ */

.hp-services {
  padding: clamp(78px, 8vw, 118px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #ffffff 100%);
  overflow: hidden;
}

.hp-services .container {
  position: relative;
  z-index: 1;
}

.hp-services .hp-section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hp-services__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.hp-services__title {
  margin: 4px 0 14px;
  color: #0f172a;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hp-services__intro {
  max-width: 660px;
  margin: 0 auto;
  color: #5f6f86;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hp-services__map {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1240px;
  margin: 0 auto;
}

.hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 5; grid-row: span 2; }
.hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 6 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 9 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
.hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 7 / span 6; }

.hp-svc-row {
  --svc-accent: #2563eb;
  --svc-accent-2: #7dd3fc;
  --svc-tint: #f8fbff;
  --svc-border: rgba(148, 163, 184, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  overflow: hidden;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--svc-border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--svc-accent-2) 34%, transparent), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, var(--svc-tint) 100%);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hp-svc-row:hover,
.hp-svc-row:focus-visible {
  color: inherit;
  text-decoration: none;
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--svc-accent) 36%, #ffffff);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
}

.hp-svc-row:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--svc-accent) 34%, #ffffff);
  outline-offset: 4px;
}

.hp-svc-row__glow {
  position: absolute;
  inset: auto -54px -72px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--svc-accent-2) 42%, transparent);
  filter: blur(4px);
  opacity: 0.76;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: -1;
}

.hp-svc-row:hover .hp-svc-row__glow {
  opacity: 1;
  transform: scale(1.16) translate(-10px, -10px);
}

.hp-svc-row__mark {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--svc-accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.hp-svc-row__mark .dg-icon {
  width: 23px;
  height: 23px;
}

.hp-svc-row__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 2.4vw, 32px);
  z-index: 2;
}

.hp-svc-row__text {
  max-width: calc(100% - 58px);
  flex-grow: 0;
}

.hp-svc-row__text strong {
  display: block;
  margin: 0 0 10px;
  color: #0f172a;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.hp-svc-row__text span {
  display: -webkit-box;
  overflow: hidden;
  color: #607088;
  font-size: 0.95rem;
  line-height: 1.62;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.hp-svc-row__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.hp-svc-row__foot small {
  color: color-mix(in srgb, var(--svc-accent) 76%, #334155);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-svc-row__arrow {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: auto;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 62%, #111827));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--svc-accent) 24%, transparent);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hp-svc-row__arrow .dg-icon {
  width: 19px;
  height: 19px;
  transition: transform 0.24s ease;
}

.hp-svc-row:hover .hp-svc-row__arrow {
  color: #ffffff;
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 62%, #111827));
  transform: scale(1.06);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--svc-accent) 31%, transparent);
}

.hp-svc-row:hover .hp-svc-row__arrow .dg-icon {
  transform: translateX(3px);
}

.hp-svc-row--mint {
  --svc-accent: #0f9f83;
  --svc-accent-2: #9ff3df;
  --svc-tint: #f1fffb;
}

.hp-svc-row--sky {
  --svc-accent: #2563eb;
  --svc-accent-2: #bae6fd;
  --svc-tint: #f3f8ff;
}

.hp-svc-row--lavender {
  --svc-accent: #7c3aed;
  --svc-accent-2: #ddd6fe;
  --svc-tint: #fbf7ff;
}

.hp-svc-row--peach {
  --svc-accent: #e26a2c;
  --svc-accent-2: #fed7aa;
  --svc-tint: #fff8f2;
}

.hp-svc-row--aqua {
  --svc-accent: #0891b2;
  --svc-accent-2: #a5f3fc;
  --svc-tint: #f1fdff;
}

.hp-svc-row--rose {
  --svc-accent: #db2777;
  --svc-accent-2: #fbcfe8;
  --svc-tint: #fff5fa;
}

.hp-svc-row--gold {
  --svc-accent: #b7791f;
  --svc-accent-2: #fde68a;
  --svc-tint: #fffbea;
}

.hp-services__map > .hp-svc-row:nth-child(1) {
  min-height: 392px;
  background:
    radial-gradient(circle at 82% 16%, rgba(159, 243, 223, 0.78), transparent 32%),
    radial-gradient(circle at 10% 94%, rgba(186, 230, 253, 0.72), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edfffb 48%, #f8fbff 100%);
}

.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
  padding: clamp(28px, 3.4vw, 44px);
}

.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text {
  max-width: min(430px, calc(100% - 60px));
}

.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span {
  font-size: 1.02rem;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.hp-services__map > .hp-svc-row:nth-child(3),
.hp-services__map > .hp-svc-row:nth-child(4) {
  min-height: 184px;
}

.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.hp-services__map > .hp-svc-row:nth-child(6),
.hp-services__map > .hp-svc-row:nth-child(7) {
  min-height: 220px;
}

.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
  max-width: min(460px, calc(100% - 58px));
}

@media (max-width: 1080px) {
  .hp-services__map {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 6; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 1 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 4 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 1 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 4 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
  .hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 1 / span 6; }
}

@media (max-width: 680px) {
  .hp-services {
    padding: 64px 0;
  }

  .hp-services__head {
    margin-bottom: 30px;
  }

  .hp-services__map {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hp-services__map > .hp-svc-row:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 210px;
    aspect-ratio: auto;
  }

  .hp-services__map > .hp-svc-row:nth-child(1) {
    min-height: 300px;
  }

  .hp-svc-row__mark {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .hp-svc-row__body {
    padding: 22px;
  }

  .hp-svc-row__text,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
    max-width: calc(100% - 54px);
  }

  .hp-svc-row__foot small {
    font-size: 0.72rem;
  }
}

/* Final services bento polish: readable content, floating arrow-only CTA. */
.hp-services__map {
  grid-auto-rows: auto;
  align-items: stretch;
  overflow: visible;
}
.hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 5; grid-row: span 2; }
.hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
.hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 7 / span 6; }
.hp-svc-row,
.hp-services__map > .hp-svc-row:nth-child(1),
.hp-services__map > .hp-svc-row:nth-child(3),
.hp-services__map > .hp-svc-row:nth-child(4),
.hp-services__map > .hp-svc-row:nth-child(6),
.hp-services__map > .hp-svc-row:nth-child(7) {
  min-height: auto;
  overflow: hidden;
}
.hp-svc-row {
  padding: 0;
  border-color: rgba(148, 163, 184, 0.2);
}
.hp-svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.9), transparent 26%);
  z-index: -1;
}
.hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  display: block;
  min-width: 0;
  padding: clamp(26px, 2.8vw, 38px);
  padding-right: clamp(88px, 8vw, 112px);
  padding-bottom: clamp(86px, 8vw, 104px);
}
.hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
  max-width: none;
  width: 100%;
}
.hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text strong {
  overflow-wrap: anywhere;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
}
.hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text span {
  display: block;
  overflow: visible;
  color: #5f6f86;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.hp-svc-row__foot,
.hp-svc-row__foot small {
  display: none;
}
.hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  z-index: 4;
}
.hp-svc-row__mark {
  top: 24px;
  right: 24px;
  z-index: 3;
}
.hp-services__map > .hp-svc-row:nth-child(1) {
  background:
    radial-gradient(circle at 84% 14%, rgba(153, 246, 228, 0.88), transparent 31%),
    radial-gradient(circle at 12% 92%, rgba(186, 230, 253, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #ecfffb 46%, #f7fbff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(2) {
  background:
    radial-gradient(circle at 86% 80%, rgba(186, 230, 253, 0.72), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(3) {
  background:
    radial-gradient(circle at 92% 86%, rgba(221, 214, 254, 0.78), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fbf7ff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(4) {
  background:
    radial-gradient(circle at 84% 90%, rgba(254, 215, 170, 0.74), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #fff8f2 100%);
}
.hp-services__map > .hp-svc-row:nth-child(5) {
  background:
    radial-gradient(circle at 90% 88%, rgba(165, 243, 252, 0.8), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f1fdff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(6) {
  background:
    radial-gradient(circle at 92% 82%, rgba(251, 207, 232, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fff5fa 100%);
}
.hp-services__map > .hp-svc-row:nth-child(7) {
  background:
    radial-gradient(circle at 92% 82%, rgba(253, 230, 138, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fffbea 100%);
}

@media (min-width: 1081px) {
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
    min-height: 430px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .hp-services__map > .hp-svc-row:nth-child(2) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(5) .hp-svc-row__body {
    min-height: 220px;
  }
}

@media (max-width: 1080px) {
  .hp-services__map > .hp-svc-row:nth-child(1),
  .hp-services__map > .hp-svc-row:nth-child(2),
  .hp-services__map > .hp-svc-row:nth-child(3),
  .hp-services__map > .hp-svc-row:nth-child(4),
  .hp-services__map > .hp-svc-row:nth-child(5),
  .hp-services__map > .hp-svc-row:nth-child(6),
  .hp-services__map > .hp-svc-row:nth-child(7) {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    padding: 24px;
    padding-right: 84px;
    padding-bottom: 84px;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) {
    min-height: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }
  .hp-svc-row__arrow,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
  .hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
    right: 22px;
    bottom: 22px;
  }
}

/* Services bento polish: readable content, floating arrow-only CTA. */
.hp-services__map {
  grid-auto-rows: auto;
  align-items: stretch;
  overflow: visible;
}
.hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 5; grid-row: span 2; }
.hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
.hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 7 / span 6; }
.hp-svc-row,
.hp-services__map > .hp-svc-row:nth-child(1),
.hp-services__map > .hp-svc-row:nth-child(3),
.hp-services__map > .hp-svc-row:nth-child(4),
.hp-services__map > .hp-svc-row:nth-child(6),
.hp-services__map > .hp-svc-row:nth-child(7) {
  min-height: auto;
  overflow: hidden;
}
.hp-svc-row {
  padding: 0;
  border-color: rgba(148, 163, 184, 0.2);
}
.hp-svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.9), transparent 26%);
  z-index: -1;
}
.hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  display: block;
  min-width: 0;
  padding: clamp(26px, 2.8vw, 38px);
  padding-right: clamp(88px, 8vw, 112px);
  padding-bottom: clamp(86px, 8vw, 104px);
}
.hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
  max-width: none;
  width: 100%;
}
.hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text strong {
  overflow-wrap: anywhere;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
}
.hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text span {
  display: block;
  overflow: visible;
  color: #5f6f86;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.hp-svc-row__foot,
.hp-svc-row__foot small {
  display: none;
}
.hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  z-index: 4;
}
.hp-svc-row__mark {
  top: 24px;
  right: 24px;
  z-index: 3;
}
.hp-services__map > .hp-svc-row:nth-child(1) {
  background:
    radial-gradient(circle at 84% 14%, rgba(153, 246, 228, 0.88), transparent 31%),
    radial-gradient(circle at 12% 92%, rgba(186, 230, 253, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #ecfffb 46%, #f7fbff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(2) {
  background:
    radial-gradient(circle at 86% 80%, rgba(186, 230, 253, 0.72), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(3) {
  background:
    radial-gradient(circle at 92% 86%, rgba(221, 214, 254, 0.78), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fbf7ff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(4) {
  background:
    radial-gradient(circle at 84% 90%, rgba(254, 215, 170, 0.74), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #fff8f2 100%);
}
.hp-services__map > .hp-svc-row:nth-child(5) {
  background:
    radial-gradient(circle at 90% 88%, rgba(165, 243, 252, 0.8), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f1fdff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(6) {
  background:
    radial-gradient(circle at 92% 82%, rgba(251, 207, 232, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fff5fa 100%);
}
.hp-services__map > .hp-svc-row:nth-child(7) {
  background:
    radial-gradient(circle at 92% 82%, rgba(253, 230, 138, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fffbea 100%);
}

@media (min-width: 1081px) {
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
    min-height: 430px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .hp-services__map > .hp-svc-row:nth-child(2) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    min-height: 220px;
  }
  .hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(5) .hp-svc-row__body {
    min-height: 220px;
  }
}

@media (max-width: 1080px) {
  .hp-services__map > .hp-svc-row:nth-child(1),
  .hp-services__map > .hp-svc-row:nth-child(2),
  .hp-services__map > .hp-svc-row:nth-child(3),
  .hp-services__map > .hp-svc-row:nth-child(4),
  .hp-services__map > .hp-svc-row:nth-child(5),
  .hp-services__map > .hp-svc-row:nth-child(6),
  .hp-services__map > .hp-svc-row:nth-child(7) {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    padding: 24px;
    padding-right: 84px;
    padding-bottom: 84px;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) {
    min-height: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }
  .hp-svc-row__arrow,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
  .hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
    right: 22px;
    bottom: 22px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.4vw, 1.25rem); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--blue-dark); }

p { margin: 0; color: var(--ink-muted); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-soft);
}

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px);
}

/* ============================================================
   Icons
   ============================================================ */

.dg-icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
  flex: none;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   Premium Feature Icon (2026)
   ============================================================ */

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 24px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .35s ease;
}

.feature-icon:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-icon:hover .dg-icon,
.feature-icon:hover svg {
  transform: scale(1.08);
}

.feature-icon svg,
.feature-icon .dg-icon {
  width: 28px;
  height: 28px;
}

/* ============================================================
   Premium Soft Colors
   ============================================================ */

.feature-icon.blue{
    background:#F5F9FF;
    color:#2563EB;
}

.feature-icon.green{
    background:#F3FCF6;
    color:#16A34A;
}

.feature-icon.violet{
    background:#FAF7FF;
    color:#7C3AED;
}

.feature-icon.orange{
    background:#FFF8F1;
    color:#EA580C;
}

.feature-icon.pink{
    background:#FFF3F8;
    color:#DB2777;
}

.feature-icon.cyan{
    background:#F2FCFF;
    color:#0891B2;
}

.feature-icon.purple{
    background:#F6F3FF;
    color:#7C3AED;
}

.feature-icon.amber{
    background:#FFFBEA;
    color:#D97706;
}

.feature-icon.emerald{
    background:#F2FDF8;
    color:#059669;
}

.feature-icon.rose{
    background:#FFF3F4;
    color:#E11D48;
}

.feature-icon.indigo{
    background:#F4F6FF;
    color:#4F46E5;
}
/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), #1d4ed8);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.3);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.btn--cta {
  background: linear-gradient(135deg, var(--orange), #d97706);
  color: #fff;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.btn--cta:hover {
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.3);
  color: #fff;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  border-color: var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.btn--glass:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  color: var(--blue-dark);
}

.btn--dark {
  background: #0f172a;
  color: #fff;
}

.btn--dark:hover {
  background: #1e293b;
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn .dg-icon {
  width: 16px;
  height: 16px;
  transition: transform .15s;
}

.btn:hover .dg-icon { transform: translateX(3px); }

/* ============================================================
   Header — Modern Glassmorphism
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow .2s, background .2s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-height: 44px;
}

.brand:hover { text-decoration: none; }

.brand__delta {
  height: 30px;
  width: auto;
  display: block;
}

.brand__divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  align-self: center;
}

.brand__partner {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.05;
  min-height: 30px;
}

.brand__tensor {
  height: 26px;
  width: auto;
  display: block;
}

.brand__partner small {
  display: block;
  font-size: .58rem;
  color: var(--ink-light);
  letter-spacing: .03em;
  margin-top: 3px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav__menu {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav__menu > li {
  position: relative;
  padding-top: 10px;
  padding-bottom: 14px;
  margin: 0 2px;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  display: none;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  z-index: 30;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

.site-nav__menu > li:hover,
.site-nav__menu > li:focus-within {
  padding-bottom: 18px;
}

.site-nav__submenu li + li {
  margin-top: 4px;
}

.site-nav__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.9rem;
}

.site-nav__menu > li:hover .site-nav__submenu,
.site-nav__menu > li:focus-within .site-nav__submenu,
.site-nav__submenu:hover,
.site-nav__submenu:focus-within {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-block;
  transition: all .15s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav__menu a:hover {
  color: var(--blue);
  background: var(--blue-soft);
  text-decoration: none;
}

.site-nav__menu .is-active > a,
.site-nav__menu .current-menu-item > a,
.site-nav__menu .current_page_item > a {
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 600;
}

.site-nav__utils {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
  margin-left: 6px;
  border-left: 1px solid var(--border);
}

.site-nav__search {
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  transition: all .15s;
}

.site-nav__search:hover { color: var(--blue); background: var(--blue-soft); }

.site-nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-light);
  white-space: nowrap;
}

.site-nav__lang .dg-icon { width: 16px; height: 16px; }

.site-nav__cta {
  margin-left: 6px;
  min-height: 36px;
  padding: 8px 16px;
  font-size: .82rem;
  border-radius: 6px;
  gap: 6px;
}

.site-nav__cta .dg-icon {
  width: 14px;
  height: 14px;
}

.site-nav__menu .menu-item-has-children > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.8em;
  opacity: 0.75;
  transition: transform .2s ease;
}

.site-nav__menu .menu-item-has-children:hover > a::after,
.site-nav__menu .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
}

.site-nav__menu .menu-item-has-children:hover > a,
.site-nav__menu .menu-item-has-children:focus-within > a {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 2px;
  transition: background .15s;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }

/* ============================================================
   Page Hero (Inner Pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding: 56px 0 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.page-hero--image {
  background-size: cover;
  background-position: center;
  border-bottom: 0;
  padding: 72px 0 80px;
  color: #fff;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(30, 58, 95, 0.72));
  z-index: 1;
}

.page-hero--image > .container { position: relative; z-index: 2; }

.page-hero--image .page-hero__title { color: #fff; }
.page-hero--image .page-hero__desc { color: rgba(255, 255, 255, 0.85); }

.page-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 10px;
}

.page-hero__desc {
  font-size: 1.05rem;
  max-width: 680px;
  color: var(--ink-muted);
  margin: 0 0 20px;
  line-height: 1.7;
}

/* ============================================================
   Breadcrumb
   ============================================================ */

.breadcrumb {
  padding-top: 18px;
  font-size: .85rem;
  color: var(--ink-light);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--blue); }

.crumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  font-size: .83rem;
}

.crumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--ink-muted);
}

.crumb a { color: var(--ink-muted); display: inline-flex; align-items: center; gap: 6px; }
.crumb a:hover { color: var(--blue); text-decoration: none; }
.crumb .dg-icon { width: 14px; height: 14px; }
.crumb__current { color: var(--ink); font-weight: 600; }

/* ============================================================
   Eyebrow / Badge
   ============================================================ */

.eyebrow,
.premium-hero__badge,
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  width: fit-content;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero__badge .dg-icon,
.premium-hero__badge .dg-icon {
  color: var(--blue);
  width: 14px;
  height: 14px;
}

/* ============================================================
   Premium Hero (Homepage)
   ============================================================ */

.premium-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(59, 130, 246, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(16, 185, 129, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(139, 92, 246, 0.05), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: var(--ink);
}

.premium-hero::before { display: none; }

.premium-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 60px;
  min-height: 580px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.premium-hero__copy { max-width: 620px; }

.premium-hero__badge { margin-bottom: 18px; }

.premium-hero h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.premium-hero p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.premium-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Hero Visual — Image Card with Floating Elements */

.premium-hero__visual { position: relative; }

.premium-hero__image-card {
  position: relative;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.premium-hero__image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
}

.premium-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.premium-hero__float .dg-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.premium-hero__float--top {
  top: -16px;
  right: -12px;
}

.premium-hero__float--bottom {
  left: -16px;
  bottom: -16px;
}

/* Hero Trust Bar */

.premium-hero__trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.premium-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-card);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.premium-hero__trust .dg-icon {
  width: 15px;
  height: 15px;
  color: var(--green);
}

/* Hero Stats */

.premium-hero__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(880px, 100%);
  margin: 24px auto 0;
}

.premium-hero__stats > div {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.premium-hero__stats span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--blue-soft);
  color: var(--blue);
}

.premium-hero__stats span .dg-icon {
  width: 18px;
  height: 18px;
}

.premium-hero__stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.2;
}

.premium-hero__stats small {
  display: block;
  color: var(--ink-muted);
  font-size: .8rem;
  font-weight: 600;
}

/* ============================================================
   Premium Section (Homepage Blocks)
   ============================================================ */

.premium-section {
  padding: 96px 0;
  background: var(--bg-card);
}

.premium-section--soft {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.premium-head {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.premium-head--left {
  margin-left: 0;
  text-align: left;
}

.premium-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
}

.premium-head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.premium-head--left h2::after {
  margin-left: 0;
}

.premium-head p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: .98rem;
  line-height: 1.7;
}

.premium-head--light h2 { color: #fff; }
.premium-head--light p { color: rgba(255, 255, 255, 0.85); }

/* Premium Products section */

.premium-products {
  position: relative;
}

/* ============================================================
   Card Grid System
   ============================================================ */

.premium-card-grid {
  display: grid;
  gap: 20px;
}

.premium-card-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-card-grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card-grid--industries {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-card-grid--why {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card-grid--cases {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Card Base: all cards share this foundation */

.premium-card,
.premium-service,
.premium-industry,
.premium-why-card,
.premium-case,
.premium-step,
.premium-contact__form,
.premium-hima__brand,
.premium-hima__col,
.premium-hima__approach {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.premium-card:hover,
.premium-service:hover,
.premium-industry:hover,
.premium-why-card:hover,
.premium-case:hover,
.premium-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  text-decoration: none;
}

/* ============================================================
   Service Cards — Vertical with Icon + Image
   ============================================================ */

.premium-service {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  color: inherit;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.premium-service:hover { color: inherit; }

.premium-service__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}

.premium-service__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.12) 100%);
  pointer-events: none;
}

.premium-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.premium-service:hover .premium-service__image img {
  transform: scale(1.06);
}

.premium-service__content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
}

.premium-service__content strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.3;
}

.premium-service__content span {
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
}

.premium-service__content::after {
  content: "Learn more →";
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: translateX(-6px);
}

.premium-service:hover .premium-service__content::after {
  opacity: 1;
  transform: translateX(0);
}

.premium-service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.premium-service-detail .entry-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink-muted);
}

.premium-service-detail .entry-content li + li {
  margin-top: 8px;
}

/* ============================================================
   Product / Media Cards
   ============================================================ */

.premium-card--media {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
}

.premium-card--media:hover { color: inherit; }

.premium-card__image {
  display: block;
  aspect-ratio: 4 / 2.8;
  overflow: hidden;
  background: var(--bg-soft);
}

.premium-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.premium-card:hover .premium-card__image img {
  transform: scale(1.06);
}

.premium-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 20px;
}

.premium-card__body .feature-icon {
  margin-bottom: 6px;
}

.premium-card__body strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.3;
}

.premium-card__body span {
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
}

.premium-card__body::after {
  content: "Learn more \2192";
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: translateX(-6px);
}

.premium-card:hover .premium-card__body::after {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   Industry Cards — Overlay Style
   ============================================================ */

.premium-industry {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--r);
}

.premium-industry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.75));
  z-index: 1;
  border-radius: var(--r);
}

.premium-industry img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.premium-industry:hover img { transform: scale(1.06); }

.premium-industry span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.premium-industry strong,
.premium-industry small { color: #fff; }

.premium-industry strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.premium-industry small {
  font-size: .85rem;
  opacity: .9;
  line-height: 1.5;
}

.premium-industry small::after {
  content: " \2192";
  display: inline;
  transition: margin .2s;
}

.premium-industry:hover small::after {
  margin-left: 4px;
}

/* ============================================================
   Premium Industry Card (2026)
   ============================================================ */

.premium-industry-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
  overflow: hidden;
}

.premium-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  text-decoration: none;
}

.premium-industry-card__content {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.premium-industry-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.premium-industry-card__header h3 {
  font-size: 1.15rem;
  color: var(--ink);
}

.premium-industry-card__header span {
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.premium-industry-card__content p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.premium-industry-card__solutions {
  padding: 16px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
}

.premium-industry-card__solutions strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ============================================================
   Premium Service Card (2026)
   ============================================================ */

.premium-service-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
  overflow: hidden;
}

.premium-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  text-decoration: none;
}

.premium-service-card__content {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.premium-service-card h3 {
  font-size: 1.15rem;
  color: var(--ink);
}

.premium-service-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.premium-service-card__body p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  border-right: 1px solid var(--border-light);
  padding-right: 20px;
}
/* ============================================================
   Why Choose Us Cards
   ============================================================ */

.premium-why-card {
  min-height: 220px;
  padding: 28px 24px;
  background: var(--bg-card);
  color: var(--ink);
  text-align: center;
}

.premium-why-card .feature-icon {
  margin: 0 auto 16px;
}

.premium-why-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.3;
}

.premium-why-card p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ============================================================
   Popular Strip
   ============================================================ */

.premium-popular {
  background: var(--bg-card);
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.premium-popular__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.premium-popular h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  white-space: nowrap;
}

.premium-popular__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.premium-popular__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--blue);
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
}

.premium-popular__links a:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
  text-decoration: none;
}

.premium-popular__links .dg-icon {
  width: 14px;
  height: 14px;
}

/* ============================================================
   Solar SCADA Section
   ============================================================ */

.premium-solar {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 52%, #f0fdf4 100%);
}

.premium-solar__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.premium-solar__copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
}

.premium-solar__copy h3 {
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
}

.premium-solar__copy p {
  margin: 16px 0 24px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.premium-solar__visual { position: relative; }

.premium-solar__visual > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 8px solid var(--bg-card);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.premium-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -36px;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.premium-kpis > div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.premium-kpis span {
  display: block;
  color: var(--ink-muted);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.premium-kpis strong {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 1.3rem;
  line-height: 1.1;
}

/* ============================================================
   HIMA Section
   ============================================================ */

.premium-hima {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff 0%, #f4f7ff 48%, #fcf8ff 100%);
}

.premium-hima__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.premium-hima__hero {
  grid-column: 1 / span 1;
  display: grid;
  gap: 20px;
}

.premium-hima__brand {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #3b82f6 100%);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
}

.premium-hima__brand::before {
  content: "";
  position: absolute;
  inset: auto -20px -30px auto;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  filter: blur(6px);
}

.premium-hima__brand-badge,
.premium-hima__approach-badge,
.premium-hima__card-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-hima__brand-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #e2f3ff;
}

.premium-hima__brand strong {
  font-family: var(--font-head);
  font-size: 2.1rem;
  line-height: 1.1;
}

.premium-hima__brand p {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.premium-hima__brand img {
  max-height: 64px;
  width: auto;
  filter: brightness(1.1);
}

.premium-hima__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-hima__pill-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f8fbff;
  font-size: 0.85rem;
}

.premium-hima__approach {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.premium-hima__approach-badge {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.14), rgba(129, 140, 248, 0.16));
  color: #4f46e5;
}

.premium-hima__approach p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
}

.premium-hima__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-hima__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.88rem;
}

.premium-hima__highlights .dg-icon {
  color: #4f46e5;
  width: 15px;
  height: 15px;
}

.premium-hima__card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.92);
}

.premium-hima__card--challenges {
  background: linear-gradient(135deg, rgba(255, 249, 242, 0.96), rgba(255, 245, 247, 0.92));
}

.premium-hima__card--solutions {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.96), rgba(245, 243, 255, 0.92));
}

.premium-hima__card-head {
  margin-bottom: 16px;
}

.premium-hima__card-kicker {
  background: rgba(255, 255, 255, 0.7);
  color: #4f46e5;
  margin-bottom: 10px;
}

.premium-hima__card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.premium-hima__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.premium-hima__card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  line-height: 1.6;
  font-size: 0.92rem;
}

.premium-hima__card .dg-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #4f46e5;
}

@media (max-width: 991px) {
  .premium-hima__grid {
    grid-template-columns: 1fr;
  }

  .premium-hima__hero {
    grid-column: auto;
  }
}

/* ============================================================
   Project Lifecycle Steps
   ============================================================ */

.premium-lifecycle__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.premium-step {
  position: relative;
  min-height: 240px;
  padding: 22px 20px 24px;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.premium-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.premium-step--blue {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(224, 242, 254, 0.92));
}

.premium-step--blue::before {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
}

.premium-step--violet {
  background: linear-gradient(135deg, rgba(245, 243, 255, 0.98), rgba(237, 233, 254, 0.94));
}

.premium-step--violet::before {
  background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.premium-step--mint {
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.98), rgba(220, 252, 231, 0.94));
}

.premium-step--mint::before {
  background: linear-gradient(90deg, #34d399, #14b8a6);
}

.premium-step__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.premium-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  color: #4f46e5;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.premium-step__line {
  flex: 1;
  height: 1px;
  background: rgba(148, 163, 184, 0.28);
}

.premium-step strong {
  display: block;
  color: #0f172a;
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.premium-step p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .premium-lifecycle__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .premium-lifecycle__steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Case Studies
   ============================================================ */

.premium-case {
  overflow: hidden;
}

.premium-case img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.premium-case > div { padding: 22px; }

.premium-case small {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .03em;
}

.premium-case h3 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
}

.premium-case p {
  margin: 6px 0;
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.6;
}

.premium-case strong {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  color: var(--green);
  font-family: var(--font-head);
  font-size: .92rem;
}

/* ============================================================
   Experts CTA
   ============================================================ */

.premium-experts {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.premium-experts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 58, 95, 0.82));
}

.premium-experts__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 72px 24px;
}

.premium-experts__inner > div {
  max-width: 640px;
}

.premium-experts h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.premium-experts p {
  max-width: 600px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.7;
}

.premium-experts .btn--primary {
  background: linear-gradient(135deg, #fff, #f1f5f9);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.premium-experts .btn--primary:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   Consultation / Contact Section
   ============================================================ */

.premium-consult {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(192, 132, 252, 0.18), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #f5f7ff 45%, #fdf8ff 100%);
}

.premium-consult::before,
.premium-consult::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.premium-consult::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -90px;
  background: rgba(191, 219, 254, 0.28);
  filter: blur(10px);
}

.premium-consult::after {
  width: 240px;
  height: 240px;
  bottom: -90px;
  left: -70px;
  background: rgba(216, 180, 254, 0.24);
  filter: blur(12px);
}

.premium-consult__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .premium-consult__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }
}

.premium-consult__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.premium-consult__copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  color: #0f172a;
}

.premium-consult__copy h3 {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(129, 140, 248, 0.16));
  color: #4f46e5;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.premium-consult__copy > p {
  font-size: 1.02rem;
  color: #475569;
  max-width: 570px;
  margin: 0;
  line-height: 1.8;
}

.premium-consult__features {
  display: grid;
  gap: 1rem;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .premium-consult__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.premium-consult__feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 16px 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.premium-consult__feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.premium-consult__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: #c7d2fe;
}

.premium-consult__feature--sky {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(224, 242, 254, 0.9));
}

.premium-consult__feature--sky::before {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
}

.premium-consult__feature--violet {
  background: linear-gradient(135deg, rgba(245, 243, 255, 0.96), rgba(237, 233, 254, 0.9));
}

.premium-consult__feature--violet::before {
  background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.premium-consult__feature--mint {
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.96), rgba(220, 252, 231, 0.9));
}

.premium-consult__feature--mint::before {
  background: linear-gradient(90deg, #34d399, #2dd4bf);
}

.premium-consult__feature .dg-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #4f46e5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.premium-consult__feature .dg-icon svg {
  width: 24px;
  height: 24px;
}

.premium-consult__feature div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.premium-consult__feature strong {
  font-weight: 700;
  color: #0f172a;
}

.premium-consult__feature span {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.premium-consult__details {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.premium-consult__details a,
.premium-consult__details span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.premium-consult__details a:hover {
  color: #2563eb;
  background: rgba(239, 246, 255, 0.95);
  transform: translateY(-1px);
}

.premium-consult__form {
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.premium-consult__form h4 {
  font-size: 1.24rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.premium-consult__form > p {
  color: #64748b;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.premium-consult__form label {
  font-weight: 700;
  font-size: 0.84rem;
  display: block;
  margin-bottom: 6px;
  color: #334155;
}

.premium-consult__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.premium-consult__form .form-row--full {
  grid-template-columns: 1fr;
}

.premium-consult__form :is(input[type="text"], input[type="email"], select, textarea) {
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  width: 100%;
  border: 1px solid #dbe4f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  transition: all .2s ease;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.premium-consult__form :is(input[type="text"], input[type="email"], select, textarea):focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.14);
}

.premium-consult__form textarea {
  min-height: 150px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.premium-consult__form .btn--primary {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.2);
  border: 0;
}

.premium-consult__form .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.25);
}

@media (max-width: 767px) {
  .premium-consult {
    padding: 76px 0;
  }

  .premium-consult__form {
    padding: 24px;
  }

  .premium-consult__form .form-row {
    grid-template-columns: 1fr;
  }

  .premium-consult__details {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Start Your Project Section
   ============================================================ */

.premium-start {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(59, 130, 246, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(16, 185, 129, 0.05), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.premium-start__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.premium-start__copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 14px;
  color: var(--ink);
}

.premium-start__copy p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.premium-start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-start__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.premium-start__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.premium-start__form .form-row--full {
  grid-template-columns: 1fr;
}

.premium-start__form label {
  display: block;
  font-weight: 600;
  font-size: .84rem;
  margin-bottom: 5px;
  color: var(--ink);
}

.premium-start__form :is(input, textarea, select) {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font: inherit;
  font-size: .9rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}

.premium-start__form :is(input, textarea, select):focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.premium-start__form .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: .95rem;
}

.premium-start__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  color: #065f46;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.premium-start__badge .dg-icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.premium-start__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.premium-start__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.premium-start__feature .dg-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   Contact Section
   ============================================================ */

.premium-contact {
  background: var(--bg-soft);
}

.premium-contact__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.premium-contact__details {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
}

.premium-contact__form {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--r);
}

.premium-contact__form :is(input, textarea, select) {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg-card);
  transition: border-color .15s;
}

.premium-contact__form :is(input, textarea, select):focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.premium-contact__form :is(input[type="submit"], button) {
  width: auto;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  padding: 12px 26px;
  border-radius: var(--r);
  font-size: .9rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
  margin-top: 4px;
}

.premium-contact__form :is(input[type="submit"], button):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.25);
}

/* ============================================================
   Footer — Dark Modern
   ============================================================ */

.premium-footer {
  background: var(--blue-soft);
  color: var(--ink-muted);
}

.premium-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 52px 24px;
}

.premium-footer__logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.premium-footer__logos img {
  max-height: 32px;
  width: auto;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.premium-footer__brand p {
  max-width: 440px;
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.7;
}

.premium-footer__block {
  display: grid;
  gap: 10px;
  align-content: start;
}

.premium-footer__block span {
  color: var(--ink-muted);
  font-size: .9rem;
}

.premium-footer__social {
  display: grid;
  gap: 10px;
  align-content: start;
}

.premium-footer__social a {
  color: var(--blue);
  font-weight: 600;
  font-size: .9rem;
  transition: color .15s;
}

.premium-footer__social a:hover {
  color: var(--blue-dark);
}

.premium-footer__bar {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.premium-footer__bar p {
  color: var(--ink-light);
  font-size: .85rem;
}

/* ============================================================
   Legacy Components (Kept for Backward Compatibility)
   ============================================================ */

/* Product Grid & Cards (archive) */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-card);
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-card__link { color: inherit; display: flex; flex-direction: column; flex: 1; }
.product-card__link:hover { text-decoration: none; color: inherit; }

.product-card__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-card__media img { transform: scale(1.06); }

.product-card__placeholder,
.product-single__placeholder,
.prod-single__placeholder {
  color: var(--blue);
  font-weight: 800;
  font-size: 2rem;
  opacity: .2;
  letter-spacing: 2px;
}

.product-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue);
  font-weight: 700;
}

.product-card__title {
  font-size: 1.05rem;
  margin: 6px 0 8px;
}

.product-card__desc {
  color: var(--ink-muted);
  font-size: .88rem;
  margin: 0 0 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__more {
  color: var(--blue);
  font-weight: 600;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ── Product Archive Layout ── */

.prod-archive {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

.prod-filter {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px 0;
  position: sticky;
  top: 100px;
}

.prod-filter__title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-muted);
  padding: 0 20px 14px;
  margin: 0;
  border-bottom: 1px solid var(--border-light);
}

.prod-filter__list {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
}

.prod-filter__list li { margin: 0; }

.prod-filter__list a {
  display: block;
  padding: 10px 20px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
  transition: all .15s;
  border-left: 3px solid transparent;
}

.prod-filter__list a:hover {
  background: #f8fafc;
  text-decoration: none;
  color: var(--blue);
  border-left-color: var(--blue);
}

.prod-filter__list .is-active a {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  border-left-color: #2563eb;
}

.prod-filter__list span {
  color: var(--ink-light);
  font-size: .8rem;
  font-weight: 400;
}

.prod-main {
  min-width: 0;
}

.empty-state {
  color: var(--ink-muted);
  padding: 60px 0;
  text-align: center;
  font-size: .95rem;
}

/* ── Product Archive CTA ── */

.prod-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 48px;
}

.prod-cta__text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.prod-cta__text p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .prod-archive {
    grid-template-columns: 1fr;
  }

  .prod-filter {
    position: static;
  }

  .prod-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ── Product Single ── */

.prod-single {
  padding-top: 12px;
  padding-bottom: 48px;
}

.prod-single__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 20px 0 48px;
}

.prod-single__media {
  background: #f1f5f9;
  border-radius: 24px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.prod-single__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-single__placeholder {
  color: var(--blue);
  font-weight: 800;
  font-size: 2.4rem;
  opacity: .15;
  letter-spacing: 3px;
}

.prod-single__cat {
  display: inline-block;
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .06em;
  background: #eff6ff;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.prod-single__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -.02em;
  color: var(--ink);
}

.prod-single__model {
  color: var(--ink-muted);
  font-size: .9rem;
  margin: 0 0 12px;
}

.prod-single__model strong {
  color: var(--ink);
}

.prod-single__desc {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin: 0;
}

.prod-single__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.prod-single__body {
  max-width: 800px;
}

.prod-single__section {
  margin: 40px 0;
}

.prod-single__section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
  margin: 0 0 20px;
  color: var(--ink);
}

.prod-single__content {
  line-height: 1.8;
  color: var(--ink-muted);
}

.prod-single__content :is(h2, h3) {
  margin-top: 1.3em;
  color: var(--ink);
}

.prod-single__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod-single__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(15,23,42,.04);
  transition: box-shadow .3s ease, transform .3s ease;
}

.prod-single__card:hover {
  box-shadow: 0 12px 36px rgba(15,23,42,.08);
  transform: translateY(-3px);
}

.prod-single__card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.prod-single__card-icon .dg-icon {
  width: 20px;
  height: 20px;
}

.prod-single__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.prod-single__card p {
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}

.prod-single__cta {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.prod-single__cta h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.prod-single__cta p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

/* ── Related Products ── */

.prod-related__head {
  max-width: 640px;
  margin-bottom: 36px;
}

.prod-related__head h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

/* ── Spec Table ── */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table th {
  width: 30%;
  color: var(--ink-muted);
  font-weight: 600;
  background: #fafbfc;
}

@media (max-width: 768px) {
  .prod-single__hero {
    grid-template-columns: 1fr;
  }

  .prod-single__grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Grid (SCADA / Solutions) */

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.feature-card[href] { color: inherit; display: block; }

.feature-card[href]:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
  text-decoration: none;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--ink);
}

.feature-card h3 .dg-icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  vertical-align: -0.2em;
  margin-right: 6px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.feature-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 600;
  font-size: .85rem;
}

.feature-card__more .dg-icon { width: 15px; height: 15px; }

/* Value Grid (About) */

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.value-card {
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.value-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* Industry Grid (page-industries) */

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

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.industry-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.industry-card:hover .industry-card__media img { transform: scale(1.06); }

.industry-card__body { padding: 18px 20px; }

.industry-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.industry-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.6;
}

/* Architecture Steps (SCADA) */

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

.arch-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.arch-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.arch-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-family: var(--font-head);
  margin-bottom: 14px;
}

.arch-step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.arch-step p { margin: 0; color: var(--ink-muted); font-size: .9rem; line-height: 1.7; }

/* SCADA Split */

.scada-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.scada-intro__copy h2 { font-size: 1.6rem; margin: 0 0 14px; }
.scada-intro__copy p { color: var(--ink-muted); margin-bottom: 12px; line-height: 1.7; }

.scada-intro__media img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================
   Contact Page — Premium Redesign
   ============================================================ */

/* ── Honeypot (global) ──────────────────────────────────── */

.dg-form__hp,
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Hero ────────────────────────────────────────────────── */

.dg-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 70% 50% at 20% 15%, rgba(59, 130, 246, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(16, 185, 129, 0.04), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dg-hero__inner {
  max-width: 720px;
}

.dg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.dg-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 18px;
}

.dg-hero__desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 0 30px;
}

.dg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Premium Buttons ─────────────────────────────────────── */

.dg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}

.dg-btn:hover { text-decoration: none; }

.dg-btn .dg-icon {
  width: 18px;
  height: 18px;
  transition: transform .2s cubic-bezier(.22,1,.36,1);
}

.dg-btn:hover .dg-icon { transform: translateX(4px); }

.dg-btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.dg-btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

.dg-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.dg-btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.dg-btn--full {
  width: 100%;
}

/* ── Contact Methods ─────────────────────────────────────── */

.dg-methods {
  padding: 0 0 80px;
  margin-top: -10px;
}

.dg-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dg-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dg-method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dg-method__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 6px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}

.dg-method:hover .dg-method__icon {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.dg-method__icon .dg-icon {
  width: 24px;
  height: 24px;
}

.dg-method__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.dg-method__value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color .15s;
}

.dg-method__value:hover {
  color: var(--blue-dark);
  text-decoration: none;
}

.dg-method__value:is(p) {
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

.dg-method__desc {
  font-size: .82rem;
  color: var(--ink-light);
  margin: 4px 0 0;
  line-height: 1.5;
  max-width: 200px;
}

/* ── Form Section ─────────────────────────────────────────── */

.dg-form {
  padding: 80px 0;
  background: var(--bg-soft);
}

.dg-form__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.dg-form__intro {
  position: sticky;
  top: 100px;
}

.dg-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.dg-form__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
}

.dg-form__text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 28px;
}

.dg-form__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dg-form__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.dg-form__trust .dg-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* Form Card */

.dg-form__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.dg-form__notice {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.5;
}

.dg-form__notice--ok {
  background: var(--green-soft);
  color: #065f46;
}

.dg-form__notice--err {
  background: var(--red-soft);
  color: #991b1b;
}

.dg-form__form {
  display: grid;
  gap: 20px;
}

.dg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dg-form__field {
  display: grid;
  gap: 6px;
}

.dg-form__field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}

.dg-form__req {
  color: var(--blue);
  font-weight: 700;
}

.dg-form__field :is(input, textarea) {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: inset 0 1px 2px rgba(15,23,42,.03);
  -webkit-appearance: none;
  appearance: none;
}

.dg-form__field input {
  height: 50px;
}

.dg-form__field textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.6;
}

.dg-form__field :is(input, textarea):focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,.1), inset 0 1px 2px rgba(15,23,42,.03);
  background: #fff;
}

.dg-form__field :is(input, textarea)::placeholder {
  color: var(--ink-light);
}

.dg-form__select {
  position: relative;
}

.dg-form__select select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: inset 0 1px 2px rgba(15,23,42,.03);
  height: 50px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.dg-form__select select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,.1);
  background: #fff;
}

.dg-form__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink-light);
  border-top: 0;
  border-left: 0;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.dg-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transition: all .25s cubic-bezier(.22,1,.36,1);
  font-family: var(--font-body);
}

.dg-form__submit:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.dg-form__submit .dg-icon {
  width: 18px;
  height: 18px;
  transition: transform .2s cubic-bezier(.22,1,.36,1);
}

.dg-form__submit:hover .dg-icon {
  transform: translateX(4px);
}

.dg-form__footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
}

.dg-form__footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-light);
}

.dg-form__footer .dg-icon {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Offices Section ─────────────────────────────────────── */

.dg-offices {
  padding: 80px 0;
}

.dg-offices__head {
  margin-bottom: 44px;
}

.dg-offices__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.dg-offices__head h2 {
  margin: 0 0 10px;
}

.dg-offices__head p {
  font-size: .95rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
}

.dg-offices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dg-office {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--shadow-sm);
}

.dg-office:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dg-office__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--violet-soft);
  color: var(--violet);
  margin-bottom: 16px;
}

.dg-office__icon .dg-icon {
  width: 20px;
  height: 20px;
}

.dg-office__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
}

.dg-office__address {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 12px;
}

.dg-office__tag {
  display: inline-flex;
  font-size: .78rem;
  font-weight: 600;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.dg-office__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dg-office__pills span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ── Premium CTA ──────────────────────────────────────────── */

.dg-cta {
  padding: 0 0 80px;
}

.dg-cta__card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(59, 130, 246, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(139, 92, 246, 0.05), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.dg-cta__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
}

.dg-cta__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 580px;
  margin: 0 auto 28px;
}

.dg-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.dg-cta__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.dg-cta__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-light);
}

.dg-cta__trust .dg-icon {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 991px) {
  .dg-form__grid {
    grid-template-columns: 1fr;
  }

  .dg-form__intro {
    position: static;
  }
}

@media (max-width: 768px) {
  .dg-hero {
    padding: 60px 0 40px;
  }

  .dg-hero__title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .dg-methods__grid {
    grid-template-columns: 1fr;
  }

  .dg-method {
    padding: 28px 24px;
  }

  .dg-form {
    padding: 60px 0;
  }

  .dg-form__card {
    padding: 28px;
  }

  .dg-form__row {
    grid-template-columns: 1fr;
  }

  .dg-offices {
    padding: 60px 0;
  }

  .dg-offices__grid {
    grid-template-columns: 1fr;
  }

  .dg-office {
    padding: 28px;
  }

  .dg-cta__card {
    padding: 48px 28px;
  }
}

@media (max-width: 600px) {
  .dg-hero__actions {
    flex-direction: column;
  }

  .dg-hero__actions .dg-btn {
    width: 100%;
    justify-content: center;
  }

  .dg-form__card {
    padding: 24px;
  }

  .dg-methods {
    padding-bottom: 60px;
  }

  .dg-cta__actions {
    flex-direction: column;
  }

  .dg-cta__actions .dg-btn {
    width: 100%;
    justify-content: center;
  }

  .dg-cta__trust {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .dg-form__footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

/* Pagination */

.pagination {
  margin-top: 36px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 500;
  font-size: .88rem;
  transition: all .15s;
}

.pagination .page-numbers:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}

.pagination .current {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* CTA Band */

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--bg-card), var(--blue-soft));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.cta-band p {
  margin: 0;
  color: var(--ink-muted);
}

/* Section Heads (Legacy) */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0;
}

.section-head p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 1rem;
}

.section-head--center { justify-content: center; text-align: center; }
.section-head--center > div { max-width: 640px; }
.section-head--center p { margin-top: 6px; }

.section-head__link { font-weight: 600; }

/* Page Head (blog) */

.page-head { margin-bottom: 24px; }

.entry { padding: 18px 0; border-bottom: 1px solid var(--border); }

.entry-title { font-size: 1.3rem; }
.entry-title a { color: var(--ink); }
.entry-title a:hover { color: var(--blue); }

/* TinyMCE / Editor content */

.product-single__content :is(p, ul, ol) { color: var(--ink-muted); line-height: 1.8; }
.product-single__content a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   Smooth-scroll anchor offset
   ============================================================ */

:target { scroll-margin-top: 90px; }
#solutions, #industries, #products { scroll-margin-top: 90px; }

/* ============================================================
   Animations
   ============================================================ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.premium-section {
  animation: fade-up .5s ease both;
}

.premium-section:nth-child(2) { animation-delay: .05s; }
.premium-section:nth-child(3) { animation-delay: .1s; }
.premium-section:nth-child(4) { animation-delay: .15s; }
.premium-section:nth-child(5) { animation-delay: .2s; }
.premium-section:nth-child(6) { animation-delay: .25s; }
.premium-section:nth-child(7) { animation-delay: .3s; }
.premium-section:nth-child(8) { animation-delay: .35s; }
.premium-section:nth-child(9) { animation-delay: .4s; }
.premium-section:nth-child(10) { animation-delay: .45s; }
.premium-section:nth-child(11) { animation-delay: .5s; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .premium-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .premium-hero__copy {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .premium-hero__badge { margin: 0 auto; }

  .premium-hero p { margin-left: auto; margin-right: auto; }
  .premium-hero__actions { justify-content: center; }

  .premium-card-grid--products,
  .premium-card-grid--why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-lifecycle__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-hima__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .premium-card-grid--products,
  .premium-card-grid--why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .premium-section { padding: 76px 0; }

  .premium-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-hero__float {
    position: static;
    margin-top: 8px;
  }

  .premium-hero__float--top,
  .premium-hero__float--bottom {
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }

  .premium-hero__image-card {
    display: grid;
  }

  .premium-start__grid {
    grid-template-columns: 1fr;
  }

  .premium-start__features {
    grid-template-columns: 1fr;
  }

  .premium-solar__grid {
    grid-template-columns: 1fr;
  }

  .premium-contact__grid {
    grid-template-columns: 1fr;
  }

  .premium-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .scada-intro { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; }

  .premium-card-grid--services,
  .premium-card-grid--industries,
  .premium-card-grid--cases,
  .premium-industry-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  .site-nav.is-open { display: flex; }

  .site-nav__menu {
    flex-direction: column;
    gap: 2px;
  }

  .site-nav__menu a { display: block; }
  .site-nav__menu > li { padding: 0; }
  .site-nav__submenu { position: static; display: none; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; background: transparent; }
  .site-nav__menu > li:hover .site-nav__submenu,
  .site-nav__menu > li:focus-within .site-nav__submenu { display: none; }
  .site-nav__menu > li.is-open-sub .site-nav__submenu { display: block; }
  .site-nav__submenu a { white-space: normal; padding: 8px 12px; }

  .site-nav__utils {
    display: none;
  }

  .section { padding: 56px 0; }
  .premium-section { padding: 60px 0; }

  .premium-popular__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-popular__links { justify-content: flex-start; }

  .premium-experts__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .premium-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    padding: 0;
  }

  .premium-footer__inner { grid-template-columns: 1fr; }

  .premium-service {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container { padding-left: 18px; padding-right: 18px; }

  .premium-hero h1 {
    font-size: clamp(2.1rem, 12vw, 2.8rem);
  }

  .premium-hero__stats,
  .premium-card-grid--services,
  .premium-card-grid--products,
  .premium-card-grid--industries,
  .premium-card-grid--why,
  .premium-card-grid--cases,
  .premium-industry-grid,
  .premium-lifecycle__steps,
  .premium-hima__grid,
  .premium-kpis {
    grid-template-columns: 1fr;
  }

  .premium-service__image {
    aspect-ratio: 16 / 10;
  }

  .premium-industry {
    min-height: 220px;
  }

  .premium-step {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .premium-kpis {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   2026 Homepage Redesign - By Gemini
   ============================================================ */

/*
 *
 * GOAL: Create a modern, spacious, and premium feel.
 * We are moving away from cramming information and towards a more
 * confident, editorial, and focused presentation.
 *
 */

/* ============================================================
   1. Hero Section Redesign
   ============================================================ */

/* --- 1.1. Overall Hero Layout --- */

/* Overriding the existing hero styles for a new centered layout */
.premium-hero {
    /* More spacious and modern background */
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.05), transparent),
                radial-gradient(ellipse 50% 40% at 20% 40%, rgba(139, 92, 246, 0.04), transparent),
                radial-gradient(ellipse 50% 40% at 80% 30%, rgba(5, 150, 105, 0.04), transparent),
                var(--bg-warm);
}

.premium-hero__inner {
    /* Removing the old grid layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr; /* Override */
    gap: 0; /* Override */

    /* Significantly more vertical space for a premium feel */
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* --- 1.2. Hero Copy & Typography --- */

.premium-hero__copy {
    max-width: 800px; /* Wider max-width for centered layout */
}

.premium-hero__badge {
    /* Subtle enhancement for the badge */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    font-size: 0.8rem;
    padding: 8px 18px;
}

.premium-hero h1 {
    /* Larger, more impactful headline typography */
    font-size: clamp(3rem, 5.5vw, 5rem);
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.05;
}

.premium-hero p {
    /* Larger, more readable paragraph font */
    max-width: 640px; /* Control line length for readability */
    margin-top: 24px;
    font-size: 1.15rem;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
}

/* --- 1.3. Action Buttons --- */

.premium-hero__actions {
    margin-top: 40px;
    gap: 16px; /* A bit more space between buttons */
}

/* Redesigning buttons for a more modern feel */
.premium-hero .btn {
    min-height: 52px;
    padding: 14px 28px;
    font-size: 0.95rem;
    border-radius: var(--r-lg); /* Larger radius */
}

.premium-hero .btn--primary {
    background: #0f172a; /* Strong, confident primary button */
    border: 1px solid #0f172a;
    box-shadow: var(--shadow-md);
}

.premium-hero .btn--primary:hover {
    background: #1e293b;
    border-color: #1e293b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.premium-hero .btn--glass {
    background: var(--bg-card);
    color: var(--ink);
    border: 1px solid var(--border);
    backdrop-filter: none; /* Removing blur for this context */
}

.premium-hero .btn--glass:hover {
    border-color: var(--ink);
    background: var(--bg-card);
    transform: translateY(-3px);
}

/* --- 1.4. Hiding Old/Cluttering Elements --- */

/* The visual part is no longer needed in this new design */
.premium-hero__visual {
    display: none;
}

/* --- 1.5. Redesigned Trust Bar (was checkmarks) --- */
/* GOAL: Transform this into a premium 'Trusted by' banner. */

.premium-hero__trust {
    grid-column: 1 / -1; /* Keep full-width */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 80px; /* More space to separate from hero actions */
    width: 100%;
}

/* Add a "Trusted by" label before the list */
.premium-hero__trust::before {
    content: 'Trusted by leading industrial partners';
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.01em;
    margin-right: 8px;
}

.premium-hero__trust span {
    /* Remove old card styling */
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;

    /* Style for a more subtle, grayscale logo/text look */
    color: var(--ink-muted);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.premium-hero__trust span:hover {
    opacity: 1;
}

/* Hide the checkmark icon, it's no longer needed */
.premium-hero__trust .dg-icon {
    display: none;
}

/* --- 1.6. Redesigned Stats Block --- */
/* GOAL: Integrate stats more cleanly under the hero. */

.premium-hero__stats {
    grid-column: 1 / -1; /* Keep full-width */
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* Keep 4 columns on desktop */
    gap: 24px;
    width: 100%;
    max-width: 920px; /* Control max width */
    margin: 80px auto 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--r-xl); /* Softer, larger radius */
    box-shadow: var(--shadow);
}

.premium-hero__stats > div {
    /* Remove old card styling */
    min-height: auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex; /* More control over layout */
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.premium-hero__stats span {
    /* Hide the icon container */
    display: none;
}

.premium-hero__stats strong {
    /* Bigger, more prominent numbers */
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}

.premium-hero__stats small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}


/* --- 1.7. Responsive Adjustments --- */
@media (max-width: 768px) {
    .premium-hero__inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .premium-hero h1 {
        font-size: 2.5rem;
    }

    .premium-hero p {
        font-size: 1.05rem;
    }

    .premium-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px; /* More vertical space on mobile */
        margin-top: 60px;
    }

    .premium-hero__trust {
        flex-direction: column;
        gap: 16px;
        margin-top: 60px;
    }

    .premium-hero__trust::before {
        margin: 0 0 8px 0;
    }
}

@media (max-width: 480px) {
    .premium-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .premium-hero__stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================================
   HOMEPAGE REDESIGN 2026 — hp-* namespace
   All rules scoped to new class names to avoid conflicts.
   ============================================================ */

/* ── Shared HP Tokens ─────────────────────────────────────── */

.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.18);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hp-eyebrow--dark {
  background: rgba(15,23,42,.08);
  border-color: rgba(15,23,42,.14);
  color: var(--ink);
}

.hp-eyebrow--light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

/* ── SECTION 1: HERO ──────────────────────────────────────── */

@media (max-width: 991px) {
  .hp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    max-height: none;
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
  }
  .hp-hero__copy { align-items: center; }
  .hp-hero__desc { margin-left: auto; margin-right: auto; }
  .hp-hero__actions { justify-content: center; }
  .hp-hero__trust { justify-content: center; }
  .hp-hero__stat.is-hidden-float { display: flex; }
  .hp-hero__stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hp-hero__inner { padding-top: 48px; padding-bottom: 48px; }
  .hp-hero__h1 { font-size: 2rem; }
  .hp-hero__stats-row { grid-template-columns: 1fr; }
  .hp-hero__trust { flex-direction: column; align-items: center; }
}

.hp-hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 60% 0%, rgba(59,130,246,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(16,185,129,.05) 0%, transparent 50%),
    #fafbfc;
  overflow: hidden;
}

.hp-hero__noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 96px;
  max-height: 900px;
}

.hp-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  width: fit-content;
  margin-bottom: 28px;
}

.hp-hero__badge .dg-icon {
  width: 16px;
  height: 16px;
  color: #16a34a;
}

.hp-hero__h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #0a0f1e;
  margin: 0 0 22px;
}

.hp-hero__desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 36px;
  max-width: 520px;
}

.hp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hp-hero__btn-primary {
  background: #0a0f1e;
  color: #fff;
  border: 1.5px solid #0a0f1e;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 600;
  min-height: 50px;
  box-shadow: 0 8px 24px rgba(10,15,30,.18);
  transition: all .2s ease;
}

.hp-hero__btn-primary:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10,15,30,.22);
}

.hp-hero__btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 600;
  min-height: 50px;
  transition: all .2s ease;
}

.hp-hero__btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink-muted);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Trust bar */
.hp-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.hp-hero__trust-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hp-hero__trust-item {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

/* Hero Visual */
.hp-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-hero__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hp-hero__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid #fff;
  box-shadow:
    0 2px 4px rgba(15,23,42,.04),
    0 8px 20px rgba(15,23,42,.06),
    0 24px 56px rgba(15,23,42,.09);
  display: block;
}

/* Floating metric cards on hero image */
.hp-hero__float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.hp-hero__float-card strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
}

.hp-hero__float-card span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hp-hero__float-card .dg-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  margin-bottom: 4px;
}

.hp-hero__float-card--tl {
  top: -18px;
  left: -18px;
}

.hp-hero__float-card--br {
  bottom: -18px;
  right: -18px;
}

/* Stats row under hero image */
.hp-hero__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hp-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15,23,42,.04);
}

.hp-hero__stat.is-hidden-float {
  /* first stat shown as float card, hide from row */
  display: none;
}

.hp-hero__stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hp-hero__stat span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── SECTION 2: SERVICES ──────────────────────────────────── */

.hp-services {
  background: #fff;
  padding: 100px 0;
}

.hp-section-label {
  margin-bottom: 12px;
}

.hp-services__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.hp-services__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 12px 0 12px;
  color: var(--ink);
}

.hp-services__intro {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

/* Horizontal row cards — different from any other section */
.hp-services__rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .hp-services__rows { grid-template-columns: 1fr; }
}

.hp-svc-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 20px;
  background: #fafbfc;
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}

/* Accent fill on hover — color floods from left */
.hp-svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}

.hp-svc-row--blue::before   { background: linear-gradient(135deg, #eff6ff 0%, transparent 60%); }
.hp-svc-row--violet::before { background: linear-gradient(135deg, #faf5ff 0%, transparent 60%); }
.hp-svc-row--green::before  { background: linear-gradient(135deg, #f0fdf4 0%, transparent 60%); }
.hp-svc-row--amber::before  { background: linear-gradient(135deg, #fefce8 0%, transparent 60%); }
.hp-svc-row--pink::before   { background: linear-gradient(135deg, #fdf2f8 0%, transparent 60%); }
.hp-svc-row--cyan::before   { background: linear-gradient(135deg, #ecfeff 0%, transparent 60%); }
.hp-svc-row--orange::before { background: linear-gradient(135deg, #fff7ed 0%, transparent 60%); }

.hp-svc-row:hover {
  transform: translateX(4px);
  text-decoration: none;
  color: inherit;
}

.hp-svc-row:hover::before {
  opacity: 1;
}

.hp-svc-row__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.hp-svc-row__icon .dg-icon {
  width: 22px;
  height: 22px;
}

.hp-svc-row--blue   .hp-svc-row__icon { background: #eff6ff; color: #2563eb; }
.hp-svc-row--violet .hp-svc-row__icon { background: #faf5ff; color: #7c3aed; }
.hp-svc-row--green  .hp-svc-row__icon { background: #f0fdf4; color: #16a34a; }
.hp-svc-row--amber  .hp-svc-row__icon { background: #fefce8; color: #d97706; }
.hp-svc-row--pink   .hp-svc-row__icon { background: #fdf2f8; color: #db2777; }
.hp-svc-row--cyan   .hp-svc-row__icon { background: #ecfeff; color: #0891b2; }
.hp-svc-row--orange .hp-svc-row__icon { background: #fff7ed; color: #ea580c; }

.hp-svc-row__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.hp-svc-row__text strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.hp-svc-row__text span {
  font-size: .82rem;
  color: var(--ink-muted);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hp-svc-row__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color .25s ease, background .25s ease, transform .25s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
}

.hp-svc-row__arrow .dg-icon {
  width: 14px;
  height: 14px;
}

.hp-svc-row:hover .hp-svc-row__arrow {
  transform: translateX(3px);
}

.hp-svc-row--blue:hover   .hp-svc-row__arrow { background: #2563eb; color: #fff; }
.hp-svc-row--violet:hover .hp-svc-row__arrow { background: #7c3aed; color: #fff; }
.hp-svc-row--green:hover  .hp-svc-row__arrow { background: #16a34a; color: #fff; }
.hp-svc-row--amber:hover  .hp-svc-row__arrow { background: #d97706; color: #fff; }
.hp-svc-row--pink:hover   .hp-svc-row__arrow { background: #db2777; color: #fff; }
.hp-svc-row--cyan:hover   .hp-svc-row__arrow { background: #0891b2; color: #fff; }
.hp-svc-row--orange:hover .hp-svc-row__arrow { background: #ea580c; color: #fff; }

/* ── SECTION 3: FEATURED PRODUCTS ────────────────────────── */

.hp-products {
  background: #fafbfc;
  padding: 100px 0;
}

.hp-products__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.hp-products__head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 12px 0 12px;
  color: var(--ink);
}

.hp-products__head p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.hp-products__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  transition: all .3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.02);
}

.hp-products__view-all:hover {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(15,23,42,.12);
  transform: translateY(-1px);
}

.hp-products__view-all .dg-icon {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}

.hp-products__view-all:hover .dg-icon {
  transform: translateX(4px);
}

.hp-products__carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hp-products__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 8px 4px 16px;
}

.hp-products__track::-webkit-scrollbar { display: none; }

.hp-products__track > * {
  scroll-snap-align: start;
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
}

@media (max-width: 991px) {
  .hp-products__track > * { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 640px) {
  .hp-products__track > * { flex: 0 0 calc(85% - 10px); min-width: 0; }
  .hp-products__carousel { gap: 8px; }
  .hp-products__arrow { display: none; }
}

.hp-products__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.hp-products__arrow:hover {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,23,42,.12);
}

.hp-products__arrow .dg-icon {
  width: 18px;
  height: 18px;
}

.hp-products__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hp-products__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}

.hp-products__dots button.is-active {
  background: #0f172a;
  width: 24px;
  border-radius: 4px;
}

.product-card__media {
  position: relative;
}

.product-card__gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.product-card__body {
  transition: background .35s ease;
}

.product-card:hover .product-card__body {
  background: #f8fafc;
}

.product-card--blue:hover .product-card__body { background: #eff6ff; }
.product-card--violet:hover .product-card__body { background: #f5f3ff; }
.product-card--green:hover .product-card__body { background: #ecfdf5; }
.product-card--amber:hover .product-card__body { background: #fffbeb; }
.product-card--cyan:hover .product-card__body { background: #ecfeff; }
.product-card--pink:hover .product-card__body { background: #fdf2f8; }
.product-card--orange:hover .product-card__body { background: #fff7ed; }

.product-card--blue:hover .product-card__cat,
.product-card--blue:hover .product-card__more,
.product-card--blue:hover .product-card__title { color: #1e40af; }

.product-card--violet:hover .product-card__cat,
.product-card--violet:hover .product-card__more,
.product-card--violet:hover .product-card__title { color: #5b21b6; }

.product-card--green:hover .product-card__cat,
.product-card--green:hover .product-card__more,
.product-card--green:hover .product-card__title { color: #047857; }

.product-card--amber:hover .product-card__cat,
.product-card--amber:hover .product-card__more,
.product-card--amber:hover .product-card__title { color: #b45309; }

.product-card--cyan:hover .product-card__cat,
.product-card--cyan:hover .product-card__more,
.product-card--cyan:hover .product-card__title { color: #0e7490; }

.product-card--pink:hover .product-card__cat,
.product-card--pink:hover .product-card__more,
.product-card--pink:hover .product-card__title { color: #be185d; }

.product-card--orange:hover .product-card__cat,
.product-card--orange:hover .product-card__more,
.product-card--orange:hover .product-card__title { color: #c2410c; }

@media (max-width: 768px) {
  .hp-products__track > * { flex: 0 0 calc(50% - 10px); min-width: 240px; }
  .hp-products__carousel { gap: 10px; }
  .hp-products__arrow { width: 36px; height: 36px; }
  .hp-products__arrow .dg-icon { width: 14px; height: 14px; }
}

@media (max-width: 540px) {
  .hp-products__track > * { flex: 0 0 85%; min-width: 0; }
}

/* ── SECTION 4: QUICK LINKS STRIP ────────────────────────── */

.hp-quicklinks {
  background: #0a0f1e;
  padding: 20px 0;
  overflow: hidden;
}

.hp-quicklinks__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hp-quicklinks__label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.hp-quicklinks__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hp-quicklinks__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s ease;
}

.hp-quicklinks__pill:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.hp-quicklinks__pill .dg-icon {
  width: 13px;
  height: 13px;
  opacity: .7;
}

/* ── SECTION 5: SOLAR / SPOTLIGHT ────────────────────────── */

.hp-solar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.hp-solar__media-half {
  position: relative;
  overflow: hidden;
  background: #0a0f1e;
}

.hp-solar__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  transition: transform 8s ease;
}

.hp-solar:hover .hp-solar__bg-img {
  transform: scale(1.03);
}

.hp-solar__kpi-stack {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  z-index: 2;
}

.hp-solar__kpi {
  padding: 14px 16px;
  background: rgba(10,15,30,.7);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-solar__kpi span {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hp-solar__kpi strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-head);
}

.hp-solar__copy-half {
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 72px 64px;
}

.hp-solar__copy-half h2 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 8px 0 0;
}

.hp-solar__sub {
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.hp-solar__copy-half p:not(.hp-solar__sub) {
  color: var(--ink-muted);
  font-size: .98rem;
  line-height: 1.75;
  margin: 0;
}

.hp-solar__btn {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 13px 26px;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  transition: all .2s ease;
  box-shadow: 0 4px 16px rgba(10,15,30,.14);
}

.hp-solar__btn:hover {
  background: #1e293b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,15,30,.2);
}

/* ── SECTION 6: INDUSTRIES ────────────────────────────────── */

/* ── SECTION 4: INDUSTRIES — moved to hero-redesign.css ── */



/* ── SECTION 7: WHY US ────────────────────────────────────── */

.hp-why {
  background: #fff;
  padding: 100px 0;
}

.hp-why__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.hp-why__head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 12px 0 12px;
}

.hp-why__head p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

.hp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-why-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15,23,42,.04);
  transition: box-shadow .3s ease, transform .3s ease;
}

.hp-why-card:hover {
  box-shadow: 0 16px 48px rgba(15,23,42,.08);
  transform: translateY(-4px);
}

.hp-why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 4px;
}

.hp-why-card__icon .dg-icon {
  width: 22px;
  height: 22px;
}

.hp-why-card__icon--blue   { background: #eff6ff; color: #2563eb; }
.hp-why-card__icon--violet { background: #faf5ff; color: #7c3aed; }
.hp-why-card__icon--green  { background: #f0fdf4; color: #16a34a; }
.hp-why-card__icon--amber  { background: #fefce8; color: #d97706; }
.hp-why-card__icon--pink   { background: #fdf2f8; color: #db2777; }
.hp-why-card__icon--cyan   { background: #ecfeff; color: #0891b2; }
.hp-why-card__icon--orange { background: #fff7ed; color: #ea580c; }
.hp-why-card__icon--emerald { background: #ecfdf5; color: #059669; }

.hp-why-card strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.hp-why-card span {
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── SECTION 8: HIMA — refined only ──────────────────────── */

.hp-hima .premium-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.hp-hima .premium-head h2::after {
  display: none; /* remove underline accent in this section */
}

/* ── SECTION 9: LIFECYCLE ─────────────────────────────────── */

.hp-lifecycle {
  background: #fff;
  padding: 100px 0;
}

.hp-lifecycle__head {
  max-width: 640px;
  margin-bottom: 60px;
}

.hp-lifecycle__head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 12px 0 12px;
}

.hp-lifecycle__head p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

.hp-lifecycle__track {
  display: flex;
  gap: 0;
  position: relative;
  align-items: flex-start;
}

/* Continuous connector line */
.hp-lifecycle__line {
  display: none; /* handled via CSS on dots */
}

.hp-lc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  position: relative;
}

/* Connector lines between steps */
.hp-lc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, rgba(148,163,184,.4), rgba(148,163,184,.15));
  z-index: 0;
}

.hp-lc-step__dot {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15,23,42,.1);
  border: 3px solid #fff;
}

.hp-lc-step--blue .hp-lc-step__dot {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hp-lc-step--violet .hp-lc-step__dot {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.hp-lc-step--mint .hp-lc-step__dot {
  background: linear-gradient(135deg, #10b981, #059669);
}

.hp-lc-step__dot span {
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  font-family: var(--font-head);
}

.hp-lc-step__card {
  padding: 20px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: left;
  width: calc(100% - 24px);
  box-shadow: 0 2px 8px rgba(15,23,42,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hp-lc-step:hover .hp-lc-step__card {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,23,42,.09);
}

.hp-lc-step__card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hp-lc-step__card p {
  color: var(--ink-muted);
  font-size: .85rem;
  line-height: 1.65;
  margin: 0;
}

/* ── SECTION 10: CASE STUDIES — moved to hero-redesign.css ── */

/* ── SECTION 11: EXPERTS CTA ──────────────────────────────── */

.hp-experts {
  position: relative;
  overflow: hidden;
  background: #0a0f1e;
  background-size: cover;
  background-position: center;
  padding: 96px 0;
}

.hp-experts__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,.96) 0%, rgba(30,58,138,.85) 60%, rgba(10,15,30,.9) 100%);
}

/* Decorative grid lines */
.hp-experts::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hp-experts__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hp-experts__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.hp-experts__copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 8px 0 0;
}

.hp-experts__copy p {
  color: rgba(255,255,255,.72);
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 0;
}

.hp-experts__btn {
  background: #fff;
  color: #0a0f1e;
  border-radius: 14px;
  padding: 16px 32px;
  font-size: .94rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: all .2s ease;
}

.hp-experts__btn:hover {
  background: #f1f5f9;
  color: #0a0f1e;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.3);
}

.hp-experts__btn .dg-icon {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.hp-experts__btn:hover .dg-icon {
  transform: translateX(4px);
}

/* ── SECTION 12: CONSULT FORM ─────────────────────────────── */

.hp-consult {
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(59,130,246,.05), transparent 50%),
    radial-gradient(ellipse 40% 40% at 100% 50%, rgba(139,92,246,.04), transparent 40%),
    #fafbfc;
  padding: 108px 0;
}

.hp-consult__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.hp-consult__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-consult__copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 8px 0 0;
}

.hp-consult__sub {
  color: var(--blue);
  font-weight: 700;
  font-size: .98rem;
  margin: 0;
}

.hp-consult__copy > p:not(.hp-consult__sub) {
  color: var(--ink-muted);
  font-size: .98rem;
  line-height: 1.75;
  margin: 0;
}

.hp-consult__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.hp-consult-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hp-consult-feat:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(15,23,42,.06);
}

.hp-consult-feat--mint { border-left: 3px solid #10b981; }
.hp-consult-feat--sky  { border-left: 3px solid #0ea5e9; }
.hp-consult-feat--violet { border-left: 3px solid #8b5cf6; }

.hp-consult-feat__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--blue);
  flex-shrink: 0;
}

.hp-consult-feat__icon .dg-icon {
  width: 20px;
  height: 20px;
}

.hp-consult-feat strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.hp-consult-feat span {
  font-size: .84rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.hp-consult__contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.hp-consult__contact-links a,
.hp-consult__contact-links span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  width: fit-content;
}

.hp-consult__contact-links a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.hp-consult__contact-links .dg-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Form card */
.hp-consult__form-wrap {
  position: sticky;
  top: 96px;
}

.hp-consult__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 56px rgba(15,23,42,.08), 0 4px 12px rgba(15,23,42,.04);
}

.hp-consult__form h4 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 6px;
}

.hp-consult__form > p {
  color: var(--ink-muted);
  font-size: .9rem;
  margin: 0 0 24px;
  line-height: 1.6;
}

.hp-consult__form label {
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  letter-spacing: .01em;
}

.hp-consult__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.hp-consult__form .form-row--full {
  grid-template-columns: 1fr;
}

.hp-consult__form :is(input[type="text"], input[type="email"], select, textarea) {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg-warm);
  transition: border-color .15s ease, box-shadow .15s ease;
  box-shadow: inset 0 1px 2px rgba(15,23,42,.03);
  height: 48px;
}

.hp-consult__form textarea {
  height: auto;
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.hp-consult__form :is(input, select, textarea):focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,.1);
  background: #fff;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1100px) {
  .hp-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
  }

  .hp-hero__copy { align-items: center; }
  .hp-hero__desc { margin-left: auto; margin-right: auto; }
  .hp-hero__actions { justify-content: center; }
  .hp-hero__trust { justify-content: center; }

  .hp-hero__visual {
    max-width: 640px;
    margin: 0 auto;
  }

  .hp-hero__stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-hero__stat.is-hidden-float { display: flex; }
  .hp-hero__float-card--tl { display: none; }

  .hp-services__head { text-align: center; }
  .hp-services__rows { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }

  .hp-solar { grid-template-columns: 1fr; }
  .hp-solar__media-half { min-height: 400px; }
  .hp-solar__copy-half { padding: 56px 40px; }

  .hp-why__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-why__head { text-align: center; }

  .hp-lifecycle__track { flex-wrap: wrap; gap: 20px; }
  .hp-lc-step { flex: 0 0 calc(33% - 14px); }
  .hp-lc-step::after { display: none; }

  .hp-consult__grid { grid-template-columns: 1fr; gap: 48px; }
  .hp-consult__form-wrap { position: static; }
}

@media (max-width: 768px) {
  .hp-services { padding: 72px 0; }
  .hp-services__rows { grid-template-columns: 1fr; }

  .hp-products { padding: 72px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .hp-why { padding: 72px 0; }
  .hp-why__grid { grid-template-columns: repeat(2, 1fr); }

  .hp-lifecycle { padding: 72px 0; }
  .hp-lc-step { flex: 0 0 calc(50% - 10px); }

  .hp-experts { padding: 72px 0; }
  .hp-experts__inner { grid-template-columns: 1fr; text-align: center; }
  .hp-experts__copy { align-items: center; }
  .hp-experts__btn { margin: 0 auto; }

  .hp-consult { padding: 72px 0; }
  .hp-consult__form { padding: 28px 24px; border-radius: 20px; }
  .hp-consult__form .form-row { grid-template-columns: 1fr; }

  .hp-quicklinks__inner { flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .hp-hero__inner { padding-top: 64px; padding-bottom: 64px; }
  .hp-hero__h1 { font-size: 2.3rem; }
  .hp-hero__stats-row { grid-template-columns: repeat(2, 1fr); }

  .product-grid { grid-template-columns: 1fr; }

  .hp-why__grid { grid-template-columns: 1fr; }

  .hp-lc-step { flex: 0 0 100%; }

  .hp-solar__kpi-stack { grid-template-columns: repeat(2, 1fr); }
  .hp-solar__copy-half { padding: 40px 28px; }
}

/* ============================================================
   SENIOR UI OVERHAUL — Hero differentiation, Services dark
   surface, Industries bulletproof responsive masonry.
   Applied 2026 by senior UI pass.
   ============================================================ */

/* ─── HERO: Elevated — dot-grid texture + accent gradient line ─── */

.hp-hero {
  background:
    radial-gradient(ellipse 70% 55% at 68% -5%, rgba(59,130,246,.09) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 8% 90%, rgba(16,185,129,.06) 0%, transparent 50%),
    #fafbfc;
}

/* Crisp dot-grid texture overlay — signature element */
.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hp-hero .container,
.hp-hero__inner {
  position: relative;
  z-index: 1;
}

/* Accent gradient stroke across the bottom of hero */
.hp-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 30%, #8b5cf6 60%, var(--green) 85%, transparent 100%);
  z-index: 3;
}

/* Badge: glassmorphism pill with a green dot pulse */
.hp-hero__badge {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(59,130,246,.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(59,130,246,.1);
}

/* H1: Tighter tracking, slightly larger at breakpoints */
.hp-hero__h1 {
  font-size: clamp(2.9rem, 5.2vw, 4.8rem);
  letter-spacing: -.035em;
  font-weight: 800;
  background: linear-gradient(135deg, #0a0f1e 0%, #1e3a8a 60%, #0a0f1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a0f1e; /* fallback */
  line-height: 1.03;
  margin-bottom: 24px;
}

/* Primary CTA: gradient instead of flat dark */
.hp-hero__btn-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(30,58,138,.25), 0 2px 6px rgba(15,23,42,.12);
}

.hp-hero__btn-primary:hover {
  background: linear-gradient(135deg, #1e293b 0%, #1d4ed8 100%);
  box-shadow: 0 14px 36px rgba(30,58,138,.32);
}

/* Ghost: clean white card */
.hp-hero__btn-ghost {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(15,23,42,.14);
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
}

.hp-hero__btn-ghost:hover {
  background: #fff;
  border-color: rgba(15,23,42,.28);
  box-shadow: 0 4px 16px rgba(15,23,42,.1);
}

/* Trust items: subtle pill look */
.hp-hero__trust-item {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(6px);
  font-size: .82rem;
}

/* Float cards: sharper depth */
.hp-hero__float-card {
  box-shadow:
    0 4px 8px rgba(15,23,42,.06),
    0 16px 40px rgba(15,23,42,.14);
  border-color: rgba(255,255,255,.95);
}

/* Hero image: tighter shadow framing */
.hp-hero__img {
  box-shadow:
    0 2px 4px rgba(15,23,42,.06),
    0 12px 32px rgba(15,23,42,.1),
    0 32px 72px rgba(15,23,42,.12);
  border-width: 5px;
}

/* ─── SERVICES: Premium white — crisp, structured, FAANG-level ─── */
/*
 * Design approach: pure white surface with a very subtle warm-grey
 * grid-line texture. Cards use a bordered "lifted" style with a
 * per-card color accent on the left rail — NOT the top. This creates
 * a strong horizontal reading rhythm and visually separates each
 * service at a glance. Section background differs from hero (#fafbfc)
 * by being pure #fff, which reads cleanly as a new "chapter" without
 * needing color at all — Stripe / Linear do this exact thing.
 */

/* Section head label */
.hp-services .hp-section-label {
  margin-bottom: 14px;
}

/* Section head label */
.hp-services .hp-section-label {
  margin-bottom: 14px;
}



/* ─── Responsive: Services + Products (white theme) ─── */

@media (max-width: 1100px) {
  .hp-services__rows { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hp-services { padding: 80px 0; }
  .hp-services__head { text-align: center; }
  .hp-services__rows { grid-template-columns: 1fr; }
  .hp-products { padding: 80px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hp-services { padding: 64px 0; }
  .hp-products { padding: 64px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .hp-products__head { margin-bottom: 36px; }
}

/* ─── Hero responsive tweaks ─── */

@media (max-width: 1100px) {
  .hp-hero__h1 {
    background: none;
    -webkit-text-fill-color: #0a0f1e;
    color: #0a0f1e;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
  }
}

@media (max-width: 768px) {
  .hp-hero__h1 {
    background: none;
    -webkit-text-fill-color: #0a0f1e;
    color: #0a0f1e;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    letter-spacing: -.025em;
  }

  .hp-hero__trust {
    gap: 8px;
    padding-top: 20px;
  }

  .hp-hero__trust-item {
    font-size: .78rem;
    padding: 3px 8px;
  }
}

@media (max-width: 540px) {
  .hp-hero__h1 {
    font-size: 2.1rem;
    letter-spacing: -.02em;
  }

  .hp-hero__btn-primary,
  .hp-hero__btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hp-hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  /* Float cards: hide on small mobile to avoid overlap */
  .hp-hero__float-card--tl {
    display: none;
  }
  .hp-hero__float-card--br {
    right: -8px;
    bottom: -8px;
  }
}



/* ============================================================
   Homepage Landing Hero - Immersive Industrial Platform
   ============================================================ */

.hp-hero {
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(255,255,255,.98) 0 18%, rgba(231,241,255,.76) 34%, transparent 58%),
    radial-gradient(circle at 12% 22%, rgba(56,189,248,.14), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(20,184,166,.13), transparent 31%),
    radial-gradient(circle at 50% 94%, rgba(244,114,182,.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 78%);
}

.hp-hero::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.42), rgba(20,184,166,.34), transparent);
}

.hp-hero::after {
  opacity: .52;
  background-image:
    linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 72%, transparent);
}

.hp-hero__noise {
  z-index: 0;
  opacity: .035;
  mix-blend-mode: multiply;
}

.hp-hero__ambient-image {
  position: absolute;
  inset: 10% -8% auto auto;
  width: min(860px, 62vw);
  height: min(680px, 72vh);
  z-index: 0;
  pointer-events: none;
  transform: rotate(-2deg);
}

.hp-hero__ambient-image::before,
.hp-hero__ambient-image::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
}

.hp-hero__ambient-image::before {
  background:
    linear-gradient(90deg, #f8fbff 0%, rgba(248,251,255,.76) 20%, rgba(248,251,255,.18) 52%, #f8fbff 100%),
    linear-gradient(180deg, #f8fbff 0%, rgba(255,255,255,.08) 30%, #ffffff 100%);
}

.hp-hero__ambient-image::after {
  background: radial-gradient(circle at 48% 42%, rgba(255,255,255,.08), rgba(255,255,255,.88) 72%);
}

.hp-hero__ambient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(.96);
  opacity: .5;
  border-radius: 42px;
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  min-height: calc(100svh - var(--header-h));
  max-height: none;
  padding-top: clamp(72px, 9vh, 118px);
  padding-bottom: clamp(52px, 8vh, 92px);
  text-align: center;
}

.hp-hero__copy {
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.hp-hero__badge {
  min-height: 38px;
  margin-bottom: 24px;
  padding: 8px 16px;
  color: #174ea6;
  letter-spacing: 0;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(37,99,235,.16);
  box-shadow: 0 12px 34px rgba(37,99,235,.1), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px) saturate(150%);
}

.hp-hero__h1 {
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: clamp(3.35rem, 8vw, 7.4rem);
  line-height: .91;
  letter-spacing: 0;
  color: #08111f;
  background: linear-gradient(145deg, #070b14 0%, #162b4d 45%, #0d9488 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__desc {
  max-width: 720px;
  margin: 0 auto 32px;
  color: #526173;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.hp-hero__actions {
  justify-content: center;
  margin-bottom: 30px;
  gap: 14px;
}

.hp-hero__btn-primary,
.hp-hero__btn-ghost {
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 24px;
}

.hp-hero__btn-primary {
  background: #08111f;
  border-color: rgba(8,17,31,.9);
  box-shadow: 0 18px 42px rgba(8,17,31,.22);
}

.hp-hero__btn-primary:hover {
  background: #172033;
  border-color: #172033;
}

.hp-hero__btn-ghost {
  color: #102033;
  background: rgba(255,255,255,.68);
  border-color: rgba(15,23,42,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 28px rgba(15,23,42,.08);
}

.hp-hero__trust {
  justify-content: center;
  gap: 10px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding-top: 0;
  border-top: 0;
}

.hp-hero__trust-label {
  color: #7a8797;
  letter-spacing: 0;
}

.hp-hero__trust-item {
  padding: 7px 12px;
  border-radius: 999px;
  color: #334155;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(15,23,42,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.hp-hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.hp-hero__dashboard {
  position: relative;
  min-height: clamp(310px, 38vw, 470px);
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.44));
  border: 1px solid rgba(255,255,255,.74);
  box-shadow:
    0 30px 80px rgba(30,64,175,.12),
    0 12px 32px rgba(15,23,42,.1),
    inset 0 1px 0 rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(135%);
}

.hp-hero__dashboard-top {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.hp-hero__dashboard-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15,23,42,.22);
}

.hp-hero__dashboard-top span:nth-child(1) { background: #fb7185; }
.hp-hero__dashboard-top span:nth-child(2) { background: #fbbf24; }
.hp-hero__dashboard-top span:nth-child(3) { background: #34d399; }

.hp-hero__img-wrap {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 24px;
}

.hp-hero__img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.04) contrast(.98);
  transform: scale(1.015);
}

.hp-hero__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248,251,255,.92) 0%, rgba(248,251,255,.58) 34%, rgba(255,255,255,.16) 64%, rgba(255,255,255,.72) 100%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.2) 40%, rgba(248,251,255,.86) 100%);
}

.hp-hero__float-card,
.hp-hero__ops-panel,
.hp-hero__stat {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 46px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(145%);
}

.hp-hero__float-card {
  z-index: 5;
  min-width: 152px;
  padding: 16px 18px;
  border-radius: 20px;
  text-align: left;
}

.hp-hero__float-card strong {
  order: 2;
  color: #07111f;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: 0;
}

.hp-hero__float-card span {
  color: #64748b;
  font-size: .72rem;
}

.hp-hero__float-card .dg-icon {
  color: #0d9488;
}

.hp-hero__float-card--tl {
  top: 54px;
  left: clamp(18px, 6vw, 70px);
}

.hp-hero__float-card--br {
  right: clamp(18px, 6vw, 76px);
  bottom: 46px;
}

.hp-hero__ops-panel {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: min(420px, 52%);
  min-height: 178px;
  padding: 18px;
  border-radius: 22px;
  text-align: left;
  transform: translate(-50%, -38%);
}

.hp-hero__ops-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: #1e293b;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hp-hero__ops-head i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.hp-hero__ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.hp-hero__ops-grid span {
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.46)),
    linear-gradient(135deg, rgba(59,130,246,.16), rgba(20,184,166,.12));
  border: 1px solid rgba(15,23,42,.06);
}

.hp-hero__ops-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15,23,42,.08), rgba(59,130,246,.5), rgba(20,184,166,.4));
}

.hp-hero__ops-line--one {
  width: 86%;
  margin-bottom: 10px;
}

.hp-hero__ops-line--two {
  width: 62%;
}

.hp-hero__stats-row {
  position: relative;
  z-index: 6;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(880px, 92%);
  margin: -48px auto 0;
}

.hp-hero__stat {
  align-items: flex-start;
  min-height: 118px;
  padding: 16px;
  border-radius: 18px;
  text-align: left;
}

.hp-hero__stat.is-hidden-float {
  display: flex;
}

.hp-hero__stat .dg-icon {
  width: 18px;
  height: 18px;
  color: #2563eb;
  margin-bottom: 8px;
}

.hp-hero__stat strong {
  color: #08111f;
  font-size: 1.45rem;
}

.hp-hero__stat span {
  color: #64748b;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .hp-hero__inner {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .hp-hero__h1 {
    background: linear-gradient(145deg, #070b14 0%, #162b4d 45%, #0d9488 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hp-hero__visual {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .hp-hero {
    min-height: auto;
  }

  .hp-hero__ambient-image {
    inset: 22% -28% auto auto;
    width: 100vw;
    opacity: .7;
  }

  .hp-hero__inner {
    min-height: auto;
    padding-top: 64px;
  }

  .hp-hero__h1 {
    font-size: clamp(2.65rem, 12vw, 4.6rem);
    line-height: .96;
  }

  .hp-hero__dashboard {
    min-height: 390px;
    border-radius: 24px;
  }

  .hp-hero__ops-panel {
    width: 72%;
  }

  .hp-hero__float-card--tl {
    left: 18px;
    top: 58px;
    display: flex;
  }

  .hp-hero__float-card--br {
    right: 18px;
    bottom: 26px;
  }

  .hp-hero__stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .hp-hero__badge {
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hp-hero__desc {
    font-size: .98rem;
  }

  .hp-hero__dashboard {
    min-height: 420px;
    padding: 8px;
  }

  .hp-hero__img-wrap {
    inset: 8px;
    border-radius: 18px;
  }

  .hp-hero__ops-panel {
    width: calc(100% - 34px);
    transform: translate(-50%, -35%);
  }

  .hp-hero__float-card {
    min-width: 126px;
    padding: 13px 14px;
  }

  .hp-hero__float-card strong {
    font-size: 1.55rem;
  }

  .hp-hero__float-card--tl {
    top: 50px;
    left: 16px;
  }

  .hp-hero__float-card--br {
    right: 16px;
    bottom: 18px;
  }

  .hp-hero__stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hp-hero__stat {
    min-height: 112px;
    padding: 14px;
  }
}

/* ============================================================
   Services - Bento Grid (2026 Premium Redesign)
   ============================================================ */

/* ── Section Setup ──────────────────────────────────────── */
.hp-services {
  padding: clamp(80px, 8vw, 120px) 0;
  background: #FAFBFC; /* Per prompt */
  overflow: hidden;
}

.hp-services .container { position: relative; z-index: 1; }

.hp-services .hp-section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hp-services__head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.hp-services__title {
  margin: 4px 0 12px;
  color: #0f172a;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hp-services__intro {
  max-width: 600px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── Bento Grid Layout ──────────────────────────────────── */
.hp-services__map {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(auto, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Desktop Grid Placement (12-column) */
.hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 6; grid-row: 1 / span 2; }
.hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 7 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 7 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
.hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 7 / span 6; }

/* ── Base Card Style ────────────────────────────────────── */
.hp-svc-row {
  display: flex;
  flex-direction: column;
  border-radius: 32px; /* Per prompt */
  background: #fff;
  border: 1px solid hsl(220, 24%, 95%);
  box-shadow: 0 2px 4px hsla(223, 33%, 12%, 0.02), 0 8px 16px hsla(223, 33%, 12%, 0.04);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hp-svc-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 8px hsla(223, 33%, 12%, 0.04), 0 16px 24px hsla(223, 33%, 12%, 0.08), 0 24px 48px hsla(223, 33%, 12%, 0.1);
  text-decoration: none;
  color: inherit;
  border-color: hsl(220, 24%, 92%);
}

/* ── Card Internals ─────────────────────────────────────── */
.hp-svc-row__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px;
  z-index: 2;
}

.hp-svc-row__media {
  order: -1;
  overflow: hidden;
  border-radius: 0; /* Image is part of the card, not a separate block */
  margin: 0;
  background: var(--bg-soft);
  aspect-ratio: 16 / 10;
}

.hp-svc-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hp-svc-row:hover .hp-svc-row__media img {
  transform: scale(1.05);
}

.hp-svc-row__media-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-svc-row__media-icon .dg-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  opacity: 0.8;
}

.hp-svc-row__text {
  flex-grow: 1;
}

.hp-svc-row__text strong {
  display: block;
  color: #0f172a;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  text-wrap: balance;
}

.hp-svc-row__text span {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* CRITICAL: Prevents text overflow */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Premium Arrow CTA */
.hp-svc-row__arrow {
  margin-top: 24px;
  align-self: flex-end;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  z-index: 3;
}

.hp-svc-row__arrow .dg-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.hp-svc-row:hover .hp-svc-row__arrow {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: scale(1.05);
}

.hp-svc-row:hover .hp-svc-row__arrow .dg-icon {
  transform: translateX(3px);
}

/* ── Card Variations & Overrides ──────────────────────── */

/* Card 1: Hero Card */
.hp-services__map > .hp-svc-row:nth-child(1) {
  padding: 0; /* No padding on the card itself */
  justify-content: flex-end; /* Push content to bottom */
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 32px;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 15, 30, 0.4) 75%, rgba(10, 15, 30, 0.8) 100%);
  transition: background 0.3s ease;
}
.hp-services__map > .hp-svc-row:nth-child(1):hover .hp-svc-row__media::after {
  background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 30, 0.5) 70%, rgba(10, 15, 30, 0.9) 100%);
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
  padding: 40px;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: 2.25rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 90%;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow {
  background: #fff;
  color: var(--blue);
}
.hp-services__map > .hp-svc-row:nth-child(1):hover .hp-svc-row__arrow {
  background: var(--blue);
  color: #fff;
}

/* Cards 2 & 3: Small cards */
.hp-services__map > .hp-svc-row:nth-child(2) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* Card 4: Text-centric card */
.hp-services__map > .hp-svc-row:nth-child(4) {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-color: #dbeafe;
}
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__media { display: none; }
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text strong { color: #1e3a8a; }
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span { color: #4338ca; -webkit-line-clamp: 4; line-clamp: 4; }
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow { background: #fff; color: #4338ca; }
.hp-services__map > .hp-svc-row:nth-child(4):hover .hp-svc-row__arrow { background: #4338ca; color: #fff; }

/* Card 5: Icon-centric card */
.hp-services__map > .hp-svc-row:nth-child(5) .hp-svc-row__media {
  aspect-ratio: auto;
  height: 120px;
  order: 0;
}
.hp-services__map > .hp-svc-row:nth-child(5) .hp-svc-row__text span {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* Cards 6 & 7: Wide horizontal cards */
.hp-services__map > .hp-svc-row:nth-child(6),
.hp-services__map > .hp-svc-row:nth-child(7) {
  flex-direction: row;
  align-items: center;
  padding: 32px;
  gap: 28px;
}
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__media,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__media {
  order: 0;
  margin: 0;
  border-radius: 20px;
  flex: 0 0 40%;
  aspect-ratio: 1 / 1;
}
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  padding: 0;
}
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text span {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* ── Hidden elements from template ──────────────────────── */
.hp-svc-row__pin,
.hp-svc-row__icon,
.hp-svc-number {
  display: none;
}

/* ── Responsive Layout ────────────────────────────────── */
@media (max-width: 1024px) {
  .hp-services__map {
    grid-template-columns: repeat(6, 1fr); /* Switch to 6 columns for tablet */
    grid-auto-rows: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 6; grid-row: 1 / span 1; aspect-ratio: 16/9; }
  .hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 1 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 4 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 1 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 4 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
  .hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 1 / span 6; }
}

@media (max-width: 768px) {
  .hp-services__map > .hp-svc-row:nth-child(6),
  .hp-services__map > .hp-svc-row:nth-child(7) {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__media,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__media {
    flex: 0 0 auto;
    border-radius: 32px 32px 0 0;
    aspect-ratio: 16/10;
  }
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .hp-services__map {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }
  .hp-services__map > .hp-svc-row:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) {
    aspect-ratio: 1/1;
  }
}





/* ============================================================
   Page: About Us
   ============================================================ */

/* --- About Hero --- */
.about-hero {
  background: var(--bg-soft);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-hero__copy .eyebrow {
  margin-bottom: 16px;
}

.about-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 16px;
}

.about-hero__copy p {
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.about-hero__stat-item {
  padding: 16px;
  text-align: center;
  border-radius: var(--r-lg);
}

.about-hero__stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--blue);
  line-height: 1;
}

.about-hero__stat-item span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* --- About Profile (Mission/Vision) --- */
.about-profile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-profile__card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-profile__card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--blue);
}

.about-profile__card p {
  color: var(--ink-muted);
  line-height: 1.7;
}

/* --- About Services --- */
.about-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.about-services__card {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--violet);
}

.about-services__card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.about-services__card p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* --- About Industries --- */
.about-industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.about-industries__card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}

.about-industries__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.about-industries__count {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--blue);
  line-height: 1;
}

.about-industries__count span {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}

.about-industries__card h3 {
  font-size: .95rem;
  margin: 12px 0 0;
  font-weight: 700;
}

/* --- About Team --- */
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-team__card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}

.about-team__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.about-team__card:hover img {
  transform: scale(1.05);
}

.about-team__overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  color: #fff;
}

.about-team__overlay span {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue);
}

.about-team__overlay strong {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 4px 0 8px;
  line-height: 1.3;
}

.about-team__overlay p {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* --- About Process --- */
.about-process .hp-lifecycle__track {
  padding: 20px 0;
}

/* --- About Why Choose Us --- */
.about-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-why__card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-why__card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.about-why__card p {
  color: var(--ink-muted);
  line-height: 1.7;
}

/* --- Responsive for About Page --- */
@media (max-width: 991px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-hero__copy {
    order: 2;
  }
  .about-hero__stats {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-profile__grid {
    grid-template-columns: 1fr;
  }
  .about-team__grid {
    grid-template-columns: 1fr;
  }
  .about-why__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-process .hp-lifecycle__track {
    flex-direction: column;
  }
  .about-process .hp-lc-step {
    flex-basis: auto;
    width: 100%;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 20px;
  }
  .about-process .hp-lc-step__card {
    width: auto;
  }
}

@media (max-width: 575px) {
  .about-hero__stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Page: Industries (New Layout)
   ============================================================ */

/* --- Industries Hero --- */
.ind-hero {
  background: var(--bg-warm);
}

.ind-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.ind-hero__copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 16px 0;
}

.ind-hero__copy p {
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 580px;
}

.ind-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.ind-hero__stat-item {
  padding: 16px;
  text-align: center;
}

.ind-hero__stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--blue);
  line-height: 1;
}

.ind-hero__stat-item span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* --- Industries Grid --- */
.ind-grid__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}

.ind-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.ind-card:nth-child(even) {
  grid-template-columns: 1.2fr 0.8fr;
}

.ind-card:nth-child(even) .ind-card__media {
  order: 2;
}

.ind-card__media {
  position: relative;
  min-height: 300px;
}

.ind-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind-card__projects {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.ind-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.ind-card__body h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.ind-card__body > p {
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 20px;
}

.ind-card__solutions {
  margin-bottom: 24px;
}

.ind-card__solutions strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.ind-card__solutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ind-card__solutions li {
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.ind-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.ind-card__stat-item {
  text-align: center;
}

.ind-card__stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--green);
  line-height: 1;
}

.ind-card__stat-item span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* --- Solutions Section --- */
.ind-solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ind-solutions__card {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
}

.ind-solutions__card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.ind-solutions__card p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ind-solutions__tags strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
  color: var(--ink-muted);
}

.ind-solutions__tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ind-solutions__tags span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 600;
}

/* --- Why Us Section --- */
.ind-why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ind-why-us__card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ind-why-us__card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.ind-why-us__card p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* --- Responsive for Industries Page --- */
@media (max-width: 991px) {
  .ind-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ind-hero__copy {
    order: 2;
  }
  .ind-hero__stats {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  .ind-card, .ind-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .ind-card__media {
    order: 1 !important;
  }
  .ind-card__body {
    order: 2;
  }
  .ind-why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ind-solutions__grid {
    grid-template-columns: 1fr;
  }
  .ind-why-us__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .ind-hero__stats {
    grid-template-columns: 1fr;
  }
  .ind-card__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ind-card__stat-item {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
  }
  .ind-card__stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* ============================================================
   About Page — ab-* namespace
   All new classes; no existing rules modified.
   ============================================================ */

/* ── 1. HERO ─────────────────────────────────────────────────── */

.ab-hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.ab-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.ab-hero:hover .ab-hero__bg {
  transform: scale(1.0);
}

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 30, 0.18) 0%,
    rgba(10, 15, 30, 0.55) 55%,
    rgba(10, 15, 30, 0.88) 100%
  );
  z-index: 1;
}

.ab-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 80px;
  padding-top: 160px;
}

.ab-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.ab-hero__copy .eyebrow {
  margin-bottom: 20px;
}

.ab-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 18px;
}

.ab-hero__desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  max-width: 560px;
}

.ab-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats panel — right column */
.ab-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 320px;
  align-self: end;
}

.ab-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  transition: background .2s ease;
}

.ab-hero__stat:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ab-hero__stat strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.ab-hero__stat span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── 2. COMPANY PROFILE ──────────────────────────────────────── */

.ab-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.ab-profile__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.ab-profile__intro .eyebrow {
  margin-bottom: 4px;
}

.ab-profile__intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.022em;
  color: var(--ink);
  margin: 0;
}

.ab-profile__intro p {
  color: var(--ink-muted);
  font-size: .97rem;
  line-height: 1.78;
  margin: 0;
}

.ab-profile__cards {
  display: grid;
  gap: 16px;
}

.ab-profile__card {
  position: relative;
  padding: 28px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
}

.ab-profile__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Left accent per card */
.ab-profile__card--blue  { border-left: 3.5px solid var(--blue); }
.ab-profile__card--green { border-left: 3.5px solid var(--green); }
.ab-profile__card--violet{ border-left: 3.5px solid var(--violet); }

/* Watermark number */
.ab-profile__card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 10px;
}

.ab-profile__card p {
  color: var(--ink-muted);
  font-size: .93rem;
  line-height: 1.72;
  margin: 0;
}

/* Subtle tinted bg */
.ab-profile__card--blue   { background: linear-gradient(135deg, #fff 60%, #eff6ff 100%); }
.ab-profile__card--green  { background: linear-gradient(135deg, #fff 60%, #f0fdf4 100%); }
.ab-profile__card--violet { background: linear-gradient(135deg, #fff 60%, #faf5ff 100%); }

/* ── 3. SERVICES ─────────────────────────────────────────────── */

.ab-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.ab-svc-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .2s ease;
}

.ab-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ab-svc-card__num {
  /* feature-icon with number label */
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.ab-svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-svc-card__body h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.ab-svc-card__body p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* ── 4. INDUSTRIES ───────────────────────────────────────────── */

.ab-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.ab-ind-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
  position: relative;
  overflow: hidden;
}

.ab-ind-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Top colored stripe */
.ab-ind-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.ab-ind-card--blue::before   { background: var(--blue); }
.ab-ind-card--orange::before { background: var(--orange); }
.ab-ind-card--green::before  { background: var(--green); }
.ab-ind-card--violet::before { background: var(--violet); }
.ab-ind-card--cyan::before   { background: var(--cyan); }
.ab-ind-card--amber::before  { background: #f59e0b; }
.ab-ind-card--pink::before   { background: var(--pink); }
.ab-ind-card--emerald::before{ background: #10b981; }

/* Tinted bg accent per colour */
.ab-ind-card--blue   { background: linear-gradient(160deg, #fff 50%, #eff6ff 100%); }
.ab-ind-card--orange { background: linear-gradient(160deg, #fff 50%, #fffbeb 100%); }
.ab-ind-card--green  { background: linear-gradient(160deg, #fff 50%, #f0fdf4 100%); }
.ab-ind-card--violet { background: linear-gradient(160deg, #fff 50%, #faf5ff 100%); }
.ab-ind-card--cyan   { background: linear-gradient(160deg, #fff 50%, #ecfeff 100%); }
.ab-ind-card--amber  { background: linear-gradient(160deg, #fff 50%, #fffbeb 100%); }
.ab-ind-card--pink   { background: linear-gradient(160deg, #fff 50%, #fdf4ff 100%); }
.ab-ind-card--emerald{ background: linear-gradient(160deg, #fff 50%, #ecfdf5 100%); }

.ab-ind-card__count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.ab-ind-card--blue .ab-ind-card__count   { color: var(--blue); }
.ab-ind-card--orange .ab-ind-card__count { color: #d97706; }
.ab-ind-card--green .ab-ind-card__count  { color: var(--green); }
.ab-ind-card--violet .ab-ind-card__count { color: var(--violet); }
.ab-ind-card--cyan .ab-ind-card__count   { color: var(--cyan); }
.ab-ind-card--amber .ab-ind-card__count  { color: #d97706; }
.ab-ind-card--pink .ab-ind-card__count   { color: var(--pink); }
.ab-ind-card--emerald .ab-ind-card__count{ color: #059669; }

.ab-ind-card__count small {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-muted);
}

.ab-ind-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -.01em;
}

/* ── 5. TEAM ──────────────────────────────────────────────────── */

.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ab-team__card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}

.ab-team__media {
  position: absolute;
  inset: 0;
}

.ab-team__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ab-team__card:hover .ab-team__media img {
  transform: scale(1.06);
}

.ab-team__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 15, 30, 0.78) 100%
  );
  transition: background .3s ease;
}

.ab-team__card:hover .ab-team__overlay {
  background: linear-gradient(
    180deg,
    transparent 15%,
    rgba(10, 15, 30, 0.88) 100%
  );
}

.ab-team__role {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.ab-team__title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.ab-team__overlay p {
  font-size: .86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.ab-team__card:hover .ab-team__overlay p {
  max-height: 100px;
}

/* ── 6. WHY CHOOSE US ────────────────────────────────────────── */

.ab-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ab-why__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
}

.ab-why__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ab-why__card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.ab-why__card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
  flex: 1;
}

/* ── CTA BAND (reuses existing .cta-band from main.css) ────────── */

/* ════════════════════════════════════════════════════════════════
   About Page Responsive Breakpoints
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .ab-hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .ab-hero__stats {
    grid-template-columns: repeat(4, 1fr);
    min-width: 0;
    width: 100%;
  }

  .ab-profile__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-profile__intro {
    position: static;
    max-width: 620px;
  }

  .ab-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ab-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ab-hero {
    min-height: 75vh;
  }

  .ab-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .ab-hero__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .ab-hero__inner {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .ab-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ab-hero__stat strong {
    font-size: 1.7rem;
  }

  .ab-hero__actions {
    flex-direction: column;
  }

  .ab-services__grid {
    grid-template-columns: 1fr;
  }

  .ab-team__grid {
    grid-template-columns: 1fr;
  }

  .ab-team__card {
    aspect-ratio: 4 / 3;
  }

  .ab-team__overlay p {
    max-height: 100px; /* always show on mobile */
  }

  .ab-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-why__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 440px) {
  .ab-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .ab-industries__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-why__grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   About Page — Icon & Component Additions
   ════════════════════════════════════════════════════════════════ */

/* ── Hero decorative pattern ─────────────────────────────────── */
.ab-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
}

/* ── Profile card icon ───────────────────────────────────────── */
.ab-profile__card-icon {
  margin-bottom: 16px;
}

.ab-profile__card-icon.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
}

/* ── Industry card icon ──────────────────────────────────────── */
.ab-ind-card__icon {
  margin-bottom: 4px;
}

.ab-ind-card__icon.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 16px;
}

.ab-ind-card__icon.feature-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Process step icon ───────────────────────────────────────── */
.premium-step__icon {
  margin-bottom: 14px;
}

.premium-step__icon svg,
.premium-step__icon .dg-icon {
  width: 28px;
  height: 28px;
  color: #4f46e5;
}

.premium-step--blue .premium-step__icon svg,
.premium-step--blue .premium-step__icon .dg-icon { color: #2563eb; }

.premium-step--violet .premium-step__icon svg,
.premium-step--violet .premium-step__icon .dg-icon { color: #7c3aed; }

.premium-step--mint .premium-step__icon svg,
.premium-step--mint .premium-step__icon .dg-icon { color: #059669; }

/* ── Team card icon ──────────────────────────────────────────── */
.ab-team__icon {
  margin-bottom: 12px;
  opacity: 0.7;
  transition: opacity .3s ease;
}

.ab-team__icon svg,
.ab-team__icon .dg-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.6);
}

.ab-team__card:hover .ab-team__icon {
  opacity: 1;
}

.ab-team__card:hover .ab-team__icon svg {
  transform: none;
}
/* ============================================================
   Contact Page — ct-* namespace (new classes only)
   All dg-* classes are already defined above.
   ============================================================ */

/* ── 1. HERO — Split layout ──────────────────────────────────── */

.ct-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(59,130,246,.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 25%, rgba(16,185,129,.04), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

/* Hairline bottom edge */
.ct-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.ct-hero__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding-bottom: 72px;
}

/* Left: Copy */
.ct-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.ct-hero__copy .eyebrow { margin-bottom: 20px; }

.ct-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 0 0 18px;
}

.ct-hero__desc {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 0 30px;
}

.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Right: Quick info panel */
.ct-hero__panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 90px;
}

.ct-hero__panel-head {
  margin-bottom: 22px;
}

.ct-hero__panel-head span {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-light);
}

.ct-hero__panel-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
}

.ct-hero__panel-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.ct-hero__panel-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.ct-hero__panel-row:hover .ct-hero__panel-icon {
  transform: scale(1.06);
}

.ct-hero__panel-icon.blue   { background: var(--blue-soft); color: var(--blue); }
.ct-hero__panel-icon.green  { background: var(--green-soft); color: var(--green); }
.ct-hero__panel-icon.violet { background: var(--violet-soft); color: var(--violet); }

.ct-hero__panel-icon .dg-icon { width: 18px; height: 18px; }

.ct-hero__panel-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-light);
  margin-bottom: 3px;
}

.ct-hero__panel-val {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
  line-height: 1.3;
}

a.ct-hero__panel-val:hover { color: var(--blue); }

.ct-hero__panel-divider {
  height: 1px;
  background: var(--border-light);
  margin: 18px 0 14px;
}

.ct-hero__panel-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-hero__panel-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.ct-hero__panel-trust .dg-icon {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── 2. FORM — Process mini-list inside intro ─────────────────── */

.ct-form__process {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.ct-form__process-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.ct-form__process-item:last-child { border-bottom: none; }

.ct-form__process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: .02em;
  flex-shrink: 0;
}

.ct-form__process-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}

.ct-form__process-item p {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}

/* ── 3. OFFICES — colour-coded head & map link ───────────────── */

.ct-office__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Blue office: top border accent */
.ct-office--blue  { border-top: 3px solid var(--blue); }
.ct-office--violet{ border-top: 3px solid var(--violet); }

/* Icon colour variants for offices */
.ct-office__icon--blue   { background: var(--blue-soft);   color: var(--blue); }
.ct-office__icon--violet { background: var(--violet-soft); color: var(--violet); }

.ct-office__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s ease, color .15s ease;
}

.ct-office__map-link:hover {
  color: var(--blue-dark);
  gap: 9px;
}

.ct-office__map-link .dg-icon {
  width: 14px;
  height: 14px;
}

/* ── 4. EMERGENCY HOTLINE — dark gradient strip ──────────────── */

.ct-emergency {
  padding: 0 0 80px;
}

.ct-emergency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 52px 56px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #0f172a 100%);
  box-shadow: 0 24px 60px rgba(15,23,42,.22);
}

/* Decorative dot pattern */
.ct-emergency__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Glow blob */
.ct-emergency__inner::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,.2), transparent 70%);
  pointer-events: none;
}

.ct-emergency__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.ct-emergency__copy .eyebrow {
  width: fit-content;
  margin-bottom: 0;
}

.ct-emergency__copy h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0;
}

.ct-emergency__copy p {
  color: rgba(255,255,255,.7);
  font-size: .97rem;
  line-height: 1.7;
  margin: 0;
}

.ct-emergency__action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ct-emergency__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-head);
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  transition: all .28s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}

.ct-emergency__btn:hover {
  color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.3);
  text-decoration: none;
}

.ct-emergency__btn .dg-icon {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.ct-emergency__note {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   Contact Page — Responsive Breakpoints
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .ct-hero__inner {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .ct-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
  }

  .ct-hero__panel {
    position: static;
  }

  .ct-emergency__inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 36px;
  }

  .ct-emergency__copy {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .ct-hero {
    padding-top: 56px;
  }

  .ct-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .ct-emergency__inner {
    padding: 40px 28px;
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .ct-hero__actions {
    flex-direction: column;
  }

  .ct-hero__actions .dg-btn {
    width: 100%;
    justify-content: center;
  }

  .ct-hero__panel {
    padding: 22px;
  }

  .ct-emergency__btn {
    width: 100%;
    justify-content: center;
  }

  .ct-form__process {
    margin-top: 28px;
  }
}

/* ============================================================
   Page: Solutions
   ============================================================ */

/* ── 1. Hero ─────────────────────────────────────────────────── */

.sol-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.sol-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.sol-hero:hover .sol-hero__bg {
  transform: scale(1);
}

.sol-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
}

.sol-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: center;
  padding: 120px 0;
  min-height: 70vh;
}

.sol-hero__copy {
  max-width: 800px;
  margin: 0 auto;
}

.sol-hero__copy .eyebrow {
  margin: 0 auto 20px;
}

.sol-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 18px;
}

.sol-hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
}

.sol-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sol-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.sol-hero__stat {
  padding: 16px;
}

.sol-hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.sol-hero__stat span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ── 2. Overview ───────────────────────────────────────────── */

.sol-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.sol-overview__copy .eyebrow {
  margin-bottom: 16px;
}

.sol-overview__copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 16px;
}

.sol-overview__copy p {
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.sol-overview__media img {
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── 3. Solutions Grid ─────────────────────────────────────── */

.sol-grid__layout {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
}

.sol-grid__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: #1e293b;
  transition: transform 0.3s ease;
}

.sol-grid__card:hover {
  transform: translateY(-8px);
}

.sol-grid__card--large {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.sol-grid__card--wide {
  grid-column: 3 / span 2;
}

.sol-grid__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.sol-grid__card:hover .sol-grid__card-bg {
  transform: scale(1.05);
  opacity: 0.35;
}

.sol-grid__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.sol-grid__card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sol-grid__card-icon {
  margin-bottom: 16px;
}

.sol-grid__card-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.sol-grid__card-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.sol-grid__card--large .sol-grid__card-text h3 {
  font-size: 1.8rem;
}

.sol-grid__card--large .sol-grid__card-text p {
  font-size: 1rem;
  max-width: 80%;
}

.sol-grid__card-features {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  gap: 8px;
}

.sol-grid__card--large .sol-grid__card-features {
  grid-template-columns: 1fr 1fr;
}

.sol-grid__card-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.sol-grid__card-features .dg-icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.sol-grid__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s ease;
}

.sol-grid__card:hover .sol-grid__card-cta {
  opacity: 1;
  transform: translateX(0);
}

/* ── 4. Process ────────────────────────────────────────────── */

.sol-process__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.sol-process__timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.sol-process__step {
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.sol-process__step-icon {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.sol-process__step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.sol-process__step h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.sol-process__step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── 5. Technology Stack ───────────────────────────────────── */

.sol-tech__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.sol-tech__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.sol-tech__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.sol-tech__card img {
  height: 40px;
  width: auto;
  margin: 0 auto 16px;
  filter: grayscale(100%) contrast(0%) brightness(1.2);
  opacity: 0.7;
  transition: all 0.25s ease;
}

.sol-tech__card:hover img {
  filter: none;
  opacity: 1;
}

.sol-tech__card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

/* ── 6. Why Choose Us ──────────────────────────────────────── */

.sol-why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sol-why__copy .eyebrow {
  margin-bottom: 16px;
}

.sol-why__copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 16px;
}

.sol-why__copy > p {
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 32px;
}

.sol-why__cards {
  display: grid;
  gap: 16px;
}

.sol-why__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-soft);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border-light);
}

.sol-why__card h3 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.sol-why__card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.sol-why__media img {
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ── 7. CTA ────────────────────────────────────────────────── */

.sol-cta__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 80px 64px;
  text-align: center;
  background: var(--ink);
}

.sol-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.sol-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.7) 100%);
}

.sol-cta__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.sol-cta__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin: 0 0 14px;
}

.sol-cta__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 28px;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .sol-grid__layout {
    grid-template-columns: 1fr 1fr;
  }
  .sol-grid__card--large,
  .sol-grid__card--wide {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
}

@media (max-width: 991px) {
  .sol-hero__inner {
    padding: 80px 0;
  }
  .sol-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
  .sol-overview__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-process__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .sol-process__timeline::before {
    display: none;
  }
  .sol-why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-why__media {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sol-grid__layout {
    grid-template-columns: 1fr;
  }
  .sol-grid__card--large,
  .sol-grid__card--wide {
    grid-column: auto;
  }
  .sol-process__timeline {
    grid-template-columns: 1fr;
  }
  .sol-process__step {
    text-align: left;
    padding-top: 0;
    padding-left: 80px;
  }
  .sol-process__step-icon {
    left: 0;
    top: 0;
    transform: none;
  }
}

@media (max-width: 575px) {
  .sol-hero__stats {
    grid-template-columns: 1fr;
  }
  .sol-cta__card {
    padding: 64px 24px;
  }
}

/* ══════════════════════════════════════════════════════════════
   INLINE MARQUEE — Industries We Serve (hp-marquee)
   ══════════════════════════════════════════════════════════════ */

.hp-marquee {
  padding: 100px 0;
  background: var(--bg-warm);
  overflow: hidden;
}

.hp-marquee__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.hp-marquee__head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 12px 0 12px;
  color: var(--ink);
}

.hp-marquee__head p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

.hp-marquee__rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-marquee__row {
  overflow: hidden;
}

.hp-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
}

.hp-marquee__row[data-dir="1"] .hp-marquee__track {
  animation-direction: reverse;
}

.hp-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-card {
  position: relative;
  display: block;
  width: 340px;
  height: 260px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
  text-decoration: none;
}

.marquee-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.03);
}

.marquee-card__img {
  width: 100%;
  height: 100%;
}

.marquee-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.marquee-card:hover .marquee-card__img img {
  transform: scale(1.1);
}

.marquee-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(transparent 20%, rgba(0,0,0,.8));
}

.marquee-card__overlay strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.marquee-card__overlay span {
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  line-height: 1.35;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity .3s ease, max-height .35s ease;
}

.marquee-card:hover .marquee-card__overlay span {
  opacity: 1;
  max-height: 42px;
}

@media (max-width: 768px) {
  .marquee-card {
    width: 260px;
    height: 200px;
  }
  .hp-marquee__track {
    gap: 12px;
    animation-duration: 35s;
  }
  .hp-marquee__rows {
    gap: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════
   APPLE TILES — Why Choose Us (hp-why-tiles)
   ══════════════════════════════════════════════════════════════ */

.hp-why-tiles {
  background: #fff;
  padding: 100px 0;
}

.hp-why-tiles__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.hp-why-tiles__head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 12px 0 12px;
  color: var(--ink);
}

.hp-why-tiles__head p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

.hp-tilegrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.tile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.tile-card__orb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--ink-light);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}

.tile-card:hover .tile-card__orb {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(15,23,42,.1);
}

.tile-card__orb .dg-icon {
  width: 36px;
  height: 36px;
}

.tile-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  transition: color .3s ease;
}

.tile-card__desc {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
  max-width: 200px;
}

/* Tint variants — pastel fills in on hover */
.tint-blue .tile-card__orb { border-color: #bfdbfe; color: #60a5fa; }
.tint-violet .tile-card__orb { border-color: #ddd6fe; color: #a78bfa; }
.tint-pink .tile-card__orb { border-color: #fbcfe8; color: #f472b6; }
.tint-emerald .tile-card__orb { border-color: #bbf7d0; color: #34d399; }

.tint-blue:hover .tile-card__orb { background: linear-gradient(135deg, #dbeafe, #eff6ff); border-color: #3b82f6; color: #2563eb; box-shadow: 0 12px 32px rgba(59,130,246,.2); }
.tint-violet:hover .tile-card__orb { background: linear-gradient(135deg, #e9d5ff, #f5f3ff); border-color: #8b5cf6; color: #7c3aed; box-shadow: 0 12px 32px rgba(139,92,246,.2); }
.tint-pink:hover .tile-card__orb { background: linear-gradient(135deg, #fbcfe8, #fdf2f8); border-color: #ec4899; color: #db2777; box-shadow: 0 12px 32px rgba(236,72,153,.2); }
.tint-emerald:hover .tile-card__orb { background: linear-gradient(135deg, #bbf7d0, #ecfdf5); border-color: #10b981; color: #059669; box-shadow: 0 12px 32px rgba(16,185,129,.2); }

@media (max-width: 991px) {
  .hp-tilegrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 575px) {
  .hp-tilegrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tile-card__orb {
    width: 78px;
    height: 78px;
    font-size: 28px;
  }
  .tile-card__orb .dg-icon {
    width: 30px;
    height: 30px;
  }
}

/* ══════════════════════════════════════════════════════════════
   POLAROID GALLERY — Success Stories (hp-polaroid)
   ══════════════════════════════════════════════════════════════ */

.hp-polaroid {
  background: var(--bg-warm);
  padding: 100px 0;
  overflow: hidden;
}

.hp-polaroid__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.hp-polaroid__head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 12px 0 12px;
  color: var(--ink);
}

.hp-polaroid__head p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

.hp-polaroid__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
}

.hp-polaroid__rope {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}

.pol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(var(--rot, 0deg));
  transition: box-shadow .4s ease, transform .4s ease, border-radius .4s ease;
  text-decoration: none;
}

.pol-card:hover {
  box-shadow: var(--shadow-xl);
  transform: rotate(0deg) translateY(-4px);
  border-radius: var(--r);
}

.pol-card__clip {
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -14px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 2px;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
  transition: opacity .3s ease;
}

.pol-card:hover .pol-card__clip {
  opacity: .4;
}

.pol-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.pol-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.pol-card:hover .pol-card__photo img {
  transform: scale(1.06);
}

.pol-card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
  backdrop-filter: blur(4px);
}

.pol-card__panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 22px;
}

.pol-card__num {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-light);
  letter-spacing: .06em;
}

.pol-card__client {
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
}

.pol-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.pol-card__desc {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pol-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.pol-card__stat {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,.06);
  color: var(--ink-muted);
  font-size: .72rem;
  font-weight: 600;
}

/* Full-card pastel tint variants */
.pol-blue { background: #eef4ff; }
.pol-blush { background: #fef2f2; }
.pol-mint { background: #ecfdf5; }
.pol-lavender { background: #faf5ff; }

.pol-blue .pol-card__panel { background: transparent; }
.pol-blush .pol-card__panel { background: transparent; }
.pol-mint .pol-card__panel { background: transparent; }
.pol-lavender .pol-card__panel { background: transparent; }

.pol-blue .pol-card__stat { background: rgba(37,99,235,.1); color: #1d4ed8; }
.pol-blush .pol-card__stat { background: rgba(220,38,38,.1); color: #b91c1c; }
.pol-mint .pol-card__stat { background: rgba(5,150,105,.1); color: #047857; }
.pol-lavender .pol-card__stat { background: rgba(124,58,237,.1); color: #6d28d9; }

.pol-blue .pol-card__num { color: #60a5fa; }
.pol-blush .pol-card__num { color: #f87171; }
.pol-mint .pol-card__num { color: #34d399; }
.pol-lavender .pol-card__num { color: #a78bfa; }

@media (max-width: 991px) {
  .hp-polaroid__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .hp-polaroid__gallery {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .pol-card {
    --rot: 0deg !important;
  }
}

/* Final homepage services bento override. Keep this after legacy section rules. */
.hp-services {
  padding: clamp(78px, 8vw, 118px) 0;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 54%, #fff 100%);
  overflow: hidden;
}
.hp-services .hp-section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.hp-services__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.hp-services__title {
  margin: 4px 0 14px;
  color: #0f172a;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}
.hp-services__intro {
  max-width: 660px;
  margin: 0 auto;
  color: #5f6f86;
  font-size: 1.04rem;
  line-height: 1.75;
}
.hp-services__map {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1240px;
  margin: 0 auto;
}
.hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 5; grid-row: span 2; }
.hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 6 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 9 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
.hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 7 / span 6; }
.hp-svc-row {
  --svc-accent: #2563eb;
  --svc-accent-2: #7dd3fc;
  --svc-tint: #f8fbff;
  --svc-border: rgba(148, 163, 184, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  overflow: hidden;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--svc-border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--svc-accent-2) 34%, transparent), transparent 34%),
    linear-gradient(135deg, #fff 0%, var(--svc-tint) 100%);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.hp-svc-row:hover,
.hp-svc-row:focus-visible {
  color: inherit;
  text-decoration: none;
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--svc-accent) 36%, #fff);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
}
.hp-svc-row:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--svc-accent) 34%, #fff);
  outline-offset: 4px;
}
.hp-svc-row__glow {
  position: absolute;
  inset: auto -54px -72px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--svc-accent-2) 42%, transparent);
  filter: blur(4px);
  opacity: 0.76;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: -1;
}
.hp-svc-row:hover .hp-svc-row__glow {
  opacity: 1;
  transform: scale(1.16) translate(-10px, -10px);
}
.hp-svc-row__mark {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--svc-accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}
.hp-svc-row__mark .dg-icon {
  width: 23px;
  height: 23px;
}
.hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 2.4vw, 32px);
  z-index: 2;
}
.hp-svc-row__text {
  max-width: calc(100% - 58px);
  flex-grow: 0;
}
.hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text strong {
  display: block;
  margin: 0 0 10px;
  color: #0f172a;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-shadow: none;
  text-wrap: balance;
}
.hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span {
  display: -webkit-box;
  overflow: hidden;
  max-width: none;
  color: #607088;
  font-size: 0.95rem;
  line-height: 1.62;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.hp-svc-row__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.hp-svc-row__foot small {
  color: color-mix(in srgb, var(--svc-accent) 76%, #334155);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: auto;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 62%, #111827));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--svc-accent) 24%, transparent);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.hp-svc-row__arrow .dg-icon {
  width: 19px;
  height: 19px;
  transition: transform 0.24s ease;
}
.hp-svc-row:hover .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(1):hover .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(4):hover .hp-svc-row__arrow {
  color: #fff;
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 62%, #111827));
  transform: scale(1.06);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--svc-accent) 31%, transparent);
}
.hp-svc-row:hover .hp-svc-row__arrow .dg-icon {
  transform: translateX(3px);
}
.hp-svc-row--mint {
  --svc-accent: #0f9f83;
  --svc-accent-2: #9ff3df;
  --svc-tint: #f1fffb;
}
.hp-svc-row--sky {
  --svc-accent: #2563eb;
  --svc-accent-2: #bae6fd;
  --svc-tint: #f3f8ff;
}
.hp-svc-row--lavender {
  --svc-accent: #7c3aed;
  --svc-accent-2: #ddd6fe;
  --svc-tint: #fbf7ff;
}
.hp-svc-row--peach {
  --svc-accent: #e26a2c;
  --svc-accent-2: #fed7aa;
  --svc-tint: #fff8f2;
}
.hp-svc-row--aqua {
  --svc-accent: #0891b2;
  --svc-accent-2: #a5f3fc;
  --svc-tint: #f1fdff;
}
.hp-svc-row--rose {
  --svc-accent: #db2777;
  --svc-accent-2: #fbcfe8;
  --svc-tint: #fff5fa;
}
.hp-svc-row--gold {
  --svc-accent: #b7791f;
  --svc-accent-2: #fde68a;
  --svc-tint: #fffbea;
}
.hp-services__map > .hp-svc-row:nth-child(1) {
  min-height: 392px;
  padding: 0;
  justify-content: stretch;
  background:
    radial-gradient(circle at 82% 16%, rgba(159, 243, 223, 0.78), transparent 32%),
    radial-gradient(circle at 10% 94%, rgba(186, 230, 253, 0.72), transparent 34%),
    linear-gradient(135deg, #fff 0%, #edfffb 48%, #f8fbff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
  padding: clamp(28px, 3.4vw, 44px);
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text {
  max-width: min(430px, calc(100% - 60px));
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span {
  font-size: 1.02rem;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.hp-services__map > .hp-svc-row:nth-child(3),
.hp-services__map > .hp-svc-row:nth-child(4) {
  min-height: 184px;
}
.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.hp-services__map > .hp-svc-row:nth-child(6),
.hp-services__map > .hp-svc-row:nth-child(7) {
  min-height: 220px;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
}
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
  max-width: min(460px, calc(100% - 58px));
}

@media (max-width: 1080px) {
  .hp-services__map {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 6; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 1 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 4 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 1 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 4 / span 3; }
  .hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
  .hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 1 / span 6; }
}

@media (max-width: 680px) {
  .hp-services {
    padding: 64px 0;
  }
  .hp-services__head {
    margin-bottom: 30px;
  }
  .hp-services__map {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hp-services__map > .hp-svc-row:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 210px;
    aspect-ratio: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) {
    min-height: 300px;
  }
  .hp-svc-row__mark {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    padding: 22px;
  }
  .hp-svc-row__text,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
    max-width: calc(100% - 54px);
  }
  .hp-svc-row__foot small {
    font-size: 0.72rem;
  }
}
/* Final services bento polish: readable content, floating arrow-only CTA. */
.hp-services__map {
  grid-auto-rows: auto;
  align-items: stretch;
  overflow: visible;
}
.hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 5; grid-row: span 2; }
.hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 6 / span 4; }
.hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 10 / span 3; }
.hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; }
.hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 7 / span 6; }
.hp-svc-row,
.hp-services__map > .hp-svc-row:nth-child(1),
.hp-services__map > .hp-svc-row:nth-child(3),
.hp-services__map > .hp-svc-row:nth-child(4),
.hp-services__map > .hp-svc-row:nth-child(6),
.hp-services__map > .hp-svc-row:nth-child(7) {
  min-height: auto;
  overflow: hidden;
}
.hp-svc-row {
  padding: 0;
  border-color: rgba(148, 163, 184, 0.2);
}
.hp-svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.9), transparent 26%);
  z-index: -1;
}
.hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  display: block;
  min-width: 0;
  padding: clamp(26px, 2.8vw, 38px);
  padding-right: clamp(88px, 8vw, 112px);
  padding-bottom: clamp(86px, 8vw, 104px);
}
.hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
  max-width: none;
  width: 100%;
}
.hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text strong {
  overflow-wrap: anywhere;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
}
.hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text span {
  display: block;
  overflow: visible;
  color: #5f6f86;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.hp-svc-row__foot,
.hp-svc-row__foot small {
  display: none;
}
.hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  z-index: 4;
}
.hp-svc-row__mark {
  top: 24px;
  right: 24px;
  z-index: 3;
}
.hp-services__map > .hp-svc-row:nth-child(1) {
  background:
    radial-gradient(circle at 84% 14%, rgba(153, 246, 228, 0.88), transparent 31%),
    radial-gradient(circle at 12% 92%, rgba(186, 230, 253, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #ecfffb 46%, #f7fbff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(2) {
  background:
    radial-gradient(circle at 86% 80%, rgba(186, 230, 253, 0.72), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(3) {
  background:
    radial-gradient(circle at 92% 86%, rgba(221, 214, 254, 0.78), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fbf7ff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(4) {
  background:
    radial-gradient(circle at 84% 90%, rgba(254, 215, 170, 0.74), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #fff8f2 100%);
}
.hp-services__map > .hp-svc-row:nth-child(5) {
  background:
    radial-gradient(circle at 90% 88%, rgba(165, 243, 252, 0.8), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f1fdff 100%);
}
.hp-services__map > .hp-svc-row:nth-child(6) {
  background:
    radial-gradient(circle at 92% 82%, rgba(251, 207, 232, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fff5fa 100%);
}
.hp-services__map > .hp-svc-row:nth-child(7) {
  background:
    radial-gradient(circle at 92% 82%, rgba(253, 230, 138, 0.82), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fffbea 100%);
}

@media (min-width: 1081px) {
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
    min-height: 430px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .hp-services__map > .hp-svc-row:nth-child(2) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(5) .hp-svc-row__body {
    min-height: 220px;
  }
}

@media (max-width: 1080px) {
  .hp-services__map > .hp-svc-row:nth-child(1),
  .hp-services__map > .hp-svc-row:nth-child(2),
  .hp-services__map > .hp-svc-row:nth-child(3),
  .hp-services__map > .hp-svc-row:nth-child(4),
  .hp-services__map > .hp-svc-row:nth-child(5),
  .hp-services__map > .hp-svc-row:nth-child(6),
  .hp-services__map > .hp-svc-row:nth-child(7) {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    padding: 24px;
    padding-right: 84px;
    padding-bottom: 84px;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) {
    min-height: auto;
  }
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }
  .hp-svc-row__arrow,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
  .hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
    right: 22px;
    bottom: 22px;
  }
}
/* Final final: premium services bento layout with full readable copy. */
.hp-services .container {
  max-width: 1360px;
}
.hp-services__map {
  max-width: 1320px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(18px, 2vw, 26px);
}
.hp-services__map > .hp-svc-row:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}
.hp-services__map > .hp-svc-row:nth-child(2) {
  grid-column: 5 / span 4;
  grid-row: 1;
}
.hp-services__map > .hp-svc-row:nth-child(3) {
  grid-column: 9 / span 4;
  grid-row: 1;
}
.hp-services__map > .hp-svc-row:nth-child(4) {
  grid-column: 5 / span 4;
  grid-row: 2;
}
.hp-services__map > .hp-svc-row:nth-child(5) {
  grid-column: 9 / span 4;
  grid-row: 2;
}
.hp-services__map > .hp-svc-row:nth-child(6) {
  grid-column: 1 / span 6;
  grid-row: 3;
}
.hp-services__map > .hp-svc-row:nth-child(7) {
  grid-column: 7 / span 6;
  grid-row: 3;
}
.hp-svc-row {
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
}
.hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  display: flex;
  min-width: 0;
  min-height: 236px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(26px, 2.5vw, 36px);
  padding-right: clamp(88px, 7vw, 108px);
  padding-bottom: 92px;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body {
  min-height: 498px;
  justify-content: center;
}
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
  min-height: 250px;
}
.hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text {
  width: 100%;
  max-width: none;
  min-width: 0;
}
.hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text strong {
  display: block;
  max-width: 100%;
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: wrap;
  color: #0d172a;
  font-size: clamp(1.22rem, 1.42vw, 1.55rem);
  line-height: 1.16;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text strong {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
}
.hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(3) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text span {
  display: block;
  max-width: 100%;
  margin-top: 14px;
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: anywhere;
  overflow: visible;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  color: #52647c;
  font-size: 0.98rem;
  line-height: 1.62;
}
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__text span,
.hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__text span {
  font-size: 1rem;
}
.hp-svc-row__mark {
  width: 50px;
  height: 50px;
  top: 24px;
  right: 24px;
}
.hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__arrow,
.hp-services__map > .hp-svc-row:nth-child(4) .hp-svc-row__arrow {
  right: 28px;
  bottom: 28px;
}

@media (max-width: 1080px) {
  .hp-services .container {
    max-width: var(--maxw);
  }
  .hp-services__map > .hp-svc-row:nth-child(1) { grid-column: 1 / span 6; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(2) { grid-column: 1 / span 3; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(3) { grid-column: 4 / span 3; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(4) { grid-column: 1 / span 3; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(5) { grid-column: 4 / span 3; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(6) { grid-column: 1 / span 6; grid-row: auto; }
  .hp-services__map > .hp-svc-row:nth-child(7) { grid-column: 1 / span 6; grid-row: auto; }
}

@media (max-width: 680px) {
  .hp-services__map {
    grid-template-columns: 1fr;
  }
  .hp-services__map > .hp-svc-row:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }
  .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(1) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(6) .hp-svc-row__body,
  .hp-services__map > .hp-svc-row:nth-child(7) .hp-svc-row__body {
    min-height: auto;
    padding: 24px;
    padding-right: 84px;
    padding-bottom: 86px;
  }
}
