/* ============================================
   JYOTHI PROCESS — Clean Modern Redesign v3
   Light theme · Vistaprint content · nextec/handhold UI
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand */
  --cyan:        #00AEEF;
  --cyan-light:  #E0F4FD;
  --cyan-mid:    #BAE6FC;
  --cyan-dark:   #0086BA;
  --magenta:     #EC008C;
  --magenta-light: #FCE7F3;
  --yellow:      #FACC15;
  --yellow-light: #FEF9C3;

  /* Neutrals */
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gray-900:    #0F172A;

  /* Semantic */
  --bg:          var(--white);
  --bg-subtle:   var(--gray-50);
  --bg-accent:   #EFF8FF;
  --text:        var(--gray-900);
  --text-muted:  var(--gray-500);
  --border:      var(--gray-200);
  --border-dark: var(--gray-300);

  /* Shadows — ultra soft */
  --shadow-xs:   0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm:   0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:   0 4px 12px rgba(15,23,42,0.07), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg:   0 12px 28px rgba(15,23,42,0.08), 0 4px 8px rgba(15,23,42,0.04);
  --shadow-xl:   0 24px 48px rgba(15,23,42,0.10), 0 8px 16px rgba(15,23,42,0.05);
  --shadow-cyan: 0 4px 20px rgba(0,174,239,0.22);

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Nav */
  --nav-h: 88px;

  /* Spacing */
  --section-y: 6rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Type helpers ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: 99px;
  flex-shrink: 0;
}
h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--gray-900);
}
.display {
  font-size: clamp(2.75rem, 6vw, 5rem);
  letter-spacing: -0.01em;
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
}
.accent-cyan  { color: var(--cyan); }
.accent-mag   { color: var(--magenta); }
.lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CMYK stripe ── */
.cmyk-stripe {
  height: 4px;
  background: linear-gradient(90deg,
    var(--cyan)    0%   25%,
    var(--magenta) 25%  50%,
    var(--yellow)  50%  75%,
    var(--gray-900) 75% 100%
  );
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-y) 0; }
.section--subtle { background: var(--bg-subtle); }
.section--accent { background: var(--bg-accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--cyan);
  color: white;
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.btn--primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,174,239,0.3);
}
.btn--secondary {
  background: white;
  color: var(--gray-900);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--magenta {
  background: var(--magenta);
  color: white;
  border-color: var(--magenta);
  box-shadow: 0 4px 16px rgba(236,0,140,0.25);
}
.btn--magenta:hover {
  background: #cc007a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(236,0,140,0.32);
}
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn--lg { padding: 0.9rem 1.875rem; font-size: 0.9375rem; border-radius: var(--r-lg); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; border-radius: var(--r-sm); }

/* ── Badge/Tag ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag--cyan { background: var(--cyan-light); color: var(--cyan-dark); }
.tag--magenta { background: var(--magenta-light); color: var(--magenta); }
.tag--yellow { background: var(--yellow-light); color: #92400E; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  gap: 2rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.navbar__logo-icon { width: 34px; height: 34px; }
.navbar__logo-img { height: 96px; width: auto; display: block; object-fit: contain; }
.navbar__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-900);
  line-height: 1.1;
}
.navbar__logo-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
  justify-content: center;
}
.navbar__link {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--r-sm);
  transition: all 0.15s;
}
.navbar__link:hover { color: var(--gray-900); background: var(--gray-100); }
.navbar__link.active { color: var(--cyan); background: var(--cyan-light); font-weight: 600; }
.navbar__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.navbar__tel {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.15s;
}
.navbar__tel:hover { color: var(--cyan); }
.navbar__tel svg { color: var(--cyan); }

/* Mobile */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  cursor: pointer;
  padding: 2px 0;
  border: none;
  background: none;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 99px;
  transition: all 0.22s;
}
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.navbar__mobile .navbar__link { padding: 0.65rem 0.75rem; font-size: 0.9375rem; }
.navbar__mobile .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
body.nav-open .navbar__mobile { display: flex; }

@media (max-width: 1023px) {
  .navbar__nav { display: none; }
  .navbar__tel { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--gray-50);
  padding: 4.5rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 4.5rem;
}
.hero__content {}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-light);
  border: 1px solid var(--cyan-mid);
  border-radius: 99px;
  padding: 0.35rem 0.9rem 0.35rem 0.5rem;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__badge-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
}
.hero__badge-text {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cyan-dark);
}
.hero__title {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero__title .highlight { color: var(--cyan); }
.hero__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
}
.hero__trust-item svg { color: var(--cyan); flex-shrink: 0; }

/* ============================================
   HERO COLOUR PALETTE
   ============================================ */
