/* ══════════════════════════════════════════════════════════════
   NORCENT — ACCENTURE-INSPIRED DESIGN SYSTEM
   Light theme · Blue accent · Editorial typography
══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

:root {
  --purple:        #0057FF;
  --purple-dark:   #0040CC;
  --purple-light:  #E0EAFF;
  --purple-mid:    #4D84FF;
  --black:         #000000;
  --charcoal:      #1A1A1A;
  --dark-grey:     #404040;
  --mid-grey:      #6B6B6B;
  --light-grey:    #F4F4F4;
  --border:        #E0E0E0;
  --white:         #FFFFFF;
  --text:          #1A1A1A;
  --text-muted:    #6B6B6B;
  --text-light:    #999999;
  --green:         #00C48C;
  --red:           #D93025;
  --container:     1200px;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
}

body {
  font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── UTILITIES ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-purple { color: var(--purple); }

/* ── REVEAL / SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal--left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal--right { opacity: 0; transform: translateX(36px);  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal--scale { opacity: 0; transform: scale(0.94);       transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible, .reveal--left.is-visible, .reveal--right.is-visible, .reveal--scale.is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.15s; }
[data-delay="2"] { transition-delay: 0.3s; }
[data-delay="3"] { transition-delay: 0.45s; }
[data-delay="4"] { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
  transition: box-shadow 0.3s, transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
header.header-expertise-hidden { transform: translateY(-100%); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 4px 16px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--purple); border-bottom-color: var(--purple); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); }

.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; }

.btn-outline-purple { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); }
.btn-outline-purple:hover { background: var(--purple); color: #fff; }

.btn-white { background: #fff; color: var(--purple); }
.btn-white:hover { background: var(--purple-light); }

.btn-lg { padding: 14px 32px; font-size: 0.938rem; }

.btn-lang {
  background: transparent;
  color: var(--mid-grey);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 0.813rem;
  font-weight: 500;
  border-radius: 2px;
}
.btn-lang:hover { border-color: var(--purple); color: var(--purple); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.is-open { transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu nav .btn-primary {
  display: flex;
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
  border-bottom: none;
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 24px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero-upper {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 64px);
  position: relative;
  z-index: 3;
}

.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  background: transparent;
  max-width: 860px;
}

/* Hero text is always on dark background — force bright colours regardless of theme */
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--purple); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero_custom__background--video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none !important;
  z-index: 0;
  opacity: 1 !important;
}

/* keep old class name rule harmless if referenced elsewhere */
.hero-video-bg { display: none; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(3, 8, 18, 0.90) 0%,
    rgba(3, 8, 18, 0.68) 60%,
    rgba(3, 8, 18, 0.50) 100%
  );
  pointer-events: none;
}

.hero-image-overlay {
  position: absolute;
  bottom: 40px; left: 40px;
  right: 40px;
  z-index: 1;
}
.hero-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-image-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 32px;
}
.marquee-sep { color: var(--purple); margin-left: 32px; font-size: 0.7rem; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-grey);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 64px; }
.section-header-centered { text-align: center; margin-bottom: 64px; }
.section-header-centered .section-subtitle { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════════════ */
.problem-section { background: var(--white); }

.problem-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.problem-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,48,37,0.06);
  color: var(--red);
  border: 1px solid rgba(217,48,37,0.2);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.problem-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.problem-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--light-grey); }
.problem-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}
.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.problem-card p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   OUTCOMES SECTION
══════════════════════════════════════════════════════════════ */
.outcomes-section {
  background: var(--light-grey);
}

/* Paired 3-column grid: each column = outcome card + method item */
.outcome-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  border: 1px solid var(--border);
}
.outcome-method-pair {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  border-right: 1px solid var(--border);
}
.outcome-method-pair:last-child { border-right: none; }

.outcome-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition: background 0.3s;
}
.outcome-card:hover { background: var(--light-grey); }

/* Watermark number */
.outcome-card::before {
  content: attr(data-num);
  position: absolute;
  top: -12px;
  right: -8px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--purple);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s;
}
.outcome-card:hover::before { opacity: 0.1; }

/* Left accent bar that grows on hover */
.outcome-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--purple);
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.outcome-card:hover::after,
.outcome-card.is-visible::after {
  height: 100%;
}

