/* ==========================================================================
   Ankur Telecom — Editorial Theme
   Monochrome + warm orange accent. Generous whitespace. Confident typography.
   Inter Tight (display) + Inter (body).
   ========================================================================== */

:root {
  /* ---- Palette ---- */
  --ink:         #0A0A0A;
  --ink-85:      #18181B;
  --ink-70:      #27272A;
  --ink-55:      #3F3F46;
  --ink-40:      #52525B;  /* body */
  --ink-30:      #71717A;  /* muted */
  --ink-20:      #A1A1AA;
  --ink-10:      #D4D4D8;
  --ink-05:      #E4E4E7;
  --ink-02:      #F4F4F5;

  --cream:       #FAF7F2;
  --cream-deep:  #F3EEE4;
  --cream-line:  #E8E0D1;

  --brand:       #E85D1C;  /* refined orange */
  --brand-deep:  #C94A10;
  --brand-soft:  #FFE8D6;
  --brand-line:  #F5C79F;

  --white:       #FFFFFF;

  /* ---- Layout tokens ---- */
  --max-w:       1240px;
  --gutter:      28px;

  --r-xs: 3px;
  --r-sm: 6px;
  --r:    10px;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  220ms;

  --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --bs-body-bg: var(--white);
}

/* ==========================================================================
   Base
   ========================================================================== */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-40);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; }
h4 { font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.02em; font-weight: 600; }
h5 { font-size: 0.95rem; letter-spacing: 0; font-weight: 600; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand); }

::selection { background: var(--brand); color: var(--white); }

/* Container override */
.container, .container-lg, .container-xl {
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-xl { max-width: calc(var(--max-w) + var(--gutter) * 2); }
}

/* ==========================================================================
   Section framework
   ========================================================================== */
section { padding: 80px 0; }
@media (max-width: 991.98px) { section { padding: 56px 0; } }
@media (max-width: 575.98px) { section { padding: 40px 0; } }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.sec-label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brand);
}

.sec-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
}
.sec-title em {
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}

.sec-lede {
  font-size: 1.1rem;
  color: var(--ink-30);
  max-width: 580px;
  margin-top: 18px;
  line-height: 1.55;
}

.sec-head { margin-bottom: 48px; }
@media (max-width: 767.98px) { .sec-head { margin-bottom: 32px; } }

/* ==========================================================================
   Buttons & links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus { outline: none; box-shadow: none; }

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-brand:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.btn-light-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-light-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0;
  border: 0;
  transition: all var(--dur) var(--ease);
}
.btn-text::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
  color: var(--brand);
}
.btn-text:hover { color: var(--brand); }
.btn-text:hover::after { transform: translateX(4px); }

.btn .bi {
  font-size: 0.95rem;
  line-height: 1;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--ink-05);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink-10);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 24px rgba(10,10,10,0.04);
}
.site-header .navbar {
  padding: 20px 0;
  min-height: 84px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
}
.brand:hover { color: var(--ink); }
/* Site logo image */
.site-logo {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  /* filter: brightness(0) invert(1); */
}

.brand-mark {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--brand);
}
.brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.brand-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-30);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 5px;
}

.main-nav { gap: 4px; }
.main-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-55);
  padding: 10px 14px !important;
  letter-spacing: -0.005em;
  transition: color var(--dur) var(--ease);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--ink); }

.main-nav .dropdown-toggle::after {
  border: 0;
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: 0.55;
  transition: transform var(--dur) var(--ease);
}

.dropdown-menu {
  border: 1px solid var(--ink-05);
  border-radius: var(--r);
  padding: 8px;
  margin-top: 10px !important;
  min-width: 260px;
  box-shadow: 0 14px 40px rgba(10,10,10,0.08);
}
.dropdown-item {
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--ink-55);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--dur) var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.dropdown-item:hover {
  background: var(--cream);
  color: var(--ink);
}
.dropdown-item .item-arrow {
  color: var(--ink-20);
  font-size: 0.85rem;
  transition: all var(--dur) var(--ease);
}
.dropdown-item:hover .item-arrow {
  color: var(--brand);
  transform: translateX(3px);
}

/* ==========================================================================
   Mega Menu — Products
   ========================================================================== */
/* Mega-menu positioning: contained below the Products nav item */
.site-header { position: sticky; }

.mega-dropdown { position: relative !important; }

.mega-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  transform: none !important;
  width: 740px !important;
  max-width: 96vw !important;
  border: 1px solid var(--ink-05) !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 56px rgba(10,10,10,0.12) !important;
  background: var(--white);
  margin-top: 8px !important;
  z-index: 1019;
}

.mega-category { padding: 0 0.5rem; }

.mega-cat-label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--ink-05);
}

.mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-links li a {
  display: block;
  padding: 7px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-55);
  text-decoration: none;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.mega-links li a:hover {
  color: var(--ink);
  padding-left: 4px;
}

/* ==========================================================================
   Hover dropdowns — desktop only
   ========================================================================== */
@media (min-width: 992px) {
  /* Animate dropdown appearance */
  .main-nav .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
    /*margin-top: 4px !important;*/
     margin-top: -2px !important;
  }
  .main-nav .nav-item.dropdown .dropdown-menu.show,
  .main-nav .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* Mega menu hover — positioning handled by JS */
  .mega-dropdown:hover > .mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

.nav-cta {
  margin-left: 20px;
}
.nav-cta .btn {
  padding: 12px 20px;
  font-size: 0.92rem;
}

.navbar-toggler {
  border: 1px solid var(--ink-10);
  border-radius: var(--r-sm);
  padding: 8px 12px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--ink-85);
  padding: 0;
  border-bottom: 1px solid var(--ink-70);
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   Hero — Full-bleed background-image slides
   ========================================================================== */
.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 600px;
  /* NOTE: no display:flex here — it would override Bootstrap's display:none on inactive slides */
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 10, 20, 0.88) 0%,
    rgba(5, 10, 20, 0.60) 55%,
    rgba(5, 10, 20, 0.30) 100%
  );
  z-index: 1;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
/* Text colours — white over dark overlay */
.hero-slide .hero-kicker {
  color: rgba(255, 255, 255, 0.72);
}
.hero-slide .hero-kicker::before {
  background: var(--brand);
}
.hero-slide h1 {
  color: var(--white);
}
.hero-slide .hero-lede {
  color: rgba(255, 255, 255, 0.78);
}
.hero-slide .hero-trust {
  color: rgba(255, 255, 255, 0.48);
}
.hero-slide .hero-trust strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
/* Light text-link for dark slide backgrounds */
.btn-text-light {
  color: rgba(255, 255, 255, 0.85);
}
.btn-text-light:hover {
  color: var(--white);
}
.btn-text-light::after {
  color: var(--brand);
}
@media (max-width: 991.98px) {
  .hero-slide { min-height: 460px; }
}
@media (max-width: 767.98px) {
  .hero-slide { min-height: 400px; }
  .hero-slide .container { padding-top: 4rem; padding-bottom: 4rem; }
}
@media (max-width: 575.98px) {
  .hero-slide { min-height: 340px; }
  .hero-slide .container { padding-top: 3rem; padding-bottom: 3rem; }
}

/* Hero — Stats panel (Slide 1) */
.hero-stat-panel { width: 100%; }
.hsp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}
.hsp-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hsp-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.hsp-card--wide div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hsp-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
}
.hsp-sfx {
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 0.70;
}
.hsp-lbl {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.hsp-icon {
  font-size: 2rem;
  color: var(--brand);
  flex-shrink: 0;
}
.hsp-badge {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 4px;
}

/* Hero — Feature panel (Slides 2 & 3) */
.hero-feat-panel {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 8px 0;
  overflow: hidden;
}
.hfp-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--dur) var(--ease);
}
.hfp-item:last-of-type { border-bottom: none; }
.hfp-item:hover { background: rgba(255,255,255,0.05); }
.hfp-icon {
  font-size: 1.5rem;
  color: var(--brand);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.hfp-title {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}
.hfp-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.4;
}
.hfp-brands {
  padding: 14px 24px;
  font-size: 0.70rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 22px;
}
.hero-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}

.hero-lede {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-40);
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--ink-30);
  letter-spacing: 0.02em;
}
.hero-trust strong {
  color: var(--ink-55);
  font-weight: 500;
}

/* Hero visual — Team image */
.hero-team-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-70) 100%);
  display: flex;
  align-items: stretch;
}
.hero-team-img .team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.18) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  z-index: 2;
}
.hero-team-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.hero-team-stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ht-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ht-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-team-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-team-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Fallback grid when no photo */
.hero-team-img:not(:has(.team-photo[src])) {
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .hero-team-img { min-height: 280px; margin-top: 28px; }
}
@media (max-width: 767.98px) {
  .hero-team-img { min-height: 240px; margin-top: 20px; }
  .ht-val { font-size: 1.7rem; }
}

/* ==========================================================================
   Trust strip — two-row auto-scrolling ticker
   ========================================================================== */
.trust {
  padding: 64px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
  overflow: hidden;
}

/* Trust section header */
.trust-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 var(--gutter);
}
.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.trust-eyebrow::before,
.trust-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand);
  opacity: 0.5;
}
.trust-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}

/* Legacy label – kept for fallback */
.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 28px;
}

/* Ticker wrapper with fade edges */
.trust-ticker-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.trust-ticker-wrap::before,
.trust-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.trust-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
}
.trust-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
}

.trust-ticker {
  overflow: hidden;
  display: flex;
}
.trust-ticker-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding: 4px 0;
}
/* Row 1: scroll left */
.trust-ticker--fwd .trust-ticker-inner {
  animation: ticker-fwd 28s linear infinite;
}
/* Row 2: scroll right (reverse) */
.trust-ticker--rev .trust-ticker-inner {
  animation: ticker-rev 24s linear infinite;
}