.hero {
  transition: background-color 0.5s ease;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ── Hero Image Mosaic ── */
.hero__inner:has(.hero__mosaic) {
  grid-template-columns: 1fr 1.45fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 5rem;
}
.hero__mosaic {
  display: flex;
  gap: 10px;
  height: 480px;
}
.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mosaic-col--a { flex: 1; }
.mosaic-col--b { flex: 1.05; }
.mosaic-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: default;
  user-select: none;
  flex-shrink: 0;
}
.mosaic-card--full { flex: 1; }
.mosaic-card--lg   { flex: 2.4; }
.mosaic-card--sm   { flex: 1; }
.mosaic-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mosaic-card:hover img { transform: scale(1.09); }
.mosaic-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mosaic-card:hover .mosaic-card__overlay { opacity: 1; }
.mosaic-card__label {
  position: absolute;
  bottom: 13px; left: 13px; right: 13px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.mosaic-card:hover .mosaic-card__label {
  opacity: 1;
  transform: translateY(0);
}

/* Hero text colour transitions */
.hero__badge,
.hero__title,
.hero__sub,
.hero__trust-item,
.hero__trust { transition: color 0.4s ease, border-color 0.4s ease; }

/* Palette container */
/* Print copy above palette */
.palette__tagline {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  transition: color 0.4s ease;
}
.palette__tagline strong { color: var(--gray-900); font-weight: 700; }
/* On dark hero backgrounds, flip to light */
.hero--dark-text .palette__tagline { color: rgba(255,255,255,0.7); }
.hero--dark-text .palette__tagline strong { color: white; }

/* ── Pantone Swatch Book ── */
.palette {
  width: 100%;
  max-width: 520px;
  background: #f5f0e8;
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow:
    0 2px 0 #d4c9b0,
    0 8px 32px rgba(0,0,0,0.18),
    0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Punch hole */
.palette__ring {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 3px solid #c8bfa8;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.15);
  z-index: 2;
}
.palette__ring::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #e0d8c8;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
}

/* Book header */
.palette__header {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-top: 0.25rem;
}
.palette__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1;
}
.palette__brand sup {
  font-size: 0.45em;
  vertical-align: super;
}
.palette__book-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a7060;
}

/* Chip grid */
.palette__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

/* Individual Pantone chip */
.palette__swatch {
  position: relative;
  aspect-ratio: 0.58;
  border-radius: 5px 5px 4px 4px;
  background: var(--sw);
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.palette__swatch:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  z-index: 2;
}
.palette__swatch:active {
  transform: translateY(-2px);
}
.palette__swatch--active {
  transform: translateY(-10px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  z-index: 3;
}

/* Service icon centered in colour area */
.palette__swatch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding-bottom: 4px;
  pointer-events: none;
}
.palette__swatch-icon svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

/* White label strip at bottom of chip */
.palette__swatch-label {
  background: white;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 4px 4px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4em;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
  text-align: center;
}

/* Active info bar */
.palette__info {
  border-top: 1px solid #d4c9b0;
  padding-top: 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}
.palette__active-pms {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.palette__active-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: #7a7060;
  transition: opacity 0.2s ease;
}

/* Hero on bright/medium backgrounds — use dark text + dark-navy buttons */
.hero--light-text .hero__badge-text { color: var(--gray-700); }
.hero--light-text .hero__badge { background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.15); }
.hero--light-text .hero__badge-dot { background: var(--gray-700); }
.hero--light-text .hero__title { color: var(--gray-900); }
.hero--light-text .hero__title .highlight { color: var(--gray-900); }
.hero--light-text .hero__sub { color: var(--gray-700); }
.hero--light-text .hero__trust-item { color: var(--gray-700); }
.hero--light-text .hero__trust { border-color: rgba(0,0,0,0.15); }
.hero--light-text .btn--primary { background: var(--gray-900); color: white; border-color: var(--gray-900); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.hero--light-text .btn--primary:hover { background: #0f172a; border-color: #0f172a; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.32); }
.hero--light-text .btn--secondary { background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.2); color: var(--gray-900); }
.hero--light-text .btn--secondary:hover { background: white; border-color: rgba(0,0,0,0.35); transform: translateY(-1px); }

/* Hero on dark backgrounds — use white text + white buttons */
.hero--dark-text .hero__badge-text { color: rgba(255,255,255,0.9); }
.hero--dark-text .hero__badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.hero--dark-text .hero__badge-dot { background: white; }
.hero--dark-text .hero__title { color: white; }
.hero--dark-text .hero__title .highlight { color: rgba(255,255,255,0.85); }
.hero--dark-text .hero__sub { color: rgba(255,255,255,0.8); }
.hero--dark-text .hero__trust-item { color: rgba(255,255,255,0.75); }
.hero--dark-text .hero__trust-item svg { color: white; }
.hero--dark-text .hero__trust { border-color: rgba(255,255,255,0.2); }
.hero--dark-text .btn--primary { background: white; color: var(--gray-900); border-color: white; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.hero--dark-text .btn--primary:hover { background: #f1f5f9; transform: translateY(-1px); }
.hero--dark-text .btn--secondary { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: white; }
.hero--dark-text .btn--secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
/* Swatch book stays cream regardless of hero colour — no overrides needed */

/* Quick category strip */
/* ── Hero Service Cards ── */
.hero__services {
  background: white;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.hero__services-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem 0.875rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--gray-50);
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  text-align: center;
}
.svc-card:hover {
  border-color: var(--svc-clr, var(--cyan));
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  background: white;
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--svc-clr, var(--cyan)) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--svc-clr, var(--cyan));
  flex-shrink: 0;
  transition: background 0.18s;
}
.svc-card:hover .svc-card__icon {
  background: color-mix(in srgb, var(--svc-clr, var(--cyan)) 18%, white);
}
.svc-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
  transition: color 0.18s;
}
.svc-card:hover .svc-card__name {
  color: var(--svc-clr, var(--cyan));
}
@media (max-width: 1023px) {
  .hero__services-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 599px) {
  .hero__services-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .svc-card { padding: 0.75rem 0.25rem; }
  .svc-card__icon { width: 36px; height: 36px; }
  .svc-card__name { font-size: 0.625rem; }
}

