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

:root {
  --ink:          #f5f5f5;
  --ink2:         #c0c5d0;
  --ink3:         #8891a0;
  --bg:           #0b0f1a;
  --bg2:          #111827;
  --bg3:          #1a2235;
  --dark:         #060a12;
  --accent:       #f59e0b;
  --accent2:      #d97706;
  --accent-pale:  rgba(245,158,11,0.12);
  --orange-pale:  rgba(251,146,60,0.12);
  --border:       rgba(255,255,255,0.08);
  --border2:      rgba(255,255,255,0.05);
  --ff-display:   'Barlow', sans-serif;
  --ff-body:      'DM Sans', sans-serif;
  --radius:       4px;
  --radius-lg:    12px;
  --max-w:        1200px;
  --section-pad:  100px 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  background: rgba(11,15,26,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  width: 100%;
  max-width: calc(var(--max-w) + 160px);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink2);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--accent2) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}

h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 28px;
}

h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-primary svg   { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

.hero-right {
  position: relative;
  background: var(--bg3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pipeline graphic */
.pipeline-graphic { position: relative; width: 420px; height: 420px; }

.pg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin linear infinite;
}

.pg-ring-1 { width: 340px; height: 340px; animation-duration: 28s; }
.pg-ring-2 { width: 240px; height: 240px; animation-duration: 20s; animation-direction: reverse; border-style: dashed; }
.pg-ring-3 { width: 140px; height: 140px; animation-duration: 14s; }

@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .pg-ring, .pg-node { animation: none; }
}

.pg-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(245,158,11,0.15);
}

.pg-node {
  position: absolute;
  width: 40px; height: 40px;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  animation: float 3s ease-in-out infinite alternate;
}

.pg-node:nth-child(odd) { animation-direction: alternate-reverse; }

@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

.pg-node-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.pg-node-2 { top: 50%; right: 8px; transform: translateY(-50%); }
.pg-node-3 { bottom: 8px; left: 50%; transform: translateX(-50%) !important; }
.pg-node-4 { top: 50%; left: 8px; transform: translateY(-50%); }

.pg-label {
  position: absolute;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  background: var(--bg3);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.pg-label-1 { top: -24px; left: 50%; transform: translateX(-50%); }
.pg-label-2 { right: -56px; top: 50%; transform: translateY(-50%); }
.pg-label-3 { bottom: -24px; left: 50%; transform: translateX(-50%); }
.pg-label-4 { left: -52px; top: 50%; transform: translateY(-50%); }

.hero-stats {
  position: absolute;
  bottom: 48px; left: 80px;
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
  font-weight: 300;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
}

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

.marquee-item {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after {
  content: '·';
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

/* ── SHARED SECTION STYLES ── */
section { position: relative; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

h2 em { font-style: normal; color: var(--accent); }

.section-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  max-width: 560px;
  line-height: 1.75;
}

/* ── SERVICES ── */
#services { background: var(--bg2); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover { background: var(--accent-pale); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--bg3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  transition: background 0.25s;
}

.service-card:hover .service-icon { background: var(--bg); }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
}

.service-card-num {
  position: absolute;
  top: 36px; right: 36px;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

/* ── PROCESS ── */
#how { background: var(--bg); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 72px;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border2);
  transition: opacity 0.2s;
}

.step:first-child { padding-top: 0; }
.step:last-child  { border-bottom: none; }

.step-num {
  width: 40px; height: 40px;
  background: var(--bg3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink2);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.step:hover .step-num { background: var(--accent); color: var(--dark); }

.step-content h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin-bottom: 6px;
  padding-top: 8px;
}

.step-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
}

/* Flow diagram */
.how-visual {
  background: var(--bg2);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.flow-node {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: slideIn 0.5s ease both;
}

.flow-node:nth-child(1) { animation-delay: 0s;   margin-left: 0; }
.flow-node:nth-child(2) { animation-delay: 0.1s; margin-left: 20px; }
.flow-node:nth-child(3) { animation-delay: 0.2s; margin-left: 40px; }
.flow-node:nth-child(4) { animation-delay: 0.3s; margin-left: 60px; }
.flow-node:nth-child(5) { animation-delay: 0.4s; margin-left: 40px; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.flow-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.flow-icon.green  { background: var(--accent-pale); }
.flow-icon.orange { background: var(--orange-pale); }
.flow-icon.gray   { background: var(--bg3); border: 1px solid var(--border); }

.flow-title { font-weight: 500; font-size: 13px; margin-bottom: 2px; color: var(--ink); }
.flow-sub   { font-size: 12px; color: var(--ink3); }

.flow-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 20px;
  font-size: 11px;
  color: var(--ink3);
  letter-spacing: 0.06em;
}

.flow-line { flex: 1; height: 1px; background: var(--border); }

/* ── WHY US ── */
.why-section { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}

.why-card {
  background: var(--dark);
  padding: 44px 40px;
  transition: background 0.25s;
}

.why-card:hover { background: rgba(255,255,255,0.04); }

.why-num {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
}

/* ── INDUSTRIES ── */
#industries { background: var(--bg3); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.industry-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.industry-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.industry-card h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 13px;
  color: var(--ink3);
  font-weight: 300;
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink2);
  margin-bottom: 14px;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--accent); }

.contact-badge-wrap { margin-top: 32px; }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Form */
.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink3);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg2);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink3); }

.form-note {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-note a { color: var(--accent); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--accent2); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  padding: 56px 80px 36px;
}

.footer-inner {
  max-width: calc(var(--max-w) + 160px);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 260px;
}

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink3);
}

.footer-bottom a {
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--ink); }

/* ── PRIVACY / INNER PAGES ── */
.page-hero {
  background: var(--bg2);
  padding: 120px 80px 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 600px;
}

.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 80px;
}

.page-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.page-content p,
.page-content li {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content a { color: var(--accent); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }

/* Thank you page */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  background: var(--bg);
}

.thank-you-inner { max-width: 520px; }

.thank-you-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 32px;
}

.thank-you h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 404 page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  background: var(--bg);
}

.error-page h1 {
  font-size: clamp(80px, 15vw, 160px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
}

.error-page p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  margin-bottom: 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 48px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }

  .nav-inner { padding: 0 24px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(11,15,26,0.97);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.is-open { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px 100px; }
  .hero-stats { left: 24px; gap: 24px; }

  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid   { grid-template-columns: 1fr; }
  .how-grid        { grid-template-columns: 1fr; gap: 40px; }
  .how-visual      { display: none; }
  .why-grid        { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-form    { padding: 32px 24px; }
  .form-row        { grid-template-columns: 1fr; }

  .site-footer { padding: 48px 24px 28px; }
  .footer-top  { grid-template-columns: 1fr; gap: 36px; }

  .page-hero    { padding: 100px 24px 60px; }
  .page-content { padding: 60px 24px; }

  .thank-you, .error-page { padding: 80px 24px; }
}