/* Individual logo pill card */
.trust-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  padding: 16px 32px;
  height: 80px;
  min-width: 160px;
  flex-shrink: 0;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 2px 8px rgba(10,10,10,0.04);
}
.trust-logo-card:hover {
  border-color: var(--brand-line);
  box-shadow: 0 6px 20px rgba(10,10,10,0.08);
}
.trust-logo-card:hover .trust-logo {
  filter: grayscale(0%) opacity(1);
}

@keyframes ticker-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ticker-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .trust-ticker-inner { animation: none !important; }
  .trust-ticker-wrap { overflow-x: auto; }
}

/* Keep a single row fallback */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 52px 60px;
}
.wordmark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  color: var(--ink-30);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.wordmark:hover { color: var(--ink-70); }
.wordmark em { font-style: normal; font-weight: 400; }

/* Trust logos inside cards */
.trust-logo {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.75);
  transition: filter var(--dur) var(--ease);
  display: block;
}

/* ==========================================================================
   After Sales Support
   ========================================================================== */
.after-sales {
  padding: 72px 0;
  background: var(--cream);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.support-item {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-icon {
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 4px;
}
.support-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
}
.support-item h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.support-item p {
  font-size: 0.9rem;
  color: var(--ink-40);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Capabilities — editorial 2×2
   ========================================================================== */
.capabilities { background: var(--white); }

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-05);
}
.cap-item {
  /*padding: 56px 44px 56px 0;*/
    padding: 56px 44px 56px;
  border-bottom: 1px solid var(--ink-05);
  position: relative;
  transition: background var(--dur) var(--ease), transform 300ms var(--ease);
  overflow: hidden;
}
.cap-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 350ms var(--ease);
  pointer-events: none;
}
.cap-item:hover::before { opacity: 1; }
.cap-item:hover { transform: translateY(-3px); }
.cap-item:hover .cap-icon {
  transform: scale(1.18) rotate(-6deg);
  color: var(--brand);
}
.cap-item:hover h3 { color: var(--ink); }
.cap-item:hover .cap-link { color: var(--brand-deep); gap: 10px; }
.cap-item:nth-child(even) { padding-left: 44px; padding-right: 0; border-left: 1px solid var(--ink-05); }
.cap-item:nth-last-child(-n+2) { border-bottom: 0; }
.cap-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin-bottom: 18px;
  display: block;
}
.cap-item h3 {
  font-size: 2.1rem;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.05;
  color: var(--ink);
}
.cap-item p {
  color: var(--ink-30);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 440px;
}
.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 24px;
}
.cap-tags span {
  font-size: 0.78rem;
  color: var(--ink-55);
  padding: 5px 12px;
  border: 1px solid var(--ink-05);
  border-radius: 999px;
  font-weight: 500;
}
.cap-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink-05);
  padding-bottom: 3px;
  transition: all var(--dur) var(--ease);
}
.cap-link::after {
  content: "→";
  color: var(--brand);
  transition: transform var(--dur) var(--ease);
}
.cap-link:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.cap-link:hover::after { transform: translateX(4px); }

@media (max-width: 991.98px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap-item { padding: 44px 0 !important; border-left: 0 !important; }
  .cap-item:nth-last-child(2) { border-bottom: 1px solid var(--ink-05); }
}

/* ==========================================================================
   Why — manifesto
   ========================================================================== */
.why { background: var(--cream); }

.why-lead {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 900px;
  margin-bottom: 48px;
}
.why-lead em {
  font-style: normal;
  color: var(--brand);
  font-weight: 500;
}

.why-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-line);
}
.why-row {
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid var(--cream-line);
  display: flex;
  gap: 26px;
}
.why-row:nth-child(even) { padding-left: 44px; padding-right: 0; border-left: 1px solid var(--cream-line); }
.why-row:nth-last-child(-n+2) { border-bottom: 0; }
.why-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ink-30);
  font-weight: 500;
  padding-top: 6px;
  flex-shrink: 0;
}
.why-row h4 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 600;
}
.why-row p {
  color: var(--ink-40);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991.98px) {
  .why-rows { grid-template-columns: 1fr; }
  .why-row { padding: 26px 0 !important; border-left: 0 !important; }
  .why-row:nth-last-child(2) { border-bottom: 1px solid var(--cream-line); }
}

/* ==========================================================================
   Numbers strip
   ========================================================================== */
.numbers {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0;
  position: relative;
}
.numbers-intro {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.numbers-intro em {
  font-style: normal;
  color: var(--brand);
  font-weight: 500;
}
.nums-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nums-item {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.nums-item:last-child { border-right: 0; padding-right: 0; }
.nums-item:not(:first-child) { padding-left: 24px; }
.nums-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.nums-val .sfx {
  color: var(--brand);
  font-weight: 500;
}
.nums-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .nums-row { grid-template-columns: 1fr 1fr; }
  .nums-item { border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .nums-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08) !important; padding-right: 16px !important; }
  .nums-item:nth-child(even) { padding-left: 16px !important; }
  .nums-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; }
  .nums-item:nth-child(n+3) { padding-top: 32px; }
}

/* ==========================================================================
   Industries — editorial list
   ========================================================================== */
.industries { background: var(--white); }

.ind-list {
  border-top: 1px solid var(--ink-05);
  margin-top: 48px;
}
.ind-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-05);
  transition: padding var(--dur) var(--ease);
}
.ind-row:hover {
  padding-left: 16px;
}
.ind-row:hover h4 { color: var(--brand); }
.ind-row:hover .ind-go { color: var(--brand); transform: translateX(4px); }
.ind-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink-30);
  font-weight: 500;
}
.ind-row h4 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.ind-row p {
  color: var(--ink-30);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.5;
}
.ind-go {
  color: var(--ink-20);
  font-size: 0.95rem;
  transition: all var(--dur) var(--ease);
}

@media (max-width: 767.98px) {
  .ind-row {
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
    padding: 22px 0;
  }
  .ind-row p { display: none; }
}

/* ==========================================================================
   Work / Case studies
   ========================================================================== */
.work { background: var(--cream); }

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(10,10,10,0.06);
  border-color: var(--brand-line);
}
.work-cover {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.work-cover.theme-a { background: linear-gradient(160deg, #0A0A0A 0%, #27272A 60%, #3F3F46 100%); }
.work-cover.theme-b { background: linear-gradient(160deg, #7C2D12 0%, #C2410C 60%, #E85D1C 100%); }
.work-cover.theme-c { background: linear-gradient(160deg, #14532D 0%, #166534 60%, #15803D 100%); }
.work-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.work-chip {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 10px;
}
.work-client {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  position: relative;
  z-index: 2;
}
.work-body { padding: 32px 28px; }
.work-meta {
  font-size: 0.78rem;
  color: var(--ink-30);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.work-body h4 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.25;
  color: var(--ink);
}
.work-body > p {
  color: var(--ink-30);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 26px;
}
.work-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-05);
}
.work-metric .val {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.work-metric .val .sfx { color: var(--brand); font-weight: 500; }
.work-metric .lab {
  font-size: 0.72rem;
  color: var(--ink-30);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 6px;
}

@media (max-width: 991.98px) {
  .work-grid { grid-template-columns: 1fr; gap: 24px; }
  .work-cover { height: 220px; padding: 22px; }
  .work-client { font-size: 1.6rem; }
  .work-body { padding: 26px 22px; }
}

/* ==========================================================================
   Process — clean numbered row
   ========================================================================== */
.process { background: var(--white); }

.proc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.proc-step {
  border-top: 2px solid var(--ink);
  padding-top: 28px;
}
.proc-step:nth-child(even) { border-top-color: var(--brand); }
.proc-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink-30);
  margin-bottom: 18px;
  display: block;
}
.proc-step h4 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--ink);
}
.proc-step p {
  color: var(--ink-30);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991.98px) {
  .proc-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 575.98px) {
  .proc-row { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Partners — single wordmark row
   ========================================================================== */
.partners {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--ink-05);
  border-bottom: 1px solid var(--ink-05);
}
.partners-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-30);
  font-weight: 500;
  margin-bottom: 40px;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px 56px;
}
.partners-row .wordmark {
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink-20);
}
.partners-row .wordmark:hover { color: var(--ink-55); }

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(232,93,28,0.24), transparent 70%);
  pointer-events: none;
}

/* Carousel wrapper */
.test-carousel {
  position: relative;
}

/* Individual slides */
.test-slide {
  display: none;
  animation: testFadeIn 0.5s ease;
}
.test-slide.active {
  display: block;
}
@keyframes testFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.test-quote {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.test-quote::before {
  content: "\201C";
  font-family: 'Inter Tight', serif;
  color: var(--brand);
  font-size: 2.4rem;
  line-height: 0.8;
  margin-right: 8px;
  display: inline;
}
.test-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.test-av {
  width: 48px; height: 48px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.test-name {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.test-role {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0;
}

/* Controls row */
.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.test-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.test-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.test-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 240px;
}
.test-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.test-dot.active {
  background: var(--brand);
  transform: scale(1.25);
}

/* ==========================================================================
   Insights
   ========================================================================== */
.insights { background: var(--white); }

.insights-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.insight {
  border-top: 1px solid var(--ink-05);
  padding-top: 28px;
  transition: border-color var(--dur) var(--ease);
}
.insight:hover { border-top-color: var(--brand); }
.insight-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.insight h4 {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 600;
  transition: color var(--dur) var(--ease);
}
.insight:hover h4 { color: var(--brand); }
.insight p {
  color: var(--ink-30);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.insight-meta {
  font-size: 0.8rem;
  color: var(--ink-30);
  display: flex;
  gap: 14px;
  align-items: center;
}
.insight-meta .dot {
  width: 3px; height: 3px;
  background: var(--ink-20);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .insight-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta {
  background: var(--white);
  /*padding: 80px 0 100px;*/
    padding: 80px 0;
  border-top: 1px solid var(--ink-05);
}
.cta-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 28px;
}
.cta-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand);
}
.cta h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 26px;
  font-weight: 700;
}
.cta h2 em {
  font-style: normal;
  color: var(--brand);
  font-weight: 700;
}
.cta-lede {
  font-size: 1.15rem;
  color: var(--ink-30);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.55;
}
.cta-actions {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .cta { padding: 56px 0 72px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 48px 0;
  font-size: 0.9rem;
}

.f-brand {
  display: flex;              /* was inline-flex */
  justify-content: center;    /* ← centers the logo */
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.f-brand .brand-mark {
  background: var(--brand);
}
.f-brand .brand-mark::after {
  background: var(--white);
  opacity: 0.2;
}
.f-about {
  max-width: 360px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.f-contact { margin-bottom: 28px; }
.f-contact .row-l {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
}
.f-contact .row-l:last-child { border-bottom: 0; }
.f-contact .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 2px;
}
.f-contact a { color: rgba(255,255,255,0.85); }
.f-contact a:hover { color: var(--brand); }

.f-social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.f-social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: all var(--dur) var(--ease);
}
.f-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.f-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.f-col ul { list-style: none; padding: 0; margin: 0; }
.f-col ul li { padding: 6px 0; }
.f-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--dur) var(--ease);
}
.f-col ul li a:hover { color: var(--white); }

