/* =========================================================
   Darisham Consulting & Allied Services — Site Stylesheet
   Design tokens: deep navy + signal teal, pathway motif
   ========================================================= */

:root {
  --navy-900: #0d0d0d;
  --navy-800: #181818;
  --navy-700: #242424;
  --navy-600: #333333;
  --teal-500: #E87722;
  --teal-400: #f09040;
  --teal-100: #fde8d0;
  --ink: #111111;
  --slate: #555555;
  --slate-light: #888888;
  --bg-soft: #f5f5f5;
  --bg-soft-2: #eeeeee;
  --line: #e0e0e0;
  --white: #ffffff;
  --gold: #d6a23c;

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 16px 40px -20px rgba(0,0,0,0.22);
  --shadow-soft: 0 8px 24px -12px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 140px; /* topbar 40px + header 100px */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
p { margin: 0; }
section { position: relative; }

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

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--teal-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-500);
}
.eyebrow.on-dark { color: var(--teal-400); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-500);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--teal-400); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-400); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn-outline-dark:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }

/* ---------- Header ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  background: var(--teal-500);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 40px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.topbar-item:hover { opacity: 0.8; }
.topbar-item svg {
  width: 13px; height: 13px;
  stroke: var(--white);
  flex-shrink: 0;
}
.topbar-hours { margin-left: auto; }
.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 1; min-width: 0; }
.brand-logo-img { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo-img img { height: 78px; width: auto; display: block; object-fit: contain; max-width: 280px; }
.brand-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: nowrap;
    border-left: 1px solid rgba(255,255,255,0.20);
    padding-left: 12px;
    margin-left: 10px;
    line-height: 1.3;
}
.brand-text { min-width: 0; white-space: nowrap; }
.brand-name { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1.1; white-space: nowrap; }
.brand-sub { color: var(--slate-light); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); white-space: nowrap; display: block; }

.nav { display: flex; align-items: center; gap: 16px; min-width: 0; flex-shrink: 1; }
.nav-list { display: flex; align-items: center; gap: 18px; list-style: none; flex-wrap: nowrap; }
.nav-list > li { position: relative; flex-shrink: 0; }
.nav-list a.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 2px;
  white-space: nowrap;
  transition: color 0.18s;
}
.nav-list a.nav-link:hover, .nav-list li.active > a.nav-link { color: var(--teal-400); }
.caret { width: 9px; height: 9px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .8; flex-shrink: 0; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 270px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
  white-space: normal;
}
.nav-list li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: normal;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--navy-900); }
.dropdown a span { display: block; font-size: 0.76rem; color: var(--slate); font-weight: 400; margin-top: 2px; white-space: normal; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: max-content; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- Hero ---------- */
/* ── Hero — full-width background image with text overlay ── */
.hero-fullbg {
  position: relative;
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-swiper-section { padding: 0; display: block; }
.heroSwiper { width: 100%; }
.heroSwiper .swiper-slide {
  position: relative;
  min-height: 600px;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.heroSwiper .swiper-wrapper { align-items: stretch; }

/* Background image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay — heavy on left for text readability, lighter on right to show city */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(10,10,10,0.90) 0%,
      rgba(10,10,10,0.75) 40%,
      rgba(10,10,10,0.45) 65%,
      rgba(10,10,10,0.15) 85%,
      rgba(10,10,10,0.05) 100%
    ),
    linear-gradient(to top,
      rgba(10,10,10,0.5) 0%,
      transparent 40%
    );
}

/* Content sits above both layers */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Text column — max 55% so city shows on right */
.hero-text {
  max-width: 58%;
}

.hero .wrap,
.hero-fullbg .wrap { display: block; position: relative; z-index: 2; }
.hero h1,
.hero-fullbg h1 { font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--white); font-weight: 700; line-height: 1.18; }
.hero-fullbg h1 .accent { color: var(--teal-400); }
.hero-fullbg p.lead { color: rgba(255,255,255,0.78); font-size: 1rem; margin-top: 18px; max-width: 500px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: nowrap;
  align-items: flex-start;
}
.hero-stat {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; white-space: nowrap; }
.hero-stat .num span { color: var(--teal-400); }
.hero-stat .label { font-size: 0.68rem; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }

/* Keep eyebrow style */
.eyebrow.on-dark,
.hero-fullbg .eyebrow { color: var(--teal-400); }

/* ── Hero bleed image — fades into dark background (legacy, unused) ── */
.hero-visual { position: relative; }

.hero-blend-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

/* The actual photo — masked to bleed into bg on left + bottom */
.hero-blend-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Fade left edge into hero bg, fade bottom too */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 30%),
    linear-gradient(to top,    transparent 0%, black 20%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 30%),
    linear-gradient(to top,    transparent 0%, black 20%);
  mask-composite: intersect;
  border-radius: 0;
}

/* Fallback stat panel shown when image fails / not uploaded yet */
.hero-stat-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}
.hsp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px 18px;
  backdrop-filter: blur(8px);
}
.hsp-card.accent {
  background: rgba(232,119,34,0.1);
  border-color: rgba(232,119,34,0.3);
}
.hsp-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hsp-card.accent .hsp-num { color: var(--teal-500); }
.hsp-num span { color: var(--teal-500); }
.hsp-card.accent .hsp-num span { color: var(--white); }
.hsp-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.4;
}

/* Hide fallback panel when real image loads */
.hero-blend-img:not([style*="display:none"]) ~ .hero-stat-panel { display: none; }

