/* ==========================================================================
   Xorynex Technologies — Professional Trust Design System
   Clean, corporate, navy/blue palette for small business & freelance clients
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color tokens — light, professional, navy/blue */
  --bg-void:      #f6f8fb;   /* page background */
  --bg-panel:     #ffffff;   /* card / panel background */
  --bg-panel-alt: #eef2f8;   /* secondary panel background */
  --bg-dark:      #0b2545;   /* deep navy, used sparingly (ticker, CTA band) */
  --bg-dark-alt:  #102c52;
  --line:         #e2e8f0;
  --line-bright:  #cbd5e1;
  --text-primary: #101c30;   /* near-navy body/heading text */
  --text-dim:     #56667d;
  --text-faint:   #8695ab;
  --text-on-dark: #eaf1fb;
  --text-on-dark-dim: #9fb3cf;
  --signal:       #1d4ed8;   /* primary brand blue — CTAs, links, accents */
  --signal-dim:   #dbe6fb;   /* light blue tint for success/accent backgrounds */
  --signal-deep:  #14345c;   /* deep navy accent for hovers/emphasis */
  --alert:        #b7791f;   /* warning accent, muted amber */
  --critical:     #c0362c;   /* muted red, used sparingly */
  --wire:         #0f7ab0;   /* secondary accent — links/data */

  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 6px;
  --max-w: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

::selection { background: var(--signal-dim); color: var(--signal-deep); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* ==========================================================================
   Status ticker — restyled as a calm navy trust bar
   ========================================================================== */

.ticker {
  background: var(--bg-dark);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-on-dark-dim);
  padding: 8px 0;
}

.ticker__track {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 42s linear infinite;
}

.ticker__track span { margin-right: 48px; }
.ticker__track span.ok   { color: #7fd4a8; }
.ticker__track span.warn { color: #e3b968; }
.ticker__track span.data { color: #8fc4ea; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.brand__logo {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.brand small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
}

.nav__links a {
  color: var(--text-dim);
  transition: color 0.15s ease;
  position: relative;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a.current { color: var(--signal); font-weight: 600; }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff !important;
  background: var(--signal);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}
.nav__cta:hover { background: var(--signal-deep); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-bright);
  color: var(--text-primary);
  border-radius: var(--radius);
  padding: 7px 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-block; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--line);
    padding: 18px 28px;
    gap: 16px;
    z-index: 60;
    box-shadow: 0 12px 24px -12px rgba(16, 28, 48, 0.15);
  }
}

/* ==========================================================================
   Eyebrow / section labels
   ========================================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 600;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--signal);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero h1 .accent { color: var(--signal); }

.hero p.lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0 0 30px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--signal); color: #fff; box-shadow: 0 8px 20px -8px rgba(29, 78, 216, 0.45); }
.btn--primary:hover { background: var(--signal-deep); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--line-bright);
}
.btn--ghost:hover { border-color: var(--signal); color: var(--signal); }

/* Console panel graphic used in hero — restyled as a clean status card */
.console {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(16, 28, 48, 0.22);
}

.console__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--bg-panel-alt);
  border-bottom: 1px solid var(--line);
}
.console__bar span {
  width: 9px; height: 9px; border-radius: 50%; background: var(--line-bright);
}
.console__bar .title {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
}

.console__body {
  padding: 20px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
}
.console__body .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.console__body .row:last-child { border-bottom: none; }
.console__body .row .k { color: var(--text-faint); }
.console__body .row .v.ok { color: var(--signal); font-weight: 600; }
.console__body .row .v.warn { color: var(--alert); }
.console__body .cursor-line { margin-top: 12px; color: var(--signal); font-weight: 600; }
.console__body .cursor-line::after {
  content: '_';
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ==========================================================================
   Sections generic
   ========================================================================== */

section { padding: 76px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }

.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.section-head p { color: var(--text-dim); font-size: 15.5px; margin: 0; }

/* ==========================================================================
   Service cards
   ========================================================================== */

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

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

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { border-color: var(--signal); transform: translateY(-2px); box-shadow: 0 16px 32px -22px rgba(16, 28, 48, 0.25); }

.card__index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__index .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }

.card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.card p { color: var(--text-dim); font-size: 14.5px; margin: 0 0 14px; }

.card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card ul li::before { content: '› '; color: var(--signal); font-family: var(--font-mono); font-weight: 600; }

.card a.more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wire);
}
.card a.more:hover { text-decoration: underline; }

/* ==========================================================================
   Testimonials (client feedback log)
   ========================================================================== */

.log-entry {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.log-entry__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.log-entry__meta .status { color: var(--signal); font-weight: 600; }

.log-entry p.quote {
  font-size: 15px;
  color: var(--text-primary);
  margin: 0 0 12px;
  line-height: 1.65;
}

.log-entry__author {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dim);
}
.log-entry__author strong { color: var(--text-primary); }

/* ==========================================================================
   Scenario cards (Example Engagements) — icon-fronted card grid
   ========================================================================== */

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .scenario-grid { grid-template-columns: 1fr; } }

.scenario-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--signal);
  border-radius: 10px;
  padding: 26px 24px;
  margin-bottom: 0;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -22px rgba(16, 28, 48, 0.25);
}

.scenario-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.scenario-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--signal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--signal);
}
.scenario-icon svg { width: 22px; height: 22px; }

.scenario-card .log-entry__meta { margin-bottom: 12px; }

/* ==========================================================================
   Review cards (Client Feedback) — star-rated testimonial grid
   ========================================================================== */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -22px rgba(16, 28, 48, 0.25);
}