.f-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.f-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}
.f-bottom a:hover { color: var(--white); }
.f-bottom .legal { display: flex; gap: 24px; }

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  z-index: 1050;
  box-shadow: 0 10px 28px rgba(37,211,102,0.35);
  transition: transform var(--dur) var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.06);
  color: var(--white);
}

/* ==========================================================================
   Capability & Process icons — editorial line icons, monochrome
   ========================================================================== */
.cap-icon {
  font-size: 2rem;
  color: var(--ink-20);
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  transition: transform 350ms var(--ease), color 350ms var(--ease);
}

.proc-icon {
  font-size: 1.7rem;
  color: var(--ink-20);
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.proc-icon--accent { color: var(--brand); opacity: 0.7; }

/* Support step — subtle brand border top */
.proc-step--support { border-top-color: var(--brand); }

/* ==========================================================================
   Hero — Carousel Dots
   ========================================================================== */
.hero-dots {
  bottom: 1.5rem !important;
  gap: 0;
  margin: 0;
  align-items: center;
}
.hero-dots button,
.hero-dots button.active {
  box-sizing: border-box !important;
  width: 7px !important;
  height: 7px !important;
  min-width: 7px !important;
  min-height: 7px !important;
  border-radius: 50% !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 5px !important;
  flex: none !important;
  background: rgba(255,255,255,0.40) !important;
  opacity: 1 !important;
  transition: background 0.3s var(--ease) !important;
  text-indent: 0 !important;
}
.hero-dots button.active {
  background: var(--white) !important;
}
@media (max-width: 575.98px) {
  .hero-dots { bottom: 0.75rem !important; }
}

/* ==========================================================================
   Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive — Tablet & Mobile
   ========================================================================== */

/* ---- Tablet & Mobile Nav (≤ 991px) ---- */
@media (max-width: 991.98px) {

  /* Navbar collapse panel */
  .navbar-collapse {
    margin-top: 10px;
    padding: 12px 14px 14px;
    background: var(--white);
    border: 1px solid var(--ink-05);
    border-radius: var(--r);
    box-shadow: 0 8px 32px rgba(10,10,10,0.10);
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav {
    gap: 0;
    flex-direction: column;
    align-items: stretch !important;
  }
  .main-nav .nav-link {
    padding: 11px 6px !important;
    border-bottom: 1px solid var(--ink-05);
    color: var(--ink-55);
    font-size: 0.95rem;
  }
  .main-nav .nav-link:hover { color: var(--ink); background: var(--cream); border-radius: var(--r-sm); }
  .main-nav .nav-item:last-child > .nav-link { border-bottom: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* Dropdown toggle arrow rotate on open */
  .main-nav .nav-item.dropdown .nav-link.show::after {
    transform: rotate(225deg) translateY(2px);
  }

  /* Regular dropdowns — accordion style */
  .main-nav .dropdown-menu {
    position: static !important;
    display: none;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--ink-05) !important;
    border-radius: 0 !important;
    padding: 4px 0 8px 16px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
  }
  .main-nav .dropdown-menu.show { display: block; }
  .dropdown-item { padding: 9px 10px; font-size: 0.9rem; }

  /* Mega menu on mobile — static stacked list */
  .mega-menu {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--ink-05) !important;
    border-radius: 0 !important;
    padding: 10px 0 4px 16px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
  }
  .mega-menu.show { display: block; }
  .mega-category { padding: 0; margin-bottom: 0.75rem; }
  .mega-cat-label { font-size: 0.72rem; padding-top: 0.25rem; }
  .mega-links li a { padding: 5px 4px; font-size: 0.87rem; }

  /* Hero */
  .hero-slide-img { min-height: 280px !important; }

  /* Trust */
  .trust-row { gap: 24px 36px; justify-content: center; }
  .trust-logo { max-height: 32px; }

  /* Capabilities */
  .cap-grid { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-lead { font-size: clamp(1.2rem, 3.5vw, 1.8rem); }

  /* Numbers */
  .nums-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Work */
  .work-grid { grid-template-columns: 1fr; }
  .work-head { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* Process */
  .proc-row { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* After sales */
  .support-grid { grid-template-columns: repeat(2, 1fr); }

  /* Partners */
  .partners-row { gap: 16px 32px; }

  /* Insights */
  .insight-grid { grid-template-columns: 1fr; }
  .insights-head { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* Footer */
  .f-contact .row-l { flex-direction: column; gap: 2px; }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767.98px) {

  /* Hero */
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-kicker { font-size: 0.75rem; }
  .hero-lede { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn,
  .hero-actions .btn-text { width: 100%; text-align: center; justify-content: center; }
  .hero-trust { font-size: 0.8rem; }
  .hero-slide-img { min-height: 240px !important; }

  /* Capabilities */
  .cap-grid { grid-template-columns: 1fr; }
  .cap-item { padding: 24px; }

  /* Why */
  .why-rows { gap: 24px; }
  .why-row { gap: 16px; }

  /* Numbers */
  .nums-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .nums-val { font-size: 2rem; }

  /* Process */
  .proc-row { grid-template-columns: 1fr; gap: 24px; }
  .proc-step { padding-top: 20px; }

  /* After sales */
  .support-grid { grid-template-columns: 1fr; }

  /* Work */
  .work-card .work-cover { min-height: 160px; }
  .work-metrics { flex-wrap: wrap; gap: 12px; }

  /* CTA */
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-wrap { padding: 48px 24px; }

  /* Testimonial */
  .testimonial { padding: 56px 0; }
  .test-quote { font-size: clamp(1rem, 4vw, 1.3rem); margin-bottom: 28px; }
  .test-attr { flex-direction: row; align-items: center; gap: 12px; }
  .test-controls { margin-top: 28px; gap: 12px; }
  .test-dots { max-width: 180px; gap: 6px; }
  .test-dot { width: 7px; height: 7px; }
  .test-btn { width: 36px; height: 36px; }

  /* Partners */
  .partners-row { gap: 12px 24px; }
  .wordmark { font-size: 0.9rem; }

  /* Footer */
  .f-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .f-bottom .legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .f-social { gap: 12px; }

  /* Section headings */
  .sec-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .sec-head { gap: 16px; }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {

  /* General spacing */
  section { padding-top: 36px !important; padding-bottom: 36px !important; }
  .container { padding-left: 16px; padding-right: 16px; }

  /* Hero carousel */
  .carousel-item .container { padding-top: 40px !important; padding-bottom: 56px !important; }

  /* Numbers */
  .nums-row { grid-template-columns: 1fr 1fr; }
  .numbers-intro { font-size: 1rem; }

  /* Trust ticker */
  .trust-logo-card { height: 56px; min-width: 112px; padding: 10px 18px; border-radius: 10px; }
  .trust-logo { height: 26px; max-width: 76px; }
  .trust-ticker-inner { gap: 12px; }

  /* Why lead */
  .why-lead { font-size: 1.2rem; }

  /* Footer */
  .f-brand { margin-bottom: 16px; }
  .footer-logo { max-height: 36px; }
  
}

/* ==========================================================================
   Mobile — Additional Fixes (≤ 767px)
   ========================================================================== */
@media (max-width: 767.98px) {

  /* Hero — full-width stacked layout */
  .hero { padding: 40px 0 56px; }
  .hero .row { flex-direction: column; }
  .hero .col-lg-7,
  .hero .col-lg-5 { width: 100%; max-width: 100%; }

  /* Hero slide images */
  .hero-slide-img { min-height: 220px !important; }
  .hero-slide-img > div[style*="gap:2rem"] { gap: 1.2rem !important; }

  /* Carousel push content above dots */
  .carousel-item .container { padding-bottom: 60px !important; }

  /* Trust section */
  .trust { padding: 40px 0; }
  .trust-header { margin-bottom: 28px; }
  .trust-title { font-size: 1.6rem; }
  .trust-ticker-wrap { gap: 12px; }
  .trust-ticker-wrap::before,
  .trust-ticker-wrap::after { width: 40px; }
  .trust-logo-card { height: 64px; min-width: 130px; padding: 12px 22px; }
  .trust-logo { height: 30px; max-width: 86px; }

  /* Capabilities */
  .cap-item { padding: 28px 0 !important; }
  .cap-item h3 { font-size: 1.5rem; }

  /* Numbers strip */
  .numbers { padding: 56px 0; }
  .numbers-intro { margin-bottom: 36px; }

  /* Work */
  .work-body { padding: 22px 18px; }

  /* Process */
  .proc-row { margin-top: 40px; }

  /* After sales */
  .after-sales { padding: 48px 0; }
  .support-grid { margin-top: 32px; gap: 2px; }
  .support-item { padding: 24px 18px; }

  /* Partners */
  .partners { padding: 40px 0; }
  .partners-row { gap: 14px 20px; }

  /* CTA */
  .cta { padding: 60px 0 72px; }
  .cta-wrap { padding: 0 8px; }
  .cta h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* Footer columns */
  .site-footer .row > [class*="col-6"] { width: 50%; }
  .f-bottom { font-size: 0.78rem; }

  /* Nav CTA button full width */
  .nav-cta { margin: 12px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Mobile — Narrow phones (≤ 390px)
   ========================================================================== */
@media (max-width: 390px) {
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  /* narrow phone hero image */
  .hero-team-img { min-height: 200px; }
  .nums-val { font-size: 1.8rem; }
  .work-client { font-size: 1.4rem; }
  .site-footer .row > [class*="col-6"] { width: 100%; }
  .f-col { margin-bottom: 8px; }
  .trust-logo { max-height: 22px; max-width: 75px; }
  .partners-row .trust-logo { max-height: 22px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; font-size: 0.88rem; }
}

/* ==========================================================================
   Page Banner (product / inner pages)
   ========================================================================== */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--ink-70);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,10,20,0.92) 0%, rgba(5,10,20,0.72) 55%, rgba(5,10,20,0.45) 100%);
  z-index: 1;
}
.page-banner .container { position: relative; z-index: 2; }

.pb-inner { display: flex; flex-direction: column; gap: 32px; }

.pb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.50);
}
.pb-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--dur) var(--ease); }
.pb-breadcrumb a:hover { color: var(--brand); }
.pb-breadcrumb .bi { font-size: 0.65rem; opacity: 0.5; }
.pb-breadcrumb span:last-child { color: rgba(255,255,255,0.80); }

.pb-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.pb-text { flex: 1; min-width: 280px; }

.pb-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,28,0.18);
  border: 1px solid rgba(232,93,28,0.35);
  color: #f97c45;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pb-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.07;
  margin-bottom: 16px;
  max-width: 640px;
}
.pb-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 28px;
}
.pb-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.pb-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 80px!important;   
}
.pb-stat-item { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.pb-stat-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pb-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.50); white-space: nowrap; }
.pb-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