.page-hero {
  background: radial-gradient(circle at 85% 10%, rgba(232,119,34,0.18), transparent 55%), var(--navy-900);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: left;
}
.page-hero .crumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.page-hero .crumb a:hover { color: var(--teal-400); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.2vw, 2.6rem); max-width: 760px; }
.page-hero p { color: rgba(255,255,255,0.72); margin-top: 16px; max-width: 640px; font-size: 1.02rem; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.hero-icon-panel {
  flex-shrink: 0; width: 132px; height: 132px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.hero-icon-panel svg { width: 76px; height: 76px; }

/* ---------- Trust strip ---------- */

.trust {
    background: #ffffff;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust .wrap {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    padding: 0;
}

/* Remove Trusted By text */
.trust-label {
    display: none;
}

.trust-logos {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 130px; /* Increased */
    align-items: center;
}

.trust-scroll {
    animation: trust-marquee 35s linear infinite;
    display: flex;
    align-items: center;
    gap: 40px; /* spacing between logos */
    width: max-content;
}

.trust-scroll:hover {
    animation-play-state: paused;
}
.trust-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 28px;
    border-right: 1px solid var(--line);
    height: 130px; /* match logo area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-chip img {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-chip img.tall-logo {
    max-height: 105px;
}


@keyframes trust-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-chip{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:120px;
    transition:all .3s ease;
}

.logo-chip:hover{
    background:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(22,50,79,.12);
}

.logo-chip img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;

    /* Show full color by default */
    filter: none;
    opacity: 1;

    transition: transform .35s ease,
                filter .35s ease,
                opacity .35s ease;
}
.logo-chip:hover img {
    transform: scale(1.08);
    filter: brightness(1.08);
}

.logo-chip strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo-chip small {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  font-family: var(--font-mono);
  font-weight: 500;
  line-height: 1;
}


/* ---------- Sections generic ---------- */
.section { padding: 84px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 600; }
.section-head p { margin-top: 14px; color: var(--slate); font-size: 1.02rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-foot-link { display: flex; justify-content: flex-end; margin-bottom: -18px; font-size: 0.9rem; font-weight: 600; color: var(--navy-900); }
.section-foot-link a:hover { color: var(--teal-500); }

.detail-section{
    padding-bottom:24px;
}

.cta-section{
    padding-top:24px;
    padding-bottom:64px;
}

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-500) #e8e8e8;
  cursor: grab;
}
.svc-scroll-wrap:active { cursor: grabbing; }
.svc-scroll-wrap::-webkit-scrollbar { height: 6px; display: block; }
.svc-scroll-wrap::-webkit-scrollbar-thumb { background: var(--teal-500); border-radius: 4px; }
.svc-scroll-wrap::-webkit-scrollbar-track { background: #e8e8e8; border-radius: 4px; }
.svc-grid-scroll { display: flex !important; flex-wrap: nowrap !important; gap: 22px; width: max-content !important; align-items: stretch; padding: 4px 2px 8px; grid-template-columns: unset !important; }
.svc-grid-scroll .svc-card { width: 264px; flex-shrink: 0; display: flex; flex-direction: column; }
.case-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-500) #e8e8e8;
  cursor: grab;
  /* Ensure inner content doesn't wrap */
  white-space: nowrap;
}
.case-scroll-wrap > * {
  white-space: normal;
}
.case-scroll-wrap:active { cursor: grabbing; }
.case-scroll-wrap::-webkit-scrollbar { height: 6px; display: block; }
.case-scroll-wrap::-webkit-scrollbar-thumb { background: var(--teal-500); border-radius: 4px; }
.case-scroll-wrap::-webkit-scrollbar-track { background: #e8e8e8; border-radius: 4px; }
.case-grid-scroll { display: flex !important; flex-wrap: nowrap !important; gap: 22px; width: max-content !important; align-items: stretch; padding: 4px 2px 8px; grid-template-columns: unset !important; }
.case-grid-scroll .case-card { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; }
.svc-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color .2s ease;
}
.svc-card:hover { transform: none; box-shadow: 0 0 0 2px var(--teal-500), var(--shadow-card); border-color: transparent; }
.card-visual {
  height: 110px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-visual svg { width: 72px; height: 72px; position: relative; z-index: 1; }
.cv-cyber  { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-bottom: 2px solid #E87722; }
.cv-digital{ background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-bottom: 2px solid #E87722; }
.cv-policy { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-bottom: 2px solid #E87722; }
.cv-staff  { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-bottom: 2px solid #E87722; }
.cv-compliance { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-bottom: 2px solid #E87722; }
.cv-execsearch { background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); border-bottom: 2px solid #E87722; }
.svc-card .card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy-900);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--teal-400); }
.svc-card h3 { font-size: 1rem; margin-bottom: 8px; }
.svc-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.svc-card ul li { font-size: 0.82rem; color: var(--slate); padding-left: 14px; position: relative; }
.svc-card ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-500); position: absolute; left: 0; top: 8px; }
.svc-link { font-size: 0.88rem; font-weight: 700; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }
.svc-link:hover { color: var(--teal-500); }
.svc-link svg { width: 13px; height: 13px; }

/* ---------- Case studies ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { scroll-margin-top: 160px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow .2s ease, transform .2s ease; }
.case-card:hover { box-shadow: 0 0 0 2px var(--teal-500), var(--shadow-card); transform: none; }
.case-banner {
  height: 132px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 18px;
  position: relative;
  overflow: hidden;
}
.case-banner::after, .card-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,119,34,0.5) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.35;
}
.case-banner .banner-icon { position: absolute; right: 14px; bottom: -10px; width: 64px; height: 64px; opacity: 0.22; z-index: 0; }
.case-banner .banner-icon svg { width: 100%; height: 100%; stroke: #fff; }
.case-banner span.tag { position: relative; z-index: 1; }
.case-body { padding: 22px 24px 26px; }
.case-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.case-body p { font-size: 0.9rem; color: var(--slate); margin-bottom: 14px; }
.case-link { font-size: 0.86rem; font-weight: 700; color: var(--teal-500); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.case-link svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.2s ease; }
.case-card:hover .case-link svg { transform: translateX(3px); }

/* ---------- Light service cards (homepage) ---------- */
.svc-card.light {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(17,17,17,0.04);
}
.svc-card.light:hover { box-shadow: 0 14px 32px rgba(17,17,17,0.09); border-color: transparent; transform: translateY(-3px); }
.svc-card.light .card-visual { height: auto; background: none; border-bottom: none; justify-content: flex-start; padding: 24px 20px 0; }
.svc-card.light .card-visual::after { display: none; }
.svc-icon-badge { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 22px -8px rgba(17,17,17,0.35); }
.svc-icon-badge svg { width: 27px; height: 27px; stroke: #fff; position: static; }
.badge-blue   { background: linear-gradient(135deg, #2f6fed, #1c4fc0); }
.badge-orange { background: linear-gradient(135deg, var(--teal-400), var(--teal-500)); }
.badge-green  { background: linear-gradient(135deg, #24b47e, #17835a); }
.badge-purple { background: linear-gradient(135deg, #9b6bf2, #6d3fc9); }
.badge-amber  { background: linear-gradient(135deg, #f5a623, #d6820a); }
.badge-rose   { background: linear-gradient(135deg, #f2578a, #cc2f61); }
.badge-indigo { background: linear-gradient(135deg, #5b6cf0, #3b45c4); }
.svc-card.light .card-body { padding: 18px 20px 24px; }
.svc-card.light h3 { font-size: 1.02rem; }
.svc-card.light ul li::before { background: var(--slate-light); }

/* ---------- Light case-study cards (homepage) ---------- */
.case-card.light { border: 1px solid var(--line); box-shadow: 0 2px 10px rgba(17,17,17,0.04); }
.case-card.light:hover { box-shadow: 0 14px 32px rgba(17,17,17,0.09); border-color: transparent; transform: translateY(-3px); }
.case-banner.light-banner {
  height: 138px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 700;
}
.case-banner.light-banner::after { display: none; }
.case-banner.light-banner .tag {
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(17,17,17,0.1);
  position: relative;
  z-index: 1;
}
.case-banner.light-banner .banner-icon {
  position: absolute; right: 16px; bottom: 14px; top: auto;
  width: 68px; height: 68px; opacity: 0.9; z-index: 0;
}
.case-banner.light-banner .banner-icon svg { stroke: rgba(17,17,17,0.35); }
.lb-blue   { background: linear-gradient(135deg, #dce7ff, #eef3ff); }
.lb-green  { background: linear-gradient(135deg, #d9f5e8, #eefaf3); }
.lb-amber  { background: linear-gradient(135deg, #fde8d0, #fff3e4); }
.lb-purple { background: linear-gradient(135deg, #ece2fb, #f5eefe); }
.lb-rose   { background: linear-gradient(135deg, #fbe1e9, #fdf0f4); }
.lb-indigo { background: linear-gradient(135deg, #e1e4fc, #f0f1fe); }
.case-card.light .case-body h3 { font-size: 1.02rem; }
.case-card.light .case-link { color: var(--navy-900); }
.case-card.light .case-link:hover { color: var(--teal-500); }

/* ---------- Success stories grid header (homepage) ---------- */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.view-all-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.view-all-link:hover { color: var(--teal-500); }
.view-all-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.view-all-link:hover svg { transform: translateX(3px); }
@media (max-width: 640px) {
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Success story photo banners (real client images) ---------- */
.case-banner-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--navy-900);
}
.case-banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.case-card:hover .case-banner-photo img { transform: scale(1.06); }
.case-banner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.78) 0%, rgba(10,14,20,0.15) 55%, rgba(10,14,20,0) 75%);
}
.case-banner-photo .tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  background: rgba(255,255,255,0.96);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(17,17,17,0.15);
}
@media (max-width: 640px) { .case-banner-photo { height: 160px; } }

/* ---------- Success Stories: interactive spotlight (legacy, unused) ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: stretch;
}
.spotlight-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spotlight-tab {
  position: relative;
  text-align: left;
  padding: 15px 20px 15px 24px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}
.spotlight-tab:hover { background: rgba(17,17,17,0.035); }
.spotlight-tab.active { background: var(--white); box-shadow: 0 6px 18px rgba(17,17,17,0.07); }
.spotlight-tab-text { display: flex; flex-direction: column; gap: 3px; }
.spotlight-tab-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--navy-900); transition: color 0.2s ease; }
.spotlight-tab.active .spotlight-tab-name { color: var(--teal-500); }
.spotlight-tab-desc { font-size: 0.78rem; color: var(--slate-light); }
.spotlight-tab-progress {
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.spotlight-tab-progress i {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 0%;
  background: var(--teal-500);
  border-radius: 3px;
}
@keyframes spotlightFill { from { height: 0%; } to { height: 100%; } }

.spotlight-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(17,17,17,0.04);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.spotlight-panel.in { opacity: 1; transform: translateY(0); }
.spotlight-banner {
  height: 200px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.spotlight-banner .tag {
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(17,17,17,0.1);
  position: relative;
  z-index: 1;
}
.spotlight-banner .banner-icon {
  position: absolute; right: 22px; bottom: 18px;
  width: 92px; height: 92px; opacity: 0.9;
}
.spotlight-banner .banner-icon svg { width: 100%; height: 100%; stroke: rgba(17,17,17,0.32); }
.spotlight-body { padding: 30px 34px 34px; }
.spotlight-body h3 { font-size: 1.32rem; margin-bottom: 12px; max-width: 480px; }
.spotlight-body p { font-size: 0.98rem; color: var(--slate); margin-bottom: 22px; max-width: 520px; }
.spotlight-stats { display: flex; gap: 32px; margin-bottom: 24px; }
.spotlight-stat { display: flex; flex-direction: column; }
.spotlight-stat .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy-900); }
.spotlight-stat .label { font-size: 0.78rem; color: var(--slate-light); }
.spotlight-panel .case-link { font-size: 0.92rem; }

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-tabs { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .spotlight-tab { flex: 0 0 auto; padding: 12px 16px 12px 18px; white-space: nowrap; }
  .spotlight-tab-progress { left: 0; top: auto; bottom: 0; height: 3px; width: calc(100% - 6px); left: 3px; }
  .spotlight-tab-progress i { width: 0%; height: 100%; }
  @keyframes spotlightFill { from { width: 0%; } to { width: 100%; } }
  .spotlight-banner { height: 160px; }
  .spotlight-body { padding: 24px 22px 28px; }
  .spotlight-stats { gap: 22px; }
}


/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.why-card {
  text-align: center;
  padding: 24px 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(232,119,34,0.08);
  border: 1.5px solid rgba(232,119,34,0.25);
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--teal-500); }
.why-card .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--navy-900); line-height: 1; }
.why-card .label { font-size: 0.78rem; color: var(--slate); margin-top: 6px; line-height: 1.4; }

/* ---------- Awards & Recognition (standalone banner) ---------- */

/* ---------- Award section ---------- */
.award-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}
.award-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.award-img-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--line);
}
.award-img-link:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.award-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.award-body { padding-top: 8px; }
.award-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--teal-500);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.award-badge-row svg { stroke: var(--teal-500); flex-shrink: 0; }
.award-body h3 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 14px; color: var(--navy-900); }
.award-body p { color: var(--slate); font-size: 0.9rem; line-height: 1.7; }
.award-quote {
  border-left: 3px solid var(--teal-500);
  margin: 20px 0 0;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--slate);
  font-style: italic;
  line-height: 1.65;
}
.award-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-500);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .award-flex { grid-template-columns: 1fr; gap: 28px; }
  .award-images { grid-template-columns: 1fr 1fr; }
  .award-img { height: 160px; }
}
.badge-banner {
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 42px 46px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}
.badge-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,119,34,0.45) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.2;
}
.badge-banner::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,119,34,0.25), transparent 70%);
  right: -80px; top: -80px;
}
.badge-graphic { flex-shrink: 0; width: 130px; height: 130px; position: relative; z-index: 1; }
.badge-graphic svg { width: 100%; height: 100%; }
.badge-content { position: relative; z-index: 1; flex: 1; }
.badge-content .eyebrow { color: var(--teal-400); }
.badge-content h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 10px; }
.badge-content p { color: rgba(255,255,255,0.68); font-size: 0.96rem; max-width: 600px; }
.badge-actions { flex-shrink: 0; position: relative; z-index: 1; }

/* ---------- Page hero skyline strip ---------- */
.page-hero { overflow: hidden; }
.page-hero-skyline { position: absolute; left: 0; right: 0; bottom: 0; height: 92px; opacity: 0.55; pointer-events: none; }
.page-hero-skyline svg { width: 100%; height: 100%; display: block; }



/* ---------- Leadership ---------- */
.lead-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lead-card { text-align: left; }
.avatar {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-700), var(--teal-500));
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.avatar-photo {
  background: #111;
  overflow: hidden;
  font-size: 0;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  margin-bottom: 16px;
  position: relative;
}
.avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
  filter: contrast(1.04) brightness(0.97);
}
/* Black blazer overlay — creates formal dark attire at bottom of frame */
.blazer-photo { position: relative; }
.blazer-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(to top,
      rgba(10,10,10,0.82) 0%,
      rgba(10,10,10,0.55) 22%,
      rgba(10,10,10,0.15) 44%,
      transparent 62%
    ),
    /* subtle left + right lapel darkening */
    linear-gradient(to right,
      rgba(10,10,10,0.22) 0%,
      transparent 28%,
      transparent 72%,
      rgba(10,10,10,0.22) 100%
    );
  pointer-events: none;
}
/* Consistent symmetrical frame for all photos */
.blazer-photo img {
  object-position: top center;
  transform: scale(1.04);
  transform-origin: top center;
}
.lead-card h4 { font-size: 1.05rem; font-family: var(--font-display); font-weight: 700; margin-top: 0; }
.lead-card .role { color: var(--teal-500); font-size: 0.82rem; font-weight: 600; margin-top: 3px; letter-spacing: 0.02em; }
.lead-card p.bio { font-size: 0.85rem; color: var(--slate); margin-top: 10px; line-height: 1.65; }



/* Case banner colour variants */
.case-banner { background: var(--navy-900); height: 100px; position: relative; display: flex; align-items: flex-end; padding: 14px 18px; }
.cb-digital  { background: linear-gradient(135deg, #111 0%, #1a2a1a 100%); }
.cb-health   { background: linear-gradient(135deg, #111 0%, #1a1a2a 100%); }
.cb-govt     { background: linear-gradient(135deg, #111 0%, #2a1a10 100%); }
.cb-cyber    { background: linear-gradient(135deg, #0d0d1a 0%, #111 100%); }
.cb-policy   { background: linear-gradient(135deg, #111 0%, #1a2a2a 100%); }
.cb-staff    { background: linear-gradient(135deg, #1a1010 0%, #111 100%); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 2.4rem; color: var(--teal-500); line-height: 1; }
.testi-card p.quote { font-size: 0.96rem; color: var(--ink); margin: 14px 0 20px; }
.testi-foot { display: flex; align-items: center; gap: 12px; }
.testi-foot .ini { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-900); color: var(--white); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.testi-foot .name { font-weight: 700; font-size: 0.9rem; }
.testi-foot .org { font-size: 0.8rem; color: var(--slate); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy-900);
  background-image: radial-gradient(circle at 12% 30%, rgba(232,119,34,0.18), transparent 45%);
  border-radius: var(--radius);
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  color: var(--white);
  flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); font-size: 1.5rem; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.65); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr; gap: 30px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-logo-img img { height: 64px; }
.footer-grid p.about { font-size: 0.86rem; margin-top: 14px; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-col h5 { color: var(--white); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.footer-col a:hover { color: var(--teal-400); }
.footer-col .contact-line { font-size: 0.88rem; color: rgba(255,255,255,0.62); display: flex; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--teal-400); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; }
.social-row a svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.7); }
.social-row a:hover { border-color: var(--teal-400); background: rgba(232,119,34,0.12); }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .2s ease, transform .2s ease; }
.industry-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.industry-card .ico { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); display: grid; place-items: center; margin-bottom: 18px; }
.industry-card .ico svg { width: 26px; height: 26px; stroke: var(--teal-400); }
.industry-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.88rem; color: var(--slate); }

/* ---------- Insights / Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow .2s ease, transform .2s ease; }
.blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

/* ── Blog card: image, badge, body (blog.html, homepage preview, related posts) ── */
.blog-card-img { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-900); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,13,13,0.72);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.blog-card-body { padding: 22px 22px 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; color: var(--slate-light); font-family: var(--font-mono); }
.blog-card-meta svg { width: 12px; height: 12px; stroke: var(--slate-light); flex-shrink: 0; }
.blog-card-body h3 { font-size: 1.05rem; line-height: 1.4; font-weight: 700; margin: 0 0 10px; color: var(--ink); }
.blog-card-body .excerpt { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 700; color: var(--teal-500); }
.blog-read-more svg { width: 15px; height: 15px; stroke: var(--teal-500); transition: transform 0.2s ease; }
.blog-card:hover .blog-read-more svg { transform: translateX(3px); }

/* ── Blog listing hero + filter bar (blog.html) ── */
.blog-hero {
  background: radial-gradient(circle at 85% 10%, rgba(232,119,34,0.18), transparent 55%), var(--navy-900);
  color: var(--white);
  padding: 64px 0 40px;
}
.blog-hero .crumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.blog-hero .crumb a { color: rgba(255,255,255,0.55); }
.blog-hero .crumb a:hover { color: var(--teal-400); }
.blog-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.2vw, 2.5rem); max-width: 760px; margin-top: 8px; }
.blog-hero .lead { color: rgba(255,255,255,0.72); margin-top: 16px; max-width: 680px; font-size: 1.02rem; }

.blog-filter-bar { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 140px; z-index: 20; }
.blog-filter-inner { display: flex; gap: 10px; overflow-x: auto; padding: 16px 0; -webkit-overflow-scrolling: touch; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.18s ease;
}
.filter-btn:hover { border-color: var(--teal-500); color: var(--teal-500); }
.filter-btn.active { background: var(--teal-500); border-color: var(--teal-500); color: var(--white); }
.filter-btn .filter-count { font-size: 0.72rem; opacity: 0.75; }
.filter-btn.active .filter-count { opacity: 0.9; }

/* ── Pagination ── */
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.page-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}
.page-num:hover { border-color: var(--teal-500); color: var(--teal-500); }
.page-num.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.page-num.dots { border: none; }

/* ── Homepage blog preview section ── */
.hp-blog-section { background: var(--bg-soft); }
.hp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.hp-blog-foot { display: flex; justify-content: center; margin-top: 40px; }

@media (max-width: 1000px) {
  .blog-grid, .hp-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-filter-bar { top: 116px; }
}
@media (max-width: 720px) {
  .blog-grid, .hp-blog-grid { grid-template-columns: 1fr; }
  .blog-filter-bar { top: 106px; }
  .blog-hero { padding: 44px 0 32px; }
}
.blog-banner { height: 150px; background: linear-gradient(135deg, var(--teal-500), var(--navy-700)); position: relative; overflow: hidden; }
.blog-banner span.date-pill { position: absolute; bottom: 12px; left: 16px; font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.45); padding: 4px 9px; border-radius: 999px; z-index: 1; }
.blog-banner .blog-icon { position: absolute; right: 14px; bottom: -8px; width: 60px; height: 60px; opacity: 0.25; }
.blog-banner .blog-icon svg { width: 100%; height: 100%; stroke: #fff; }
.blog-body { padding: 22px 24px 26px; }
.blog-body .date { font-size: 0.76rem; color: var(--slate-light); font-family: var(--font-mono); }
.blog-body h3 { font-size: 1.04rem; margin: 10px 0; }
.blog-body p { font-size: 0.88rem; color: var(--slate); margin-bottom: 14px; }

/* ---------- About page ---------- */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 26px; }
.about-stats .stat { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 18px 20px; }
.about-stats .stat .num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy-900); }
.about-stats .stat .num span { color: var(--teal-500); }
.about-stats .stat .label { font-size: 0.82rem; color: var(--slate); margin-top: 2px; }

.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pillar-card { padding: 28px; border-radius: var(--radius); background: var(--bg-soft); }
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.pillar-card ul { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.pillar-card li { font-size: 0.88rem; color: var(--slate); padding-left: 16px; position: relative; }
.pillar-card li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-500); position: absolute; left: 0; top: 7px; }

/* ---------- Service detail page ---------- */
.detail-flex { display: grid; grid-template-columns: 1.3fr 0.95fr; gap: 32px; align-items: start; }
.detail-block { margin-bottom: 20px; }
.detail-block h2 { font-size: 1.4rem; margin-bottom: 14px; }
.detail-block p { color: var(--slate); font-size: 0.98rem; margin-bottom: 12px; }
.detail-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.detail-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--ink); }
.detail-list .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-100); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.detail-list .tick svg { width: 11px; height: 11px; stroke: var(--teal-500); }
.cap-card { background: var(--bg-soft); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 16px; }
.cap-card h4 { font-size: 1rem; margin-bottom: 10px; }
.cap-card p.lead-text { font-size: 0.88rem; color: var(--slate); margin-bottom: 12px; }
.side-card { background: var(--navy-900); border-radius: var(--radius); padding: 28px 26px; color: var(--white); margin-bottom: 22px; }
.side-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.side-card ul { display: flex; flex-direction: column; gap: 11px; }
.side-card li { font-size: 0.86rem; color: rgba(255,255,255,0.72); padding-left: 16px; position: relative; list-style: none; }
.side-card li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-400); position: absolute; left: 0; top: 7px; }
.side-card.light { background: var(--bg-soft); color: var(--ink); }
.side-card.light h4 { color: var(--navy-900); }
.side-card.light li { color: var(--slate); }
.side-card.light li::before { background: var(--teal-500); }
.stat-line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.stat-line:last-child { border-bottom: none; }
.stat-line b { font-family: var(--font-display); color: var(--navy-900); }