.outcome-card-inner {
  padding: 40px 32px;
  position: relative;
  z-index: 1;
}

.outcome-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.outcome-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.outcome-result {
  margin-top: 20px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--purple) !important;
  letter-spacing: 0.04em !important;
}

/* Method strip item inside outcome-method-pair */
.outcome-method-pair .method-strip-item {
  border-right: none;
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  align-self: stretch;
}

/* Methodology strip (standalone — no longer used but keep for safety) */
.method-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-top: none;
  background: var(--white);
}
.method-strip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.method-strip-item:last-child { border-right: none; }
.method-strip-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}
.method-strip-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.method-strip-text {
  font-size: 0.78rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS / HOW IT WORKS SECTION
══════════════════════════════════════════════════════════════ */
.process-section {
  background: var(--white);
  position: relative;
}

.process-timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 32px;
  position: relative;
}

/* Node column: circle + vertical connector line */
.process-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: var(--white);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.process-step.is-visible .process-node,
.process-step:hover .process-node {
  background: var(--purple);
  color: #fff;
}

.process-node--final {
  background: var(--purple);
  color: #fff;
}

.process-connector {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin: 4px 0;
  position: relative;
  overflow: hidden;
}
.process-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--purple);
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.process-step.is-visible .process-connector::after {
  height: 100%;
}

/* Content area */
.process-step-body {
  padding: 0 0 56px;
}
.process-step--last .process-step-body {
  padding-bottom: 0;
}

.process-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  margin-top: 10px;  /* align with node */
}

.process-step-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.process-step-body p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 20px;
}

.process-deliverable {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-grey);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.process-deliverable svg {
  width: 14px;
  height: 14px;
  stroke: var(--purple);
  flex-shrink: 0;
}