@media (max-width: 991.98px) {
  .pb-content { flex-direction: column; align-items: flex-start; }
  .pb-stats { width: 100%; justify-content: space-around; }
}
@media (max-width: 575.98px) {
  .page-banner { padding: 56px 0 44px; }
  .pb-stat-val { font-size: 1.6rem; }
  .pb-stats { padding: 18px 20px; gap: 16px; }
}

/* ==========================================================================
   Products Listing
   ========================================================================== */
.prod-listing { padding: 80px 0; background: var(--white); }
@media (max-width: 991.98px) { .prod-listing { padding: 56px 0; } }

.prod-card {
  display: flex;
  gap: 0;
  border: 1px solid var(--ink-05);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  background: var(--white);
}
.prod-card:hover {
  border-color: var(--ink-10);
  box-shadow: 0 8px 40px rgba(10,10,10,0.07);
}
.prod-card:last-child { margin-bottom: 0; }

/* Left icon column */
.pc-icon-col {
  width: 100px;
  flex-shrink: 0;
  background: var(--ink-02);
  border-right: 1px solid var(--ink-05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 16px;
}
.pc-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-icon-box--blue  { background: #1a3a6e; }
.pc-icon-box--green { background: #1a4a2a; }
.pc-icon-box--purple { background: #3a1a6e; }
.pc-icon-box--orange { background: var(--brand); }
.pc-icon {
  font-size: 1.5rem;
  color: var(--white);
}
.pc-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-20);
  text-transform: uppercase;
}

/* Card body */
.pc-body { flex: 1; padding: 32px 36px; min-width: 0; }

.pc-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pc-cat-tag {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.pc-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0;
}
.pc-enquire-btn { flex-shrink: 0; font-size: 0.88rem; padding: 10px 18px; }

.pc-desc {
  font-size: 0.97rem;
  color: var(--ink-40);
  line-height: 1.60;
  margin-bottom: 24px;
  max-width: 680px;
}

/* Features grid */
.pc-feats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.pc-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-55);
  font-weight: 500;
}
.pc-check {
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* Card footer */
.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--ink-05);
}
.pc-brands { font-size: 0.80rem; color: var(--ink-30); }
.pc-brands-lbl { font-weight: 600; color: var(--ink-55); margin-right: 6px; }
.pc-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.pc-text-cta .bi { font-size: 0.8rem; color: var(--brand); transition: transform var(--dur) var(--ease); }
.pc-text-cta:hover { color: var(--brand); }
.pc-text-cta:hover .bi { transform: translateX(4px); }

@media (max-width: 991.98px) {
  .pc-icon-col { width: 80px; padding: 24px 12px; }
  .pc-body { padding: 24px; }
  .pc-feats-grid { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 575.98px) {
  .prod-card { flex-direction: column; }
  .pc-icon-col { width: 100%; flex-direction: row; border-right: none; border-bottom: 1px solid var(--ink-05); padding: 16px 20px; justify-content: flex-start; }
  .pc-head-row { flex-direction: column; align-items: flex-start; }
  .pc-enquire-btn { width: 100%; justify-content: center; }
  .pc-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ==========================================================================
   Enquiry Section
   ========================================================================== */
.enq-section {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-line);
}
@media (max-width: 991.98px) { .enq-section { padding: 56px 0; } }

.enq-form-wrap {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 20px;
  padding: 48px;
}
@media (max-width: 575.98px) { .enq-form-wrap { padding: 28px 20px; } }

/* Form fields */
.enq-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-55);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.enq-req { color: var(--brand); }
.enq-input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.enq-input:focus {
  border-color: var(--ink-55);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.enq-input::placeholder { color: var(--ink-20); }
.enq-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.enq-textarea { resize: vertical; min-height: 110px; }

.enq-submit {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
  margin-top: 4px;
}
.enq-note {
  display: inline-block;
  margin: 10px 0 0 16px;
  font-size: 0.78rem;
  color: var(--ink-30);
  vertical-align: middle;
}

/* Success state */
.enq-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 14px;
}
.enq-success-icon { font-size: 3rem; color: #16a34a; }
.enq-success h4 { font-size: 1.4rem; color: var(--ink); margin: 0; }
.enq-success p { color: var(--ink-40); margin: 0; }

/* Sidebar */
.enq-sidebar { display: flex; flex-direction: column; gap: 20px; }

.enq-contact-card,
.enq-why-card,
.enq-clients-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 16px;
  padding: 28px;
}
.enq-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.enq-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-05);
}
.enq-contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.enq-c-icon { font-size: 1rem; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.enq-c-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 3px; }
.enq-c-val { font-size: 0.90rem; font-weight: 500; color: var(--ink); }
a.enq-c-val:hover { color: var(--brand); }

.enq-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enq-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-55);
  line-height: 1.45;
}
.enq-why-list .bi { color: var(--brand); flex-shrink: 0; font-size: 0.95rem; margin-top: 1px; }

.enq-clients-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px;
}
.enq-clients-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.enq-client-logo {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
  border-radius: 6px;
  background: var(--ink-02);
  padding: 6px;
}
.enq-client-logo:hover { filter: none; opacity: 1; }

/* ==========================================================================
   Back to Top Button (shared across all pages)
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #333;
  transform: translateY(-3px);
}

/* ==========================================================================
   Services Page — Quick Nav
   ========================================================================== */
.svc-quicknav {
  position: sticky;
  top: 84px;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--ink-05);
  box-shadow: 0 2px 16px rgba(10,10,10,0.05);
}
.svc-qn-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-qn-inner::-webkit-scrollbar { display: none; }
.svc-qn-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 4px;
  flex-shrink: 0;
}
.svc-qn-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.svc-qn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-55);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
}
.svc-qn-link .bi { font-size: 0.78rem; }
.svc-qn-link:hover { color: var(--ink); background: var(--ink-02); }
.svc-qn-link.active {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: var(--brand-line);
}
.svc-qn-cta {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.82rem !important;
  padding: 8px 18px !important;
}
@media (max-width: 767.98px) {
  /*.svc-qn-label { display: none; }*/
  /*.svc-qn-cta { display: none; }*/  
}

/* ==========================================================================
   Services Page — Detail Sections (unique design)
   ========================================================================== */

/* Section wrappers — three distinct themes */
.svc-section {
  padding: 80px 0;
}
.svc-section--light  { background: var(--white); }
.svc-section--dark   { background: var(--ink); }
.svc-section--brand  { background: var(--cream); border-top: 1px solid var(--cream-line); }

/* Two-column inner layout: aside (1/3) + body (2/3) */
.svc-section-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Aside (left panel) ── */
.svc-aside {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-aside-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.svc-step {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink-05);
  flex-shrink: 0;
}
.svc-section--dark .svc-step { 
    /*color: rgba(255,255,255,0.06); */
    color: rgb(255 255 255 / 29%);
    
}
.svc-icon-box {
  width: 52px;
  height: 52px;
  background: var(--brand-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand);
  flex-shrink: 0;
}
.svc-icon-box--dark  { background: rgba(232,93,28,0.15); color: var(--brand); }
.svc-icon-box--brand { background: var(--white); color: var(--brand); border: 1px solid var(--cream-line); }

.svc-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 10px;
}
.svc-aside--dark .svc-name { color: var(--white); }
.svc-tagline {
  font-size: 0.88rem;
  color: var(--ink-40);
  line-height: 1.5;
  margin: 0 0 28px;
}
.svc-aside--dark .svc-tagline { color: rgba(255,255,255,0.5); }
.svc-aside-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Body (right panel) ── */
.svc-body {
  padding-top: 8px;
}
.svc-lead {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.svc-body--dark .svc-lead { color: rgba(255,255,255,0.9); }
.svc-para {
  font-size: 0.96rem;
  color: var(--ink-40);
  line-height: 1.7;
  margin: 0 0 32px;
}
.svc-body--dark .svc-para { color: rgba(255,255,255,0.55); }

/* Feature chips */
.svc-chips-label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 14px;
}
.svc-chips-label--dark { color: rgba(255,255,255,0.35); }
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-55);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.svc-chip:hover {
  background: var(--brand-soft);
  border-color: var(--brand-line);
  color: var(--brand);
}
.svc-chip .bi { color: var(--brand); font-size: 0.75rem; }
.svc-chip--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.svc-chip--dark:hover {
  background: rgba(232,93,28,0.18);
  border-color: rgba(232,93,28,0.35);
  color: var(--brand);
}
.svc-chip--dark .bi { color: var(--brand); }