/* ---------- Contact page ---------- */
.contact-flex { display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ico svg { width: 20px; height: 20px; stroke: var(--navy-800); }
.info-row h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-row p { font-size: 0.9rem; color: var(--slate); }
.form-card { background: var(--bg-soft); border-radius: var(--radius); padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { font-size: 0.84rem; font-weight: 600; color: var(--navy-900); margin-bottom: 7px; display: block; }
.form-grid input, .form-grid textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.92rem; background: var(--white);
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--teal-400); border-color: transparent; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 30px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Careers ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { text-align: center; padding: 26px 18px; border-radius: var(--radius); background: var(--bg-soft); }
.value-card .ico { width: 50px; height: 50px; border-radius: 50%; background: var(--white); display: grid; place-items: center; margin: 0 auto 14px; }
.value-card .ico svg { width: 22px; height: 22px; stroke: var(--teal-500); }
.value-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.value-card p { font-size: 0.84rem; color: var(--slate); }

.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { padding: 22px 4px; border-top: 2px solid var(--teal-500); }
.process-step .step-no { font-family: var(--font-mono); font-size: 0.78rem; color: var(--teal-500); }
.process-step h4 { font-size: 0.96rem; margin: 8px 0; }
.process-step p { font-size: 0.85rem; color: var(--slate); }

/* ---------- Utilities ---------- */
.divider { height: 1px; background: var(--line); margin: 0; }
.center-text { text-align: center; }

/* ---------- Responsive ---------- */
/* Header: switch to hamburger before the 7 nav items + buttons ever get tight */

/* Force scroll grids to stay single-row regardless of breakpoint */
.case-scroll-wrap .case-grid-scroll,
.svc-scroll-wrap .svc-grid-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  grid-template-columns: unset !important;
}
@media (max-width: 960px) {
  .nav-list, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .header-row { height: 76px; }
  .mobile-nav { top: 116px; } /* 40 topbar + 76 header */
  .site-header { top: 40px; }
  body { padding-top: 116px; }
  /* Hide address on mid screens */
  .topbar-item:first-child { display: none; }
  .brand-tagline { display: none; }
  .brand-logo-img img { height: 52px; max-width: 190px; width: auto; }
}
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid3 { grid-template-columns: repeat(2, 1fr); }
  .case-grid, .lead-grid, .industry-grid, .blog-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .wrap, .about-flex, .detail-flex, .contact-flex, .why-flex { grid-template-columns: 1fr; }
  .hero .wrap > div:first-child { padding-right: 0; }
  .hero-text { max-width: 80%; }
  .value-grid, .process-row, .testi-grid, .form-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 22px; }
}
@media (max-width: 720px) {
  .badge-banner { flex-direction: column; text-align: center; padding: 32px 26px; gap: 22px; }
  .badge-content p { max-width: 100%; }
  .header-row { height: 66px; }
  .brand-logo-img img { height: 40px; max-width: 145px; width: auto; }
  .mobile-nav { top: 66px; padding: 20px 22px; }
  .brand-sub { font-size: 0.56rem; }
  .hero-fullbg { padding: 60px 0 48px; min-height: unset; }
  .hero-swiper-section { padding: 0; }
  .heroSwiper .swiper-slide { padding: 60px 0 48px; min-height: unset; }
  .hero-text { max-width: 100%; }
  .hero-bg-overlay {
    background: linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.85) 100%),
                linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 40%);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat { flex: 0 0 48%; border-right: none; padding-right: 0; margin-right: 0; margin-bottom: 16px; }
  .svc-grid, .svc-grid3, .case-grid, .lead-grid, .industry-grid, .blog-grid, .pillar-grid, .why-grid, .value-grid, .process-row, .testi-grid, .form-grid, .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 32px; }
  .cta-banner { padding: 28px 22px; flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; justify-content: center; }
  .contact-flex { gap: 28px; }
  .why-flex { gap: 18px; }
  .page-hero { padding: 44px 0 40px; }
  .hero-flex { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero-icon-panel { width: 96px; height: 96px; border-radius: 18px; }
  .hero-icon-panel svg { width: 54px; height: 54px; }
  .map-frame iframe { height: 240px; }
  /* Topbar: show only phone + email on mobile */
  .topbar-inner { gap: 16px; justify-content: center; }
  .topbar-item:first-child,
  .topbar-hours { display: none; }
  .site-header { top: 40px; }
  .mobile-nav { top: 106px; } /* 40 topbar + 66 header */
  body { padding-top: 106px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { display: none; }
  .brand-logo-img img { height: 34px; max-width: 118px; }
  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 9px 12px; font-size: 0.76rem; }
  .nav-toggle { padding: 6px 4px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section-head h2 { font-size: 1.45rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 140px;
  background: var(--navy-900);
  z-index: 190;
  padding: 24px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 0; color: rgba(255,255,255,0.85); font-size: 1.02rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .sub a { padding-left: 14px; font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- DPDP Infographic Section ---------- */
.dpdp-img-wrap {
  margin: 32px 0 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1px solid var(--line);
  line-height: 0;
}
.dpdp-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.dpdp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}
.dpdp-cta p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0;
  max-width: 560px;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .dpdp-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- About Us — Company Profile Video ---------- */
.about-video-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 0 0 1px var(--line);
  background: #000;
}
.about-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.about-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.about-video-label svg {
  stroke: var(--teal-500);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CYBERSECURITY PAGE — Carousel
═══════════════════════════════════════ */
.cyber-carousel { position: relative; overflow: hidden; border-radius: 16px; }
.cc-slide { display: none; animation: cc-fadein 0.5s ease; }
.cc-slide.active { display: block; }
@keyframes cc-fadein { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.cc-slide-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 40px 0; }
.cc-slide-inner.cc-dpdp { gap: 36px; }
.cc-text .eyebrow { margin-bottom: 12px; }
.cc-text h2 { font-size: 1.7rem; line-height: 1.25; margin-bottom: 16px; }
.cc-text p { color: var(--slate); font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px; }
.cc-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cc-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 20px 18px; }
.cc-stat.accent { background: rgba(232,119,34,0.07); border-color: rgba(232,119,34,0.25); }
.cc-stat span { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.cc-stat.accent span { color: var(--teal-500); }
.cc-stat small { display: block; font-size: 0.72rem; color: var(--slate); margin-top: 6px; line-height: 1.4; }
.cc-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.cc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.cc-dot.active { background: var(--teal-500); transform: scale(1.25); }

/* ═══════════════════════════════════════
   CYBERSECURITY PAGE — Services Grid
═══════════════════════════════════════ */
.cyber-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.cyber-svc-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.cyber-svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-4px); border-color: rgba(232,119,34,0.3); }
.csvc-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(232,119,34,0.07); border: 1px solid rgba(232,119,34,0.2); display: grid; place-items: center; margin-bottom: 18px; }
.cyber-svc-card h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 8px; color: var(--navy-900); }
.cyber-svc-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   CYBERSECURITY PAGE — VAPT Roadmap
═══════════════════════════════════════ */

