/* ==========================================================================
   Equilogix — brand stylesheet
   Palette: ink navy / porcelain / cobalt, amber fulcrum accent
   Type:    Plus Jakarta Sans (display + body) · IBM Plex Mono (labels)
   ========================================================================== */

:root {
  --ink: #0A1826;
  --ink-2: #10233A;
  --ink-3: #1A3450;
  --porcelain: #F4F7FA;
  --white: #FFFFFF;
  --cobalt: #2E63F6;
  --cobalt-deep: #1E4AD1;
  --amber: #F5A83C;
  --text: #22344A;
  --text-muted: #5A6E85;
  --text-on-dark: #E8F0F7;
  --text-on-dark-muted: #93A7BB;
  --border: #DCE5EC;
  --border-dark: #23405E;
  --radius: 12px;
  --radius-lg: 18px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: 1200px;
  --shadow-card: 0 1px 2px rgba(10, 24, 38, 0.05), 0 8px 24px rgba(10, 24, 38, 0.06);
  --shadow-pop: 0 12px 40px rgba(10, 24, 38, 0.14);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.7rem, 5.8vw, 4.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.1875rem; font-weight: 600; line-height: 1.3; }

p { margin: 0 0 1em; }

a { color: var(--cobalt); }

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrows & fulcrum glyph ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt-deep);
  margin: 0 0 1em;
}

.eyebrow-light { color: #A8BDD3; }

.fulcrum {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--amber);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease,
              color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-arrow {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

.btn-primary {
  background: var(--cobalt);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(46, 99, 246, 0.35);
}
.btn-primary:hover { background: var(--cobalt-deep); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark);
  border-color: rgba(147, 167, 187, 0.45);
}
.btn-ghost:hover { border-color: var(--text-on-dark); background: rgba(255, 255, 255, 0.08); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--cobalt); color: var(--cobalt-deep); }

.btn-sm { padding: 12px 22px; font-size: 0.9375rem; }
.btn-lg { padding: 18px 30px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--cobalt-deep);
  text-decoration: none;
}
.text-link::after { content: " →"; }
.text-link:hover { text-decoration: underline; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.is-scrolled { box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(10, 24, 38, 0.06); }

.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 0;
}

.header-top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8438rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}
.header-top-link:hover { color: var(--cobalt-deep); }
.header-top-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-top-sep { width: 1px; height: 14px; background: var(--border); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark { width: 40px; height: 40px; flex: none; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4375rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand .wm-a { color: var(--ink); }
.brand .wm-b { color: var(--cobalt); }

.brand-footer { color: var(--text-on-dark); }
.brand-footer .wm-a { color: var(--white); }
.brand-footer .wm-b { color: #6D96FF; }

/* Primary nav + dropdowns */

.site-nav { display: flex; align-items: center; gap: 6px; }

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: color 140ms ease, background-color 140ms ease;
}
.nav-link:hover { color: var(--cobalt-deep); background: var(--porcelain); }

.caret {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-pop);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
}
.dropdown a:hover { background: var(--porcelain); color: var(--cobalt-deep); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 24px rgba(10, 24, 38, 0.08);
}
.mobile-nav a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--porcelain);
}
.mobile-nav .btn { margin-top: 16px; border-bottom: 0; color: var(--white); }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 78% 20%, rgba(46, 99, 246, 0.22), transparent 62%),
    radial-gradient(700px 420px at 8% 100%, rgba(30, 74, 209, 0.16), transparent 60%),
    linear-gradient(160deg, #0C1D31 0%, var(--ink) 55%, #081221 100%);
  color: var(--text-on-dark);
  padding: 112px 0 96px;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(62%, 900px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: calc(var(--container));
}

.hero h1 { color: var(--white); margin-bottom: 0.35em; max-width: 13em; }
.hero h1 .accent {
  background: linear-gradient(92deg, #6D96FF, #3F74FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 1.1875rem;
  color: var(--text-on-dark-muted);
  max-width: 37em;
  margin-bottom: 2.2em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}

/* Trust card */

.trust-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--white);
  border-radius: 16px;
  padding: 26px 36px;
  box-shadow: 0 24px 64px rgba(3, 10, 20, 0.45);
}

.trust-lead {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 36px;
  border-right: 1px solid var(--border);
  flex: none;
}
.trust-lead strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}
.trust-lead span { font-size: 0.9375rem; color: var(--text-muted); }

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 36px;
  flex: 1;
}