/* Responsive */
@media (max-width: 991.98px) {
  .svc-section { padding: 60px 0; }
  .svc-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-aside { position: static; }
  .svc-step { font-size: 2.5rem; }
}
@media (max-width: 575.98px) {
  .svc-section { padding: 44px 0; }
  .svc-aside-ctas .btn { flex: 1; justify-content: center; }
  .svc-chip { font-size: 0.80rem; padding: 7px 13px; }
}

/* ==========================================================================
   Services Page — Why Strip
   ========================================================================== */
.svc-why-strip {
  background: var(--ink);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.svc-why-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(232,93,28,0.2), transparent 70%);
  pointer-events: none;
}
.svc-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-why-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 8px 0 16px;
}
.svc-why-title em { color: var(--brand); font-style: normal; }
.svc-why-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}
.svc-why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.svc-why-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: background 200ms ease, border-color 200ms ease;
}
.svc-why-pill:hover {
  background: rgba(232,93,28,0.15);
  border-color: rgba(232,93,28,0.3);
}
.svc-why-pill .bi { color: var(--brand); font-size: 0.9rem; }

@media (max-width: 991.98px) {
  .svc-why-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-why-strip { padding: 56px 0; }
}
@media (max-width: 575.98px) {
  .svc-why-pill { font-size: 0.80rem; padding: 8px 14px; }
}

/* ==========================================================================
   Services Page — Enquiry Form
   ========================================================================== */
.svc-enq-section {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-line);
}
@media (max-width: 991.98px) { .svc-enq-section { padding: 56px 0; } }

.svc-form-wrap {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 20px;
  padding: 48px;
}
@media (max-width: 575.98px) { .svc-form-wrap { padding: 28px 20px; } }

.svc-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-55);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.svc-req { color: var(--brand); }
.svc-input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink-05);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-appearance: none;
}
.svc-input:focus {
  background: var(--white);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.svc-select { cursor: pointer; }
.svc-textarea { resize: vertical; min-height: 110px; }
.svc-submit { padding: 13px 28px; font-size: 0.92rem; }
.svc-note {
  font-size: 0.80rem;
  color: var(--ink-30);
}
.svc-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}
.svc-success-icon {
  font-size: 3rem;
  color: #22c55e;
}
.svc-success h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.svc-success p { color: var(--ink-40); margin: 0; }

/* Sidebar */
.svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-contact-card,
.svc-why-card,
.svc-certifications {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 16px;
  padding: 24px;
}
.svc-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.svc-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.svc-contact-row:last-child { margin-bottom: 0; }
.svc-c-icon {
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.svc-c-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 2px;
}
.svc-c-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.svc-c-val:hover { color: var(--brand); }
.svc-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-55);
  line-height: 1.45;
}
.svc-why-list .bi { color: var(--brand); flex-shrink: 0; font-size: 0.95rem; margin-top: 1px; }
.svc-cert-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-cert-logo {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
  border-radius: 6px;
  background: var(--ink-02);
  padding: 6px;
}
.svc-cert-logo:hover { filter: none; opacity: 1; }

@media (max-width: 991.98px) {
  .svc-sidebar { flex-direction: row; flex-wrap: wrap; }
  .svc-contact-card,
  .svc-why-card,
  .svc-certifications { flex: 1 1 280px; }
}
@media (max-width: 575.98px) {
  .svc-contact-card,
  .svc-why-card,
  .svc-certifications { flex: 1 1 100%; }
}

/* ==========================================================================
   About Page — Shared
   ========================================================================== */
.abt-section-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.abt-section-title em { font-style: italic; color: var(--brand); }
.abt-title-light { color: var(--white); }
.abt-title-light em { color: var(--brand); font-style: italic; }

.abt-body-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-40);
  margin: 0 0 18px;
}
.abt-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-40);
  margin: 0 0 16px;
}

/* ==========================================================================
   About Page — Hero
   ========================================================================== */
.abt-hero {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.60) 60%, rgba(10,10,10,0.85) 100%),
    url('../images/bg2.jpeg') center center / cover no-repeat;
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}
.abt-hero-inner {
  max-width: 780px;
  padding-bottom: 64px;
}
.abt-hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.abt-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 24px;
}
.abt-hero-title em { font-style: italic; color: var(--brand); }
.abt-hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 0 40px;
}
.abt-hero-scroll { display: flex; }
.abt-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  letter-spacing: 0.02em;
}
.abt-scroll-link:hover { color: var(--brand); }
.abt-scroll-link .bi {
  font-size: 1.1rem;
  animation: heroBounce 1.8s ease-in-out infinite;
}
@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* Ticker strip */
.abt-hero-ticker {
  background: var(--brand);
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.abt-hero-ticker span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.abt-dot { opacity: 0.5; }

@media (max-width: 767.98px) {
  .abt-hero { padding: 72px 0 0; }
  .abt-hero-inner { padding-bottom: 48px; }
}
@media (max-width: 575.98px) {
  .abt-hero { padding: 56px 0 0; }
}

/* ==========================================================================
   About Page — Profile
   ========================================================================== */
.abt-profile {
  padding: 96px 0;
  background: var(--white);
}
.abt-profile-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.abt-pull {
  border-left: 3px solid var(--brand);
  padding: 16px 0 16px 24px;
  margin: 24px 0 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-55);
  line-height: 1.6;
}

/* Timeline */
.abt-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 112px;
}
.abt-tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 20px;
  padding: 0 0 28px;
  position: relative;
}
.abt-tl-item::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--ink-05);
}
.abt-tl-item:last-child::before { display: none; }
.abt-tl-year {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  padding: 4px 10px;
  text-align: center;
  height: fit-content;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.abt-tl-content h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.abt-tl-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-40);
  margin: 0;
}
.abt-tl-item--now .abt-tl-year {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand-deep);
}

@media (max-width: 991.98px) {
  .abt-profile-grid { grid-template-columns: 1fr; gap: 48px; }
  .abt-timeline { position: static; }
  .abt-profile { padding: 72px 0; }
}
@media (max-width: 575.98px) {
  .abt-profile { padding: 56px 0; }
}

/* ==========================================================================
   About Page — Stats Band
   ========================================================================== */
.abt-stats {
  background: var(--ink);
  padding: 64px 0;
}
.abt-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.abt-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  gap: 6px;
}
.abt-stat-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.abt-stat-lbl {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.abt-stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .abt-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .abt-stat-div { display: none; }
  .abt-stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .abt-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ==========================================================================
   About Page — Mission
   ========================================================================== */
.abt-mission {
  padding: 96px 0;
  background: var(--cream);
}
.abt-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.abt-mission-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.abt-mission-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--brand-line);
}
.abt-mc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.abt-mc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand);
  flex-shrink: 0;
}
.abt-mc-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-05);
  letter-spacing: -0.04em;
  line-height: 1;
}
.abt-mc-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.abt-mc-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-40);
  margin: 0;
}

@media (max-width: 767.98px) {
  .abt-mission-grid { grid-template-columns: 1fr; }
  .abt-mission { padding: 72px 0; }
  .abt-mission-card { padding: 28px 24px; }
}
@media (max-width: 575.98px) {
  .abt-mission { padding: 56px 0; }
}

/* ==========================================================================
   About Page — Beliefs
   ========================================================================== */
.abt-beliefs {
  background: var(--ink-85);
  padding: 96px 0;
}
.abt-beliefs-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.abt-beliefs-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.abt-beliefs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.abt-belief {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.abt-belief:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.abt-belief-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-top: 4px;
  flex-shrink: 0;
}
.abt-belief-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.abt-belief-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 991.98px) {
  .abt-beliefs-inner { grid-template-columns: 1fr; gap: 48px; }
  .abt-beliefs { padding: 72px 0; }
}
@media (max-width: 575.98px) {
  .abt-beliefs { padding: 56px 0; }
  .abt-belief { grid-template-columns: 40px 1fr; gap: 0 14px; }
}

/* ==========================================================================
   About Page — Why Us
   ========================================================================== */
.abt-why {
  padding: 96px 0;
  background: var(--white);
}
.abt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.abt-why-card {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.abt-why-card:hover {
  background: var(--white);
  border-color: var(--brand-line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.abt-wc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand);
  margin-bottom: 20px;
}
.abt-wc-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.abt-wc-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-40);
  margin: 0;
}

@media (max-width: 991.98px) {
  .abt-why-grid { grid-template-columns: 1fr 1fr; }
  .abt-why { padding: 72px 0; }
}
@media (max-width: 575.98px) {
  .abt-why-grid { grid-template-columns: 1fr; }
  .abt-why { padding: 56px 0; }
  .abt-why-card { padding: 24px 20px; }
}

/* ==========================================================================
   About Page — Team
   ========================================================================== */
.abt-team {
  padding: 96px 0;
  background: var(--cream);
}
.abt-team-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.abt-team-intro { position: sticky; top: 112px; }
.abt-team-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.abt-role-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.abt-role-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  border-color: var(--brand-line);
}
.abt-role-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--brand);
  margin-bottom: 18px;
}
.abt-role-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.abt-role-desc {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--ink-40);
  margin: 0 0 16px;
}
.abt-role-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abt-role-tags li {
  font-size: 0.8rem;
  color: var(--ink-55);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.abt-role-tags li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 0.7rem;
}

@media (max-width: 991.98px) {
  .abt-team-inner { grid-template-columns: 1fr; gap: 48px; }
  .abt-team-intro { position: static; }
  .abt-team { padding: 72px 0; }
}
@media (max-width: 575.98px) {
  .abt-team-roles { grid-template-columns: 1fr; }
  .abt-team { padding: 56px 0; }
  .abt-role-card { padding: 22px 18px; }
}