.vapt-step { flex: 1; text-align: center; padding: 32px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.vapt-arrow { display: flex; align-items: center; padding: 0 8px; flex-shrink: 0; padding-top: 60px; }
.vapt-icon { display: flex; justify-content: center; margin-bottom: 12px; }
.vapt-step-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: rgba(232,119,34,0.15); line-height: 1; margin-bottom: 8px; }
.vapt-step h4 { font-size: 1.05rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 10px; color: var(--navy-900); }
.vapt-step p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }

.vapt-roadmap{
    position:relative;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    margin-top:70px;
}

.vapt-roadmap::before{
    content:"";
    position:absolute;
    top:48px;
    left:8%;
    right:8%;
    height:3px;
    background:#d6dee8;
    z-index:0;
}

.phase{
    position:relative;
    text-align:center;
    z-index:1;
}

.phase-circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    border:4px solid #E87722;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    color:#16324F;
    transition:.35s;
}

.phase:hover .phase-circle{
    background:#E87722;
    color:#fff;
    transform:scale(1.08);
}

.phase h4{
    margin-top:22px;
}

.phase p{
    font-size:.9rem;
    color:#666;
}

@media (max-width: 900px) {
  .vapt-roadmap { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .vapt-roadmap::before { display: none; }
}
@media (max-width: 720px) {
  .cyber-svc-grid { grid-template-columns: 1fr 1fr; }
  .cc-slide-inner { grid-template-columns: 1fr; gap: 24px; }
  .vapt-arrow { display: none; }
  .vapt-step { width: 100%; }
}
@media (max-width: 560px) {
  .vapt-roadmap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cyber-svc-grid { grid-template-columns: 1fr; }
  .vapt-roadmap { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .phase-circle { width: 74px; height: 74px; font-size: 22px; }
}

/* ── Success Stories — 3-column grid (dedicated page) ── */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.case-sector {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 6px;
}
@media (max-width: 960px) { .ss-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ss-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SWIPER CAROUSEL — Solutions That Drive Impact
                   & Delivering Results That Matter
   Replaces horizontal scroll wrappers entirely.
   ========================================================= */

/* ── Remove old scroll-wrap behaviour ── */
.svc-scroll-wrap,
.case-scroll-wrap {
  overflow: visible !important;
  cursor: default !important;
  padding-bottom: 0 !important;
  scrollbar-width: none !important;
  white-space: normal !important;
}
.svc-scroll-wrap::-webkit-scrollbar,
.case-scroll-wrap::-webkit-scrollbar { display: none !important; }

/* ── Shared Swiper wrapper ── */
.svc-swiper-wrap,
.case-swiper-wrap {
  position: relative;
  padding-bottom: 52px; /* room for pagination */
  overflow: hidden;
  margin: 0 -4px; /* compensate for slide padding */
}

/* ── Slides: make cards fill the slide ── */
.svc-swiper-wrap .swiper-slide,
.case-swiper-wrap .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

/* Cards inside slides stretch to full height */
.svc-swiper-wrap .swiper-slide .svc-card,
.case-swiper-wrap .swiper-slide .case-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* svc-card already flex-col; ensure card-body fills */
.svc-swiper-wrap .svc-card .card-body {
  flex: 1;
}

/* case-card body fills remaining space */
.case-swiper-wrap .case-card .case-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-swiper-wrap .case-card .case-body p {
  flex: 1;
}

/* ── Navigation buttons — elegant circular style ── */
.svc-swiper-prev,  .svc-swiper-next,
.case-swiper-prev, .case-swiper-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14) !important;
  top: 50% !important;
  transform: translateY(calc(-50% - 26px)) !important; /* offset for pagination */
  transition: background 0.22s ease, box-shadow 0.22s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

/* Override Swiper's default arrow positioning */
.svc-swiper-wrap .swiper-button-prev { left: -4px; }
.svc-swiper-wrap .swiper-button-next { right: -4px; }
.case-swiper-wrap .swiper-button-prev { left: -4px; }
.case-swiper-wrap .swiper-button-next { right: -4px; }

/* Orange icon via ::after pseudo */
.svc-swiper-prev::after,  .svc-swiper-next::after,
.case-swiper-prev::after, .case-swiper-next::after {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #E87722 !important;
  transition: color 0.22s ease !important;
}

/* Hover: orange background, white icon */
.svc-swiper-prev:hover,  .svc-swiper-next:hover,
.case-swiper-prev:hover, .case-swiper-next:hover {
  background: #E87722 !important;
  box-shadow: 0 6px 20px rgba(232,119,34,0.35) !important;
}
.svc-swiper-prev:hover::after,  .svc-swiper-next:hover::after,
.case-swiper-prev:hover::after, .case-swiper-next:hover::after {
  color: #ffffff !important;
}

/* Disabled state */
.svc-swiper-prev.swiper-button-disabled,
.svc-swiper-next.swiper-button-disabled,
.case-swiper-prev.swiper-button-disabled,
.case-swiper-next.swiper-button-disabled {
  opacity: 0.35 !important;
  pointer-events: none !important;
}

/* ── Pagination dots ── */
.svc-swiper-pagination,
.case-swiper-pagination {
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 14px 0 0 !important;
}

/* Inactive dot */
.svc-swiper-pagination .swiper-pagination-bullet,
.case-swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #cccccc !important;
  opacity: 1 !important;
  transition: width 0.3s ease, background 0.3s ease !important;
  margin: 0 !important;
}

/* Active dot: orange pill */
.svc-swiper-pagination .swiper-pagination-bullet-active,
.case-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px !important;
  background: #E87722 !important;
  border-radius: 999px !important;
}