@media (max-width: 1023px) {
  .hero { padding: 3rem 0 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .hero__visual { order: 1; flex-direction: column; align-items: center; }
  .hero__sub { max-width: 100%; }
  .press { max-width: 100%; }
  .palette { max-width: 100%; }
  .palette__tagline { text-align: center; }
}
@media (max-width: 639px) {
  .hero__title { font-size: clamp(2.25rem, 10vw, 3rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  /* Palette: 4-col grid so chips get breathing room */
  .hero__visual { flex-direction: column; align-items: stretch; }
  .palette__grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .palette__swatch-label { font-size: 0.46rem; min-height: 2em; padding: 3px 2px 4px; }
  .palette__swatch-icon svg { width: 16px; height: 16px; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--gray-900);
  padding: 2rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: var(--border);
}
.stats-bar__item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stats-bar__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media (max-width: 639px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3),
  .stats-bar__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .stats-bar__item:nth-child(4) { border-right: none; }
}

/* ── CLIENTS STRIP ── */
.clients-strip {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.clients-strip__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.clients-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.clients-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.clients-strip__logo:hover { opacity: 1; }
.clients-strip__logo img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
@media (max-width: 639px) {
  .clients-strip__logos { gap: 1.5rem 2rem; }
  .clients-strip__logo img { height: 54px; max-width: 120px; }
}

/* ============================================
   SERVICES / PRODUCTS GRID
   ============================================ */
.products-section { padding: var(--section-y) 0; }
.products-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--cyan-mid);
  transform: translateY(-2px);
}
.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.product-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-card__icon--cyan { background: var(--cyan-light); color: var(--cyan); }
.product-card__icon--magenta { background: var(--magenta-light); color: var(--magenta); }
.product-card__icon--yellow { background: var(--yellow-light); color: #92400E; }
.product-card__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.product-card__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-300);
  padding-top: 0.25rem;
}
.product-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.15s;
}
.product-card:hover .product-card__link { gap: 0.6rem; }
.product-card__link svg { width: 14px; height: 14px; }

@media (max-width: 1023px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================
   POPULAR PRODUCTS (Vistaprint style)
   ============================================ */
.popular { padding: var(--section-y) 0; background: var(--bg-subtle); }
.popular__header { text-align: center; margin-bottom: 2.5rem; }
.popular__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.popular-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.popular-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.popular-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-accent) 0%, var(--cyan-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.popular-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.popular-card:hover .popular-card__img img { transform: scale(1.04); }
.popular-card__body { padding: 1.1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.popular-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}
.popular-card__sub { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.85rem; flex: 1; }
.popular-card__price {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}
.popular-card__price strong { color: var(--cyan); }

@media (max-width: 1023px) { .popular__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .popular__grid { grid-template-columns: 1fr; } }

/* ============================================
   WHY US — Feature row
   ============================================ */
.why-us { padding: var(--section-y) 0; }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-us__features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.why-feature:hover { border-color: var(--border); background: var(--gray-50); }
.why-feature__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--cyan-light);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.why-feature__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--gray-900);
}
.why-feature__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.why-us__image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3.5;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
  position: relative;
}
.why-us__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-us__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.15) 0%, transparent 50%);
}

@media (max-width: 1023px) { .why-us__inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries { padding: var(--section-y) 0; background: var(--bg-subtle); }
.industries__header { text-align: center; margin-bottom: 2.25rem; }
.industries__pills { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; }
.pill {
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  background: white;
  border: 1.5px solid var(--border);
  transition: all 0.15s;
  box-shadow: var(--shadow-xs);
  cursor: default;
}
.pill:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  background: var(--cyan-light);
}

/* ============================================
   PROCESS — 4 steps
   ============================================ */