/* ==========================================================================
   About Page — CTA
   ========================================================================== */
.abt-cta {
  background: var(--ink);
  padding: 80px 0;
}
.abt-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.abt-cta-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
}
.abt-cta-title em { font-style: italic; color: var(--brand); }
.abt-cta-sub {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 520px;
}
.abt-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .abt-cta-inner { flex-direction: column; align-items: flex-start; }
  .abt-cta { padding: 64px 0; }
}
@media (max-width: 575.98px) {
  .abt-cta-actions { flex-direction: column; width: 100%; }
  .abt-cta-actions .btn { width: 100%; justify-content: center; }
  .abt-cta { padding: 56px 0; }
}

/* ==========================================================================
   Contact Page — Hero
   ========================================================================== */
.cnt-hero {
  background: var(--ink-85);
  padding: 80px 0 64px;
}
.cnt-hero-inner { max-width: 720px; }
.cnt-hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.cnt-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
}
.cnt-hero-title em { font-style: italic; color: var(--brand); }
.cnt-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 580px;
}
@media (max-width: 575.98px) {
  .cnt-hero { padding: 60px 0 48px; }
}

/* ==========================================================================
   Contact Page — Info Band
   ========================================================================== */
.cnt-info-band {
  background: var(--brand);
  padding: 0;
}
.cnt-info-items {
  display: flex;
  align-items: stretch;
}
.cnt-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 22px 28px;
}
.cnt-info-item .bi {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.cnt-info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}
.cnt-info-val {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
a.cnt-info-val:hover { color: rgba(255,255,255,0.75); }
.cnt-info-div {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .cnt-info-items { flex-wrap: wrap; }
  .cnt-info-item { flex: 1 1 calc(50% - 1px); }
  .cnt-info-div:nth-child(4) { display: none; }
}
@media (max-width: 575.98px) {
  .cnt-info-item { flex: 1 1 100%; padding: 16px 20px; }
  .cnt-info-div { display: none; }
  .cnt-info-item + .cnt-info-item {
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}

/* ==========================================================================
   Contact Page — Main Layout
   ========================================================================== */
.cnt-main {
  padding: 80px 0;
  background: var(--cream);
}
.cnt-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991.98px) {
  .cnt-layout { grid-template-columns: 1fr; }
  .cnt-main { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .cnt-main { padding: 48px 0; }
}

/* ==========================================================================
   Contact Page — Detail Cards
   ========================================================================== */
.cnt-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cnt-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cnt-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  border-color: var(--brand-line);
}
.cnt-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.cnt-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-40);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.cnt-card-addr {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 500;
}
.cnt-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.cnt-map-link:hover { color: var(--brand-deep); text-decoration: underline; }
.cnt-contact-link {
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color var(--dur) var(--ease);
}
.cnt-contact-link--primary {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.cnt-contact-link--primary:hover { color: var(--brand-deep); }
.cnt-card-note {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--ink-30);
  margin: 0;
}

/* Hours grid */
.cnt-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cnt-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}
.cnt-hours-day { color: var(--ink); font-weight: 500; }
.cnt-hours-time { color: var(--brand); font-weight: 600; font-family: 'Inter Tight', sans-serif; }
.cnt-hours-row--closed .cnt-hours-day { color: var(--ink-30); }
.cnt-hours-row--closed .cnt-hours-time { color: var(--ink-30); font-weight: 400; }

/* ==========================================================================
   Contact Page — Form
   ========================================================================== */
.cnt-form-wrap {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 24px;
  padding: 48px;
  position: sticky;
  top: 112px;
}
.cnt-form-head { margin-bottom: 32px; }
.cnt-form-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 8px;
}
.cnt-form-sub {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-40);
  margin: 0;
}

.cnt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cnt-field { margin-bottom: 16px; }
.cnt-field:last-of-type { margin-bottom: 0; }

.cnt-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-55);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.cnt-req { color: var(--brand); }
.cnt-input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink-05);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
}
.cnt-input:focus {
  background: var(--white);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.cnt-select { cursor: pointer; }
.cnt-textarea { resize: vertical; min-height: 130px; }

.cnt-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-05);
}
.cnt-privacy-note {
  font-size: 0.78rem;
  color: var(--ink-30);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.cnt-privacy-note .bi { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.cnt-submit { padding: 13px 28px; font-size: 0.92rem; white-space: nowrap; flex-shrink: 0; }

/* Success */
.cnt-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}
.cnt-success-icon {
  font-size: 3.5rem;
  color: #22c55e;
}
.cnt-success h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.cnt-success p { color: var(--ink-40); font-size: 0.93rem; line-height: 1.65; margin: 0; }

@media (max-width: 991.98px) {
  .cnt-form-wrap { position: static; padding: 36px 32px; }
}
@media (max-width: 575.98px) {
  .cnt-form-wrap { padding: 28px 20px; border-radius: 18px; }
  .cnt-form-row { grid-template-columns: 1fr; gap: 0; }
  .cnt-form-footer { flex-direction: column; align-items: flex-start; }
  .cnt-submit { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Contact Page — Map
   ========================================================================== */
.cnt-map-section {
  background: var(--ink-85);
}
.cnt-map-label {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cnt-map-label-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.cnt-map-label-inner .bi-geo-alt-fill { color: var(--brand); font-size: 1rem; }
.cnt-map-ext {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.cnt-map-ext:hover { color: var(--white); }
.cnt-map-frame {
  width: 100%;
  height: 420px;
  display: block;
}
.cnt-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 767.98px) {
  .cnt-map-frame { height: 300px; }
}
@media (max-width: 575.98px) {
  .cnt-map-frame { height: 250px; }
}

/* ==========================================================================
   Industries Page — Hero
   ========================================================================== */
.ind-hero {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.90) 100%),
    url('../images/bg3.jpeg') center center / cover no-repeat;
  padding: 100px 0 0;
  overflow: hidden;
}
.ind-hero-inner { max-width: 800px; padding-bottom: 64px; }
.ind-hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.ind-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 24px;
}
.ind-hero-title em { font-style: italic; color: var(--brand); }
.ind-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 680px;
  margin: 0;
}

/* Sector jump strip */
.ind-sector-strip {
  background: var(--white);
  border-top: 1px solid var(--ink-05);
  border-bottom: 1px solid var(--ink-05);
  position: sticky;
  top: 84px;
  z-index: 90;
}
.ind-sector-links {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ind-sector-links::-webkit-scrollbar { display: none; }
.ind-sector-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-40);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  letter-spacing: 0.01em;
}
.ind-sector-link .bi { font-size: 0.85rem; }
.ind-sector-link:hover,
.ind-sector-link.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (max-width: 767.98px) {
  .ind-hero { padding: 72px 0 0; }
  .ind-hero-inner { padding-bottom: 48px; }
  .ind-sector-link { padding: 12px 14px; font-size: 0.76rem; }
}

/* ==========================================================================
   Industries Page — Section Layout
   ========================================================================== */
.ind-section {
  padding: 96px 0;
  scroll-margin-top: 140px;
}
.ind-section--light { background: var(--white); }
.ind-section--alt   { background: var(--cream); }
.ind-section--dark  { background: var(--ink-85); }
.ind-section--brand { background: var(--brand); }

.ind-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.ind-layout--reverse {
  grid-template-columns: 1fr 300px;
}
.ind-layout--reverse .ind-aside { order: 2; }
.ind-layout--reverse .ind-body  { order: 1; }

/* Aside */
.ind-aside { position: sticky; top: 140px; }
.ind-aside-top {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}
.ind-step {
  font-family: 'Inter Tight', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink-05);
  flex-shrink: 0;
}
.ind-section--dark  .ind-step { color: rgba(255,255,255,0.1); }
.ind-section--brand .ind-step { color: rgba(255,255,255,0.2); }

.ind-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ind-icon-box--brand { background: var(--brand-soft); color: var(--brand); }
.ind-icon-box--light { background: rgba(255,255,255,0.12); color: var(--white); }
.ind-icon-box--white { background: rgba(255,255,255,0.15); color: var(--white); }

.ind-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 8px;
}
.ind-section--dark  .ind-name { color: var(--white); }
.ind-section--brand .ind-name { color: var(--white); }

.ind-tagline {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-40);
  margin: 0 0 24px;
}
.ind-section--dark  .ind-tagline { color: rgba(255,255,255,0.5); }
.ind-section--brand .ind-tagline { color: rgba(255,255,255,0.75); }

.ind-aside-clients { margin-top: 28px; }
.ind-clients-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 12px;
}
.ind-section--dark  .ind-clients-label { color: rgba(255,255,255,0.35); }
.ind-section--brand .ind-clients-label { color: rgba(255,255,255,0.6); }

.ind-client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.ind-client-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  /* filter: grayscale(100%);
  opacity: 0.5; */
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.ind-client-logo:hover { filter: none; opacity: 1; }
.ind-client-note {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-30);
  margin: 0;
}
.ind-section--dark  .ind-client-note { color: rgba(255,255,255,0.35); }

/* Body */
.ind-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-40);
  margin: 0 0 18px;
  font-weight: 500;
}
.ind-section--dark  .ind-lead { color: rgba(255,255,255,0.75); }
.ind-section--brand .ind-lead { color: rgba(255,255,255,0.9); }

.ind-para {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--ink-40);
  margin: 0 0 28px;
}
.ind-section--dark  .ind-para { color: rgba(255,255,255,0.55); }
.ind-section--brand .ind-para { color: rgba(255,255,255,0.8); }

.ind-chips-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 12px;
}
.ind-section--dark  .ind-chips-label { color: rgba(255,255,255,0.35); }
.ind-section--brand .ind-chips-label { color: rgba(255,255,255,0.6); }

.ind-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.ind-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-55);
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 100px;
  line-height: 1;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ind-chip .bi { color: var(--brand); font-size: 0.75rem; }