/* ── Slide spacing ── */
.svc-swiper-wrap .swiper-slide { padding: 4px 4px 6px; }
.case-swiper-wrap .swiper-slide { padding: 4px 4px 6px; }

/* ── Hero swiper: arrows + pagination on dark background ── */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  backdrop-filter: blur(4px);
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: background 0.22s ease, border-color 0.22s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  z-index: 5;
}
.hero-swiper-prev { left: 18px !important; }
.hero-swiper-next { right: 18px !important; }
.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
  background: var(--teal-500) !important;
  border-color: var(--teal-500) !important;
}
.hero-swiper-pagination {
  bottom: 22px !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  gap: 7px !important;
  z-index: 5;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 9px !important;
  height: 9px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.4) !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: width 0.3s ease, background 0.3s ease !important;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 26px !important;
  background: var(--teal-400) !important;
  border-radius: 999px !important;
}
@media (max-width: 720px) {
  .heroSwiper .swiper-button-prev,
  .heroSwiper .swiper-button-next { width: 38px !important; height: 38px !important; }
  .hero-swiper-prev { left: 10px !important; }
  .hero-swiper-next { right: 10px !important; }
}

/* ── Responsive: pull nav buttons inward on narrow viewports ── */
@media (max-width: 900px) {
  .svc-swiper-wrap,
  .case-swiper-wrap {
    /* Give space for nav buttons that now sit outside content flow */
    padding-left: 0;
    padding-right: 0;
  }
  .svc-swiper-wrap .swiper-button-prev,
  .case-swiper-wrap .swiper-button-prev { left: 4px; }
  .svc-swiper-wrap .swiper-button-next,
  .case-swiper-wrap .swiper-button-next { right: 4px; }
}

