:root {
  --bg: #070b14;
  --bg-soft: #0c1221;
  --surface: rgba(12, 18, 33, 0.78);
  --surface-strong: #10182a;
  --surface-light: #f7faff;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #e5eefc;
  --text-soft: #b6c5de;
  --ink: #09111f;
  --muted: #61718d;
  --line: rgba(255, 255, 255, 0.08);
  --line-light: #dbe5f3;
  --primary: #4167b2;
  --primary-2: #5b84d4;
  --accent: #8aa8e8;
  --glow: rgba(109, 124, 255, 0.32);
  --danger: #ff6f8c;
  --success: #2bd4a6;
  --warning: #ffb85c;
  --shadow-lg: 0 22px 60px rgba(4, 10, 26, 0.35);
  --shadow-md: 0 16px 40px rgba(4, 10, 26, 0.24);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
  --focus-ring: 0 0 0 4px rgba(65, 103, 178, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.anchor-target { scroll-margin-top: 0; }
.anchor-offset { display:none !important; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(109, 124, 255, 0.16), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(37, 197, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.section-title, .page-title,
.btn, .nav-links a, .eyebrow, .menu-toggle {
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.section { padding: 68px 0; }
.section-sm { padding: 44px 0; }
.section-xs { padding: 32px 0; }
.light-surface { background: rgba(255,255,255,0.88); border: 1px solid rgba(219,229,243,0.9); }
.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #334155;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(219,229,243,.9);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(109, 124, 255, 0.12);
}
.section-title, .page-title {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.02;
  margin: 14px 0;
  letter-spacing: -.045em;
}
.page-title { max-width: 16ch; }
.section-lead {
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 760px;
}
.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible, .btn-link:focus-visible, .nav-links a:focus-visible, .footer a:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 12px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(65, 103, 178, 0.28);
}
.btn-secondary {
  color: #0f172a;
  background: rgba(255,255,255,.9);
  border-color: rgba(203, 213, 225, .95);
}
.btn-dark {
  color: #fff;
  background: #0d1527;
}
.btn-link {
  min-height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: #355ea8;
  font-weight: 800;
}

.feature-note {
  margin: 12px 0 0;
  font-size: .94rem;
  font-weight: 700;
  color: #355ea8;
}
.compact-hero {
  padding: 50px 0 18px;
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(219,229,243,.95);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(109,124,255,.55), rgba(37,197,255,.12), transparent);
}
.card h3, .card h4 { margin: 0 0 10px; letter-spacing: -.02em; }
.card p, .card li { color: var(--muted); line-height: 1.55; }
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  border-color: rgba(169, 188, 228, 0.95);
}
.glass-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
  color: var(--text);
  background: linear-gradient(155deg, rgba(8, 14, 28, 0.95), rgba(16, 24, 42, 0.92));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}
.glass-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -5%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,124,255,.24), transparent 65%);
  pointer-events: none;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.95);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-logo {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}
.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #5567ff, #1fd0ff);
  box-shadow: 0 12px 30px rgba(84, 111, 255, 0.22);
}
.nav-links, .nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: #1e293b;
  font-weight: 700;
  position: relative;
  text-shadow: 0 0 0 rgba(0,0,0,0.01);
}
.nav-links a:hover {
  color: #0f172a;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #0f172a; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(219,229,243,.95);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 24px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(109,124,255,.22), transparent 60%);
}
.hero::after {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: 0;
  background: radial-gradient(circle, rgba(37,197,255,.16), transparent 60%);
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  min-height: 620px;
}
.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 690px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 22px;
}
.mini-metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.mini-metric strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}
.hero-orbit {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero-orbit::before {
  inset: 16px;
  border: 1px dashed rgba(255,255,255,.12);
}
.hero-orbit::after {
  width: 18px;
  height: 18px;
  right: 18px;
  top: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 8px rgba(109,124,255,.14);
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 28px;
}
.kpi {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(219,229,243,.95);
}
.kpi strong {
  display: block;
  font-size: 1.1rem;
  color: #0f172a;
}
.kpi span { color: var(--muted); font-size: .95rem; }
.trust-strip {
  padding: 20px 0;
  background: #0d1527;
  color: #dce8ff;
  border-block: 1px solid rgba(255,255,255,.06);
}
.trust-items {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: .95rem;
  font-weight: 700;
}
.trust-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  opacity: .92;
  transition: opacity .2s ease, color .2s ease;
}
.trust-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(220, 232, 255, 0.45);
  transform: scaleX(0.4);
  transform-origin: center;
  transition: transform .2s ease, background-color .2s ease;
}
.trust-links a:hover,
.trust-links a:focus-visible {
  color: #ffffff;
  opacity: 1;
}
.trust-links a:hover::after,
.trust-links a:focus-visible::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.8);
}
.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #546fff, #2bc7ff);
  box-shadow: 0 12px 26px rgba(84, 111, 255, 0.24);
  margin-bottom: 16px;
  font-weight: 800;
}