.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.trust-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
}
.trust-name svg { width: 19px; height: 19px; flex: none; }
.trust-logo-orange .trust-name { color: #E8590C; }
.trust-logo-orange svg { fill: #E8590C; stroke: #E8590C; }
.trust-logo-teal .trust-name { color: #0CA678; }
.trust-logo-teal svg { fill: #0CA678; stroke: #0CA678; }
.trust-logo-violet .trust-name { color: #7048E8; }
.trust-logo-violet svg { fill: #7048E8; stroke: #7048E8; }
.trust-logo-rose .trust-name { color: #D6336C; }
.trust-logo-rose svg { fill: #D6336C; stroke: #D6336C; }

.trust-sub {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-logo:hover .trust-sub { color: var(--cobalt-deep); text-decoration: underline; }

/* ---------- Sections ---------- */

.section { padding: 104px 0; background: var(--white); }
.section-alt { background: var(--porcelain); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-lede { color: var(--text-muted); font-size: 1.125rem; margin: 0; }

/* ---------- Card grids ---------- */

.card-grid { display: grid; gap: 24px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Service cards ---------- */

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.service-card:hover {
  border-color: var(--cobalt);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.service-card p { color: var(--text-muted); font-size: 0.9875rem; flex: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.icon-cobalt { background: #E7EEFE; color: #1E4AD1; }
.icon-violet { background: #EFEAFD; color: #6633CC; }
.icon-teal   { background: #E2F7F0; color: #087F5B; }
.icon-sky    { background: #E3F3FC; color: #1071A6; }
.icon-orange { background: #FDEEE2; color: #D9480F; }
.icon-green  { background: #E9F7E7; color: #2B8A3E; }

/* ---------- Stats band ---------- */

.stats-band {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(46, 99, 246, 0.16), transparent 60%),
    var(--ink);
  color: var(--text-on-dark);
  padding: 88px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.stats-note {
  text-align: center;
  color: var(--text-on-dark-muted);
  max-width: 44em;
  margin: 0 auto;
}

/* ---------- Process ---------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-top: 2px solid var(--border);
  padding-top: 22px;
}

.process-step h3 { margin-bottom: 0.35em; }
.process-step p { color: var(--text-muted); font-size: 0.9875rem; margin: 0; }

.step-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--amber);
  background: var(--ink);
  border-radius: 7px;
  padding: 6px 9px;
  line-height: 1;
  flex: none;
}

/* ---------- Engagement models ---------- */

.model-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.model-card-featured {
  border-color: var(--cobalt);
  box-shadow: var(--shadow-card);
}

.model-flag {
  position: absolute;
  top: -13px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 999px;
  padding: 6px 14px;
}

.model-card > p { color: var(--text-muted); }

.model-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.model-points li {
  font-size: 0.9375rem;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid var(--porcelain);
}
.model-points li:last-child { border-bottom: 0; }

/* ---------- Industries ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.industry:hover { border-color: var(--cobalt); box-shadow: var(--shadow-card); }
.industry h3 { font-size: 1.0625rem; margin-bottom: 0.3em; }
.industry p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---------- Case studies ---------- */

.case-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.case-card {
  background: var(--porcelain);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.case-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 11px;
}

.case-card p { color: var(--text-muted); font-size: 0.9875rem; flex: 1; }

.case-result {
  flex: none !important;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 2px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text);
}
.case-result strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--cobalt-deep);
  margin-right: 8px;
}

/* ---------- Testimonials ---------- */

.quote-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}

.quote-card blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.45;
  color: var(--ink);
}

.quote-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote-card figcaption strong { font-size: 0.9875rem; color: var(--ink); }
.quote-card figcaption span { font-size: 0.875rem; color: var(--text-muted); }

/* ---------- Tech stack ---------- */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.stack-group h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.stack-group ul { margin: 0; padding: 0; list-style: none; }
.stack-group li {
  font-size: 0.9375rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--porcelain);
  color: var(--text);
}
.stack-group li:last-child { border-bottom: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(800px 460px at 12% 110%, rgba(46, 99, 246, 0.2), transparent 60%),
    var(--ink);
  color: var(--text-on-dark);
  padding: 104px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 72px;
  align-items: start;
}

.cta-copy h2 { color: var(--white); }
.cta-copy > p { color: var(--text-on-dark-muted); font-size: 1.125rem; max-width: 32em; }

.cta-points {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.cta-points li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-on-dark);
}
.cta-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--amber);
}

.cta-alt { color: var(--text-on-dark-muted); font-size: 0.9875rem; }
.cta-alt a { color: var(--white); }

/* ---------- Contact form ---------- */

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(4, 12, 22, 0.4);
}

.hp-field { display: none; }

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--porcelain);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 13px 14px;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin: 14px 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  min-height: 1.2em;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p { margin-top: 18px; font-size: 0.9375rem; max-width: 22em; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-col a:hover { text-decoration: underline; }

.footer-addr { font-size: 0.875rem; margin: 4px 0 0; }

.footer-legal {
  border-top: 1px solid var(--border-dark);
  padding-top: 22px;
  padding-bottom: 26px;
}
.footer-legal p { margin: 0; font-size: 0.8125rem; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover { transform: none; }
  .btn:hover .btn-arrow { transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .card-grid-3, .case-list { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-art { width: 80%; opacity: 0.55; }
  .trust-logos { justify-content: flex-start; }
}

@media (max-width: 880px) {
  .site-nav, .header-top { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }

  .hero { padding: 72px 0 72px; }
  .hero-art { width: 110%; opacity: 0.35; }
  .hero-ctas { margin-bottom: 52px; }

  .trust-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 26px;
  }
  .trust-lead { border-right: 0; padding-right: 0; }
  .trust-logos { gap: 18px 32px; }
  .trust-logo { align-items: flex-start; }

  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .card-grid-3, .card-grid-2, .case-list,
  .process-list, .industry-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 2.5rem; }
  .btn-lg { width: 100%; }
}