@media (max-width: 600px) {
  .svc-swiper-prev, .svc-swiper-next,
  .case-swiper-prev, .case-swiper-next {
    width: 36px !important;
    height: 36px !important;
  }
  .svc-swiper-prev::after, .svc-swiper-next::after,
  .case-swiper-prev::after, .case-swiper-next::after {
    font-size: 11px !important;
  }
}

/* ============================================================
   DPDP PAGE — page-scoped styles only
   All brand tokens inherited from style.css
   ============================================================ */

/* ── Page hero ──────────────────────────────────────────────── */
.dpdp-hero {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.dpdp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(232,119,34,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232,119,34,0.07) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle legal-grid watermark */
.dpdp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.dpdp-hero .wrap { position: relative; z-index: 2; }
.dpdp-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.dpdp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,119,34,0.14);
  border: 1px solid rgba(232,119,34,0.35);
  border-radius: 999px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 20px;
}
.dpdp-hero-badge svg {
  width: 16px; height: 16px;
  stroke: #E87722;
  flex-shrink: 0;
}
.dpdp-hero-badge span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f09040;
}
.dpdp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
}
.dpdp-hero h1 .accent { color: #E87722; }
.dpdp-hero .lead {
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 32px;
}
.dpdp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stat strip */
.dpdp-stat-strip {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
  min-width: 220px;
}
.dpdp-stat {
  padding: 24px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
}
.dpdp-stat:last-child { border-right: none; }
.dpdp-stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.dpdp-stat .num span { color: #E87722; }
.dpdp-stat .lbl {
  font-size: 0.7rem;
  color: #777;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  line-height: 1.3;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.dpdp-crumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.dpdp-crumb .wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--slate-light);
  font-family: var(--font-mono);
}
.dpdp-crumb a { color: var(--slate); text-decoration: none; }
.dpdp-crumb a:hover { color: var(--teal-500); }
.dpdp-crumb svg { width: 12px; height: 12px; stroke: var(--slate-light); flex-shrink: 0; }

/* ── Intro section ─────────────────────────────────────────── */
.dpdp-intro {
  background: #fff;
  padding: 72px 0 56px;
}
.dpdp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.dpdp-intro-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0 0 16px;
}
.dpdp-intro-left h2 strong { color: var(--teal-500); }
.dpdp-intro-left p {
  color: var(--slate);
  line-height: 1.75;
  margin: 0 0 20px;
  font-size: 0.97rem;
}
.dpdp-intro-right {
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.dpdp-intro-right::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,119,34,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.dpdp-intro-right h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E87722;
  margin: 0 0 20px;
  font-family: var(--font-mono);
}
.dpdp-who-list { list-style: none; padding: 0; margin: 0; }
.dpdp-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #c8c8c8;
  font-size: 0.9rem;
  line-height: 1.5;
}
.dpdp-who-list li:last-child { border-bottom: none; }
.dpdp-who-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(232,119,34,0.18);
  border: 1.5px solid rgba(232,119,34,0.5);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E87722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 6.5 11.5 13 5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Requirements section ──────────────────────────────────── */