.careers-intro-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.split-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.check-list, .plain-list {
  margin: 0;
  padding-left: 18px;
}
.check-list li, .plain-list li { margin: 10px 0; }
.check-list li::marker { color: var(--success); }
.badge-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  color: #334155;
  border: 1px solid rgba(203,213,225,.9);
  background: rgba(255,255,255,.82);
}
.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 18px;
}
.step {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(219,229,243,.95);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 800;
  margin-bottom: 12px;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.stat-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72));
  border: 1px solid rgba(219,229,243,.95);
}
.stat-block strong {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.2;
  color: #0f172a;
}
.stat-block span { color: var(--muted); }
.cta-band {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0d1527, #111c34 42%, #112949);
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.cta-band p { color: #c9d7ef; }
.cta-band .btn { min-width: 210px; white-space: nowrap; flex-shrink: 0; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 18px;
}
.page-hero .page-shell {
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(145deg, #0d1527, #101a31 58%, #102744);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-lg);
}
.page-hero .page-shell p { color: #b8c7df; }
.page-hero .eyebrow { color: #d7e5ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.service-card.is-open .expandable-content,
.job-item.is-open .expandable-content { margin-top: 14px; }
.service-card .expand-toggle,
.job-item .expand-toggle { margin-top: 10px; }
.service-card ul,
.job-details ul { padding-left: 18px; margin: 0; }
.service-card li,
.job-details li { margin: 8px 0; }
.form-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219,229,243,.95);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}
.form-note { color: var(--muted); margin-top: 6px; }
.progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e8eff8;
  overflow: hidden;
  margin: 18px 0 24px;
}
.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transition: width .25s ease;
}
.progress-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.progress-steps span {
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: #64748b;
}
.progress-steps span.is-active { color: #0f172a; }
.progress-steps span.is-complete { color: #355ea8; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; color: #1e293b; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d5dfed;
  background: rgba(255,255,255,.95);
  padding: 14px 16px;
  color: #0f172a;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(84,111,255,.68);
  box-shadow: 0 0 0 4px rgba(84,111,255,.12);
}
.field select { border-radius: 16px; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: rgba(220, 38, 38, .45); box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08); }
.field.is-valid input, .field.is-valid select, .field.is-valid textarea { border-color: rgba(22, 163, 74, .34); box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.07); }
.field-error { min-height: 18px; font-size: .82rem; color: #b91c1c; margin-top: -2px; }
.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 38, 38, .38);
}
.trust-note {
  margin: 14px 0 0;
  font-size: .9rem;
  color: #64748b;
}
.tech-stack-groups { display: grid; gap: 16px; }
.content-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.content-nav.content-nav-subtle {
  gap: 8px;
}
.content-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  color: #334155;
  border: 1px solid rgba(203, 213, 225, .9);
  background: rgba(255,255,255,.86);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.content-nav.content-nav-subtle a {
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 650;
  border-color: rgba(203, 213, 225, .75);
  background: rgba(255,255,255,.68);
}
.content-nav.content-nav-subtle a:hover {
  box-shadow: 0 8px 16px rgba(15, 23, 42, .06);
}
.content-nav a:hover { transform: translateY(-1px); border-color: rgba(65,103,178,.28); box-shadow: 0 12px 24px rgba(15, 23, 42, .08); }
.content-nav a:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.tech-group-title { margin: 0 0 10px; font-size: .92rem; font-weight: 800; color: #1e293b; text-transform: uppercase; letter-spacing: .04em; }
.field textarea { min-height: 140px; resize: vertical; }
.step-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 22px;
}
.notice, .form-status {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #d9e6f3;
  background: #f7fbff;
  color: #334155;
}
.form-status.success { border-color: rgba(43,212,166,.26); background: rgba(43,212,166,.08); }
.form-status.error { border-color: rgba(255,111,140,.22); background: rgba(255,111,140,.08); }
.hidden { display: none !important; }
.job-toolbar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.job-list {
  display: grid;
  gap: 16px;
}
.job-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219,229,243,.95);
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.job-item h3 { margin: 0 0 8px; }
.job-meta {
  margin: 0 0 8px;
  font-size: .86rem;
  font-weight: 800;
  color: #355ea8;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.job-summary { margin: 0; }
.job-details {
  padding-top: 4px;
  border-top: 1px solid #e2e8f0;
}
.job-details h4 {
  margin: 14px 0 8px;
  font-size: 1rem;
  color: #0f172a;
}
.job-details p, .job-details li { color: var(--muted); }
.article-stack { display: grid; gap: 20px; }
.proof-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #355ea8;
}
.proof-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.article-card h3 { margin-bottom: 8px; }
.article-card h4 { margin: 18px 0 8px; }
.article-card p, .article-card li { color: var(--muted); }
.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}
.metric-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(219,229,243,.95);
}
.metric-chip strong { display: block; margin-bottom: 4px; color: #0f172a; }

.insights-band {
  border-top: 1px solid rgba(226, 232, 240, .85);
}
.insights-band-alt {
  background: linear-gradient(180deg, rgba(248, 250, 252, .96), rgba(241, 245, 249, .72));
  border-top: 1px solid rgba(226, 232, 240, .9);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}
.faq {
  display: grid;
  gap: 14px;
}
.faq details {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219,229,243,.95);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}
.faq details[open] { border-color: rgba(169, 188, 228, 0.95); box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06); }
.faq p { color: var(--muted); margin: 10px 0 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.quote-mark { font-size: 2.2rem; line-height: 1; color: #5c6dff; }
.footer {
  margin-top: 16px;
  background: #09111f;
  color: #c8d5ec;
  padding: 72px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
.footer h4 { color: #fff; margin: 0 0 12px; }
.footer a { color: #c8d5ec; }
.footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal { display: inline-flex; align-items: center; gap: 14px; }
.footer-legal a { color: #c8d5ec; }
.footer-legal a:hover { color: #fff; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .hero-wrap, .split-hero, .split { grid-template-columns: 1fr; }
  .process, .stats-bar, .testimonial-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .nav-actions { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(219,229,243,.95);
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a::after { bottom: -4px; }
  .grid-3, .grid-4, .form-grid, .kpi-row, .hero-grid, .metric-list { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .brand-logo { width: 170px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 38px 0; }
  .section-xs { padding: 28px 0; }
  .page-hero .page-shell, .glass-panel, .card, .form-card { padding: 22px; }
  .process, .stats-bar, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-wrap { min-height: auto; }
  .trust-items { justify-content: flex-start; }
  .trust-links { gap: 14px 18px; }
  .trust-links a { font-size: .9rem; }

  #insights .container { width: min(100% - 24px, var(--container)); }
  #insights .grid-2 { grid-template-columns: 1fr; gap: 18px; }
  #insights .card { padding: 20px; }
  #insights .card h3 {
    font-size: 1.12rem;
    line-height: 1.28;
    margin-bottom: 8px;
  }
  #insights .card > p:first-of-type {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
  }
  #insights .plain-list { padding-left: 16px; }
  #insights .plain-list li { margin: 8px 0; }
}

.site-footer .brand-logo {
  width: 220px;
}
.submit-loading { opacity: .8; pointer-events: none; }
.submit-loading::after { content: "…"; }


/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(11, 22, 45, 0.96);
  color: #f8fbff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 45px rgba(2, 10, 28, 0.28);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(14px);
}
.cookie-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}
.cookie-copy h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
}
.cookie-copy p {
  margin: 0;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.95rem;
  max-width: 60ch;
}
.cookie-copy a { color: #9cd2ff; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.cookie-btn:hover,
.cookie-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  outline: none;
}
.cookie-btn.primary {
  background: linear-gradient(135deg, #2f77ff, #1f58d6);
  border-color: rgba(78, 138, 255, 0.8);
}
.cookie-btn.subtle {
  background: transparent;
}
.cookie-panel {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cookie-panel.is-open { display: block; }
.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.cookie-option + .cookie-option {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-option strong {
  display: block;
  color: #fff;
}
.cookie-option span {
  display: block;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.92rem;
  margin-top: 4px;
  max-width: 54ch;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 251, 255, 0.86);
  font-size: 0.9rem;
  white-space: nowrap;
}
.cookie-switch input { accent-color: #2f77ff; }
.cookie-panel-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
@media (max-width: 760px) {
  .cookie-top { flex-direction: column; }
  .cookie-actions { justify-content: flex-start; }
  .cookie-card { padding: 16px; }
  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }
}
