/* ─── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #0D1B2A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: #005EB8; text-decoration: none; }
a:hover { color: #00A9E0; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: 'Sora', sans-serif; margin: 0; }
p { margin: 0; }
input, textarea, select, button { font-family: inherit; }

/* ─── Variables ──────────────────────────────────────── */
:root {
  --blue: #005EB8;
  --blue-dark: #003E7E;
  --blue-deep: #0A1B2E;
  --cyan: #00A9E0;
  --cyan-light: #67CEF2;
  --text: #0D1B2A;
  --text-mid: #33475B;
  --text-muted: #5A6B7B;
  --text-faint: #7A8A99;
  --border: #EEF2F6;
  --border-mid: #D3DCE5;
  --bg-light: #F5F8FB;
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(64px, 8vw, 112px);
}

/* ─── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--pad-y) 0; }
.bg-light { background: var(--bg-light); }
.bg-dark-gradient { background: linear-gradient(160deg, #0D2F55 0%, #0A2340 100%); }
.bg-blue-gradient { background: linear-gradient(150deg, #005EB8 0%, #004489 100%); }

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.grid-2-col-rev {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
}
.align-center { align-items: center; }
.center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── Typography helpers ─────────────────────────────── */
.eyebrow {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0079B0;
  margin-bottom: 10px;
}
.eyebrow.cyan { color: var(--cyan-light); }
.white { color: #fff !important; }
.muted { color: #AFCAE4 !important; line-height: 1.6; }

.section-intro { margin-bottom: 48px; }
.section-intro h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.section-intro p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52ch;
}
.section-intro.left { max-width: 100%; }
.section-intro.center { text-align: center; }
.section-intro.center p { margin: 0 auto; }

/* ─── Header ─────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.logo { height: 32px; width: auto; }
.logo-link { flex-shrink: 0; }

#site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 30px);
  flex-wrap: nowrap;
}
#site-nav a {
  font-size: clamp(12.5px, 1.1vw, 14.5px);
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}
#site-nav a:hover { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid #DCE4EC;
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary {
  background: var(--blue);
  color: #fff !important;
  border-radius: 10px;
  padding: 11px 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--blue-dark); color: #fff !important; }
.btn-secondary {
  background: #fff;
  color: var(--text) !important;
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 15px 26px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--blue); }
.btn-white {
  background: #fff;
  color: #004A93 !important;
  border-radius: 12px;
  padding: 15px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  display: inline-block;
  margin-top: 12px;
  transition: opacity 0.15s;
}
.btn-white:hover { opacity: 0.9; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  min-height: 500px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 64px);
  max-width: 640px;
}
.eyebrow-tag {
  display: inline-flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0079B0;
}
.eyebrow-bar { width: 4px; background: var(--cyan); flex-shrink: 0; }
.eyebrow-tag > span:last-child { padding: 7px 14px; background: #E8F6FD; }

.hero-text h1 {
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.text-accent { color: var(--cyan); }
.hero-sub { font-size: 17.5px; line-height: 1.6; color: #4A5B6B; max-width: 42ch; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 15px 26px; font-size: 15.5px; border-radius: 12px; }

.hero-stats {
  display: flex;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  width: 100%;
  margin-top: 4px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--blue);
}
.stat-num.small { font-size: 18px; }
.stat-label { font-size: 12.5px; color: var(--text-faint); }

/* Hero visual panel */
.hero-visual {
  overflow: hidden;
  min-height: 420px;
}
.hero-visual-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 90%;
}
.hero-bg-shape {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 280px;
  height: 340px;
  background: rgba(63,192,238,0.18);
  clip-path: polygon(50% 0, 100% 100%, 74% 100%, 50% 40%, 26% 100%, 0 100%);
}

/* ─── Laptop Mockup ──────────────────────────────────── */
.laptop-mockup {
  position: relative;
  width: min(400px, 88%);
  filter: drop-shadow(0 28px 48px rgba(0,10,40,0.55));
  z-index: 1;
}