.dpdp-reqs {
  background: var(--bg-soft);
  padding: 80px 0;
}
.dpdp-reqs-header {
  text-align: center;
  margin-bottom: 56px;
}
.dpdp-reqs-header .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
  display: block;
}
.dpdp-reqs-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.dpdp-reqs-header p {
  color: var(--slate);
  font-size: 0.97rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Requirements grid — 2 columns, asymmetric rhythm */
.dpdp-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dpdp-req-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
}
.dpdp-req-card:hover {
  box-shadow: 0 20px 48px -16px rgba(0,0,0,0.18);
  border-color: rgba(232,119,34,0.4);
  transform: translateY(-2px);
}
.dpdp-req-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal-500);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.dpdp-req-card:hover::before,
.dpdp-req-card.open::before { opacity: 1; }

.dpdp-req-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.dpdp-req-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--teal-500);
  background: var(--teal-100);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.dpdp-req-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dpdp-req-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal-500);
}
.dpdp-req-title-group { flex: 1; }
.dpdp-req-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
  line-height: 1.3;
}
.dpdp-req-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--slate-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dpdp-req-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.18s ease;
}
.dpdp-req-toggle svg {
  width: 14px; height: 14px;
  stroke: var(--slate);
  transition: transform 0.28s ease, stroke 0.18s ease;
}
.dpdp-req-card.open .dpdp-req-toggle { background: var(--teal-500); }
.dpdp-req-card.open .dpdp-req-toggle svg { stroke: #fff; transform: rotate(45deg); }
.dpdp-req-card:hover .dpdp-req-toggle { background: var(--teal-100); }
.dpdp-req-card:hover .dpdp-req-toggle svg { stroke: var(--teal-500); }
.dpdp-req-card.open:hover .dpdp-req-toggle { background: var(--teal-500); }
.dpdp-req-card.open:hover .dpdp-req-toggle svg { stroke: #fff; }

.dpdp-req-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s ease;
  padding-top: 0;
}
.dpdp-req-card.open .dpdp-req-body {
  max-height: 320px;
  padding-top: 18px;
}
.dpdp-req-body ul {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dpdp-req-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.55;
}
.dpdp-req-body ul li::before {
  content: '';
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23E87722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 7 5.5 10.5 12 4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

/* SDF highlight card */
.dpdp-req-card.sdf-card {
  border-color: rgba(214,162,60,0.3);
  background: linear-gradient(135deg, #fffbf3 0%, #fff 100%);
}
.dpdp-req-card.sdf-card .dpdp-req-icon { background: rgba(214,162,60,0.15); }
.dpdp-req-card.sdf-card .dpdp-req-icon svg { stroke: var(--gold); }
.dpdp-req-card.sdf-card .dpdp-req-num { background: rgba(214,162,60,0.15); color: #a0761e; }
.dpdp-req-card.sdf-card::before { background: var(--gold); }
.dpdp-req-card.sdf-card:hover { border-color: rgba(214,162,60,0.6); }

/* ── Interactive progress tracker ─────────────────────────── */
.dpdp-tracker {
  background: var(--navy-900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.dpdp-tracker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,119,34,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.dpdp-tracker .wrap { position: relative; z-index: 1; }
.dpdp-tracker-header {
  text-align: center;
  margin-bottom: 48px;
}
.dpdp-tracker-header .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E87722;
  margin-bottom: 10px;
  display: block;
}
.dpdp-tracker-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.dpdp-tracker-header p {
  color: #888;
  font-size: 0.93rem;
  max-width: 460px;
  margin: 0 auto;
}

.dpdp-tracker-ui {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.dpdp-progress-bar-wrap {
  margin-bottom: 28px;
}
.dpdp-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dpdp-progress-label span:first-child {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #c8c8c8;
}
.dpdp-progress-pct {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: #E87722;
  line-height: 1;
}
.dpdp-progress-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.dpdp-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #E87722, #f09040);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.dpdp-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dpdp-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  user-select: none;
}
.dpdp-check-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,119,34,0.3);
}
.dpdp-check-item.checked {
  background: rgba(232,119,34,0.1);
  border-color: rgba(232,119,34,0.35);
}
.dpdp-check-box {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.dpdp-check-item.checked .dpdp-check-box {
  background: #E87722;
  border-color: #E87722;
}
.dpdp-check-box svg {
  width: 12px; height: 12px;
  stroke: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.dpdp-check-item.checked .dpdp-check-box svg {
  opacity: 1;
  transform: scale(1);
}
.dpdp-check-text {
  font-size: 0.82rem;
  color: #b0b0b0;
  line-height: 1.35;
}
.dpdp-check-item.checked .dpdp-check-text { color: #e0e0e0; }

.dpdp-tracker-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dpdp-tracker-msg {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
  max-width: 380px;
}
.dpdp-tracker-msg strong { color: #c8c8c8; }

/* ── Services Darisham offers ─────────────────────────────── */
.dpdp-services {
  background: #fff;
  padding: 80px 0;
}
.dpdp-services-header {
  text-align: center;
  margin-bottom: 52px;
}
.dpdp-services-header .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
  display: block;
}
.dpdp-services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.dpdp-services-header p {
  color: var(--slate);
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.dpdp-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.dpdp-svc-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.dpdp-svc-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(232,119,34,0.3);
  transform: translateY(-3px);
}
.dpdp-svc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.dpdp-svc-icon svg {
  width: 22px; height: 22px;
  stroke: #E87722;
}
.dpdp-svc-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
}
.dpdp-svc-card p {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA band ──────────────────────────────────────────────── */
.dpdp-cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, #1a1108 100%);
  border-top: 1px solid rgba(232,119,34,0.18);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.dpdp-cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,119,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.dpdp-cta-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.dpdp-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.dpdp-cta-inner p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}
.dpdp-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex-shrink: 0;
}
.dpdp-cta-detail {
  font-size: 0.75rem;
  color: #666;
  font-family: var(--font-mono);
  text-align: center;
  width: 100%;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dpdp-hero-inner { grid-template-columns: 1fr; }
  .dpdp-stat-strip { display: none; }
  .dpdp-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .dpdp-req-grid { grid-template-columns: 1fr; }
  .dpdp-svc-grid { grid-template-columns: 1fr 1fr; }
  .dpdp-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .dpdp-cta-actions { align-items: center; width: 100%; }
  .dpdp-cta-inner p { max-width: 100%; }
}
@media (max-width: 640px) {
  .dpdp-hero { padding: 72px 0 60px; }
  .dpdp-svc-grid { grid-template-columns: 1fr; }
  .dpdp-checklist { grid-template-columns: 1fr; }
  .dpdp-tracker-ui { padding: 20px; }
  .dpdp-hero-actions { flex-direction: column; }
  .dpdp-hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Reveal animation (reuse existing pattern) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   BLOG ARTICLE PAGE (blog-details.html)
   ========================================================= */

/* ── Detail hero ── */
.blog-detail-hero {
  background: radial-gradient(circle at 85% 10%, rgba(232,119,34,0.18), transparent 55%), var(--navy-900);
  color: var(--white);
  padding: 56px 0 0;
}
.blog-detail-top { padding-bottom: 40px; }
.blog-detail-top .crumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.blog-detail-top .crumb a { color: rgba(255,255,255,0.5); }
.blog-detail-top .crumb a:hover { color: var(--teal-400); }
.blog-detail-top .crumb span { color: rgba(255,255,255,0.3); }
.blog-detail-cat {
  display: inline-block;
  background: rgba(232,119,34,0.16);
  color: var(--teal-400);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.blog-detail-top h1 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.28; max-width: 880px; }
.blog-detail-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 26px; }
.bd-author { display: flex; align-items: center; gap: 12px; }
.bd-author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.bd-author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.bd-author-info .role { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.bd-meta-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.16); }
.bd-meta-item { display: flex; align-items: center; gap: 7px; font-size: 0.84rem; color: rgba(255,255,255,0.72); }
.bd-meta-item svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.5); flex-shrink: 0; }

.blog-featured-img { max-width: var(--container); margin: 0 auto; padding: 0 32px 0; transform: translateY(36px); }
.blog-featured-img img { width: 100%; border-radius: var(--radius); display: block; box-shadow: 0 20px 48px -18px rgba(0,0,0,0.35); aspect-ratio: 16/8; object-fit: cover; }

/* ── Content layout: article + sidebar ── */
.blog-content-wrap { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 52px; padding: 78px 0 40px; align-items: start; }

/* ── Article typography ── */
.blog-article { max-width: 100%; }
.blog-article h2 { font-size: 1.5rem; font-weight: 700; margin: 44px 0 16px; color: var(--ink); scroll-margin-top: 180px; }
.blog-article h3 { font-size: 1.15rem; font-weight: 700; margin: 30px 0 12px; color: var(--ink); scroll-margin-top: 180px; }
.blog-article h4 { font-size: 1rem; font-weight: 700; margin: 0 0 10px; color: var(--ink); }
.blog-article p { font-size: 1rem; line-height: 1.8; color: var(--slate); margin: 0 0 18px; }
.blog-article ul, .blog-article ol { margin: 0 0 20px; padding-left: 22px; }
.blog-article li { font-size: 1rem; line-height: 1.8; color: var(--slate); margin-bottom: 8px; }
.blog-article strong { color: var(--ink); }
.blog-article a:not(.tag-pill):not(.btn) { color: var(--teal-500); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.blog-article em { color: var(--ink); }

.intro-block {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 500;
  padding: 24px 26px;
  border-left: 3px solid var(--teal-500);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 8px;
}

.callout-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 24px 0 30px;
}
.callout-box h4 { display: flex; align-items: center; gap: 8px; color: var(--navy-900); }
.callout-box ul { margin-bottom: 0; padding-left: 20px; }
.callout-box li { color: var(--ink); }

.info-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 0.92rem; }
.info-table th, .info-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.info-table thead th { background: var(--navy-900); color: var(--white); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; }
.info-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.info-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.info-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.info-table td { color: var(--slate); }
.info-table td strong { color: var(--ink); }

