/* ==========================================================================
   GenQira Technology Solutions — stylesheet
   ========================================================================== */

:root {
  --navy-950: #04122a;
  --navy-900: #06192f;
  --navy-800: #0a2749;
  --navy-700: #103862;
  --brand: #0b6fe0;
  --brand-dark: #0857b4;
  --brand-bright: #22c3ff;
  --ink: #0d2340;
  --muted: #566780;
  --muted-light: #9fb2c9;
  --line: #e3ebf4;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-tint: #eef5fd;
  --white: #ffffff;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(10, 39, 73, .06);
  --shadow: 0 18px 44px rgba(8, 45, 92, .12);
  --shadow-lg: 0 34px 80px rgba(6, 32, 66, .22);

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 10px;
  z-index: 2000;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Shared typography helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--brand-bright); }

.section-head { max-width: 680px; }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
}

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

.btn {
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-bright), var(--brand) 55%, var(--brand-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 111, 224, .28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(11, 111, 224, .36); }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand);
}
.text-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 19px;
  color: var(--ink);
}
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand span { line-height: 1; }
.brand small {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 3px;
}

.primary-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  font-size: 14.5px;
  font-weight: 500;
}
.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--muted);
  transition: color .2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--brand);
  transition: right .3s var(--ease);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--ink); }
.primary-nav a:hover::after,
.primary-nav a.active::after { right: 0; }

.nav-cta { margin-left: 4px; padding: 11px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% 15%, rgba(34, 195, 255, .18), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(11, 111, 224, .22), transparent 55%),
    linear-gradient(160deg, #05152c, #071c37 45%, #0a2749);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(120, 190, 255, .16) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  opacity: .7;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: clamp(72px, 11vw, 128px) 0 clamp(80px, 12vw, 136px);
}
.hero-copy .eyebrow { color: #bfe4ff; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 12ch;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #4ad0ff, #7ff0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: #cdddef;
  max-width: 46ch;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fa9c4;
}
.hero-meta b { color: #dbe8f6; font-weight: 600; }
.hero-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-bright); }

/* Hero visual — abstract product panel */
.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-panel .panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #b9cde3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-panel .panel-top span { display: inline-flex; gap: 6px; }
.hero-panel .panel-top span i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, .3);
}
.hero-panel .panel-top span i:nth-child(1) { background: #ff7a7a; }
.hero-panel .panel-top span i:nth-child(2) { background: #ffce6a; }
.hero-panel .panel-top span i:nth-child(3) { background: #6ee7a8; }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.tile {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px;
}
.tile b { display: block; font-size: 22px; color: #fff; letter-spacing: -0.02em; }
.tile span { font-size: 11px; color: #9db6d0; letter-spacing: 0.06em; }

.chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 132px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.chart i {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--brand-bright), rgba(11, 111, 224, .35));
  opacity: .85;
}
.chart i:nth-child(1) { height: 44%; }
.chart i:nth-child(2) { height: 66%; }
.chart i:nth-child(3) { height: 52%; }
.chart i:nth-child(4) { height: 82%; }
.chart i:nth-child(5) { height: 60%; }
.chart i:nth-child(6) { height: 95%; }
.chart i:nth-child(7) { height: 74%; }

.hero-panel .panel-tag {
  position: absolute;
  right: -18px;
  bottom: 30px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-panel .panel-tag svg { width: 15px; height: 15px; color: var(--brand); }

/* --------------------------------------------------------------------------
   Marquee / trust strip
   -------------------------------------------------------------------------- */

.strip {
  background: var(--navy-900);
  color: #a9c0d8;
  padding: 22px 0;
}
.strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.strip b { color: #e4eefa; font-weight: 600; }
.strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-bright); }

/* --------------------------------------------------------------------------
   Generic section
   -------------------------------------------------------------------------- */

.section { padding: clamp(72px, 10vw, 120px) 0; }
.section.soft { background: var(--bg-soft); }
.section.dark {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-800));
  color: #fff;
}
.section.dark .section-head h2 { color: #fff; }
.section.dark .section-head p { color: #b7c8dc; }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }
.service .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--bg-tint), #dcecfb);
  color: var(--brand-dark);
  margin-bottom: 20px;
}
.service .ic svg { width: 26px; height: 26px; }
.service h3 { font-size: 20px; }
.service p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.service ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.service li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink);
}
.service li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-tint);
  box-shadow: inset 0 0 0 2px var(--brand);
}

/* --------------------------------------------------------------------------
   Approach
   -------------------------------------------------------------------------- */

.steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-bright);
}
.step h3 { margin-top: 12px; font-size: 18px; color: #fff; }
.step p { margin-top: 8px; font-size: 14px; color: #b7c8dc; }

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

.industry-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 600;
  font-size: 15px;
  transition: border-color .25s ease, transform .25s var(--ease);
}
.industry:hover { border-color: var(--brand); transform: translateY(-3px); }
.industry svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Why / value props
   -------------------------------------------------------------------------- */

.why-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.why-layout > .reveal:first-child { position: sticky; top: 110px; }
.why-list { display: grid; gap: 14px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.why-item .check {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--bg-tint), #dcecfb);
  display: grid;
  place-items: center;
  color: var(--brand-dark);
}
.why-item .check svg { width: 20px; height: 20px; }
.why-item h3 { font-size: 17px; }
.why-item p { margin-top: 4px; font-size: 14px; color: var(--muted); }

.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #0c3a6b, #06192f);
  padding: 40px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-visual::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 195, 255, .4), transparent 70%);
}
.why-visual .mark-bg {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 200px;
  opacity: .12;
}
.why-visual blockquote {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.why-visual cite {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-style: normal;
  color: #9db6d0;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-layout p + p { margin-top: 16px; }
.about-layout .muted { color: var(--muted); }
.about-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-facts div {
  padding: 18px 20px;
  border-left: 3px solid var(--brand);
  background: var(--bg-soft);
  border-radius: 0 10px 10px 0;
}
.about-facts b { display: block; font-size: 15px; }
.about-facts span { font-size: 13px; color: var(--muted); }

.about-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 20%, rgba(34, 195, 255, .28), transparent 45%),
    linear-gradient(160deg, #1150a0, #06213f 72%);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 38px;
}
.about-card .rings {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 320px; height: 320px;
}
.about-card .rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(120, 200, 255, .3);
  border-radius: 50%;
}
.about-card .rings i:nth-child(2) { inset: 15%; }
.about-card .rings i:nth-child(3) { inset: 30%; }
.about-card .rings i:nth-child(4) { inset: 45%; border-color: rgba(120, 200, 255, .5); }
.about-card p {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.about-card p span { color: var(--brand-bright); }

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

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark) 60%, var(--navy-800));
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 80% 30%, #000, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 92px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); max-width: 24ch; }
.cta-inner > div { flex: 1 1 420px; }
.cta-inner p { margin-top: 12px; color: #dcebff; max-width: 44ch; }
.cta-inner .btn-primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 16px 40px rgba(3, 20, 45, .3);
}
.cta-inner .btn-primary:hover { background: #f2f8ff; }

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

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(28px, 3.4vw, 40px); }
.contact-info p { margin-top: 14px; color: var(--muted); }
.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 6px;
}
.contact-details a, .contact-details span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.contact-details svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.contact-details a:hover { color: var(--brand); }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note { margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.contact-form .btn { width: 100%; margin-top: 6px; }

/* Honeypot — visually and semantically removed, still in the DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

#contactSubmit { position: relative; }
#contactSubmit .btn-spinner { display: none; width: 16px; height: 16px; }
#contactSubmit.is-loading { opacity: .85; cursor: progress; }
#contactSubmit.is-loading .btn-arrow { display: none; }
#contactSubmit.is-loading .btn-spinner { display: block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  display: none;
}
.form-status.show { display: block; }
.form-status.pending { color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); }
.form-status.ok { color: #0a6b41; background: #e9f8ef; border: 1px solid #bfe8d0; }
.form-status.error { color: #9a2c2c; background: #fdeceb; border: 1px solid #f4c9c6; }

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

.site-footer {
  background: var(--navy-950);
  color: #a9c0d8;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr .9fr 1.1fr;
  gap: 44px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img { width: 40px; height: 40px; }
.footer-brand b {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.footer-brand small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--muted-light);
  margin-top: 3px;
  font-weight: 600;
}
.site-footer .col p { font-size: 14px; color: #9fb2c9; max-width: 34ch; }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .col a,
.site-footer .col span {
  display: block;
  font-size: 14px;
  color: #9fb2c9;
  margin: 10px 0;
  transition: color .2s ease;
}
.site-footer .col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7893ae;
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Legal / policy pages
   -------------------------------------------------------------------------- */

.legal { padding: clamp(56px, 8vw, 96px) 0; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(32px, 4.5vw, 46px); line-height: 1.1; }
.legal .updated { margin-top: 10px; color: var(--muted); font-weight: 600; font-size: 14px; }
.legal h2 { font-size: 21px; margin-top: 40px; }
.legal p, .legal li { color: var(--muted); margin-top: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brand); font-weight: 500; }
.legal .callout {
  margin-top: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.legal .callout p { margin-top: 0; color: var(--ink); font-size: 14.5px; }
.header-simple .nav-wrap { justify-content: space-between; }

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

@media (max-width: 1000px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    left: 0; right: 0;
    top: 78px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 24px 20px;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel .panel-tag { right: 16px; }
  .why-layout,
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, var(--container)); }
  .services-grid,
  .steps,
  .industry-grid,
  .about-facts,
  .field-row,
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-panel .panel-tag { position: static; margin-top: 16px; display: inline-flex; }
  .tiles { grid-template-columns: 1fr 1fr; }
  form.contact-form { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}