.ind-chip--light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
}
.ind-chip--light .bi { color: rgba(255,255,255,0.6); }
.ind-chip--white {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.ind-chip--white .bi { color: var(--white); }

/* Quote */
.ind-quote {
  border-left: 3px solid var(--brand);
  padding: 16px 0 16px 24px;
  margin: 0;
}
.ind-quote p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.97rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-55);
  line-height: 1.65;
  margin: 0 0 8px;
}
.ind-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-30);
}
.ind-quote--light { border-left-color: rgba(255,255,255,0.3); }
.ind-quote--light p { color: rgba(255,255,255,0.65); }
.ind-quote--light cite { color: rgba(255,255,255,0.4); }
.ind-quote--white { border-left-color: rgba(255,255,255,0.5); }
.ind-quote--white p { color: var(--white); }
.ind-quote--white cite { color: rgba(255,255,255,0.6); }

@media (max-width: 991.98px) {
  .ind-layout,
  .ind-layout--reverse { grid-template-columns: 1fr; gap: 40px; }
  .ind-layout--reverse .ind-aside,
  .ind-layout--reverse .ind-body { order: unset; }
  .ind-aside { position: static; }
  .ind-section { padding: 72px 0; }
}
@media (max-width: 575.98px) {
  .ind-section { padding: 56px 0; }
}

/* ==========================================================================
   Industries Page — Logos Band
   ========================================================================== */
.ind-logos-section {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--cream-line);
}
.ind-logos-head {
  text-align: center;
  margin-bottom: 48px;
}
.ind-logos-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.ind-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.ind-logo {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: center;
  /* filter: grayscale(100%);
  opacity: 0.45; */
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.ind-logo:hover { filter: none; opacity: 1; }

@media (max-width: 991.98px) {
  .ind-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .ind-logos-section { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .ind-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ind-logos-section { padding: 48px 0; }
}

/* ==========================================================================
   Industries Page — CTA
   ========================================================================== */
.ind-cta {
  background: var(--ink);
  padding: 80px 0;
}
.ind-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ind-cta-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
}
.ind-cta-title em { font-style: italic; color: var(--brand); }
.ind-cta-sub {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 520px;
}
.ind-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .ind-cta-inner { flex-direction: column; align-items: flex-start; }
  .ind-cta { padding: 64px 0; }
}
@media (max-width: 575.98px) {
  .ind-cta-actions { flex-direction: column; width: 100%; }
  .ind-cta-actions .btn { width: 100%; justify-content: center; }
  .ind-cta { padding: 48px 0; }
}

/* ==========================================================================
   Work List Page — Hero
   ========================================================================== */
.wrk-hero {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.62) 60%, rgba(10,10,10,0.88) 100%),
    url('../images/bg1.jpeg') center 30% / cover no-repeat;
  padding: 100px 0 80px;
}
.wrk-hero-inner { max-width: 740px; }
.wrk-hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.wrk-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 22px;
}
.wrk-hero-title em { font-style: italic; color: var(--brand); }
.wrk-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 620px;
  margin: 0;
}
@media (max-width: 575.98px) { .wrk-hero { padding: 72px 0 56px; } }

/* ==========================================================================
   Work List Page — Filter Bar
   ========================================================================== */
.wrk-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--ink-05);
  position: sticky;
  top: 84px;
  z-index: 90;
  padding: 0;
}
.wrk-filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wrk-filters {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
  flex: 1;
}
.wrk-filters::-webkit-scrollbar { display: none; }
.wrk-filter {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-40);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  font-family: 'Inter', sans-serif;
}
.wrk-filter:hover { background: var(--cream); color: var(--ink); border-color: var(--cream-line); }
.wrk-filter.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.wrk-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-30);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 12px 0;
}

/* ==========================================================================
   Work List Page — Grid
   ========================================================================== */
.wrk-grid-section {
  background: var(--cream);
  padding: 64px 0 96px;
}
.wrk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wrk-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.wrk-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--brand-line);
}
.wrk-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.wrk-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.wrk-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
/* Category colours */
.wrk-cat--healthcare   { background: #fef2f2; color: #dc2626; }
.wrk-cat--hospitality  { background: #fffbeb; color: #d97706; }
.wrk-cat--manufacturing{ background: #f0fdf4; color: #16a34a; }
.wrk-cat--corporate    { background: #eff6ff; color: #2563eb; }
.wrk-cat--education    { background: #faf5ff; color: #7c3aed; }
.wrk-cat--government   { background: #f0f9ff; color: #0284c7; }
.wrk-cat--retail       { background: #fff7ed; color: var(--brand); }

.wrk-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wrk-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.wrk-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  font-family: 'Inter Tight', sans-serif;
}
.wrk-location {
  font-size: 0.78rem;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  gap: 3px;
}
.wrk-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}
.wrk-card-desc {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--ink-40);
  margin: 0 0 16px;
  flex: 1;
}
.wrk-card-stat {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wrk-stat-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
  flex-shrink: 0;
}
.wrk-stat-lbl {
  font-size: 0.76rem;
  color: var(--ink-40);
  line-height: 1.4;
}
.wrk-card-cta {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur) var(--ease);
}
.wrk-card:hover .wrk-card-cta { gap: 10px; }

.wrk-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 12px;
  color: var(--ink-30);
  font-size: 0.95rem;
}
.wrk-empty .bi { font-size: 2.5rem; }

@media (max-width: 991.98px) {
  .wrk-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .wrk-grid-section { padding: 48px 0 72px; }
}
@media (max-width: 575.98px) {
  .wrk-grid { grid-template-columns: 1fr; gap: 16px; }
  .wrk-filter-bar .container { flex-wrap: wrap; }
  .wrk-count { padding: 0 0 12px; width: 100%; }
}

/* ==========================================================================
   Case Study Detail — Hero
   ========================================================================== */
.cs-hero {
  background-color: var(--ink-85);
  background-size: cover;
  background-position: center 40%;
  padding: 100px 0 80px;
  position: relative;
}
.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.60) 50%, rgba(10,10,10,0.80) 100%);
  pointer-events: none;
}
.cs-hero .container { position: relative; z-index: 1; }
.cs-hero-inner { max-width: 780px; }
.cs-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.cs-cat--healthcare { background: rgba(220,38,38,0.15); color: #ef4444; }
.cs-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
}
.cs-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 660px;
  margin: 0;
}
@media (max-width: 767.98px) { .cs-hero { padding: 72px 0 56px; } }
@media (max-width: 575.98px) { .cs-hero { padding: 60px 0 48px; } }

/* ==========================================================================
   Case Study Detail — Stats Bar
   ========================================================================== */
.cs-stats-bar {
  background: var(--ink);
  padding: 0;
}
.cs-stats-row {
  display: flex;
  align-items: stretch;
}
.cs-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  gap: 4px;
}
.cs-stat-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.cs-stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cs-stat-div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .cs-stats-row { flex-wrap: wrap; }
  .cs-stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .cs-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .cs-stat-div { display: none; }
}

/* ==========================================================================
   Case Study Detail — Body
   ========================================================================== */
.cs-body-section {
  padding: 80px 0;
  background: var(--white);
}
.cs-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* Narrative blocks */
.cs-block { margin-bottom: 56px; }
.cs-block:last-child { margin-bottom: 0; }
.cs-block-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.cs-block-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  padding: 3px 10px;
  flex-shrink: 0;
}
.cs-para {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-40);
  margin: 0 0 16px;
}
.cs-para:last-child { margin-bottom: 0; }

/* Challenge list */
.cs-challenge-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 20px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 14px;
}
.cs-challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-55);
  line-height: 1.5;
}
.cs-challenge-item .bi { color: #dc2626; flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }

/* Solution image */
.cs-solution-img {
  margin-top: 24px;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}
@media (max-width: 575.98px) { .cs-solution-img { height: 220px; } }

/* Outcomes */
.cs-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cs-outcome-card {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color var(--dur) var(--ease);
}
.cs-outcome-card:hover { border-color: var(--brand-line); }
.cs-outcome-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: 14px;
}
.cs-outcome-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cs-outcome-desc { font-size: 0.83rem; line-height: 1.6; color: var(--ink-40); margin: 0; }

/* Quote */
.cs-quote-block {
  background: var(--ink-85);
  border-radius: 20px;
  padding: 40px 40px 36px;
  margin-top: 40px;
  position: relative;
}
.cs-quote-mark {
  font-family: 'Inter Tight', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.4;
  position: absolute;
  top: 20px;
  left: 36px;
  font-weight: 700;
  pointer-events: none;
}
.cs-quote-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  margin: 0 0 24px;
  padding-top: 28px;
}
.cs-quote-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cs-quote-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-quote-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.cs-quote-org { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* Sidebar */
.cs-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cs-sidebar-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 18px;
  padding: 24px;
}
.cs-sidebar-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin: 0 0 18px;
}
.cs-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-02);
  font-size: 0.86rem;
}
.cs-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.cs-detail-label { color: var(--ink-30); flex-shrink: 0; }
.cs-detail-val { color: var(--ink); font-weight: 500; text-align: right; }
.cs-tech-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-tech-chip {
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-55);
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 100px;
}
.cs-sidebar-cta { background: var(--cream); }
.cs-sidebar-sub { font-size: 0.85rem; line-height: 1.6; color: var(--ink-40); margin: 0 0 16px; }

@media (max-width: 991.98px) {
  .cs-layout { grid-template-columns: 1fr; }
  .cs-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .cs-sidebar-card { flex: 1 1 280px; }
  .cs-outcomes { grid-template-columns: 1fr 1fr; }
  .cs-body-section { padding: 56px 0; }
}
@media (max-width: 575.98px) {
  .cs-sidebar-card { flex: 1 1 100%; }
  .cs-outcomes { grid-template-columns: 1fr; }
  .cs-quote-block { padding: 32px 24px 28px; }
  .cs-body-section { padding: 48px 0; }
}

/* ==========================================================================
   Case Study Detail — Related Work
   ========================================================================== */