/* Lid */
.laptop-lid {
  background: linear-gradient(180deg, #4a4a4a 0%, #2e2e2e 100%);
  border-radius: 10px 10px 3px 3px;
  padding: 10px 10px 7px;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
}
.laptop-camera {
  width: 5px; height: 5px;
  background: #3a3a3a;
  border-radius: 50%;
  margin: 0 auto 5px;
}
.laptop-screen {
  background: #141820;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}

/* Base */
.laptop-base {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  height: 18px;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.laptop-trackpad {
  width: 22%;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}

/* ─── Dashboard UI ───────────────────────────────────── */
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: #1c2030;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.dash-dots { display: flex; gap: 3px; }
.dash-dots span { width: 6px; height: 6px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-urlbar {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  max-width: 55%;
  margin: 0 auto;
}

.dash-app { display: flex; flex: 1; overflow: hidden; }

/* Sidebar */
.dash-sidebar {
  width: 30px;
  background: #1a1e2c;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  gap: 10px;
  flex-shrink: 0;
}
.dash-logo-icon {
  width: 14px; height: 14px;
  background: var(--cyan);
  clip-path: polygon(50% 0, 100% 100%, 74% 100%, 50% 40%, 26% 100%, 0 100%);
}
.dash-nav-items { display: flex; flex-direction: column; gap: 8px; }
.dash-nav-item { width: 14px; height: 3px; background: rgba(255,255,255,0.18); border-radius: 2px; }
.dash-nav-item.active { background: var(--cyan); }

/* Main */
.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 7px;
  gap: 5px;
  overflow: hidden;
}
.dash-topbar { display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.dash-page-title { width: 70px; height: 6px; background: rgba(255,255,255,0.45); border-radius: 2px; }
.dash-topbar-actions { display: flex; gap: 5px; }
.dash-action-btn { width: 24px; height: 11px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.dash-action-btn.primary { background: var(--blue); }

/* KPIs */
.dash-kpis { display: flex; gap: 5px; flex-shrink: 0; }
.dash-kpi {
  flex: 1;
  background: #1e2436;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.kpi-label { width: 65%; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.kpi-value { width: 55%; height: 7px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.kpi-value.blue { background: var(--blue); }
.kpi-value.green { background: #0A8A4B; }
.kpi-delta { width: 35%; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.kpi-delta.positive { background: rgba(10,138,75,0.55); }

/* Chart */
.dash-chart-card {
  flex: 1;
  background: #1e2436;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
}
.dash-chart-header { display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.dash-chart-title { width: 50px; height: 5px; background: rgba(255,255,255,0.28); border-radius: 2px; }
.dash-chart-legend { display: flex; gap: 5px; align-items: center; }
.legend-dot { width: 5px; height: 5px; border-radius: 50%; }
.legend-dot.cyan { background: var(--cyan); }
.legend-dot.blue { background: var(--blue); }
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
}
.dash-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(0,169,224,0.3); }
.dash-bar.hi { background: var(--cyan); }

/* Table */
.dash-table { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.dash-table-row {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 9px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  padding: 0 5px;
}
.dtr-a { width: 30%; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.dtr-b { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.dtr-b.w-short { width: 40%; flex: none; }
.dtr-c { width: 18%; height: 5px; border-radius: 2px; background: rgba(255,255,255,0.12); }
.dtr-c.green { background: rgba(10,138,75,0.6); }
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
}

/* ─── Trust Strip ────────────────────────────────────── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px var(--pad-x);
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-dot { color: #C7D2DD; }

/* ─── Services ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 24px rgba(0,30,80,0.08); }
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px;
  height: 25px;
  display: block;
}
.service-card h3 {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
}
.service-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }

/* ─── Solutions ──────────────────────────────────────── */
.problems-list { display: flex; flex-direction: column; gap: 14px; }
.problem-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.problem-text { font-size: 15px; color: var(--text-mid); font-weight: 500; flex: 1; }
.problem-arrow { color: var(--cyan); font-size: 16px; flex-shrink: 0; }
.problem-outcome { font-size: 14.5px; color: var(--blue); font-weight: 700; flex: 1; text-align: right; }

/* ─── Industries ─────────────────────────────────────── */
.pills-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.pill {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
}
.white-pills .pill { background: #fff; color: #004A93; }

/* ─── Technologies ───────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 20px;
}
.tech-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.tech-card h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: #fff; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* ─── Process ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 20px;
}
.process-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.process-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #CDE9F8;
}
.process-card h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15.5px; }
.process-card p { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }

/* ─── Case Studies ───────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-light);
}
.case-meta { display: flex; align-items: center; justify-content: space-between; }
.case-industry {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0079B0;
}
.case-label { font-size: 11.5px; color: #8494A3; font-style: italic; }
.case-card h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.3; }
.case-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
.case-metric {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #E4EAF0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--blue);
}

/* ─── About ──────────────────────────────────────────── */
.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin: 0 0 16px;
}
.about-text p { font-size: 16px; line-height: 1.65; color: #4A5B6B; max-width: 52ch; }

.exp-block { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.exp-label { font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.exp-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.exp-logo-tag {
  padding: 9px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E4EAF0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #8494A3;
}
.exp-note { font-size: 12px; color: #9AACB9; max-width: 52ch; line-height: 1.5; }

/* About visual */
.about-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 90%;
}
/* Legacy shape rules kept but unused */
.about-shape {
  position: absolute;
  clip-path: polygon(50% 0, 100% 100%, 74% 100%, 50% 40%, 26% 100%, 0 100%);
}
.shape-main {
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 150px; height: 190px;
  background: var(--cyan);
}
.shape-left {
  left: 29%; top: 60%;
  transform: translate(-50%, -50%);
  width: 96px; height: 120px;
  background: var(--blue);
  opacity: 0.9;
}
.shape-right {
  left: 72%; top: 64%;
  transform: translate(-50%, -50%);
  width: 76px; height: 96px;
  background: #7FD3F0;
}

/* ─── Careers ────────────────────────────────────────── */
#careers {
  padding: clamp(64px, 8vw, 104px) 0;
  text-align: center;
}
#careers .container { gap: 22px; }
#careers h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  max-width: 20ch;
  text-align: center;
}
#careers p { font-size: 16px; max-width: 56ch; }

/* ─── Contact ────────────────────────────────────────── */
.contact-info-block .eyebrow { margin-bottom: 12px; }
.contact-info-block h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: -0.01em;
  max-width: 14ch;
  margin: 0 0 14px;
}
.contact-info-block > p { font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 42ch; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-mid);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-light);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-mid);
  font-size: 14.5px;
  background: #fff;
  color: var(--text-mid);
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}
.contact-form button:hover { background: var(--blue-dark); }
.form-success { font-size: 13.5px; color: #0A8A4B; font-weight: 600; margin: 0; }
.form-error   { font-size: 13.5px; color: #C0392B; font-weight: 600; margin: 0; }

/* ─── Footer ─────────────────────────────────────────── */
#site-footer {
  background: var(--blue-deep);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.logo-dark { height: 22px; width: auto; object-fit: contain; align-self: flex-start; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: #8FA3B8; margin: 0; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col-title {
  color: #5F7A93;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.footer-col a, .footer-col span { color: #C7D6E4; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #5F7A93;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  #site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    z-index: 99;
  }
  #site-nav.open { display: flex; }
  #site-nav a { padding: 12px var(--pad-x); width: 100%; font-size: 15px; }

  .header-actions .btn-primary { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .laptop-mockup { width: min(340px, 82%); }

  .grid-2-col,
  .grid-2-col-rev { grid-template-columns: 1fr; }

  .about-visual { height: 240px; }

  .tech-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .hero-text { gap: 18px; }
}