.review-card__stars {
  color: var(--signal);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.placeholder-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--alert);
  border: 1px solid var(--alert);
  border-radius: 3px;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Stats strip
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }

.stat {
  padding: 26px 20px;
  border-right: 1px solid var(--line);
  background: var(--bg-panel);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 800;
  color: var(--signal);
}
.stat .label {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
  box-shadow: 0 20px 40px -30px rgba(16, 28, 48, 0.2);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-void);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-dim);
  outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }

.form-status {
  font-family: var(--font-sans);
  font-size: 13.5px;
  margin-top: 16px;
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
}
.form-status.show { display: block; }
.form-status.ok { background: var(--signal-dim); border: 1px solid #b7cef3; color: var(--signal-deep); }
.form-status.err { background: #fbe9e7; border: 1px solid #eab3ab; color: var(--critical); }

/* ==========================================================================
   Contact info cards
   ========================================================================== */

.contact-meta { display: flex; flex-direction: column; gap: 14px; }
.contact-meta .item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  background: var(--bg-panel);
}
.contact-meta .item .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.contact-meta .item .v { font-size: 15px; color: var(--text-primary); }
.contact-meta .item .v a { color: var(--wire); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  text-align: center;
  padding: 70px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.cta-band h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.6vw, 36px);
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}
.cta-band p { color: var(--text-on-dark-dim); margin: 0 0 28px; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn--primary { background: #fff; color: var(--signal-deep); box-shadow: none; }
.cta-band .btn--primary:hover { background: var(--signal-dim); }

/* ==========================================================================
   Footer
   ========================================================================== */

footer.site {
  padding: 50px 0 34px;
  font-size: 13.5px;
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--text-dim); }
.footer__col a:hover { color: var(--signal); }
.footer__col p { color: var(--text-dim); font-size: 13.5px; margin: 0; max-width: 32ch; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-family: var(--font-sans);
  font-size: 12.5px;
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */

.page-header {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel-alt);
}
.page-header h1 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 12px;
  font-weight: 800;
  color: var(--text-primary);
}
.page-header p { color: var(--text-dim); max-width: 60ch; margin: 0; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--wire); }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Footer social icons
   ========================================================================== */

.footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  color: var(--text-dim);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer__social a:hover { color: var(--signal); border-color: var(--signal); }
.footer__social svg { width: 16px; height: 16px; }

/* ==========================================================================
   Plain-language / small-business section
   ========================================================================== */

.plain-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 24px 48px -32px rgba(16, 28, 48, 0.2);
}
@media (max-width: 620px) { .plain-panel { padding: 26px; } }

.plain-panel h2 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--text-primary);
}
.plain-panel p.intro {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dim);
  max-width: 62ch;
  margin: 0 0 28px;
}
.plain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 780px) { .plain-grid { grid-template-columns: 1fr; } }

.plain-item {
  background: var(--bg-void);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.plain-item .q {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.plain-item p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
}

.example-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--wire);
  border: 1px solid var(--wire);
  border-radius: 3px;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Skip link (accessibility)
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius);
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Hero visual (network diagram graphic)
   ========================================================================== */

.hero__visual { width: 100%; height: auto; }
.hero__visual svg { width: 100%; height: auto; display: block; }

@keyframes pulse-node {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.hero__visual .pulse { animation: pulse-node 2.4s ease-in-out infinite; }

@keyframes flow-dash {
  to { stroke-dashoffset: -24; }
}
.hero__visual .flow {
  stroke-dasharray: 4 8;
  animation: flow-dash 1.4s linear infinite;
}

/* ==========================================================================
   Badge strip (technologies)
   ========================================================================== */

.badge-strip-wrap {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel-alt);
}
.badge-strip-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}
.badge-strip__item {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-strip__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-dim);
}
.badge-strip__item--text-only {
  padding: 2px 0;
}

/* ==========================================================================
   Card icon (service cards, icon variant)
   ========================================================================== */

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--signal-dim);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; }

/* ==========================================================================
   Why-choose-us grid
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.why-card:hover { border-color: var(--signal); transform: translateY(-2px); box-shadow: 0 16px 32px -22px rgba(16, 28, 48, 0.25); }

.why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--signal-dim);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; }

.why-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text-primary);
}
.why-card p { color: var(--text-dim); font-size: 14px; margin: 0; }

/* ==========================================================================
   Process strip (5-stage engagement flow)
   ========================================================================== */

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .process-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-strip { grid-template-columns: 1fr; } }

.process-step {
  border-top: 2px solid var(--signal);
  padding-top: 16px;
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--signal);
  margin-bottom: 10px;
}
.process-step h3 {
  font-family: var(--font-sans);
  font-size: 15.5px;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text-primary);
}
.process-step p { color: var(--text-dim); font-size: 13.5px; margin: 0; }

/* ==========================================================================
   Industry grid
   ========================================================================== */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr 1fr; } }

.industry-item {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.industry-item:hover { border-color: var(--signal); transform: translateY(-2px); }
.industry-item svg { width: 26px; height: 26px; color: var(--signal); fill: none; stroke: currentColor; }
.industry-item span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   Footer brand lockup + on-dark eyebrow
   ========================================================================== */

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.footer__brand img { height: 21px; width: auto; }

.footer__meta-line {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
}

.eyebrow--on-dark { color: var(--text-on-dark-dim); }
.eyebrow--on-dark::before { background: var(--text-on-dark-dim); }
