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

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

:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f172a;
  --text: #2d2d3a;
  --text-light: #6b7280;
  --text-secondary: #6b7280;
  --bg: #ffffff;
  --bg-light: #f7f8fa;
  --bg-alt: #f0f4f8;
  --border: #e5e7eb;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
  --max-w: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; }
.section { padding: 112px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .text-light { color: #9ca3af; }
.section--dark-2 { background: var(--dark-3); color: #fff; }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { color: var(--dark); font-weight: 600; letter-spacing: -0.02em; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark-2 h1, .section--dark-2 h2, .section--dark-2 h3, .section--dark-2 h4 { color: #fff; }
h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 2.625rem; line-height: 1.2; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.125rem; line-height: 1.4; }
h5 { font-size: 1rem; line-height: 1.4; }
p { font-size: 1.125rem; margin-top: 14px; margin-bottom: 10px; }
.lead { font-size: 1.25rem; color: var(--text-light); max-width: 680px; }
.lead--lg { font-size: 1.375rem; max-width: 740px; }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); font-family: var(--font-mono); }
.section--dark .label { color: #60a5fa; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-size: 1rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--white { background: #fff; color: var(--dark); }
.btn--white:hover { background: #f0f4f8; color: var(--dark); }
.btn--ghost { background: transparent; color: var(--primary); padding: 14px 0; }
.btn--ghost:hover { color: var(--primary-dark); }
.btn--ghost svg { transition: transform var(--transition); }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--large { padding: 20px 40px; font-size: 1.125rem; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ===== NAVIGATION ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.nav__logo { font-size: 1.25rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.nav__logo:hover { color: var(--dark); }
.nav__logo-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo-icon svg { width: 20px; height: 20px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: 4px; font-size: 0.9375rem; font-weight: 500; color: var(--text); transition: color var(--transition); padding: 8px 16px; border-radius: 6px; }
.nav__link:hover { color: var(--primary); background: rgba(26,115,232,0.04); }
.nav__link--active { color: var(--primary); }
.nav__link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav__cta { padding: 10px 22px; font-size: 0.9375rem; margin-left: 12px; }

/* MEGA MENU */
.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); opacity: 0; visibility: hidden; transition: all 0.25s ease; pointer-events: none; padding-top: 8px; }
.nav__item:hover .mega { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }
.mega__inner { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); display: flex; min-width: 780px; overflow: hidden; }
.mega__hero { width: 260px; padding: 32px; background: var(--dark-3); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.mega__hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,115,232,0.2), transparent); }
.mega__hero h3 { font-size: 1.375rem; color: #fff; position: relative; z-index: 1; }
.mega__hero p { font-size: 0.875rem; color: #9ca3af; position: relative; z-index: 1; margin-top: 8px; }
.mega__cols { flex: 1; display: flex; padding: 28px 32px; gap: 40px; align-items: flex-start; }
.mega__col { min-width: 200px; flex: 1; }
.mega__col-title { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 12px; }
.mega__item { display: block; padding: 8px 0; }
.mega__item-title { font-size: 0.9375rem; font-weight: 600; color: var(--text); transition: color var(--transition); }
.mega__item:hover .mega__item-title { color: var(--primary); }
.mega__item-desc { font-size: 0.8125rem; color: var(--text-light); margin-top: 1px; }

.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { padding: 140px 0 100px; position: relative; overflow: hidden; }
.hero--home { padding: 160px 0 100px; background: #152238; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; min-height: 520px; }
.hero__content { max-width: 600px; }
.hero__tag { display: block; padding: 0; background: transparent; border-radius: 0; font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero__title { font-size: 3.5rem; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 32px; }
.hero--home .hero__title, .hero--home h1 { color: #fff; }
.hero__description { font-size: 1.125rem; line-height: 1.65; margin-top: 0; max-width: 600px; }
.hero--home .hero__description { color: #b8c7d9; }
.hero__actions { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero--home .btn--outline { border-color: rgba(255,255,255,0.15); color: #fff; }
.hero--home .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); color: #fff; }
.hero__micro { font-size: 0.8125rem; color: var(--text-light); margin-top: 16px; display: flex; align-items: center; gap: 6px; }
.hero__visual { position: relative; }
.hero__image-block { background: var(--bg-light); border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; border: 1px solid var(--border); }
.hero__grid-pattern { width: 100%; height: 100%; }
.hero h1 { margin-bottom: 20px; }
.hero__desc { font-size: 1.1875rem; color: var(--text-light); line-height: 1.7; max-width: 520px; }

/* Hero Graphic (v1 node diagram) */
.hero__graphic { width: 100%; min-height: 460px; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 40px 40px; border-radius: var(--radius); position: relative; border: 1px solid rgba(255,255,255,0.06); }
.hero__ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; height: 280px; border: 1.5px solid var(--primary); border-radius: 50%; opacity: 0.2; }
.hero__node { position: absolute; background: rgba(30,47,74,0.9); border: 1px solid rgba(255,255,255,0.1); padding: 14px 18px; border-radius: 8px; font-family: var(--font-mono); font-size: 12px; color: #fff; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.3); white-space: nowrap; }
.hero__node svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; stroke-width: 2; }

/* Hero Stats */
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 48px; margin-top: 96px; }
.hero__stat h4 { font-family: var(--font-mono); font-size: 1.375rem; color: #fff; margin-bottom: 8px; font-weight: 600; }
.hero__stat p { font-size: 0.9375rem; color: #94a3b8; margin: 0; line-height: 1.5; }

/* ===== PROOF BAR ===== */
.proof-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; background: #fff; }
.proof-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-bar__grid { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-bar__item,
.proof-item { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: var(--text-light); font-weight: 500; }
.proof-bar__icon,
.proof-item__icon { width: 40px; height: 40px; background: var(--bg-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-bar__icon svg,
.proof-item__icon svg { width: 20px; height: 20px; color: var(--primary); }
.proof-item__text { font-size: 0.9375rem; color: var(--text-light); font-weight: 500; margin: 0; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-card { text-align: center; padding: 20px; }
.stat__number,
.stat-card__number { font-size: 2.75rem; font-weight: 800; color: #60a5fa; letter-spacing: -0.02em; }
.stat-card__value { font-size: 2.5rem; font-weight: 800; color: #60a5fa; letter-spacing: -0.02em; line-height: 1.1; }
.section--dark .stat__number,
.section--dark .stat-card__number { color: #60a5fa; }
.stat__label,
.stat-card__label { font-size: 0.9375rem; color: #9ca3af; margin-top: 4px; }
.section--dark .stat__label,
.section--dark .stat-card__label { color: #9ca3af; }
.stat-card__desc { font-size: 0.8125rem; color: #6b7280; margin-top: 8px; line-height: 1.5; }
.section--dark .stat-card__desc { color: #6b7280; }

/* ===== SECTION HEADER ===== */
.section__header { text-align: center; margin-bottom: 72px; }
.section__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; margin-top: 0; font-family: var(--font-mono); }
.section--dark .section__label { color: #60a5fa; }
.section__title { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; color: var(--dark); margin-top: 0; }
.section--dark .section__title { color: #fff; }
.section__lead { font-size: 1.0625rem; color: var(--text-light); max-width: 580px; margin: 12px auto 0; line-height: 1.65; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; transition: all var(--transition); }
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.service-card__icon { width: 56px; height: 56px; background: rgba(26,115,232,0.06); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary); }
.service-card__icon svg { width: 32px; height: 32px; }
.service-card__title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card__description { font-size: 0.9375rem; color: var(--text-light); line-height: 1.65; margin-top: 0; max-width: 38ch; }
.service-card__tech-visual { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; }
.service-card__tech-visual svg { width: 100%; height: auto; display: block; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-weight: 600; font-size: 0.9375rem; color: var(--primary); }
.service-card__link:hover { color: var(--primary-dark); }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: all var(--transition); }
.card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.card--dark { background: var(--dark-3); border-color: rgba(255,255,255,0.08); }
.card--dark:hover { border-color: rgba(26,115,232,0.5); }
.card--dark h3, .card--dark h4 { color: #fff; }
.card--dark p { color: #9ca3af; }
.card__icon { width: 48px; height: 48px; background: rgba(26,115,232,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card__icon svg { width: 24px; height: 24px; color: var(--primary); }
.card__icon--green { background: rgba(16,185,129,0.08); }
.card__icon--green svg { color: var(--accent-green); }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--text-light); font-size: 0.9375rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 0.9375rem; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card__link:hover svg { transform: translateX(4px); }

/* ===== PROCESS STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 60px; right: 60px; height: 2px; background: var(--primary); opacity: 0.15; }
.step { text-align: center; position: relative; }
.step__number { display: inline-flex; align-items: center; justify-content: center; padding: 6px 16px; border-radius: 20px; background: rgba(26,115,232,0.08); border: 1.5px solid var(--primary); font-size: 0.8125rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.02em; }
.steps .step__number { width: 56px; height: 56px; border-radius: 50%; padding: 0; margin: 0 auto 20px; font-size: 1.25rem; font-weight: 700; }
.step__title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step__description { font-size: 0.875rem; color: var(--text-light); max-width: 220px; margin: 0 auto; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--text-light); max-width: 220px; margin: 0 auto; }

/* ===== PROCESS TIMELINE ===== */
.process { display: flex; flex-direction: column; gap: 0; }
.process__step { display: grid; grid-template-columns: 72px 1fr; gap: 40px; position: relative; padding-bottom: 56px; }
.process__step:last-child { padding-bottom: 0; }
.process__step:last-child .process__line { display: none; }
.process__marker { display: flex; flex-direction: column; align-items: center; position: relative; }
.process__num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; }
.process__line { position: absolute; top: 56px; left: 50%; width: 2px; bottom: 0; background: linear-gradient(to bottom, var(--primary), rgba(26,115,232,0.1)); transform: translateX(-50%); }
.process__body { padding-top: 8px; }
.process__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 6px; }
.process__title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.process__desc { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; max-width: 640px; }
.process__checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.process__checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text); line-height: 1.5; }
.process__checks li::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; background: rgba(26,115,232,0.08); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10 3L4.5 8.5 2 6' stroke='%231a73e8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ===== PROCESS CARDS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0; overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.process-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.process-card__visual { width: 100%; aspect-ratio: 5 / 3; background: #f8fafc; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 12px; }
.process-card__visual svg { width: 100%; height: 100%; }
.process-card__num { font-size: 0.8125rem; font-weight: 700; color: var(--primary); opacity: 0.6; letter-spacing: 0.02em; padding: 20px 24px 0; }
.process-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; padding: 4px 24px 0; }
.process-card__desc { font-size: 0.8125rem; color: var(--text-light); line-height: 1.6; margin-top: 0; padding: 0 24px 24px; }

/* ===== HORIZONTAL TIMELINE ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line through the number badges */
.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(26,115,232,0.15));
  z-index: 0;
}
.timeline__step {
  position: relative;
  padding: 0 24px;
}
.timeline__step:first-child { padding-left: 0; }
.timeline__step:last-child { padding-right: 0; }
.timeline__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.timeline__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', monospace;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.timeline__arrow {
  display: none;
}
.timeline__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.timeline__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.timeline__img {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-light);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline__img::after {
  content: attr(data-placeholder);
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.5;
  text-align: center;
  padding: 12px;
}
.timeline__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hide placeholder text when image is present */
.timeline__img:has(img)::after {
  display: none;
}
.timeline__img:has(img) {
  border-style: solid;
  border-color: var(--border);
}

/* ===== PROCESS FLOW (RFQ to production) ===== */
.process-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: step; }
.process-flow::before { content: ''; position: absolute; top: 36px; left: 80px; right: 80px; height: 2px; background: var(--border); z-index: 0; }
.process-flow__step { position: relative; text-align: center; padding: 0 20px; }
.process-flow__num { width: 72px; height: 72px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.3s ease; }
.process-flow__step:hover .process-flow__num { border-color: var(--primary); background: var(--primary); }
.process-flow__step:hover .process-flow__num svg { stroke: #fff; }
.process-flow__num svg { width: 28px; height: 28px; stroke: var(--primary); stroke-width: 1.5; fill: none; transition: stroke 0.3s ease; }
.process-flow__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.process-flow__title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-flow__desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.process-flow__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 14px; }
.process-flow__tag { font-size: 0.6875rem; font-weight: 500; padding: 4px 10px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 100px; color: var(--text-light); white-space: nowrap; }
@media (max-width: 1024px) {
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-flow::before { display: none; }
}
@media (max-width: 768px) {
  .process-flow { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== MANAGE STRIP (bg image + icons) ===== */
.manage-strip {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.manage-strip__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.manage-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.93) 50%, rgba(15,23,42,0.90) 100%);
  z-index: 1;
}
.manage-strip__content {
  position: relative;
  z-index: 2;
}
.manage-strip__header {
  text-align: center;
  margin-bottom: 56px;
}
.manage-strip__title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 0;
}
.manage-strip__lead {
  font-size: 1.0625rem;
  color: #9ca3af;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.65;
}
.manage-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.manage-strip__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
}
.manage-strip__item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(96,165,250,0.3);
}
.manage-strip__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(96,165,250,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  margin-bottom: 20px;
}
.manage-strip__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.manage-strip__desc {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
}
.manage-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #60a5fa;
  text-decoration: none;
  transition: color var(--transition);
}
.manage-strip__link:hover {
  color: #93c5fd;
}
.manage-strip__grid--hier { grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; }
.manage-strip__item--featured { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; padding: 48px 40px; }
.manage-strip__item--featured .manage-strip__name { font-size: 1.375rem; }
.manage-strip__item--featured .manage-strip__desc { font-size: 1rem; }

/* ===== MANUFACTURING CAPABILITY CARDS ===== */
.mfg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mfg-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
  text-decoration: none; color: var(--text);
}
.mfg-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.mfg-card__img {
  width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-light);
}
.mfg-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.mfg-card:hover .mfg-card__img img { transform: scale(1.03); }
.mfg-card__body { padding: 24px 28px 28px; }
.mfg-card__title {
  font-size: 1.125rem; font-weight: 700; color: var(--dark);
  margin: 0 0 8px;
}
.mfg-card:hover .mfg-card__title { color: var(--primary); }
.mfg-card__desc {
  font-size: 0.875rem; color: var(--text-light); line-height: 1.6;
  margin: 0 0 16px;
}
.mfg-card__specs {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border); padding-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.mfg-card__specs li {
  font-size: 0.8125rem; color: var(--text-light); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.mfg-card__specs li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); opacity: 0.5;
}

/* Manufacturing parameters strip */
.params-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 36px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.params-strip__item {
  background: var(--bg-alt); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.params-strip__label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--primary);
}
.params-strip__value {
  font-size: 0.8125rem; color: var(--text-light); line-height: 1.5;
}

/* Typical components strip */
.components-strip {
  margin-top: 48px;
}
.components-strip__title {
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 20px;
}
.components-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.components-strip__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
}
.components-strip__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.components-strip__card:hover .components-strip__img {
  transform: scale(1.05);
}
.components-strip__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; gap: 2px;
}
.components-strip__label {
  font-size: 0.9375rem; font-weight: 700; color: #fff;
}
.components-strip__material {
  font-size: 0.75rem; color: rgba(255,255,255,0.75); font-family: 'Inter', monospace;
}

/* ===== FEATURE SECTION ===== */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature__content { }
.feature__title { font-size: 2.25rem; letter-spacing: -0.02em; color: var(--dark); line-height: 1.15; }
.feature__lead { font-size: 1.0625rem; color: var(--text-light); line-height: 1.65; margin-top: 16px; max-width: 52ch; }
.feature__visual { background: var(--bg-light); border-radius: var(--radius-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); overflow: hidden; position: relative; }
.feature__visual--dark { background: var(--dark-3); border: none; }
.feature__visual--tech { background: #f8fafc; padding: 0; aspect-ratio: 4/3; min-height: 380px; }
.feature-grid--split { grid-template-columns: 5fr 7fr; }
.feature__svg { width: 100%; height: 100%; }
.feature__icon-lg { flex-shrink: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; color: var(--primary); }
.feature__list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; list-style: none; }
.feature__list-item { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; }
.feature__list-item svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-green); }
.feature__item { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; line-height: 1.6; }
.feature__check { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-green); margin-top: 2px; }