.process { padding: var(--section-y) 0; }
.process__header { text-align: center; margin-bottom: 3.5rem; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; position: relative; }
.process-step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--gray-400);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.process-step:hover .process-step__num {
  background: var(--cyan);
  border-color: var(--cyan);
  color: white;
  box-shadow: var(--shadow-cyan);
}
.process-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--gray-900);
}
.process-step__desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 767px) { .process__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .process__grid::before { display: none; } }
@media (max-width: 479px) { .process__grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial { padding: var(--section-y) 0; background: var(--bg-accent); }
.testimonial__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.testimonial__left { text-align: center; }
.testimonial__big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.testimonial__label { font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.testimonial__quote {
  background: white;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.testimonial__stars { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; }
.testimonial__star { color: var(--yellow); font-size: 1rem; }
.testimonial__text {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  font-family: 'Barlow Condensed', sans-serif;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.875rem; color: var(--gray-900); }
.testimonial__role { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 767px) { .testimonial__inner { grid-template-columns: 1fr; gap: 2rem; } .testimonial__left { display: none; } }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-banner__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: white;
  margin-bottom: 0.875rem;
}
.cta-banner__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.cta-banner__actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.cta-banner .btn--white {
  background: white;
  color: var(--cyan-dark);
  border-color: white;
  font-weight: 700;
}
.cta-banner .btn--white:hover { background: var(--cyan-light); transform: translateY(-1px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.875rem; }
.footer__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 1.25rem; }
.footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--cyan); }
.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}
.footer__contact-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span { font-size: 0.8125rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 1023px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.page-hero__breadcrumb a { color: var(--cyan); transition: opacity 0.15s; }
.page-hero__breadcrumb a:hover { opacity: 0.8; }
.page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--gray-900);
  margin-bottom: 0.875rem;
}
.page-hero__title .highlight { color: var(--cyan); }
.page-hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-block { padding: var(--section-y) 0; }
.service-block:nth-child(even) { background: var(--bg-subtle); }
.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-block__inner--rev { direction: rtl; }
.service-block__inner--rev > * { direction: ltr; }
.service-block__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--bg-accent), var(--cyan-light));
}
.service-block__img img { width: 100%; height: 100%; object-fit: cover; }
.service-block__body {}
.service-block__desc { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.75; font-size: 1rem; }
.checklist { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.finish-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.finish-tag {
  padding: 0.3rem 0.75rem;
  background: var(--cyan-light);
  color: var(--cyan-dark);
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 1023px) { .service-block__inner { grid-template-columns: 1fr; gap: 2.5rem; } .service-block__inner--rev { direction: ltr; } }

/* ============================================
   PACKAGING
   ============================================ */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pack-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all 0.2s;
}
.pack-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pack-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}
.pack-card__list { display: flex; flex-direction: column; gap: 0.3rem; }
.pack-card__list li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.pack-card__list li::before { content: '·'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
@media (max-width: 767px) { .pack-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .pack-grid { grid-template-columns: 1fr; } }

.callout-box {
  border-left: 3px solid var(--cyan);
  background: var(--bg-accent);
  padding: 1.1rem 1.5rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-top: 1.5rem;
}
.callout-box__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; margin-bottom: 0.35rem; color: var(--gray-900); }
.callout-box__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   PRICING
   ============================================ */