.cs-related {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--cream-line);
}
.cs-related-head { margin-bottom: 40px; }
.cs-related-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.cs-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cs-related-cta { text-align: center; }

@media (max-width: 991.98px) {
  .cs-related-grid { grid-template-columns: 1fr 1fr; }
  /*.cs-related-grid .wrk-card:last-child { display: none; }*/
  .cs-related { padding: 56px 0; }
  .cs-related .reveal {margin-bottom:48px;}
  .pagination-wrap{margin-top:20px;}
}
@media (max-width: 575.98px) {
  .cs-related-grid { grid-template-columns: 1fr; }
  .cs-related-grid .wrk-card:last-child { display: flex; }
}

/* ==========================================================================
   Insights — Shared Tags
   ========================================================================== */
.ins-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.ins-tag--telecom  { background: #eff6ff; color: #2563eb; }
.ins-tag--voice   { background: #f0fdf4; color: #16a34a; }
.ins-tag--healthcare { background: #fef2f2; color: #dc2626; }
.ins-tag--avsi         { background: #faf5ff; color: #7c3aed; }
.ins-tag--networking { background: #f0f9ff; color: #0284c7; }
.ins-tag--technology   { background: #fff7ed; color: var(--brand); }
.ins-tag--information-technology{ background: #fffbeb; color: #d97706; }
.ins-tag--business{ background: #fffbeb; color: #d97706; }
.ins-tag--conferencing{ background: #fffbeb; color: #d97706; }

/* ==========================================================================
   Insights — List Page Hero
   ========================================================================== */
.ins-hero {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.88) 100%),
    url('../images/bg1.jpeg') center 30% / cover no-repeat;
  padding: 100px 0 80px;
}
.ins-hero-inner { max-width: 740px; }
.ins-hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.ins-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 22px;
}
.ins-hero-title em { font-style: italic; color: var(--brand); }
.ins-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 620px;
  margin: 0;
}
@media (max-width: 575.98px) { .ins-hero { padding: 72px 0 56px; } }

/* ==========================================================================
   Insights — Featured Post
   ========================================================================== */
.ins-featured {
  background: var(--white);
  padding: 64px 0 0;
}
.ins-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--ink-05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ins-featured-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: var(--brand-line);
}
.ins-featured-img {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ins-featured-img .ins-tag {
  position: absolute;
  top: 20px;
  left: 20px;
}
.ins-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.ins-featured-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.ins-featured-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.25;
}
.ins-featured-desc {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--ink-40);
  margin: 0 0 28px;
}
.ins-featured-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--ink-30);
  flex-wrap: wrap;
}
.ins-read-time { display: flex; align-items: center; gap: 5px; }
.ins-read-cta {
  margin-left: auto;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur) var(--ease);
}
.ins-featured-card:hover .ins-read-cta { gap: 10px; }

@media (max-width: 991.98px) {
  .ins-featured-card { grid-template-columns: 1fr; }
  .ins-featured-img { min-height: 260px; }
  .ins-featured-body { padding: 32px 28px; }
}
@media (max-width: 575.98px) {
  .ins-featured-body { padding: 24px 20px; }
  .ins-featured { padding: 48px 0 0; }
}

/* ==========================================================================
   Insights — Articles Grid
   ========================================================================== */
.ins-grid-section {
  background: var(--white);
  padding: 48px 0 96px;
}
.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ins-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ins-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: var(--brand-line);
}
.ins-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ins-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.ins-card-img .ins-tag {
  position: absolute;
  top: 14px;
  left: 14px;
}
.ins-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ins-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ins-date { font-size: 0.78rem; color: var(--ink-30); }
.ins-read-time { font-size: 0.78rem; color: var(--ink-30); display: flex; align-items: center; gap: 4px; }
.ins-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.35;
}
.ins-card-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ink-40);
  margin: 0 0 16px;
  flex: 1;
}
.ins-card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur) var(--ease);
}
.ins-card:hover .ins-card-cta { gap: 10px; }

@media (max-width: 991.98px) {
  .ins-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ins-grid-section { padding: 40px 0 72px; }
}
@media (max-width: 575.98px) {
  .ins-grid { grid-template-columns: 1fr; gap: 16px; }
  .ins-grid-section { padding: 32px 0 56px; }
}

/* ==========================================================================
   Article Detail — Progress Bar
   ========================================================================== */
.art-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--brand);
  z-index: 9999;
  transition: width 80ms linear;
}

/* ==========================================================================
   Article Detail — Hero
   ========================================================================== */
.art-hero {
  background-color: var(--ink-85);
  background-size: cover;
  background-position: center 40%;
  padding: 100px 0 72px;
  position: relative;
}
.art-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.62) 50%, rgba(10,10,10,0.82) 100%);
  pointer-events: none;
}
.art-hero .container { position: relative; z-index: 1; }
.art-hero-inner { max-width: 820px; }
.art-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 24px;
}
.art-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.art-meta-div { opacity: 0.4; }
@media (max-width: 767.98px) { .art-hero { padding: 72px 0 56px; } }
@media (max-width: 575.98px) { .art-hero { padding: 60px 0 48px; } }

/* ==========================================================================
   Article Detail — Body Layout
   ========================================================================== */
.art-body-section {
  padding: 72px 0 80px;
  background: var(--white);
}
.art-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 780px;
  margin: 0 auto;
  align-items: start;
}

/* Article typography */
.art-lead {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--ink-55);
  margin: 0 0 32px;
  font-weight: 500;
  border-left: 3px solid var(--brand);
  padding-left: 20px;
}
.art-h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 40px 0 16px;
}
.art-p {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--ink-40);
  margin: 0 0 16px;
}
.art-list {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.art-list li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-40);
  padding-left: 20px;
  position: relative;
}
.art-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 600;
}

/* Callout boxes */
.art-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 14px;
  margin: 28px 0;
  font-size: 0.9rem;
  line-height: 1.65;
}
.art-callout-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.art-callout--info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.art-callout--info .art-callout-icon { color: #3b82f6; }
.art-callout--warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.art-callout--warning .art-callout-icon { color: #f59e0b; }
.art-callout--brand   { background: var(--brand-soft); border: 1px solid var(--brand-line); color: var(--ink-55); }
.art-callout--brand .art-callout-icon { color: var(--brand); }

/* Comparison table */
.art-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: 14px;
  border: 1px solid var(--ink-05);
}
.art-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 540px;
}
.art-table thead tr { background: var(--ink); }
.art-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.art-table thead th:first-child { border-radius: 13px 0 0 0; }
.art-table thead th:last-child  { border-radius: 0 13px 0 0; }
.art-table tbody tr { border-bottom: 1px solid var(--ink-05); }
.art-table tbody tr:last-child { border-bottom: none; }
.art-table tbody tr:nth-child(even) { background: var(--cream); }
.art-table td { padding: 13px 18px; color: var(--ink-40); line-height: 1.5; }
.art-table td:first-child { font-weight: 600; color: var(--ink); }
.art-td--good { color: #16a34a !important; font-weight: 500 !important; }
.art-td--bad  { color: #dc2626 !important; }
.art-td--neutral { color: var(--ink-40) !important; }

/* Author box */
.art-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 16px;
  margin: 40px 0 32px;
}
.art-author-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.art-author-name { font-weight: 700; color: var(--ink); font-size: 0.92rem; margin-bottom: 4px; }
.art-author-bio { font-size: 0.84rem; line-height: 1.6; color: var(--ink-40); }

/* Footer nav */
.art-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-05);
}
.art-back-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-40);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur) var(--ease);
}
.art-back-link:hover { color: var(--brand); }
.art-share { display: flex; align-items: center; gap: 8px; }
.art-share-label { font-size: 0.8rem; color: var(--ink-30); font-weight: 600; }
.art-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink-02);
  border: 1px solid var(--ink-05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-40);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.art-share-btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* Sidebar */
.art-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.art-sidebar-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: 18px;
  padding: 24px;
}
.art-sidebar-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin: 0 0 16px;
}
.art-sidebar-sub { font-size: 0.86rem; line-height: 1.6; color: var(--ink-40); margin: 0 0 16px; }
.art-sidebar-cta { background: var(--cream); border-color: var(--cream-line); }

/* Related links */
.art-related-links { display: flex; flex-direction: column; gap: 4px; }
.art-rel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-02);
  text-decoration: none;
  transition: opacity var(--dur) var(--ease);
}
.art-rel-link:last-child { border-bottom: none; padding-bottom: 0; }
.art-rel-link:hover { opacity: 0.75; }
.art-rel-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.art-rel-name { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.art-rel-sub  { font-size: 0.76rem; color: var(--ink-30); }
.art-rel-arrow { margin-left: auto; color: var(--ink-20); font-size: 0.8rem; }

/* More posts */
.art-more-posts { display: flex; flex-direction: column; gap: 0; }
.art-more-post {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-02);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity var(--dur) var(--ease);
}
.art-more-post:last-child { border-bottom: none; padding-bottom: 0; }
.art-more-post:hover { opacity: 0.7; }
.art-more-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.art-more-title { font-size: 0.85rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

@media (max-width: 991.98px) {
  .art-layout { grid-template-columns: 1fr; }
  .art-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .art-sidebar-card { flex: 1 1 280px; }
  .art-body-section { padding: 56px 0 64px; }
}
@media (max-width: 575.98px) {
  .art-sidebar-card { flex: 1 1 100%; }
  .art-body-section { padding: 40px 0 48px; }
  .art-footer-nav { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Article Detail — Related Section
   ========================================================================== */
.art-related-section {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--cream-line);
}
.art-related-head { margin-bottom: 40px; }
.art-related-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.art-related-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991.98px) {
  .art-related-grid { grid-template-columns: 1fr 1fr !important; }
  .art-related-grid .ins-card:last-child { display: none; }
  .art-related-section { padding: 56px 0; }
}
@media (max-width: 575.98px) {
  .art-related-grid { grid-template-columns: 1fr !important; }
  .art-related-grid .ins-card:last-child { display: flex; }
}