/* ===== INDUSTRY CARDS ===== */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; display: flex; flex-direction: column; justify-content: flex-end; background: var(--dark-3); transition: all var(--transition); cursor: pointer; text-decoration: none; padding: 28px; }
.industry-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); z-index: 1; }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.industry-card__pattern { position: absolute; inset: 0; z-index: 0; }
.industry-card__pattern svg { width: 100%; height: 100%; }
.industry-card__content { position: relative; z-index: 2; padding: 24px; width: 100%; }
.industry-card__title { color: #fff; font-size: 1.25rem; position: relative; z-index: 2; margin: 0; }
.industry-card__description { color: #d1d5db; font-size: 0.875rem; margin-top: 4px; position: relative; z-index: 2; }
.industry-card h3 { color: #fff; font-size: 1.25rem; }
.industry-card p { color: #d1d5db; font-size: 0.875rem; margin-top: 4px; }
.industry-card__bg { position: absolute; inset: 0; opacity: 0.3; }
.industry-card__bg svg { width: 100%; height: 100%; }
.industry-card--tall { aspect-ratio: 3/4; padding: 0; }
.industry-card--tall::before { background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15) 50%, transparent 70%); }
.industry-card__overlay { position: relative; z-index: 2; padding: 32px; margin-top: auto; }
.industry-card--tall .industry-card__title,
.industry-card--tall h3 { font-size: 1.5rem; }

/* ===== SPECS TABLE ===== */
.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.specs th { font-weight: 600; background: var(--bg-light); }
.specs tr:hover { background: var(--bg-light); }

/* ===== COMPARISON TABLE ===== */
.comparison { max-width: 800px; margin: 0 auto; }
.comparison__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-bottom: 1px solid var(--border); padding: 16px 0; align-items: center; }
.comparison__row--header { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); border-bottom: 2px solid var(--border); padding-bottom: 12px; }
.comparison__cell { padding: 0 12px; font-size: 0.9375rem; }
.comparison__cell:first-child { font-weight: 600; }
.comparison__check { color: var(--accent-green); font-weight: 700; }
.comparison__x { color: var(--accent-red); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 96px 0; background: var(--dark); color: #fff; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section .lead { color: #9ca3af; margin: 0 auto 36px; }
.cta-section__title { font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 24px; }
.cta-section__description { font-size: 1.0625rem; color: #9ca3af; max-width: 520px; margin: 0 auto 48px; line-height: 1.65; }
.cta-section__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn--outline { color: #fff; border-color: rgba(255,255,255,0.25); }
.cta-section .btn--outline:hover { border-color: #fff; color: #fff; }

/* CTA light variant */
.cta-section--light { background: var(--bg-alt); color: var(--text); padding: 128px 0; border-top: 1px solid var(--border); }
.cta-section--light h2,
.cta-section--light .cta-section__title { color: var(--dark); }
.cta-section--light .cta-section__description { color: var(--text-light); }
.cta-section--light .btn--outline { color: var(--dark); border-color: var(--border); }
.cta-section--light .btn--outline:hover { border-color: var(--primary); color: var(--primary); }

/* ===== FORM ===== */
.form { max-width: 640px; margin: 0 auto; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group--full { grid-column: 1 / -1; }
.form__label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form__input, .form__textarea { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: var(--font); transition: border-color var(--transition); background: #fff; }
.form__input:focus, .form__textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,115,232,0.1); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__file { padding: 24px; border: 2px dashed var(--border); border-radius: var(--radius); text-align: center; cursor: pointer; transition: border-color var(--transition); }
.form__file:hover { border-color: var(--primary); }

/* ===== PAGE HERO ===== */
.page-hero { padding: 140px 0 64px; background: var(--bg-light); text-align: center; }
.page-hero .lead { margin-left: auto; margin-right: auto; }
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-left: auto; margin-right: auto; }
.page-hero--dark { background: var(--dark-3); }
.page-hero--dark h1 { color: #fff; }
.page-hero--dark .label { color: #60a5fa; }
.page-hero--dark .lead { color: #9ca3af; }
.page-hero--dark .lead--lg { color: #9ca3af; }
.page-hero .label { margin-bottom: 12px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 640px; }

/* ===== TEAM / ABOUT ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value { padding: 32px; border-radius: var(--radius-lg); background: var(--bg-light); }
.value h4 { margin-bottom: 8px; }
.value p { font-size: 0.9375rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); color: #9ca3af; padding: 88px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand p { margin-top: 12px; font-size: 0.875rem; line-height: 1.7; }
.footer__heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__link { font-size: 0.875rem; color: #9ca3af; transition: color var(--transition); }
.footer__link:hover { color: #fff; }
.footer__bottom { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 0.8125rem; }

/* ===== IMAGE BLOCKS ===== */
.feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero--dark h1, .page-hero h1 { color: var(--text); }

.hero__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-section--wide {
  border-radius: 0;
  max-height: 400px;
}
.img-section--tall {
  max-height: 500px;
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -32px -32px 24px -32px;
  width: calc(100% + 64px);
}

/* ===== CAPABILITY PAGE COMPONENTS ===== */
.cap-intro { font-size: 1.0625rem; color: var(--text-light); line-height: 1.7; max-width: 800px; margin: 0 auto; text-align: center; }
.cap-intro + .cap-intro { margin-top: 12px; }

/* Tag / pill list for typical parts */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; justify-content: center; }
.tag-list__item { padding: 10px 20px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 100px; font-size: 0.9375rem; font-weight: 500; color: var(--text); transition: all var(--transition); }
.tag-list__item:hover { border-color: var(--primary); color: var(--primary); }
.section--dark .tag-list__item { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: #d1d5db; }
.section--dark .tag-list__item:hover { border-color: #60a5fa; color: #60a5fa; }

/* Checklist for processes */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list__item { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--text); line-height: 1.6; }
.check-list__item::before { content: '✓'; flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; color: var(--accent-green); background: rgba(16,185,129,0.08); border-radius: 50%; margin-top: 1px; }
.section--dark .check-list__item { color: #d1d5db; }
.section--dark .check-list__item::before { color: #34d399; background: rgba(52,211,153,0.1); }

/* Materials list with bullet squares */
.mat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.mat-list__item { display: flex; flex-direction: column; gap: 2px; }
.mat-list__name { font-size: 1rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.mat-list__name::before { content: ''; width: 8px; height: 8px; background: var(--primary); border-radius: 2px; flex-shrink: 0; }
.mat-list__detail { font-size: 0.875rem; color: var(--text-light); padding-left: 18px; margin: 0; }
.section--dark .mat-list__name { color: #fff; }
.section--dark .mat-list__detail { color: #9ca3af; }

/* Two-column layout for lists */
.cap-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .cap-columns { grid-template-columns: 1fr; gap: 32px; } }

/* Finish / secondary ops definition list */
.def-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.def-list__item { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.def-list__item:last-child { border-bottom: none; }
.def-list__term { font-size: 0.9375rem; font-weight: 600; color: var(--dark); }
.def-list__desc { font-size: 0.9375rem; color: var(--text-light); margin: 0; }
.section--dark .def-list__item { border-color: rgba(255,255,255,0.08); }
.section--dark .def-list__term { color: #fff; }
.section--dark .def-list__desc { color: #9ca3af; }
@media (max-width: 768px) { .def-list__item { grid-template-columns: 1fr; gap: 4px; } }

/* ===== GALLERY SLIDER ===== */
.gallery-slider { position: relative; overflow: hidden; }
.gallery-slider__track { display: flex; gap: 20px; width: 100%; transition: transform 0.4s ease; }
.gallery-slider__item { flex: 0 0 calc(33.3333% - 13.3333px); position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-light); }
.gallery-slider__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slider__arrows { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.gallery-slider__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); color: var(--text); }
.gallery-slider__arrow:hover { border-color: var(--primary); color: var(--primary); background: rgba(26,115,232,0.04); }
.gallery-slider__arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.gallery-slider__arrow svg { width: 18px; height: 18px; }

/* ===== CAPABILITIES V1 (light bg + sticky sidebar) ===== */
.cap-v1 { position: relative; padding: 160px 0; background: var(--bg-light); color: var(--text); }
.cap-v1 > .container { position: relative; z-index: 1; }
.cap-v1__layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.cap-v1__header { margin-bottom: 56px; }
.cap-v1__header .section__label { color: var(--primary); }
.cap-v1__header h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; color: var(--text); margin-top: 0; }
.cap-v1__header p { font-size: 1.125rem; color: var(--text-secondary); max-width: 800px; margin-top: 0; }
.cap-v1__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cap-v1__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; min-height: 320px; display: flex; flex-direction: column; text-decoration: none; transition: border-color var(--transition), box-shadow var(--transition); }
.cap-v1__card:hover { border-color: var(--primary); box-shadow: 0 4px 24px rgba(26,115,232,0.08); }
.cap-v1__card-icon { width: 48px; height: 48px; background: rgba(26,115,232,0.06); border: 1px solid rgba(26,115,232,0.12); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.cap-v1__card-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.cap-v1__card h3 { font-size: 1.375rem; color: var(--text); margin-bottom: 12px; }
.cap-v1__card > p { font-size: 0.9375rem; color: var(--text-secondary); margin: 0; }
.cap-v1__list { list-style: none; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); flex-grow: 1; }
.cap-v1__list li { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.cap-v1__list li::before { content: '•'; color: var(--primary); font-weight: bold; }
.cap-v1__sidebar { position: sticky; top: 100px; }
.cap-v1__specs { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 40px; display: flex; flex-direction: column; gap: 0; }
.cap-v1__spec { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cap-v1__spec:first-child { padding-top: 0; }
.cap-v1__spec:last-child { border-bottom: none; padding-bottom: 0; }
.cap-v1__spec h4 { font-family: var(--font-mono); font-size: 11px; color: #64748b; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.cap-v1__spec p { font-size: 1rem; color: #fff; font-weight: 600; margin: 0; }

/* ===== PROCESS V1 (numbered timeline) ===== */
.process-v1 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.process-v1__step { position: relative; padding-top: 48px; }
.process-v1__step::before { content: ''; position: absolute; top: 15px; left: 32px; width: calc(100% - 32px); height: 2px; background: rgba(255,255,255,0.1); }
.process-v1__step:last-child::before { display: none; }
.process-v1__num { position: absolute; top: 0; left: 0; width: 32px; height: 32px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; font-weight: 700; z-index: 2; }
.process-v1__step h3 { font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.process-v1__step p { font-size: 0.9375rem; color: #94a3b8; line-height: 1.6; margin: 0; }
.process-v1__tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.process-v1__tag { background: rgba(30,41,59,0.8); color: #94a3b8; padding: 4px 10px; font-size: 12px; font-family: var(--font-mono); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; text-transform: uppercase; }

/* Process Timeline (upgraded) */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 3px; background: linear-gradient(90deg, var(--primary), #60a5fa, var(--primary)); border-radius: 2px; z-index: 1; }
.process-timeline__step { position: relative; text-align: center; padding: 0 20px; }
.process-timeline__label { font-family: var(--font-mono); font-size: 11px; color: #60a5fa; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; display: block; }
.process-timeline__marker { width: 56px; height: 56px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 18px; font-weight: 700; margin: 0 auto 28px; position: relative; z-index: 2; box-shadow: 0 0 0 6px rgba(26,115,232,0.15), 0 0 0 12px rgba(26,115,232,0.06); }
.process-timeline__step h3 { font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.process-timeline__step p { font-size: 0.9375rem; color: #94a3b8; line-height: 1.65; margin: 0; }
.process-timeline__tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.process-timeline__tag { background: rgba(30,41,59,0.8); color: #94a3b8; padding: 4px 10px; font-size: 12px; font-family: var(--font-mono); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; text-transform: uppercase; }

/* ===== WIDE VISUAL + OVERLAY ===== */
.wide-visual { position: relative; height: 420px; overflow: hidden; }
.wide-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wide-visual__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 64px; background: linear-gradient(transparent, rgba(15,23,42,0.9)); color: #fff; }
.wide-visual__overlay .section__label { color: #60a5fa; }
.wide-visual__overlay h2 { color: #fff; font-size: 2rem; margin-bottom: 8px; margin-top: 0; }
.wide-visual__overlay p { color: #cbd5e1; font-size: 1.0625rem; max-width: 600px; margin: 0; }

/* ===== IMAGE + FEATURE GRID ===== */
.img-features { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.img-features--reverse { direction: rtl; }
.img-features--reverse > * { direction: ltr; }
.img-features__visual { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); }
.img-features__visual img { width: 100%; height: 100%; object-fit: cover; }
.img-features__content h2 { font-size: 2rem; margin-bottom: 8px; margin-top: 0; }
.img-features__content > p { font-size: 1.0625rem; color: var(--text-light); margin-bottom: 32px; }
.img-features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.img-features__item { }
.img-features__icon { width: 40px; height: 40px; background: rgba(26,115,232,0.06); border: 1px solid rgba(26,115,232,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.img-features__icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.img-features__item h4 { font-size: 1rem; margin-bottom: 4px; }
.img-features__item p { font-size: 0.875rem; color: var(--text-light); margin: 0; }
.img-features__item--wide { grid-column: 1 / -1; }

/* ===== HORIZONTAL TIMELINE (light theme) ===== */
.timeline-h { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.timeline-h--5 { grid-template-columns: repeat(5, 1fr); }
.timeline-h::before { content: ''; position: absolute; top: 20px; left: 20px; right: 20px; height: 2px; background: var(--border); }
.section--dark .timeline-h::before, .section--dark-2 .timeline-h::before { background: rgba(255,255,255,0.1); }
.timeline-h__step { position: relative; padding-top: 56px; }
.timeline-h__num { position: absolute; top: 0; left: 0; width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; font-weight: 700; z-index: 2; }
.timeline-h__step h3 { font-size: 1.125rem; margin-bottom: 8px; }
.timeline-h__step p { font-size: 0.9375rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.section--dark .timeline-h__step h3, .section--dark-2 .timeline-h__step h3 { color: #fff; }
.section--dark .timeline-h__step p, .section--dark-2 .timeline-h__step p { color: #94a3b8; }

/* ===== TWO-COLUMN INFO (no images) ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.two-col__col h3 { font-size: 1.5rem; margin-bottom: 20px; }
.two-col__col > p { color: var(--text-light); line-height: 1.7; }
.two-col__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.two-col__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; line-height: 1.6; }
.two-col__list li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; margin-top: 9px; }
.section--dark .two-col__col h3, .section--dark-2 .two-col__col h3 { color: #fff; }
.section--dark .two-col__col > p, .section--dark-2 .two-col__col > p { color: #94a3b8; }
.section--dark .two-col__list li, .section--dark-2 .two-col__list li { color: #cbd5e1; }
.section--dark .two-col__list li::before, .section--dark-2 .two-col__list li::before { background: #60a5fa; }

/* ===== QUOTE / HIGHLIGHT ===== */
.quote-block { padding: 80px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-block--no-border { border: none; }
.quote-block--dark { background: var(--dark-3); border-color: rgba(255,255,255,0.1); }
.quote-block__text { font-size: 1.75rem; font-weight: 600; line-height: 1.4; color: var(--dark); max-width: 800px; margin: 0 auto; letter-spacing: -0.01em; }
.quote-block--dark .quote-block__text { color: #fff; }
.quote-block__attr { font-size: 0.8125rem; color: var(--text-light); margin-top: 20px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.quote-block--dark .quote-block__attr { color: #94a3b8; }

/* ===== DIAGRAM / FLOW ===== */
.diagram-flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; padding: 48px 0; }
.diagram-flow__node { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 28px 36px; text-align: center; min-width: 180px; position: relative; }
.diagram-flow__node--primary { border-color: var(--primary); background: rgba(26,115,232,0.04); }
.diagram-flow__node--highlight { border-color: var(--accent-green); background: rgba(16,185,129,0.04); }
.diagram-flow__node h4 { margin-bottom: 4px; font-size: 1.0625rem; }
.diagram-flow__node p { font-size: 0.8125rem; color: var(--text-light); margin: 0; }
.diagram-flow__arrow { color: var(--text-light); padding: 0 16px; display: flex; align-items: center; }
.diagram-flow__arrow svg { width: 28px; height: 28px; }
.section--dark .diagram-flow__node { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.section--dark .diagram-flow__node--primary { border-color: var(--primary); background: rgba(26,115,232,0.08); }
.section--dark .diagram-flow__node h4 { color: #fff; }
.section--dark .diagram-flow__node p { color: #94a3b8; }
.section--dark .diagram-flow__arrow { color: rgba(255,255,255,0.3); }

/* ===== SPLIT PANEL ===== */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; overflow: hidden; }
.split-panel__content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-panel__content .section__label { margin-bottom: 12px; }
.split-panel__content h2 { font-size: 2rem; margin-bottom: 16px; margin-top: 0; }
.split-panel__content > p { color: var(--text-light); line-height: 1.7; }
.split-panel__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.split-panel__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; line-height: 1.6; }
.split-panel__list li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; margin-top: 9px; }
.split-panel__visual { overflow: hidden; }
.split-panel__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-panel--dark { background: var(--dark-3); }
.split-panel--dark .split-panel__content { color: #fff; }
.split-panel--dark h2, .split-panel--dark .section__label { color: #60a5fa; }
.split-panel--dark h2 { color: #fff; }
.split-panel--dark > .split-panel__content > p, .split-panel--dark .split-panel__list li { color: #94a3b8; }
.split-panel--dark .split-panel__list li::before { background: #60a5fa; }
.split-panel--alt { background: var(--bg-alt); }

/* ===== GALLERY GRID (static multi-image) ===== */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.gallery-grid__item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== STAT CARDS (compact) ===== */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-row__item { text-align: center; padding: 32px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.stat-row__num { font-size: 2rem; font-weight: 700; color: var(--primary); font-family: var(--font-mono); }
.stat-row__label { font-size: 0.875rem; color: var(--text-light); margin-top: 4px; }
.section--dark .stat-row__item { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.section--dark .stat-row__num { color: #60a5fa; }
.section--dark .stat-row__label { color: #94a3b8; }

/* ===== HERO PHOTO ===== */
.hero__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

/* ===== CAPABILITIES BG TEXTURE ===== */
.cap-v1__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.06;
  filter: grayscale(0.3);
}

/* ===== PROCESS SECTION BG ===== */
.process-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: #fff;
}
.process-section h2, .process-section h3, .process-section h4 { color: #fff; }
.process-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.process-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.92) 50%, rgba(15,23,42,0.89) 100%);
  z-index: 1;
}
.process-section > .container {
  position: relative;
  z-index: 2;
}

/* ===== FEATURE PHOTO VISUAL ===== */
.feature__visual--photo img {
  position: absolute;
  inset: 0;
}

/* ===== CAP PARTS SHOWCASE CAROUSEL ===== */
.cap-showcase {
  margin-top: 72px;
  position: relative;
}
.cap-showcase__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.cap-showcase__track::-webkit-scrollbar {
  display: none;
}
.cap-showcase__slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.cap-showcase__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f1f5f9;
}
.cap-showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cap-showcase__slide:hover .cap-showcase__img img {
  transform: scale(1.03);
}
.cap-showcase__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 0;
  cursor: pointer;
}
.cap-showcase__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.cap-showcase__chevron {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.cap-showcase__chevron svg {
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cap-showcase__slide.is-open .cap-showcase__chevron {
  transform: rotate(180deg);
}
.cap-showcase__desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 4px;
}
.cap-showcase__slide.is-open .cap-showcase__desc {
  max-height: 120px;
  padding: 8px 4px 0;
}
.cap-showcase__desc p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.cap-showcase__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.cap-showcase__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.cap-showcase__btn:hover {
  border-color: var(--text-secondary);
  background: var(--bg-alt);
}
.cap-showcase__btn svg {
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== CAPABILITY PANELS (capabilities page) ===== */
.cap-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cap-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cap-panel:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.cap-panel__photo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cap-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cap-panel:hover .cap-panel__photo img {
  transform: scale(1.04);
}
.cap-panel__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cap-panel__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cap-panel__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  line-height: 1.2;
}
.cap-panel__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
}
.cap-panel__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.cap-panel__specs li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
}
.cap-panel__specs li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.cap-panel__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.cap-panel__link:hover {
  gap: 10px;
}

/* Hero variant for first panel */
.cap-panel--hero {
  grid-column: 1 / -1;
  flex-direction: row;
}
.cap-panel--hero .cap-panel__photo {
  flex: 0 0 50%;
  aspect-ratio: auto;
  min-height: 400px;
}
.cap-panel--hero .cap-panel__body {
  padding: 48px;
  justify-content: center;
}
.cap-panel--hero .cap-panel__title {
  font-size: 2rem;
}

/* ===== SUPPLIER STRIP ===== */
.supplier-strip {
  padding: 96px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.supplier-strip__header {
  margin-bottom: 40px;
}
.supplier-strip__header .section__label {
  margin-bottom: 12px;
}
.supplier-strip__header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
}
.supplier-strip__header p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin: 0;
  max-width: 520px;
  line-height: 1.65;
}
.supplier-strip__photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.supplier-strip__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.supplier-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.supplier-strip__photo:hover img {
  transform: scale(1.04);
}
.supplier-strip__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.supplier-strip__photo:hover .supplier-strip__label {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__graphic { display: none; }
  .hero__image-block { display: none; }
  .hero__title { font-size: 2.5rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature--reverse { direction: ltr; }
  .feature__visual { max-height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .manage-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
  .timeline__step { padding: 0; }
  .timeline__arrow { display: none; }
  .params-strip { grid-template-columns: repeat(2, 1fr); }
  .components-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-slider__item { flex: 0 0 calc(50% - 10px); }
  .mega { display: none; }
  .nav__link svg { display: none; }
  .cap-v1 { padding: 96px 0; }
  .cap-v1__layout { grid-template-columns: 1fr; gap: 48px; }
  .cap-v1__sidebar { position: static; }
  .cap-v1__specs { flex-direction: row; flex-wrap: wrap; }
  .cap-v1__spec { flex: 1; min-width: 200px; padding: 16px 0; }
  .process-v1 { grid-template-columns: repeat(2, 1fr); }
  .process-v1__step::before { display: none; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .manage-strip__grid--hier { grid-template-columns: repeat(2, 1fr); }
  .manage-strip__item--featured { grid-row: span 1; grid-column: 1 / -1; }
  .feature-grid--split { grid-template-columns: 1fr; }
  .industry-card--tall { aspect-ratio: 3/3; }
  .wide-visual { height: 340px; }
  .wide-visual__overlay { padding: 36px 40px; }
  .wide-visual__overlay h2 { font-size: 1.75rem; }
  .img-features { grid-template-columns: 1fr; gap: 40px; }
  .img-features--reverse { direction: ltr; }
  .timeline-h { grid-template-columns: repeat(2, 1fr); }
  .timeline-h--5 { grid-template-columns: repeat(3, 1fr); }
  .timeline-h::before { display: none; }
  .split-panel { grid-template-columns: 1fr; min-height: auto; }
  .split-panel__content { padding: 64px 40px; }
  .split-panel__visual { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid__item--tall { grid-row: span 1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .diagram-flow { gap: 12px; }
  .diagram-flow__node { min-width: 140px; padding: 20px 24px; }
  .diagram-flow__arrow { padding: 0 8px; }
  .hero__photo { min-height: 300px; }
  .hero__photo img { min-height: 300px; }
  .process-section { padding: 96px 0; }
  .cap-panel--hero { flex-direction: column; }
  .cap-panel--hero .cap-panel__photo { flex: none; min-height: 280px; aspect-ratio: 16/9; }
  .cap-panel--hero .cap-panel__body { padding: 32px; }
  .cap-panel--hero .cap-panel__title { font-size: 1.5rem; }
  .cap-showcase__slide { flex: 0 0 240px; }
  .supplier-strip { padding: 80px 0; }
  .supplier-strip__photos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .process__step { grid-template-columns: 48px 1fr; gap: 20px; padding-bottom: 40px; }
  .process__num { width: 44px; height: 44px; font-size: 1rem; }
  .process__line { top: 44px; }
  .process__title { font-size: 1.25rem; }
  .process__desc { font-size: 0.9375rem; }
  .section { padding: 76px 0; }
  h1 { font-size: 2rem; }
  .hero__title { font-size: 2rem; }
  .cta-section__title { font-size: 1.75rem; }
  .cta-section--light { padding: 80px 0; }
  .feature__title { font-size: 1.75rem; }
  .section__title { font-size: 1.75rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav__links--open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); gap: 8px; }
  .hero--home { padding: 120px 0 56px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; padding-top: 28px; }
  .hero__stat h4 { font-size: 1.125rem; }
  .steps { grid-template-columns: 1fr; }
  .cap-v1 { padding: 64px 0; }
  .cap-v1__grid { grid-template-columns: 1fr; }
  .cap-v1__header h2 { font-size: 2rem; }
  .cap-v1__specs { flex-direction: column; }
  .process-v1 { grid-template-columns: 1fr; gap: 32px; }
  .process-timeline { grid-template-columns: 1fr; gap: 36px; }
  .process-timeline::before { display: none; }
  .process-timeline__step { text-align: left; padding: 0; }
  .process-timeline__marker { margin: 0 0 20px; }
  .process-timeline__tags { justify-content: flex-start; }
  .manage-strip__grid--hier { grid-template-columns: 1fr; }
  .manage-strip__item--featured { grid-row: span 1; }
  .industry-card--tall { aspect-ratio: 3/2.5; }
  .footer { padding: 64px 0 32px; }
  .cards, .cards--4, .cards--2 { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .proof-bar__inner, .proof-bar__grid { gap: 20px; flex-direction: column; }
  .stats, .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .manage-strip { padding: 64px 0; }
  .manage-strip__title { font-size: 1.75rem; }
  .manage-strip__grid { grid-template-columns: 1fr; }
  .mfg-grid { grid-template-columns: 1fr; }
  .params-strip { grid-template-columns: 1fr; }
  .components-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline__head { gap: 12px; }
  .timeline__num { width: 40px; height: 40px; font-size: 0.875rem; }
  .gallery-slider__item { flex: 0 0 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .wide-visual { height: 280px; }
  .wide-visual__overlay { padding: 24px; }
  .wide-visual__overlay h2 { font-size: 1.5rem; }
  .img-features__grid { grid-template-columns: 1fr; }
  .timeline-h, .timeline-h--5 { grid-template-columns: 1fr; gap: 28px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .quote-block { padding: 56px 0; }
  .quote-block__text { font-size: 1.375rem; }
  .split-panel__content { padding: 48px 24px; }
  .split-panel__visual { height: 280px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .diagram-flow { flex-direction: column; }
  .diagram-flow__arrow { transform: rotate(90deg); padding: 8px 0; }
  .hero__photo { min-height: 220px; }
  .hero__photo img { min-height: 220px; }
  .process-section { padding: 76px 0; }
  .cap-showcase__slide { flex: 0 0 220px; }
  .cap-showcase__nav { margin-top: 24px; }
  .cap-panels { grid-template-columns: 1fr; }
  .cap-panel__body { padding: 24px; }
  .cap-panel__title { font-size: 1.25rem; }
  .supplier-strip { padding: 64px 0; }
  .supplier-strip__photos { grid-template-columns: repeat(2, 1fr); }
  .supplier-strip__header h2 { font-size: 1.75rem; }
  .supplier-strip__label { opacity: 1; }
}