.pricing-table-wrap { margin-bottom: 3rem; overflow-x: auto; }
.pricing-table-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pricing-table-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--gray-900);
  color: white;
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--gray-700);
  font-weight: 500;
  background: white;
}
.pricing-table tr:nth-child(even) td { background: var(--gray-50); }
.pricing-table tr:hover td { background: var(--bg-accent); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { font-weight: 700; color: var(--gray-900); }

/* ── Blurred prices ── */
.pricing-table .price--blurred {
  filter: blur(6px);
  user-select: none;
  transition: filter 0.3s ease;
  position: relative;
}
.pricing-table .price--blurred:hover {
  filter: blur(4px);
}

/* ── Unlock banner ── */
.pricing-unlock-banner {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #1E40AF;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.pricing-unlock-btn {
  background: none;
  border: none;
  color: #1D4ED8;
  font-weight: 700;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricing-unlock-btn:hover { color: #1E3A8A; }

/* ── Price enquiry modal ── */
.price-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.price-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.price-modal {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transform: translateY(16px);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.price-modal-overlay.is-open .price-modal {
  transform: translateY(0);
}
.price-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  transition: background 0.15s, color 0.15s;
}
.price-modal__close:hover { background: var(--gray-200); color: var(--gray-900); }
.price-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cyan-light);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.price-modal__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.price-modal__sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.price-modal__form .form-success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

.pricing-disclaimer {
  background: var(--yellow-light);
  border: 1px solid #FDE68A;
  border-radius: var(--r-lg);
  padding: 1.1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  line-height: 1.65;
}

/* ============================================
   ABOUT — Timeline
   ============================================ */
.timeline { position: relative; padding: 1rem 0; margin: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--magenta) 100%);
  border-radius: 99px;
}
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; padding-left: 1rem; }
.timeline-item__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--cyan);
  flex-shrink: 0;
  margin-left: -19px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--cyan);
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 4px var(--cyan-light);
}
.timeline-item__year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.timeline-item__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.4rem; color: var(--gray-900); }
.timeline-item__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: white;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.value-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-card__icon { font-size: 2.25rem; margin-bottom: 0.875rem; }
.value-card__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.45rem; color: var(--gray-900); }
.value-card__desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 767px) { .values-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.125rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.4rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-900);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-card {
  background: var(--gray-900);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  color: white;
}
.contact-info-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.75rem;
}
.contact-detail { display: flex; gap: 0.875rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-detail__icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: rgba(0,174,239,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-detail__label { font-size: 0.6875rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.25rem; font-weight: 600; }
.contact-detail__value { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.contact-detail__value a { color: var(--cyan); }
.map-wrap { border-radius: var(--r-md); overflow: hidden; margin-top: 1.5rem; }
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } .form-row { grid-template-columns: 1fr; } }

/* ── Form states ── */
.form-input.error, .form-select.error, .form-textarea.error { border-color: #EF4444; }
.form-error { color: #EF4444; font-size: 0.75rem; margin-top: 0.3rem; display: none; }
.form-error.visible { display: block; }
.form-success { background: var(--bg-accent); border: 1px solid var(--cyan-mid); border-radius: var(--r-md); padding: 1rem 1.5rem; color: var(--cyan-dark); font-weight: 600; display: none; margin-top: 1rem; font-size: 0.875rem; }
.form-success.visible { display: block; }

/* ── Scroll animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── WhatsApp Float Button ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-float svg { display: block; }
@media (max-width: 639px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
}

/* ── Utils ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════
   BENTO INTRO — Logo swirl → cards animation
   ═══════════════════════════════════════════════ */
.bento-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.bento-intro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.bento-intro.done { display: none; }
.bento-intro__logo {
  width: 110px;
  height: 110px;
  animation: bentoLogoRoll 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  filter: drop-shadow(0 8px 40px rgba(0,174,239,0.55));
}
@keyframes bentoLogoRoll {
  /* appears in place */
  0%   { transform: scale(0)    rotate(0deg);     opacity: 0; }
  8%   { transform: scale(0.95) rotate(360deg);   opacity: 1; }
  /* swirls — 4 full rotations */
  28%  { transform: scale(1)    rotate(900deg);   opacity: 1; }
  48%  { transform: scale(1)    rotate(1440deg);  opacity: 1; }
  /* slows and holds so viewer can take it in */
  62%  { transform: scale(1.08) rotate(1530deg);  opacity: 1; }
  72%  { transform: scale(1.08) rotate(1560deg);  opacity: 1; }
  /* now grows BIG */
  88%  { transform: scale(4)    rotate(1600deg);  opacity: 1; }
  /* burst and gone */
  100% { transform: scale(6.5)  rotate(1620deg);  opacity: 0; }
}

/* Cards start collapsed at centre */
.hero__bento .bento-card {
  opacity: 0;
  transform: scale(0.15) rotate(20deg);
  transition: none;
}
/* Revealed state */
.hero__bento.bento-reveal .bento-card {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34,1.28,0.64,1);
}
.hero__bento.bento-reveal .bento-card:nth-child(1) { transition-delay:   0ms; }
.hero__bento.bento-reveal .bento-card:nth-child(2) { transition-delay: 100ms; }
.hero__bento.bento-reveal .bento-card:nth-child(3) { transition-delay: 200ms; }
.hero__bento.bento-reveal .bento-card:nth-child(4) { transition-delay: 300ms; }
.hero__bento.bento-reveal .bento-card:nth-child(5) { transition-delay: 400ms; }
.hero__bento.bento-reveal .bento-card:nth-child(6) { transition-delay: 500ms; }
.hero__bento.bento-reveal .bento-card:nth-child(7) { transition-delay: 600ms; }

/* ═══════════════════════════════════════════════
   BENTO SERVICE GRID — Hero right panel
   ═══════════════════════════════════════════════ */
.hero__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 540px;
}
.bento-card {
  border-radius: 18px;
  padding: 1.1rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  min-height: 118px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.25s ease;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.bento-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 48px rgba(0,0,0,0.22); }
.bento-card:hover::before { opacity: 1; }
.bento-card--wide { grid-column: span 2; }
.bento-card--cyan    { background: #00AEEF; }
.bento-card--magenta { background: #EC008C; }
.bento-card--yellow  { background: #F5B800; }
.bento-card--dark    { background: #0F172A; }
.bento-card--orange  { background: #FF6B35; }
.bento-card--green   { background: #059669; }
.bento-card--purple  { background: #7C3AED; }
.bento-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: auto;
}
.bento-card--yellow .bento-card__icon { background: rgba(0,0,0,0.14); color: #1a1200; }
.bento-card--yellow .bento-card__icon svg { stroke: #1a1200; }
.bento-card__body { padding-top: 0.6rem; }
.bento-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  line-height: 1.2;
}
.bento-card--yellow .bento-card__label { color: #1a1200; }
.bento-card__sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.4;
}
.bento-card--yellow .bento-card__sub { color: rgba(0,0,0,0.45); }
.bento-card__arrow {
  position: absolute;
  top: 0.8rem; right: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.bento-card--yellow .bento-card__arrow { color: rgba(0,0,0,0.25); }
.bento-card:hover .bento-card__arrow { color: rgba(255,255,255,0.9); transform: translate(2px,-2px); }
.bento-card--yellow:hover .bento-card__arrow { color: rgba(0,0,0,0.7); }

/* Mobile: collapse to 2-col */
@media (max-width: 1023px) {
  .hero__bento { max-width: 100%; }
}
@media (max-width: 639px) {
  .hero__bento { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bento-card--wide { grid-column: span 2; }
  .bento-card { min-height: 100px; padding: 0.9rem; }
  .bento-card__label { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════
   COLOURFUL REFRESH — CMYK FLOWER PALETTE
   ═══════════════════════════════════════════════ */

/* Hero — strong CMYK colour glow */
.hero { background: #ffffff; }
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 700px; height: 700px;
  background: conic-gradient(
    from 30deg,
    rgba(0,174,239,0.38) 0deg,
    rgba(236,0,140,0.30) 90deg,
    rgba(250,204,21,0.25) 180deg,
    rgba(0,0,0,0.08) 270deg,
    rgba(0,174,239,0.38) 360deg
  );
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(236,0,140,0.22) 0%, rgba(250,204,21,0.15) 50%, transparent 100%);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner, .hero__content, .hero__visual { position: relative; z-index: 1; }

/* Title highlight — magenta */
.hero__title .highlight { color: var(--magenta); }
.hero--light-text .hero__title .highlight { color: var(--gray-900); }
.hero--dark-text .hero__title .highlight  { color: var(--yellow); }

/* Hero badge — cyan */
.hero__badge { background: var(--cyan); border-color: var(--cyan); }
.hero__badge-text { color: #fff; }
.hero__badge-dot  { background: #fff; }
.hero__badge-dot::after { background: var(--cyan); }

/* Stats bar — CMYK coloured numbers */
.stats-bar__item:nth-child(1) .stats-bar__number { color: var(--cyan); }
.stats-bar__item:nth-child(2) .stats-bar__number { color: var(--magenta); }
.stats-bar__item:nth-child(3) .stats-bar__number { color: var(--yellow); }
.stats-bar__item:nth-child(4) .stats-bar__number { color: #ffffff; }

/* Clients strip — vibrant CMYK wash */
.clients-strip {
  background: linear-gradient(120deg, #d8f4ff 0%, #fde8f7 50%, #fff8d6 100%);
  border-bottom: none;
}
.clients-strip__label { color: #555; }

/* Products section — cyan accent background */
.products-section { background: #f0faff; }
.product-card { padding-top: 2rem; background: #fff; }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 5px; border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--cyan);
}
.product-card:nth-child(3n+2)::before { background: var(--magenta); }
.product-card:nth-child(3n+3)::before { background: var(--yellow); }
.product-card:nth-child(3n+2) .product-card__icon { background: var(--magenta-light); color: var(--magenta); }
.product-card:nth-child(3n+3) .product-card__icon { background: var(--yellow-light); color: #92400E; }
.product-card:nth-child(3n+2) .product-card__link { color: var(--magenta); }
.product-card:nth-child(3n+3) .product-card__link { color: #b45309; }
.product-card:nth-child(3n+2):hover { border-color: var(--magenta); box-shadow: var(--shadow-lg), 0 0 0 1px var(--magenta-light); }
.product-card:nth-child(3n+3):hover { border-color: var(--yellow); box-shadow: var(--shadow-lg), 0 0 0 1px var(--yellow-light); }

/* Popular section — magenta-tinted bg */
.popular { background: linear-gradient(135deg, #fff0fa 0%, #f0f9ff 100%); }

/* Why-us — dark navy bg like stats bar */
.why-us {
  background: #07111f;
  padding: var(--section-y) 0;
}
.why-us .section-title { color: #fff; }
.why-us .eyebrow { color: rgba(255,255,255,0.5); }
.why-feature { border-color: rgba(255,255,255,0.08); }
.why-feature:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.why-feature__title { color: #fff; }
.why-feature__desc  { color: rgba(255,255,255,0.6); }
.why-feature__icon  { background: rgba(0,174,239,0.2); color: var(--cyan); }
.why-feature:nth-child(2) .why-feature__icon { background: rgba(236,0,140,0.2); color: var(--magenta); }
.why-feature:nth-child(3) .why-feature__icon { background: rgba(250,204,21,0.2); color: var(--yellow); }
.why-feature:nth-child(4) .why-feature__icon { background: rgba(5,150,105,0.2); color: #34d399; }

/* Industries — yellow bg */
.industries { background: linear-gradient(135deg, #fffbeb 0%, #fdf0f8 100%); }
.industries__pills .pill:hover               { border-color: var(--cyan);    color: var(--cyan-dark); background: var(--cyan-light); }
.industries__pills .pill:nth-child(3n+2):hover { border-color: var(--magenta); color: var(--magenta);   background: var(--magenta-light); }
.industries__pills .pill:nth-child(3n+3):hover { border-color: #d97706;        color: #92400E;          background: var(--yellow-light); }

/* Process — dark navy bg */
.process { background: #07111f; }
.process__header .section-title { color: #fff; }
.process__header .eyebrow { color: rgba(255,255,255,0.5); }
.process-step__title { color: #fff; }
.process-step__desc  { color: rgba(255,255,255,0.55); }
.process__grid::before { background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), #fff); opacity: 0.3; height: 2px; }
.process-step:nth-child(1) .process-step__num { background: var(--cyan);    border-color: var(--cyan);    color: #fff;    box-shadow: 0 4px 20px rgba(0,174,239,0.5); }
.process-step:nth-child(2) .process-step__num { background: var(--magenta); border-color: var(--magenta); color: #fff;    box-shadow: 0 4px 20px rgba(236,0,140,0.45); }
.process-step:nth-child(3) .process-step__num { background: var(--yellow);  border-color: #d4a400;        color: #1a1a1a; box-shadow: 0 4px 20px rgba(250,204,21,0.5); }
.process-step:nth-child(4) .process-step__num { background: #fff;           border-color: #fff;           color: #07111f; box-shadow: 0 4px 20px rgba(255,255,255,0.3); }
.process-step:hover .process-step__num { transform: scale(1.12); }

/* Testimonial — magenta big number, cyan-pink bg */
.testimonial { background: linear-gradient(135deg, #e8f8ff 0%, #fce8f8 100%); }
.testimonial__big-num { color: var(--magenta); }

/* CTA Banner — bold multi-colour gradient */
.cta-banner { background: linear-gradient(135deg, #07111f 0%, #1a0a38 35%, #220038 65%, #071a14 100%); }
.cta-banner::before { background: radial-gradient(circle, rgba(0,174,239,0.4) 0%, transparent 70%); }
.cta-banner::after  { background: radial-gradient(circle, rgba(236,0,140,0.35) 0%, transparent 70%); }
.cta-banner .btn--white { color: #07111f; }

/* Page-hero (inner pages) — dark CMYK gradient */
.page-hero {
  background: linear-gradient(135deg, #07111f 0%, #1a0a38 45%, #0a2436 100%);
  border-bottom: none; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,174,239,0.4) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -60px; left: 30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(236,0,140,0.32) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero__breadcrumb { position: relative; z-index: 1; }
.page-hero__breadcrumb a    { color: rgba(255,255,255,0.6); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero__title  { color: #fff; position: relative; z-index: 1; }
.page-hero__title .highlight { color: var(--cyan); }
.page-hero__sub    { color: rgba(255,255,255,0.72); position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(255,255,255,0.5); }

/* Section heading accents */
.section-title .highlight { color: var(--magenta); }
.eyebrow { color: var(--cyan-dark); font-weight: 700; }

/* ============================================
   ABOUT PAGE — LEGACY + INFRASTRUCTURE
   ============================================ */
.about-legacy { background: #1A1A1A; }
.about-legacy .eyebrow { color: var(--cyan); }
.about-legacy .section-title { color: #fff; }
.about-legacy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-legacy__text p { color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 1rem; }
.about-legacy__text p strong { color: #fff; }

.founder-card {
  background: #242424;
  border-left: 4px solid #00AEEF;
  padding: 2rem;
  border-radius: 8px;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: #EC008C;
  margin-bottom: -1.5rem;
  display: block;
}
.founder-card__quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
  border: none;
  padding: 0;
}
.founder-card__byline { border-top: 1px solid #333; padding-top: 1rem; }
.founder-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.founder-card__role { font-size: 0.8125rem; color: #9CA3AF; margin-top: 0.2rem; }

.about-infra { background: #F7F8FA; }
.about-infra__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.machine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.machine-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gray-800);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.machine-card:hover { border-color: var(--cyan); box-shadow: 0 2px 12px rgba(0,174,239,0.12); }
.machine-card svg { flex-shrink: 0; }

.infra-stats {
  background: #1A1A1A;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.infra-stat {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.infra-stat:last-child { border-right: none; }
.infra-stat .number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #00AEEF;
  line-height: 1.1;
}
.infra-stat .label { font-size: 0.875rem; color: #9CA3AF; margin-top: 0.35rem; }

/* ── HOMEPAGE — By the Numbers strip ── */
.numbers-strip {
  background: #fff;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.numbers-strip__item { padding: 0 2rem; }
.numbers-strip__item + .numbers-strip__item { border-left: 1px solid var(--border); }
.numbers-strip__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.1;
}
.numbers-strip__label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Founder footnote (homepage Why Us) ── */
.founder-footnote { font-size: 0.875rem; color: #9CA3AF; margin-top: 1.75rem; }

/* Press photo — full-width showcase above machine grid */
.about-infra__photo { border-radius: 16px; overflow: hidden; margin-bottom: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.about-infra__photo img { width: 100%; height: 480px; object-fit: cover; object-position: center; display: block; }

/* ── Footer logo image ── */
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__logo { margin-bottom: 0.75rem; }

/* Responsive — about page */
@media (max-width: 1023px) {
  .about-legacy__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-infra__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .founder-card { position: static; }
  .machine-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  /* About page hero font */
  .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  /* Legacy section */
  .quote-mark { font-size: 3.5rem; }
  .founder-card__quote { font-size: 1.05rem; }
  /* Infra section */
  .about-infra__photo img { height: 300px; }
  /* Numbers strip */
  .numbers-strip { padding: 2rem 0; }
  .numbers-strip__num { font-size: 1.75rem; }
}
@media (max-width: 639px) {
  /* Section padding tightening on mobile */
  .about-legacy, .about-infra { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  /* Machine cards: 1-col on small phones */
  .machine-grid { grid-template-columns: 1fr; }
  /* Stats strip: stack */
  .infra-stats  { grid-template-columns: 1fr; }
  .infra-stat   { border-right: none; border-bottom: 1px solid #2a2a2a; padding: 1.5rem; }
  .infra-stat:last-child { border-bottom: none; }
  .infra-stat .number { font-size: 1.75rem; }
  /* Numbers strip: stack */
  .numbers-strip__grid { grid-template-columns: 1fr; }
  .numbers-strip__item + .numbers-strip__item { border-left: none; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 0.5rem; }
  .numbers-strip__item { padding: 0 1rem; }
  /* Founder card tighten */
  .founder-card { padding: 1.25rem; }
  /* Press photo on mobile */
  .about-infra__photo img { height: 240px; }
}

/* ============================================
   EXHIBITION PAGE
   ============================================ */

/* Nav pill */
.nav-exhibition-cta {
  background: #EC008C;
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-exhibition-cta:hover { background: #c9007a; transform: translateY(-1px); }
.nav-exhibition-cta.active-pill { background: #c9007a; }
@media (max-width: 1023px) {
  .nav-exhibition-cta { display: block; text-align: center; margin: 0.5rem 0; transform: none !important; }
}

/* Hero */
.exh-hero { background: #111827; position: relative; overflow: hidden; padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 5rem; }
.exh-hero__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(2.8rem, 6vw, 4.5rem); text-transform: uppercase; line-height: 1.05; color: #fff; margin: 0.75rem 0 1.5rem; }
.accent-magenta { color: #EC008C; }
.exh-hero__sub { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #9CA3AF; line-height: 1.7; margin-bottom: 2rem; }
.exh-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.rwd-br { display: inline; }
.btn--magenta { background: #EC008C; color: #fff; }
.btn--magenta:hover { background: #c9007a; }
.btn--yellow { background: #FFF200; color: #1A1A1A; font-weight: 700; }
.btn--yellow:hover { background: #e6da00; }
.cmyk-diagonal {
  position: absolute; top: 0; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(236,0,140,0.25) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

/* Services grid */
.exh-services-section { background: #F7F8FA; }
.exh-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.exh-service-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-bottom-color 0.2s ease;
  border-bottom: 3px solid transparent;
}
.exh-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.exh-service-card:hover .exh-icon--cyan { border-bottom-color: var(--cyan); }

.exh-service-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.exh-icon--cyan { background: rgba(0,174,239,0.12); color: #00AEEF; }
.exh-icon--magenta { background: rgba(236,0,140,0.1); color: #EC008C; }
.exh-icon--yellow { background: rgba(250,204,21,0.15); color: #B45309; }
.exh-service-card:hover { border-bottom-color: #E5E7EB; }
.exh-service-card:has(.exh-icon--cyan):hover { border-bottom-color: #00AEEF; }
.exh-service-card:has(.exh-icon--magenta):hover { border-bottom-color: #EC008C; }
.exh-service-card:has(.exh-icon--yellow):hover { border-bottom-color: #FACC15; }

.exh-service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: #1A1A1A; margin-bottom: 0.5rem;
}
.exh-service-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; color: #6B7280; line-height: 1.6;
}

/* Why section */
.exh-why { background: #1A1A1A; }
.exh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.exh-why-card { text-align: center; }
.exh-why-card__icon {
  width: 56px; height: 56px;
  background: rgba(0,174,239,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #00AEEF;
}
.exh-why-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 0.5rem;
}
.exh-why-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; color: #9CA3AF; line-height: 1.6;
}

/* Portfolio section */
.exh-portfolio { background: #F7F8FA; }

/* ── PDF Viewer ── */
.pdf-viewer {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
  border: 1px solid #E5E7EB;
  background: #fff;
}
.pdf-viewer__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: #1A1A1A;
  gap: 1rem;
}
.pdf-viewer__toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.pdf-viewer__doc-icon {
  width: 36px; height: 36px;
  background: rgba(0,174,239,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #00AEEF;
  flex-shrink: 0;
}
.pdf-viewer__filename {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  color: #fff; letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pdf-viewer__filemeta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; color: #6B7280;
  margin-top: 0.1rem;
}
.pdf-viewer__toolbar-right {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pdf-viewer__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.pdf-viewer__btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.pdf-viewer__btn--ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }
.pdf-viewer__btn--primary {
  background: #EC008C;
  color: #fff;
  border: 1px solid transparent;
}
.pdf-viewer__btn--primary:hover { background: #c9007a; transform: translateY(-1px); }

/* Fullscreen mode */
.pdf-viewer--fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
}
.pdf-viewer--fullscreen .pdf-viewer__frame { flex: 1; }
.pdf-viewer--fullscreen .pdf-viewer__iframe { height: 100%; }
.pdf-viewer__frame {
  background: #2a2a2a;
  position: relative;
}
.pdf-viewer__iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}
.pdf-viewer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #F7F8FA;
  border-top: 1px solid #E5E7EB;
}
.pdf-viewer__hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #9CA3AF;
}
.pdf-viewer__checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.pdf-viewer__check {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #374151;
}
.pdf-viewer__check::before { color: #00AEEF; }

/* legacy classes kept for safety */
.portfolio-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 2rem;
  text-transform: uppercase; color: #1A1A1A;
  line-height: 1.1; margin-bottom: 0.75rem;
}
.portfolio-panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: #374151; line-height: 1.7;
  margin-bottom: 0;
}
.portfolio-checklist {
  list-style: none; padding: 0; margin: 1.5rem 0;
}
.portfolio-checklist li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: #374151;
  padding: 0.4rem 0;
  border-bottom: 1px solid #F3F4F6;
}
.btn-download-pdf {
  display: inline-block;
  background: #EC008C; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.9rem 1.75rem; border-radius: 6px;
  text-decoration: none; width: fit-content;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.5rem;
}
.btn-download-pdf:hover { background: #c9007a; transform: translateY(-2px); }
.portfolio-file-meta {
  font-size: 0.75rem; color: #9CA3AF;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
}

/* Homepage exhibition card */
.product-card--exhibition {
  border: 2px solid #EC008C !important;
  position: relative;
}
.product-card--exhibition:hover {
  border-color: #EC008C !important;
  box-shadow: 0 12px 32px rgba(236, 0, 140, 0.15) !important;
}
.exhibition-new-badge {
  position: absolute;
  top: -1px; right: 12px;
  background: #FFF200; color: #1A1A1A;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0 0 4px 4px;
}

/* Exhibition responsive */
@media (max-width: 1023px) {
  .exh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .exh-why-grid { grid-template-columns: repeat(2, 1fr); }
  .exh-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .exh-hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3.5rem; }
  .exh-hero__sub { font-size: 1rem; }
  .rwd-br { display: none; }
  .pdf-viewer__iframe { height: 400px; }
  .pdf-viewer__checklist { display: none; }
  .pdf-viewer__filename { font-size: 0.8rem; }
}
@media (max-width: 639px) {
  .exh-services-grid { grid-template-columns: 1fr; }
  .exh-why-grid { grid-template-columns: 1fr; }
  .exh-hero__actions { flex-direction: column; }
  .exh-hero__actions .btn { text-align: center; }
}
