/* =========================================================
   ACCE Global Software Pvt Ltd — Design System v4
   ========================================================= */

/* ── 1. TOKENS ─────────────────────────────────────────── */
:root {
  --navy:          #06104f;
  --navy-dark:     #040c39;
  --purple:        #5b1bb2;
  --magenta:       #e4125b;
  --orange:        #ff6a00;
  --amber:         #ff9d00;
  --white:         #ffffff;
  --light:         #f7f8fc;
  --muted-bg:      #f0f2f8;
  --text:          #16181f;
  --text-light:    #3d4157;
  --muted:         #6b7193;
  --border:        rgba(6,16,79,0.08);
  --border-md:     rgba(6,16,79,0.14);
  --g-primary:     linear-gradient(135deg, #06104f 0%, #5b1bb2 55%, #e4125b 100%);
  --g-navy:        linear-gradient(135deg, #06104f 0%, #1a2590 100%);
  --g-accent:      linear-gradient(135deg, #5b1bb2 0%, #e4125b 100%);
  --g-warm:        linear-gradient(135deg, #ff6a00 0%, #ff9d00 100%);
  --shadow-xs:     0 1px 3px rgba(6,16,79,0.06), 0 1px 2px rgba(6,16,79,0.04);
  --shadow-sm:     0 4px 12px rgba(6,16,79,0.08), 0 1px 3px rgba(6,16,79,0.05);
  --shadow-md:     0 8px 32px rgba(6,16,79,0.10), 0 2px 6px rgba(6,16,79,0.05);
  --shadow-lg:     0 20px 60px rgba(6,16,79,0.14), 0 4px 16px rgba(6,16,79,0.07);
  --shadow-navy:   0 8px 32px rgba(6,16,79,0.4);
  --shadow-btn:    0 4px 14px rgba(228,18,91,0.30);
  --font-h:        'Outfit', system-ui, sans-serif;
  --font-b:        'Inter', system-ui, sans-serif;
  --font-mono:     'SF Mono', 'Fira Code', 'Consolas', monospace;
  --section-pad:   150px;
  --section-pad-sm:80px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     22px;
  --radius-2xl:    28px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:           0.28s;
}

/* ── 2. RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
html, body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; width: 100%; max-width: 100vw; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
textarea { resize: vertical; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.25; letter-spacing: -0.02em; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────── */
h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); font-weight: 800; color: var(--navy); line-height: 1.18; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); }
h3 { font-size: 1.35rem; font-weight: 700; color: var(--navy); }
h4 { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
p  { color: var(--text-light); line-height: 1.75; font-size: 1.05rem; }
.text-gradient { background: var(--g-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-warm { background: var(--g-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── 4. LAYOUT ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--light); }
.section-sm { padding: var(--section-pad-sm) 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-title { margin-bottom: 0.75rem; }
.section-subtitle { max-width: 560px; margin: 0 auto; font-size: 1rem; color: var(--muted); }
.section-header:not(.center) .section-subtitle { margin: 0; }

/* ── 5. LABEL ──────────────────────────────────────────── */
.label {
  display: inline-block; font-family: var(--font-h); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase; padding: 0.3em 0.9em; border-radius: 2em;
  background: var(--g-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; border: 1px solid rgba(228,18,91,0.18); margin-bottom: 1rem;
}
.label-navy { background: var(--g-navy); -webkit-background-clip: text; -webkit-text-fill-color: transparent; border-color: rgba(6,16,79,0.18); }
.label-warm { background: var(--g-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; border-color: rgba(255,106,0,0.18); }

/* ── 6. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-h);
  font-size: 0.88rem; font-weight: 700; padding: 0.65rem 1.5rem; border-radius: var(--radius-md);
  border: 1.5px solid transparent; transition: all var(--dur) var(--ease); white-space: nowrap;
  letter-spacing: 0.01em; cursor: pointer; text-decoration: none;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-primary { background: var(--g-accent); color: white; box-shadow: var(--shadow-btn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(228,18,91,0.4); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--border-md); }
.btn-secondary:hover { border-color: rgba(91,27,178,0.3); color: var(--purple); transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(6,16,79,0.22); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── 7. HEADER ─────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 0;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur), padding var(--dur);
}
header.scrolled { border-color: var(--border); box-shadow: var(--shadow-xs); padding: 0.8rem 0; }
.navbar { display: flex; align-items: center; gap: 2rem; }
.logo-link { flex-shrink: 0; }
.logo-img { height: 110px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.nav-link {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 600; color: var(--muted);
  padding: 0.45rem 0.75rem; position: relative;
  transition: color var(--dur);
}
.nav-link:hover { color: var(--navy); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: transparent;
  transition: background var(--dur);
}
.nav-link:hover::after {
  background: var(--magenta);
}
.nav-link.active { color: var(--navy); }
.nav-link.active::after {
  background: var(--magenta);
}
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 4px; margin-left: auto; background: transparent; border: none; cursor: pointer; z-index: 1001; position: relative; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: all var(--dur) var(--ease); }

/* ── 8. HERO ───────────────────────────────────────────── */
.hero {
  padding: calc(var(--section-pad) + 70px) 0 var(--section-pad);
  background: var(--white); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  display: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content { position: relative; }
.hero-content .company-name {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; display: block;
}
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content > p { font-size: 1.15rem; max-width: 600px; margin-bottom: 2rem; color: var(--text-light); line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Proof bar — horizontal specifics strip */
.proof-bar {
  display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.proof-item { display: flex; flex-direction: column; gap: 0.15rem; }
.proof-item strong {
  font-family: var(--font-mono); font-size: 0.92rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
}
.proof-item span { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── 9. PRODUCT OS PANELS (hero visual) ───────────────── */
.product-os {
  position: relative; height: 460px; width: 100%;
}
.os-panel {
  position: absolute; width: 280px; background: var(--white);
  border: 1px solid var(--border-md); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.os-panel:hover { transform: translateY(-4px) !important; box-shadow: var(--shadow-lg); }
.os-panel--pd { top: 40px; left: 0; z-index: 1; width: 260px; }
.os-panel--ll { top: 0; right: 10px; z-index: 3; width: 285px; }
.os-panel--fk { bottom: 10px; left: 20px; z-index: 2; width: 270px; }

.os-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; background: var(--light); border-bottom: 1px solid var(--border);
}
.os-bar-title { font-family: var(--font-h); font-size: 0.68rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }
.os-bar-dots { display: flex; gap: 4px; margin-right: 0.4rem; }
.os-bar-dots span { width: 6px; height: 6px; border-radius: 50%; }

.os-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.os-metric-row { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.35rem 0; }
.os-metric-val {
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.os-metric-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

.os-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(6,16,79,0.05);
  font-size: 0.78rem; color: var(--text-light);
}
.os-row:last-child { border-bottom: none; }
.os-row-label { font-weight: 600; color: var(--navy); }

.os-tag {
  font-family: var(--font-h); font-size: 0.65rem; font-weight: 700; padding: 0.2em 0.6em;
  border-radius: 3px; letter-spacing: 0.03em;
}
.os-tag--green { background: rgba(34,197,94,0.12); color: #16a34a; }
.os-tag--amber { background: rgba(255,157,0,0.12); color: #d97706; }
.os-tag--red   { background: rgba(228,18,91,0.1); color: var(--magenta); }
.os-tag--navy  { background: rgba(6,16,79,0.08); color: var(--navy); }

.os-check {
  display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-light);
  padding: 0.2rem 0;
}
.os-check::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 3px; background: rgba(34,197,94,0.12);
  color: #16a34a; font-size: 0.6rem; font-weight: 900; flex-shrink: 0;
}

.os-mini-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-h); font-size: 0.7rem; font-weight: 700;
  color: var(--purple); padding: 0.35rem 0.75rem; border-radius: 4px;
  background: rgba(91,27,178,0.06); border: 1px solid rgba(91,27,178,0.15);
  margin-top: 0.25rem; width: fit-content; cursor: default;
}

.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.status-dot.green { background: #22c55e; box-shadow: 0 0 4px rgba(34,197,94,0.4); }
.status-dot.amber { background: #f59e0b; box-shadow: 0 0 4px rgba(245,158,11,0.4); }
.status-dot.red   { background: var(--magenta); }

/* ── 10. STATS RAIL ────────────────────────────────────── */
.stats-section { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.stats-rail { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; text-align: center; flex: 1; min-width: 130px; }
.stat-number {
  font-family: var(--font-mono); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--navy); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; font-family: var(--font-h); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── 11. EDITORIAL SPLIT ──────────────────────────────── */
.editorial-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.editorial-split h2 { margin-bottom: 1.25rem; }
.split-55-45 { grid-template-columns: 1.2fr 1fr; }
.split-45-55 { grid-template-columns: 1fr 1.2fr; }

/* ── 12. INFO STRIP ───────────────────────────────────── */
.info-strip { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.info-strip-item { display: flex; flex-direction: column; gap: 0.15rem; }
.info-strip-item strong { font-family: var(--font-mono); font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.info-strip-item span { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── 13. PRODUCT BLOCKS (homepage) ─────────────────────── */
.product-showcase-home { margin-top: 4rem; }
.product-showcase-home .container { display: flex; flex-direction: column; gap: 6rem; }

.product-row {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  min-height: 460px;
}
.product-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.product-row.reverse .product-row-content {
  grid-column: 2;
}
.product-row.reverse .product-row-visual {
  grid-column: 1;
  grid-row: 1;
}
.product-row-content { padding: 1rem 0; display: flex; flex-direction: column; justify-content: center; }
.product-row-visual {
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding: 3.5rem; border-radius: var(--radius-2xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  min-height: 380px;
}
.product-row-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.prv-pd { background: #f8fafc; }
.prv-ll { background: #fcfcff; }
.prv-fk { background: #fffdfa; }

.product-row-content .product-name {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--purple); margin-bottom: 0.75rem; display: block;
}
.product-row-content h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--navy); }
.product-row-content .product-desc { font-size: 0.95rem; margin-bottom: 1.75rem; line-height: 1.8; color: var(--text-light); }
.product-row-content .product-specs {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem;
}
.product-spec {
  display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: var(--text-light);
  line-height: 1.5;
}
.product-spec-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.spec-dot-navy { background: var(--navy); }
.spec-dot-purple { background: var(--purple); }
.spec-dot-orange { background: var(--orange); }
.product-row-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SCREENSHOT & DEVICE FRAME MOCKUPS ── */
.screenshot-container {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 6px;
  border: 1px solid var(--border-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.screenshot-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.screenshot-frame {
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}
.screenshot-header-bar {
  height: 28px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}
.screenshot-header-bar .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.screenshot-header-bar .dot.red { background: #ef4444; }
.screenshot-header-bar .dot.yellow { background: #f59e0b; }
.screenshot-header-bar .dot.green { background: #10b981; }
.screenshot-header-bar .browser-address {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  background: white;
  padding: 1px 6px;
  border-radius: 3px;
  flex: 1;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid var(--border);
}
.screenshot-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  background: #fafbfc;
  padding: 1.5rem;
}
.screenshot-placeholder svg {
  color: var(--border-md);
  transition: color 0.3s;
}
.screenshot-placeholder span {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.screenshot-container:hover .screenshot-placeholder svg {
  color: var(--purple);
}

/* Mobile screenshot container */
.mobile-screenshot-container {
  width: 210px;
  background: white;
  border-radius: 28px;
  padding: 8px;
  border: 1px solid var(--border-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mobile-screenshot-container:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: var(--shadow-md);
}
.mobile-screenshot-frame {
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 18;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-speaker {
  width: 32px;
  height: 4px;
  background: var(--border-md);
  border-radius: 2px;
  margin: 6px auto 0;
}
.mobile-home-indicator {
  width: 60px;
  height: 3px;
  background: var(--border-md);
  border-radius: 2px;
  margin: 0 auto 6px;
}

/* ── 14. VERTICALS GRID ───────────────────────────────── */
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.vertical-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem; transition: box-shadow var(--dur) var(--ease), transform var(--dur);
}
.vertical-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vertical-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.vertical-card p { font-size: 0.88rem; }
.vertical-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(6,16,79,0.06);
  color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}

/* ── 15. PRODUCT SHOWCASE (detail pages — alternating blocks) */
.product-showcase { overflow: hidden; }
.product-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  min-height: 500px; border-bottom: 1px solid var(--border);
}
.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }
.product-block-content { padding: 4.5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.product-block-badge {
  display: inline-block; font-family: var(--font-h); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3em 0.9em; border-radius: 2em; margin-bottom: 0.6rem;
}
.badge-navy   { background: rgba(6,16,79,0.07); color: var(--navy); }
.badge-accent { background: rgba(91,27,178,0.08); color: var(--purple); }
.badge-warm   { background: rgba(255,106,0,0.08); color: var(--orange); }
.product-category {
  font-size: 0.75rem; font-family: var(--font-h); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem;
}
.product-block-content h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); margin-bottom: 1rem; }
.product-block-content .tagline { font-size: 1rem; color: var(--text-light); margin-bottom: 1.75rem; line-height: 1.75; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feature-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-item-icon {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px; color: white;
}
.fi-navy   { background: var(--g-navy); }
.fi-accent { background: var(--g-accent); }
.fi-warm   { background: var(--g-warm); }
.feature-item-text { display: flex; flex-direction: column; gap: 0.15rem; }
.feature-item-text strong { font-size: 0.92rem; color: var(--navy); font-family: var(--font-h); font-weight: 700; }
.feature-item-text span   { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.product-block-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.product-block-visual { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; padding: 3rem; }
.pd-visual { background: linear-gradient(145deg, #f0f4ff, #e8eeff); }
.ll-visual { background: linear-gradient(145deg, #f5f0ff, #ede8ff); }
.fk-visual { background: linear-gradient(145deg, #fff8ee, #fff0d0); }
.product-block-visual-inner { width: 100%; max-width: 340px; }

/* Product visual display (detail pages) */
.product-visual-display { text-align: center; width: 100%; }
.product-icon-large {
  width: 90px; height: 90px; border-radius: var(--radius-xl); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.75rem; font-weight: 900; color: white; box-shadow: var(--shadow-lg);
}
.pil-navy   { background: var(--g-navy); }
.pil-accent { background: var(--g-accent); }
.pil-warm   { background: var(--g-warm); }
.product-icon-label { font-family: var(--font-h); font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.2rem; }
.product-icon-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.visual-chips { display: flex; flex-direction: column; gap: 0.6rem; max-width: 240px; margin: 0 auto; }
.visual-chip {
  background: white; border-radius: var(--radius-sm); padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.6rem; box-shadow: var(--shadow-xs);
  border: 1px solid var(--border); font-size: 0.78rem;
}
.visual-chip span:last-child { margin-left: auto; font-family: var(--font-mono); font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.vc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.vc-navy   { background: var(--navy); }
.vc-accent { background: var(--purple); }
.vc-warm   { background: var(--orange); }

/* ── 16. OPS FLOW ──────────────────────────────────────── */
.ops-flow {
  display: flex; align-items: stretch; gap: 0; border: 1px solid var(--border-md);
  border-radius: var(--radius-xl); overflow: hidden; background: var(--white);
}
.ops-step {
  flex: 1; padding: 2rem 1.5rem; text-align: center; position: relative;
  border-right: 1px solid var(--border);
}
.ops-step:last-child { border-right: none; }
.ops-step-num {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  color: var(--muted); margin-bottom: 0.75rem; letter-spacing: 0.06em;
}
.ops-step h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.ops-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.ops-step-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm); margin: 0 auto 0.75rem;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.osi-1 { background: rgba(6,16,79,0.07); color: var(--navy); }
.osi-2 { background: rgba(91,27,178,0.08); color: var(--purple); }
.osi-3 { background: rgba(228,18,91,0.08); color: var(--magenta); }
.osi-4 { background: rgba(255,106,0,0.08); color: var(--orange); }

/* ── 17. OUTLETS ──────────────────────────────────────── */
.filter-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-h); font-size: 0.8rem; font-weight: 700; padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border-md); background: white;
  color: var(--muted); transition: all var(--dur) var(--ease); cursor: pointer;
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.outlets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.outlet-card {
  background: white; border: 1px solid var(--border-md); border-radius: var(--radius-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem;
  transition: box-shadow var(--dur), transform var(--dur), opacity var(--dur);
}
.outlet-card.hidden { display: none; }
.outlet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.outlet-badge {
  display: inline-block; font-family: var(--font-h); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25em 0.7em;
  border-radius: 3px; background: rgba(6,16,79,0.06); color: var(--navy); width: fit-content;
}
.outlet-card h3 { font-size: 1rem; }
.outlet-address { font-size: 0.85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.outlet-actions { display: flex; gap: 0.6rem; margin-top: 0.25rem; }
.outlet-actions .btn { flex: 1; justify-content: center; }

/* ── 18. TEAM ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 1.5rem; }
.team-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; transition: box-shadow var(--dur), transform var(--dur);
  display: flex; flex-direction: column;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card-visual {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 2.25rem; font-weight: 900; color: white; letter-spacing: 0.04em;
}
.team-card-body { padding: 1.75rem; }
.team-card-body h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.75rem; font-family: var(--font-h); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.85rem;
}
.team-card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── 19. JOBS ──────────────────────────────────────────── */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 1.5rem; }
.job-card {
  background: white; border: 1px solid var(--border-md); border-radius: var(--radius-xl);
  padding: 2.25rem; display: flex; flex-direction: column; gap: 0.85rem;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}
.job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(91,27,178,0.2); }
.job-title { font-size: 1.15rem; }
.job-dept { font-size: 0.7rem; font-family: var(--font-h); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); }
.job-description { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; flex: 1; }
.job-meta { display: flex; flex-direction: column; gap: 0.4rem; }
.job-meta li { display: flex; gap: 0.4rem; align-items: center; font-size: 0.8rem; color: var(--muted); }
.job-meta li svg { color: var(--purple); flex-shrink: 0; }

/* ── 20. FORMS ─────────────────────────────────────────── */
.form-wrapper {
  background: white; border: 1px solid var(--border-md); border-radius: var(--radius-2xl);
  padding: 3.5rem; box-shadow: var(--shadow-xs);
}
.form-title { font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 0.6rem; }
.form-desc { font-size: 0.92rem; color: var(--muted); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text);
  background: var(--light); transition: border-color var(--dur), box-shadow var(--dur), background var(--dur); outline: none;
}
.form-control:focus { border-color: var(--purple); background: white; box-shadow: 0 0 0 3px rgba(91,27,178,0.08); }
textarea.form-control { min-height: 120px; }
select.form-control { cursor: pointer; -webkit-appearance: none; }
.form-file-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  border: 2px dashed var(--border-md); border-radius: var(--radius-sm); padding: 2rem 1.5rem;
  background: var(--light); cursor: pointer; transition: border-color var(--dur), background var(--dur);
  text-align: center; font-size: 0.85rem; color: var(--muted); font-family: var(--font-h);
}
.form-file-visual:hover { border-color: var(--purple); background: rgba(91,27,178,0.02); color: var(--purple); }

/* ── 21. CTA BOX ───────────────────────────────────────── */
.cta-box {
  border-radius: var(--radius-2xl); background: var(--g-primary); padding: 4.5rem 3.5rem;
  overflow: hidden; position: relative;
}
.cta-box-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-box-content h2 { color: white; font-size: clamp(1.6rem, 2.8vw, 2.25rem); margin-bottom: 0.85rem; }
.cta-box-content p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 2rem; }
.cta-box-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 22. PAGE HERO ─────────────────────────────────────── */
.page-hero {
  padding: calc(var(--section-pad) + 80px) 0 var(--section-pad);
  background: linear-gradient(180deg, rgba(91,27,178,0.025) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.05rem; max-width: 640px; margin-bottom: 0; }
.page-hero-badge {
  display: inline-block; font-family: var(--font-h); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35em 1em; border-radius: 2em;
  background: rgba(6,16,79,0.06); color: var(--navy); margin-bottom: 1rem;
}
.page-hero-meta {
  display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.page-hero-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.page-hero-meta-item strong {
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.page-hero-meta-item span {
  font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em;
  font-weight: 700; font-family: var(--font-h);
}

/* ── 23. TIMELINE ──────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--purple), var(--magenta));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -31px; top: 27px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--g-accent); box-shadow: 0 0 0 3px rgba(228,18,91,0.15);
}
.timeline-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem 2rem; transition: box-shadow var(--dur), transform var(--dur);
}
.timeline-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.timeline-year {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.4rem;
}
.timeline-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.timeline-card p { font-size: 0.88rem; color: var(--muted); }

/* ── 24. FOOTER ────────────────────────────────────────── */
footer { background: var(--navy-dark); padding: 4.5rem 0 2rem; color: rgba(255,255,255,0.68); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-logo {
  height: 93px;
  width: auto;
  margin-bottom: 1rem;
  background: white;
  padding: 6px 12px;
  border-radius: 10px;
  object-fit: contain;
}
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.55); transition: all var(--dur);
}
.footer-social-link:hover { background: rgba(255,255,255,0.14); color: white; }
.footer-col h4 {
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--dur); }
.footer-links a:hover { color: white; }
.footer-address { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; line-height: 1.6; }
.footer-address strong { color: rgba(255,255,255,0.9); font-family: var(--font-h); display: block; margin-bottom: 0.4rem; }
.footer-address span { display: flex; flex-direction: column; gap: 0.1rem; margin-top: 0.4rem; }
.footer-address a { color: rgba(255,255,255,0.6); transition: color var(--dur); }
.footer-address a:hover { color: white; }
/* ── 24a. TECHNICAL LIFECYCLE & PATHWAYS ─────────────── */
.lifecycle-container {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
}
.lifecycle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.lifecycle-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-sm);
  position: absolute;
  z-index: 3;
  width: 260px;
  transition: all var(--dur) var(--ease);
}
.lifecycle-item:hover {
  border-color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lifecycle-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.lifecycle-card-content h4 {
  font-size: 0.85rem;
  margin: 0 0 0.1rem 0;
  font-weight: 700;
  color: var(--navy);
}
.lifecycle-card-content span {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
}

/* Absolute positions along the path on desktop */
.lifecycle-item.item-1 { top: 15px; left: 10px; }
.lifecycle-item.item-2 { top: 110px; right: 10px; }
.lifecycle-item.item-3 { top: 205px; left: 40px; }
.lifecycle-item.item-4 { top: 300px; right: 20px; }
.lifecycle-item.item-5 { top: 395px; left: 20px; }

@media (max-width: 920px) {
  .lifecycle-container {
    height: auto;
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .lifecycle-svg {
    display: none;
  }
  .lifecycle-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
  }
  /* Draw a simple vertical line on mobile */
  .lifecycle-container::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--magenta), var(--orange));
  }
}

/* ── 24a. TECHNICAL LIFECYCLE & PATHWAYS ─────────────── */
.lifecycle-container {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
}
.lifecycle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.lifecycle-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-sm);
  position: absolute;
  z-index: 3;
  width: 260px;
  transition: all var(--dur) var(--ease);
}
.lifecycle-item:hover {
  border-color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lifecycle-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.lifecycle-card-content h4 {
  font-size: 0.85rem;
  margin: 0 0 0.1rem 0;
  font-weight: 700;
  color: var(--navy);
}
.lifecycle-card-content span {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
}

/* Absolute positions along the path on desktop */
.lifecycle-item.item-1 { top: 15px; left: 10px; }
.lifecycle-item.item-2 { top: 110px; right: 10px; }
.lifecycle-item.item-3 { top: 205px; left: 40px; }
.lifecycle-item.item-4 { top: 300px; right: 20px; }
.lifecycle-item.item-5 { top: 395px; left: 20px; }

@media (max-width: 920px) {
  .lifecycle-container {
    height: auto;
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .lifecycle-svg {
    display: none;
  }
  .lifecycle-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
  }
  /* Draw a simple vertical line on mobile */
  .lifecycle-container::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--magenta), var(--orange));
  }
}

/* ── 24b. TECHNICAL ARCHITECTURAL BLUEPRINT ────────── */
.schematic-blueprint {
  background: #020624;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(91,27,178,0.18);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.schematic-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.7;
}
.schematic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.schematic-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.schematic-status {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.schematic-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}
.schematic-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  transition: transform var(--dur);
}
.schematic-step::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  height: 24px;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, 0.18);
}
.schematic-step:last-child::after {
  display: none;
}
.schematic-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
  transition: all var(--dur);
}
.schematic-step:hover .schematic-node {
  border-color: var(--magenta);
  box-shadow: 0 0 12px rgba(228, 18, 91, 0.5);
  background: var(--magenta);
  transform: scale(1.05);
}
.schematic-label {
  display: flex;
  flex-direction: column;
}
.schematic-label strong {
  font-size: 0.88rem;
  color: white;
  font-weight: 600;
  font-family: var(--font-h);
}
.schematic-label span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.05rem;
}
.schematic-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── 24c. EDITORIAL TIMELINE ───────────────────────── */
.editorial-timeline {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 6rem;
  align-items: start;
}
.editorial-sticky {
  position: sticky;
  top: 120px;
}
.timeline-flow {
  position: relative;
  padding-left: 3.5rem;
  border-left: 1px solid var(--border-md);
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
.timeline-flow::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  height: 100px;
  width: 1px;
  background: var(--g-accent);
  animation: timelineGlow 5s infinite linear;
}
@keyframes timelineGlow {
  0% { top: 0%; height: 0px; }
  50% { height: 120px; }
  100% { top: 100%; height: 0px; }
}
.timeline-stage {
  position: relative;
  transition: transform var(--dur);
}
.timeline-circle {
  position: absolute;
  left: calc(-3.5rem - 14px);
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-h);
  color: var(--muted);
  transition: all var(--dur) var(--ease);
  z-index: 2;
}
.timeline-stage:hover .timeline-circle {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 0 5px rgba(228, 18, 91, 0.1);
  transform: scale(1.1);
}
.timeline-stage h4 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--navy);
}
.timeline-stage .stage-focus {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  margin-bottom: 0.85rem;
  display: block;
}
.timeline-stage p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── 24d. ASYMMETRIC PARTNER PATHWAYS ────────────────── */
.pathways-grid-custom {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.pathway-large-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.pathway-large-block:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pathway-large-block h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.pathway-large-block p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.pathways-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pathway-row-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: all var(--dur) var(--ease);
}
.pathway-row-card:hover {
  border-color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.pathway-row-card-content {
  flex: 1;
}
.pathway-row-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.pathway-row-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .editorial-timeline {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .editorial-sticky {
    position: relative;
    top: auto;
  }
  .pathways-grid-custom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1100px) {
  .pathways-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .pathways-grid { grid-template-columns: 1fr; }
}

.footer-bottom {
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem;
}
.copyright { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-reg { font-size: 0.72rem; color: rgba(255,255,255,0.28); margin-top: 0.75rem; }

/* ── 25. ANIMATIONS ────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-stagger {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-left  { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: none; }
.reveal-stagger { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.11s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.39s; }

/* ── UTILITY CLASSES ───────────────────────────────────── */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-2-col-lg { display: grid; grid-template-columns: 1fr 1.75fr; gap: 4rem; align-items: start; }
.grid-2-col-md { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-2-col-navy { background: var(--navy); border-radius: var(--radius-xl); padding: 4rem 3rem; color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.hero-padding { padding: calc(72px + 6rem) 0 6rem; }
.hero-content-wrapper { max-width: 960px; margin: 0 auto; text-align: center; }
.proof-bar-wrapper { border-top: 1px solid var(--border); padding-top: 3rem; justify-content: center; gap: 3.5rem; display: flex; flex-wrap: wrap; }

/* ── B2B PATHWAYS MODERN EQUAL GRID ─────────────────────── */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}
.pathway-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pathway-card-header {
  margin-bottom: 1.5rem;
}
.pathway-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.pathway-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.pathway-card .btn {
  margin-top: auto;
  align-self: flex-start;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── FINAL CTA CENTERED PILL CHIPS ──────────────────────── */
.cta-chips {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.cta-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.cta-chip:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* ── 26. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-pad: 80px; }
  .hero-grid { gap: 3rem; }
  .editorial-split, .split-55-45, .split-45-55 { gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
  .os-panel { width: 240px !important; }
  .product-os { height: 400px; }
  .pathways-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2-col-navy { padding: 3rem 2rem; gap: 2rem; }
}

@media (max-width: 920px) {
  :root { --section-pad: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero::before { display: none; }
  .product-os { display: none; }
  .product-row { grid-template-columns: 1fr; }
  .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse .product-row-content { grid-column: auto; grid-row: auto; }
  .product-row.reverse .product-row-visual { grid-column: auto; grid-row: auto; }
  .product-row-visual { min-height: 260px; }
  .product-block { grid-template-columns: 1fr; }
  .product-block-visual { min-height: 260px; }
  .editorial-split, .split-55-45, .split-45-55 { grid-template-columns: 1fr; gap: 2.5rem; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .outlets-grid { grid-template-columns: 1fr 1fr; }
  .ops-flow { flex-direction: column; }
  .ops-step { border-right: none; border-bottom: 1px solid var(--border); }
  .ops-step:last-child { border-bottom: none; }
  
  .grid-2-col-lg { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2-col-navy { grid-template-columns: 1fr; }
  .grid-3-col { grid-template-columns: 1fr 1fr; }
  .pathways-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pathways-grid { grid-template-columns: 1fr; }
  .grid-3-col { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; }
  .grid-2-col-md { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --section-pad: 52px; }
  .container { padding: 0 1.25rem; }
  .nav-menu {
    display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--white); padding: 100px 2rem 4rem;
    gap: 1rem; z-index: 999; overflow-y: auto; overflow-x: hidden;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    justify-content: flex-start; align-items: stretch;
  }
  .nav-menu.open { transform: translateX(0); }
  .logo-link { position: relative; z-index: 1000; }
  .navbar .btn-primary { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 1000; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-link { font-size: 1.5rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); color: var(--navy); width: 100%; display: block; font-weight: 700; }
  .nav-link::after { display: none; }
  
  .hero-padding { padding: calc(72px + 3rem) 0 3rem; }
  .hero { padding: calc(72px + 3rem) 0 3rem; }
  h1 { font-size: 2rem; }
  .verticals-grid { grid-template-columns: 1fr; }
  .stats-rail { gap: 1.25rem; justify-content: flex-start; }
  .product-showcase-home .container { gap: 4rem; }
  .product-row { gap: 2rem; }
  .product-row-visual { padding: 2rem; min-height: 240px; }
  .product-block-visual { padding: 2rem; }
  .product-row-content { padding: 2rem 0 0 0; }
  .product-row-content h3 { font-size: 1.75rem; }
  .product-block-content { padding: 2rem 0 0 0; }
  .team-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .outlets-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 3rem 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: calc(80px + 2.5rem) 0 2.5rem; }
  .page-hero-meta { gap: 1.5rem; }
  .hero-actions { flex-direction: column; gap: 0.6rem; align-items: center; }
  .proof-bar-wrapper { gap: 1.25rem; padding-top: 2rem; }
  .proof-bar { gap: 1.25rem; }
  .timeline { padding-left: 40px; }
  .timeline-card { padding: 1.25rem; }
  
  .cta-chips { flex-direction: column; align-items: stretch; }
  .cta-chip { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .cta-box { padding: 2.5rem 1.25rem; }
  .vertical-card { padding: 1.75rem 1.25rem; }
  .grid-2-col-navy { padding: 2.5rem 1.5rem; }
}

/* Mobile screenshot hover orange sync */
.mobile-screenshot-container:hover .screenshot-placeholder svg {
  color: var(--orange);
}