.process-cta {
  text-align: center;
  margin-top: 56px;
}
.process-cta p {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--mid-grey);
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--black);
}
.faq-section .section-eyebrow,
.faq-section .section-title,
.faq-section .section-subtitle {
  color: #fff;
}
.faq-section .section-eyebrow { color: var(--purple-light); }
.faq-section .text-purple { color: var(--purple-light); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

/* Accordion */
.faq-accordion {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple-light); }
.faq-q[aria-expanded="true"] { color: var(--purple-light); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a p {
  padding: 0 0 28px;
  font-size: 0.925rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SOLUTION BRIDGE
══════════════════════════════════════════════════════════════ */
.solution-bridge {
  background: var(--black);
  color: #fff;
  padding: 80px 0;
}
.solution-bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
}
.solution-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 20px;
}
.solution-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.solution-title .accent { color: var(--purple-mid); }
.solution-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── SHOPFLOOR BANNER (image pair) ── */
.shopfloor-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 420px;
}
.sf-panel {
  position: relative;
  overflow: hidden;
}
.sf-panel img { width:100%; height:100%; object-fit:cover; }
.sf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
}
.sf-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.sf-tag {
  background: var(--purple);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.sf-caption { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.sf-title { font-size: 1rem; font-weight: 600; color: #fff; }

/* ══════════════════════════════════════════════════════════════
   VS COMPARISON TABLE
══════════════════════════════════════════════════════════════ */
.vs-table-section { background: var(--light-grey); padding: 80px 0; }
.vs-table {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}
.vs-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.1fr;
  background: var(--black);
  color: #fff;
}
.vs-th {
  padding: 18px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vs-th.bad  { color: rgba(255,255,255,0.5); }
.vs-th.good { color: var(--purple-mid); }
.vs-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.vs-table-row:last-child { border-bottom: none; }
.vs-table-row:hover { background: var(--light-grey); }
.vs-td {
  padding: 16px 20px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-td.label { font-weight: 600; color: var(--dark-grey); font-size: 0.85rem; }
.vs-td.bad  { color: var(--red); }
.vs-td.good { color: var(--charcoal); font-weight: 600; }
.vs-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.vs-dot.bad  { background: var(--red); }
.vs-dot.good { background: var(--green); }

/* ── VS section label ── */
.vs-table-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════
   OUR EXPERTISE — Scroll-pinned vertical pan
══════════════════════════════════════════════════════════════ */
.svc-scroll-section { height: 360vh; }
.svc-pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #030812;
}

/* Dot-grid texture */
.svc-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* Two-column layout: left rail | card track */
.svc-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 0;
  position: relative;
  z-index: 1;
}

/* ── Left rail ── */
.svc-rail {
  padding: 52px 40px 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.svc-heading {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 32px;
}

/* Nav list */
.svc-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
}
.svc-nav-btn:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.svc-nav-num {
  font-size: 0.62rem;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  width: 20px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.svc-nav-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  flex: 1;
  transition: color 0.3s;
}
.svc-nav-tick {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Active nav state */
.svc-nav-btn[aria-pressed="true"] .svc-nav-num  { color: var(--purple-mid); }
.svc-nav-btn[aria-pressed="true"] .svc-nav-label { color: #fff; font-weight: 600; }
.svc-nav-btn[aria-pressed="true"] .svc-nav-tick  {
  background: var(--purple-mid);
  box-shadow: 0 0 8px rgba(77,132,255,0.9);
}

/* Vertical progress line running behind nav */
.svc-vline {
  position: absolute;
  left: 22px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: rgba(255,255,255,0.05);
}
.svc-vline-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-mid) 100%);
  transition: height 0.06s linear;
}
.svc-hint {
  margin-top: 28px;
  font-size: 0.65rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  transition: opacity 0.4s;
}

/* ── Card track ── */
.svc-track-outer {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.svc-track {
  display: flex;
  gap: 24px;
  padding: 40px 64px;
  will-change: transform;
  align-items: center;
}
/* LTR: track explicitly left-to-right (belt+suspenders) */
[dir="ltr"] .svc-track { direction: ltr; }

/* ── Individual cards ── */
.svc-card {
  width: 400px;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.5s, box-shadow 0.5s, opacity 0.55s;
  opacity: 0.32;           /* inactive fade */
}
.svc-card--active {
  opacity: 1;
  border-color: rgba(var(--svc-rgb), 0.4);
  box-shadow: 0 0 0 1px rgba(var(--svc-rgb), 0.15),
              0 0 56px rgba(var(--svc-rgb), 0.18),
              inset 0 0 80px rgba(var(--svc-rgb), 0.04);
}

/* Orb (ambient glow blob) */
.svc-card__orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--svc-accent) 0%, transparent 70%);
  opacity: 0.15;
  top: -70px;
  right: -70px;
  pointer-events: none;
  z-index: 0;
  animation: svc-orb-float 9s ease-in-out infinite;
  transition: opacity 0.5s;
}
.svc-card--active .svc-card__orb { opacity: 0.32; }
@keyframes svc-orb-float {
  0%   { transform: translate(0%,0%) scale(1); }
  33%  { transform: translate(-6%,8%) scale(1.1); }
  66%  { transform: translate(8%,-5%) scale(0.93); }
  100% { transform: translate(0%,0%) scale(1); }
}
/* Stagger orb floats */
.svc-card:nth-child(1) .svc-card__orb { animation-delay: 0s; }
.svc-card:nth-child(2) .svc-card__orb { animation-delay: -2.2s; }
.svc-card:nth-child(3) .svc-card__orb { animation-delay: -4.7s; }
.svc-card:nth-child(4) .svc-card__orb { animation-delay: -7s; }

/* Scan beam that sweeps top→bottom */
.svc-card__beam {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--svc-accent) 35%,
    rgba(255,255,255,0.7) 50%, var(--svc-accent) 65%, transparent 100%);
  opacity: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
  animation: svc-beam-sweep 6s ease-in-out infinite;
}
@keyframes svc-beam-sweep {
  0%   { top: -2px;  opacity: 0; }
  4%   { opacity: 0.7; }
  96%  { opacity: 0.7; }
  100% { top: calc(100% + 2px); opacity: 0; }
}
.svc-card:nth-child(1) .svc-card__beam { animation-delay: 0s; }
.svc-card:nth-child(2) .svc-card__beam { animation-delay: -1.5s; }
.svc-card:nth-child(3) .svc-card__beam { animation-delay: -3s; }
.svc-card:nth-child(4) .svc-card__beam { animation-delay: -4.5s; }