.cta-article {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 34px;
  margin: 32px 0;
  text-align: center;
}
.cta-article h3 { color: var(--white); margin-top: 0; }
.cta-article p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 20px; }
.cta-article .btn { background: var(--teal-500); color: var(--white); text-decoration: none; }
.cta-article .btn:hover { background: var(--teal-400); }

.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--teal-500);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { margin: 0; font-size: 0.94rem; }

.article-share { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-share span { font-size: 0.86rem; font-weight: 700; color: var(--slate); }
.share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
}
.share-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.share-btn:hover { border-color: var(--teal-500); color: var(--teal-500); }

.article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 36px 0 30px; }
.article-tags span { font-size: 0.86rem; font-weight: 700; color: var(--slate); }
.tag-pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 600;
}
.tag-pill:hover { background: var(--teal-500); color: var(--white); }

.article-author-bio {
  display: flex; gap: 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 10px;
}
.article-author-bio .ava {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.article-author-bio .author-name { font-weight: 700; font-size: 1rem; color: var(--ink); }
.article-author-bio .author-role { font-size: 0.82rem; color: var(--teal-500); font-weight: 600; margin: 2px 0 10px; }
.article-author-bio p { font-size: 0.9rem; margin: 0; color: var(--slate); }

/* ── Sidebar ── */
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 160px; }
.sidebar-widget { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sidebar-widget-head { padding: 16px 20px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.sidebar-widget-head h4 { margin: 0; font-size: 0.92rem; }
.sidebar-widget-body { padding: 18px 20px; }

.toc-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.toc-nav a {
  display: block;
  font-size: 0.86rem;
  color: var(--slate);
  padding: 7px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  line-height: 1.4;
}
.toc-nav a:hover { color: var(--teal-500); background: var(--bg-soft); }
.toc-nav a.active { color: var(--teal-500); border-left-color: var(--teal-500); background: var(--bg-soft); font-weight: 600; }

.sb-search { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.sb-search input { flex: 1; border: none; padding: 11px 14px; font-size: 0.86rem; font-family: var(--font-body); outline: none; min-width: 0; }
.sb-search button { border: none; background: var(--navy-900); color: var(--white); width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.sb-search svg { width: 16px; height: 16px; stroke: currentColor; }

.sb-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sb-cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 9px 4px; font-size: 0.88rem; color: var(--ink); }
.sb-cat-list a:hover { color: var(--teal-500); }
.cat-count { font-size: 0.72rem; color: var(--slate-light); background: var(--bg-soft); border-radius: 999px; padding: 2px 8px; }

.sb-recent-post { display: flex; gap: 12px; margin-bottom: 16px; }
.sb-recent-post:last-child { margin-bottom: 0; }
.sb-recent-thumb { width: 62px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; display: block; }
.sb-recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-recent-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sb-post-title { font-size: 0.84rem; font-weight: 600; line-height: 1.4; color: var(--ink); }
.sb-post-title:hover { color: var(--teal-500); }
.sb-post-date { font-size: 0.72rem; color: var(--slate-light); font-family: var(--font-mono); }

.sb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sb-tag { font-size: 0.78rem; padding: 6px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--slate); }
.sb-tag:hover { background: var(--teal-500); color: var(--white); }

.newsletter-widget {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.newsletter-widget .nw-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(232,119,34,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.newsletter-widget .nw-icon svg { width: 22px; height: 22px; stroke: var(--teal-400); }
.newsletter-widget h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 8px; }
.newsletter-widget p { color: rgba(255,255,255,0.62); font-size: 0.82rem; margin-bottom: 18px; line-height: 1.55; }
.nw-form { display: flex; flex-direction: column; gap: 10px; }
.nw-form input { min-width: 0; }
@media (max-width: 560px) {
  .nw-form[style*="row"] { flex-direction: column !important; }
  .nw-form[style*="row"] input { border-radius: var(--radius-sm) !important; }
  .nw-form[style*="row"] button { border-radius: var(--radius-sm) !important; width: 100%; justify-content: center; }
}
.nw-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.86rem;
  font-family: var(--font-body);
  outline: none;
}
.nw-form input::placeholder { color: rgba(255,255,255,0.4); }
.nw-form button {
  background: var(--teal-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}
.nw-form button:hover { background: var(--teal-400); }

/* ── Article prev/next nav ── */
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-nav a {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.article-nav a:hover { border-color: var(--teal-500); }
.article-nav a.next { text-align: right; grid-column: 2; }
.article-nav .nav-label { font-size: 0.76rem; font-weight: 700; color: var(--teal-500); text-transform: uppercase; letter-spacing: 0.03em; }
.article-nav .nav-title { font-size: 0.88rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* ── Related articles ── */
.related-section { padding: 56px 0 72px; background: var(--bg-soft); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

@media (max-width: 1024px) {
  .blog-content-wrap { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; order: 2; }
  .blog-article { order: 1; }
  .blog-featured-img { padding: 0 22px; transform: translateY(24px); }
}
@media (max-width: 720px) {
  .blog-detail-hero { padding: 40px 0 0; }
  .blog-detail-meta-row { gap: 12px; }
  .bd-meta-sep { display: none; }
  .blog-content-wrap { padding: 60px 0 30px; gap: 32px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
  .article-nav a.next { grid-column: 1; text-align: left; }
  .cta-article { padding: 26px 22px; }
  .article-author-bio { flex-direction: column; }
}