/* Ghost watermark number */
.svc-card__ghost-num {
  position: absolute;
  top: -20px;
  right: 10px;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #fff;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  font-family: 'SF Mono', 'Fira Code', monospace;
  transition: opacity 0.5s;
}
.svc-card--active .svc-card__ghost-num { opacity: 0.07; }

/* Card header: chip label + icon */
.svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.svc-card__chip {
  font-size: 0.62rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--svc-accent);
  background: rgba(var(--svc-rgb), 0.12);
  border: 1px solid rgba(var(--svc-rgb), 0.28);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
  transition: background 0.3s;
}
.svc-card--active .svc-card__chip {
  background: rgba(var(--svc-rgb), 0.2);
}
.svc-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.svc-card--active .svc-card__icon {
  background: rgba(var(--svc-rgb), 0.2);
  border-color: rgba(var(--svc-rgb), 0.45);
  box-shadow: 0 0 18px rgba(var(--svc-rgb), 0.35);
}
.svc-card__icon svg { width: 18px; height: 18px; stroke: #fff; opacity: 0.85; }

/* Card body */
.svc-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__body h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.svc-card__body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  transition: color 0.4s;
}
.svc-card--active .svc-card__body p { color: rgba(255,255,255,0.62); }

.svc-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
}
.svc-card__list li {
  font-size: 0.78rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: rgba(255,255,255,0.35);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.35s;
}
.svc-card__list li:last-child { border-bottom: none; }
.svc-card--active .svc-card__list li { color: rgba(255,255,255,0.58); }

/* Per-card accent colours */
.svc-card--violet { background: #0A0614; --svc-accent: #7C3AED; --svc-rgb: 124,58,237; }
.svc-card--blue   { background: #040E1C; --svc-accent: #2563EB; --svc-rgb: 37,99,235; }
.svc-card--cyan   { background: #030F17; --svc-accent: #06B6D4; --svc-rgb: 6,182,212; }
.svc-card--green  { background: #03120A; --svc-accent: #10B981; --svc-rgb: 16,185,129; }

/* Bottom progress strip */
.svc-progress-bar-wrap {
  height: 2px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.svc-progress-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-mid) 100%);
  transition: width 0.06s linear;
}

/* Pagination dots (mobile only) */
.svc-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  padding: 16px 0 24px;
  position: relative;
  z-index: 2;
}
.svc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.svc-dot--active {
  width: 20px;
  border-radius: 3px;
  background: var(--purple-mid);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION — slide-up curtain reveal
══════════════════════════════════════════════════════════════ */
.contact-lift {
  position: relative;
  overflow: hidden;
}
.contact-lift__curtain {
  position: absolute;
  inset: 0;
  background: #0B1320;       /* matches dark body bg */
  z-index: 20;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: transform;
}
body:not(.dark-theme) .contact-lift__curtain { background: var(--light-grey); }
.contact-lift--visible .contact-lift__curtain {
  transform: translateY(-105%);
}
.contact-lift__inner {
  transform: translateY(52px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
              opacity   0.85s ease 0.22s;
}
.contact-lift--visible .contact-lift__inner {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   AI READINESS SECTION
══════════════════════════════════════════════════════════════ */
.ai-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.ai-section-bg {
  position: absolute;
  inset: 0;
}
.ai-section-bg img { width:100%; height:100%; object-fit:cover; opacity:0.12; filter: grayscale(1); }

.ai-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ai-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.ai-title .accent { color: var(--purple-mid); }
.ai-desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }

.ai-req-list { display: flex; flex-direction: column; }
.ai-req-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.ai-req-item:last-child { border-bottom: none; }
.ai-req-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-mid);
  flex-shrink: 0;
  padding-top: 3px;
  width: 28px;
}
.ai-req-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ai-req-item p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── TERMINAL ── */
.terminal-box {
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.terminal-header {
  background: rgba(255,255,255,0.06);
  padding: 12px 20px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot:nth-child(1) { background: #FF5F57; }
.term-dot:nth-child(2) { background: #FEBC2E; }
.term-dot:nth-child(3) { background: #28C840; }
.terminal-body { padding: 24px 20px; font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 0.8rem; line-height: 1.8; }
.term-prompt { color: var(--purple-mid); margin-right: 8px; }
.term-cmd    { color: rgba(255,255,255,0.9); }
.term-out    { color: rgba(255,255,255,0.45); padding-left: 24px; white-space: pre-wrap; }
.term-success {
  color: #fff;
  background: rgba(161,0,255,0.1);
  border-left: 2px solid var(--purple-mid);
  padding: 14px 16px;
  margin-top: 4px;
}
.term-ready { color: var(--green); }

/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--light-grey); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.contact-info-panel { display: flex; flex-direction: column; gap: 0; }

.contact-info-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info-label svg { width: 14px; height: 14px; stroke: var(--purple); }
.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}
.contact-info-sub { font-size: 0.85rem; color: var(--mid-grey); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 340px; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--purple-mid); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content-side   { padding: 60px 40px; }
  .ai-section-grid     { grid-template-columns: 1fr; gap: 48px; }
  .solution-bridge-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-intro-grid  { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid        { grid-template-columns: 1fr; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  /* Expertise — scroll-pinned collapses to snap-scroll on tablet/mobile */
  .svc-scroll-section { height: auto; }
  .svc-pinned { position: relative; height: auto; overflow: visible; }
  .svc-inner { grid-template-columns: 1fr; }
  .svc-rail { padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .svc-vline { display: none; }
  .svc-track-outer { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .svc-track { padding: 24px; }
  .svc-card { width: 82vw; min-height: 480px; scroll-snap-align: start; opacity: 1; }
  .nav-menu { display: none; }
  .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
  header { padding: 0 24px; gap: 12px; overflow: hidden; max-width: 100vw; }
  .logo { flex: 1; min-width: 0; overflow: hidden; }
  .logo-icon { flex-shrink: 0; }
  .header-actions { flex-shrink: 0; }
}

@media (max-width: 768px) {
  .container         { padding: 0 24px; }
  .section-pad       { padding: 64px 0; }
  .section-pad-sm    { padding: 40px 0; }
  .hero-content-side { padding: 48px 24px; }
  .hero-stats        { gap: 24px; flex-wrap: wrap; }
  /* Problem section — collapse 3-col cards */
  .problem-cards-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 28px 20px; }
  /* Outcomes — stack pairs vertically */
  .outcome-method-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .outcome-method-pair { grid-row: auto; grid-template-rows: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .outcome-method-pair:last-child { border-bottom: none; }
  .outcome-card-inner { padding: 28px 20px; }
  .outcome-method-pair .method-strip-item { padding: 20px 20px; }
  /* Expertise section — hide non-functional rail nav, reduce rail size */
  .svc-nav { display: none; }
  .svc-hint { display: none; }
  .svc-rail { padding: 28px 20px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: relative; top: auto; }
  .shopfloor-banner  { grid-template-columns: 1fr; height: auto; }
  .sf-panel          { height: 280px; }
  .vs-table-head, .vs-table-row { grid-template-columns: 1.4fr 1.1fr 1.1fr; }
  .vs-td             { padding: 14px 16px; font-size: 0.8rem; }
  .contact-form      { padding: 32px 24px; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom     { flex-direction: column; gap: 8px; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   ACCENTURE ANIMATION SYSTEM
   Seven signature motion patterns from accenture.com
══════════════════════════════════════════════════════════════ */

/* ── KEYFRAMES ── */
@keyframes acc-fade-up {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes acc-wipe-right {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes acc-line-grow {
  from { transform: translateY(-50%) scaleX(0); }
  to   { transform: translateY(-50%) scaleX(1); }
}

/* ── 1. HERO CONTENT STAGGER (page-load, bypasses IntersectionObserver) ── */
.hero-content-side .reveal,
.hero-content-side .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  animation: acc-fade-up 1s cubic-bezier(0.16,1,0.3,1) both !important;
  transition: none !important;
}
.hero-content-side .reveal:not([data-delay]) { animation-delay: 0.08s !important; }
.hero-content-side [data-delay="1"]           { animation-delay: 0.28s !important; }
.hero-content-side [data-delay="2"]           { animation-delay: 0.48s !important; }
.hero-content-side [data-delay="3"]           { animation-delay: 0.65s !important; }
.hero-content-side [data-delay="4"]           { animation-delay: 0.82s !important; }

/* ── 3. HERO CURSOR GLOW ── */
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,0,255,0.055) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.9s cubic-bezier(0.16,1,0.3,1), top 0.9s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
  will-change: left, top;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-upper { position: relative; z-index: 3; }

/* ── 4. SECTION TITLE PURPLE UNDERLINE SWEEP ── */
.section-title {
  padding-bottom: 22px;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--purple);
  width: 0;
  transition: width 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.section-header-centered .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-title.is-visible::after { width: 56px; }
.no-title-line::after { display: none !important; }

/* Word-level underline (e.g. under 'AI') */
.word-line {
  position: relative;
  display: inline-block;
}
.word-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--purple);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}
.section-title.is-visible .word-line::after { width: 100%; }

.solution-title {
  position: relative;
  padding-bottom: 22px;
}
.solution-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--purple-mid);
  width: 0;
  transition: width 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.solution-title.is-visible::after { width: 56px; }

.ai-title {
  position: relative;
  padding-bottom: 22px;
}
.ai-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--purple-mid);
  width: 0;
  transition: width 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.ai-title.is-visible::after { width: 56px; }

/* ── 5. EYEBROW ACCENT LINE (micro purple dash draws in) ── */
.section-eyebrow {
  padding-left: 18px;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--purple);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.section-eyebrow.is-visible::before {
  transform: translateY(-50%) scaleX(1);
}

/* ── 6. SHOPFLOOR IMAGE CLIP-PATH WIPE REVEAL ── */
.sf-panel {
  overflow: hidden;
}
.sf-panel img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.16,1,0.3,1) 0s;
}
.sf-panel.is-visible img {
  clip-path: inset(0 0% 0 0);
}
.sf-panel:nth-child(2).is-visible img {
  transition-delay: 0.2s;
}

/* ── 7. PROBLEM CARD HOVER LIFT + PURPLE ACCENT BORDER ── */
.problem-card {
  border-left: 3px solid transparent;
  transition:
    transform      0.35s cubic-bezier(0.16,1,0.3,1),
    box-shadow     0.35s cubic-bezier(0.16,1,0.3,1),
    border-left-color 0.35s,
    background     0.2s;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(161,0,255,0.10);
  border-left-color: var(--purple);
  background: var(--white);
}

/* ── STAGGERED PROBLEM CARD ANIMATION (parent is-visible triggers children) ── */
.problem-cards-grid.is-visible .problem-card {
  animation: acc-fade-up 0.75s cubic-bezier(0.16,1,0.3,1) both;
}
.problem-cards-grid.is-visible .problem-card:nth-child(1) { animation-delay: 0.05s; }
.problem-cards-grid.is-visible .problem-card:nth-child(2) { animation-delay: 0.22s; }
.problem-cards-grid.is-visible .problem-card:nth-child(3) { animation-delay: 0.39s; }

/* ── AI REQ ITEM HOVER SLIDE ── */
.ai-req-item {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}
.ai-req-item:hover { transform: translateX(10px); }

/* ── CREATIVITY IMAGE CLIP-PATH TRANSITION UPGRADE ── */
.creativity-img {
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
  transform: scale(1.03);
}
.creativity-img--active {
  transform: scale(1);
}

/* ── FOOTER LINK HOVER UNDERLINE ── */
.footer-col ul li a {
  display: inline-block;
  position: relative;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 1px;
  width: 0;
  background: var(--purple-mid);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.footer-col ul li a:hover::after { width: 100%; }

/* ── NAV LINK ANIMATED UNDERLINE ── */
.nav-menu a {
  transition: color 0.2s;
  border-bottom: none !important;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--purple);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--purple); border-bottom-color: transparent; }

@media (max-width: 640px) {
  .svc-card { min-height: 420px; width: 88vw; }
}

/* ══════════════════════════════════════════════════════════════
   DARK THEME OVERRIDES (applies when body has .dark-theme)
══════════════════════════════════════════════════════════════ */
body.dark-theme {
  --white: #0F1726;
  --light-grey: #0B1320;
  --border: #243246;
  --charcoal: #E8EEF9;
  --dark-grey: #C7D2E3;
  --mid-grey: #9AA9C0;
  --text: #EAF1FF;
  --text-muted: #9AA9C0;
  --text-light: #6F809B;
  background: #0B1320;
  color: var(--text);
}

body.dark-theme header,
body.dark-theme .mobile-menu,
body.dark-theme .problem-section,
body.dark-theme .services-section,
body.dark-theme .contact-section,
body.dark-theme .problem-card,
body.dark-theme .vs-table,
body.dark-theme .contact-form,
body.dark-theme .term-success,
body.dark-theme .btn-white {
  background: var(--white);
}

body.dark-theme header,
body.dark-theme .mobile-menu nav a,
body.dark-theme .problem-cards-grid,
body.dark-theme .vs-table,
body.dark-theme .vs-table-row,
body.dark-theme .contact-form,
body.dark-theme .contact-info-block,
body.dark-theme .hero-stats {
  border-color: var(--border);
}
/* Award cards are always dark — no border-color override needed */

body.dark-theme .logo,
body.dark-theme .nav-menu a,
body.dark-theme .mobile-menu nav a,
body.dark-theme .section-title,
body.dark-theme .problem-card h3,
body.dark-theme .vs-td.good,
body.dark-theme .contact-info-value,
body.dark-theme .form-group input,
body.dark-theme .form-group textarea,
body.dark-theme .form-group label {
  color: var(--text);
}

body.dark-theme .section-subtitle,
body.dark-theme .problem-card p,
body.dark-theme .contact-info-label,
body.dark-theme .contact-info-sub,
body.dark-theme .form-group input::placeholder,
body.dark-theme .form-group textarea::placeholder,
body.dark-theme .vs-td.label {
  color: var(--text-muted);
}

body.dark-theme .marquee-strip,
body.dark-theme .solution-bridge,
body.dark-theme .vs-table-head,
body.dark-theme .ai-section,
body.dark-theme footer {
  background: #050A14;
}

/* dark-theme overrides for new sections */
body.dark-theme .outcomes-section { background: var(--light-grey); }
body.dark-theme .outcome-method-grid,
body.dark-theme .outcome-method-pair,
body.dark-theme .outcome-method-pair .method-strip-item { border-color: var(--border); }
body.dark-theme .outcome-card { background: var(--white); }
body.dark-theme .outcome-card h3 { color: var(--text); }
body.dark-theme .outcome-card p { color: var(--text-muted); }
body.dark-theme .method-strip { background: var(--white); }
body.dark-theme .method-strip-item { border-color: var(--border); }
body.dark-theme .method-strip-title { color: var(--text); }
body.dark-theme .method-strip-text { color: var(--text-muted); }
body.dark-theme .process-section { background: var(--white); }
body.dark-theme .process-node { background: var(--white); border-color: var(--purple-light); color: var(--purple-light); }
body.dark-theme .process-step.is-visible .process-node,
body.dark-theme .process-step:hover .process-node { background: var(--purple-light); color: var(--white); }
body.dark-theme .process-node--final { background: var(--purple); color: #fff; }
body.dark-theme .process-connector { background: var(--border); }
body.dark-theme .process-step-body h3 { color: var(--text); }
body.dark-theme .process-step-body p { color: var(--text-muted); }
body.dark-theme .process-deliverable { color: var(--text-muted); border-color: var(--border); }
body.dark-theme .process-cta p { color: var(--text-muted); }
/* FAQ section is always dark — no overrides needed */

body.dark-theme .vs-table-row:hover,
body.dark-theme .problem-card:hover {
  background: #111D30;
}

body.dark-theme .btn-outline {
  color: var(--text);
  border-color: var(--text);
}
body.dark-theme .btn-outline:hover {
  background: var(--text);
  color: #0B1320;
}

body.dark-theme .btn-lang {
  color: var(--text-muted);
  border-color: var(--border);
}

body.dark-theme .form-group input,
body.dark-theme .form-group textarea {
  background: #0B1320;
}

body.dark-theme .terminal-box {
  background: #070B14;
  border-color: rgba(255,255,255,0.14);
}

body.dark-theme .hero-glow {
  background: radial-gradient(circle, rgba(77,132,255,0.09) 0%, transparent 65%);
}

body.dark-theme .problem-card:hover {
  box-shadow: 0 20px 56px rgba(77,132,255,0.14);
}
