/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; }

:root {
  --navy-black: #060B1A;
  --navy: #0A1650;
  --blue-deep: #084AF3;
  --blue: #2C5CF6;
  --blue-light: #4175FC;
  --cyan: #33D9F0;
  --bg-light: #F5F7FC;
  --bg-panel: #EDF1FB;
  --text-dark: #10162B;
  --text-muted: #5B6478;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow-soft: 0 20px 45px -20px rgba(8, 22, 80, 0.35);
  --container-w: 1180px;
}

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

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(8, 74, 243, 0.09);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: linear-gradient(180deg, var(--navy-black) 0%, #0A1233 100%);
  color: var(--white);
}
.section--panel { background: var(--bg-panel); }

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section__head p { color: var(--text-muted); font-size: 1.08rem; }
.section--dark .section__head p { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--primary {
  background: linear-gradient(120deg, var(--blue-light), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(8, 74, 243, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(8, 74, 243, 0.75); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--dark {
  background: var(--navy-black);
  color: var(--white);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 11, 26, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 28px; width: auto; }
.brand__tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 12px;
  transform: translateY(7px);
}
.nav__list { display: flex; gap: 8px; }
.nav__link {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover, .nav__link.is-active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 24% 18%, #3465F9 0%, #143494 42%, #060B1A 100%);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 42% at 78% 14%, rgba(51, 217, 240, 0.3), transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,11,26,0.02) 0%, rgba(6,11,26,0.3) 72%, var(--navy-black) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  text-align: center;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(51, 217, 240, 0.1);
  border: 1px solid rgba(51, 217, 240, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 2px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--cyan), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.78);
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 0 auto;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 32px;
}
.hero__stat { text-align: center; }
.hero__stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--white);
}
.hero__stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Intro strip ===== */
.intro-strip {
  text-align: center;
  padding: 72px 0 24px;
}
.intro-strip h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 780px;
  margin: 0 auto;
}
.intro-strip .highlight { color: var(--blue-deep); }

/* ===== Feature rows (image + text) ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}
.feature-row.is-reverse .feature-row__media { order: 2; }
.feature-row.is-reverse .feature-row__text { order: 1; }
.feature-row__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .6s ease;
}
.feature-row__media:hover img { transform: scale(1.05); }
.feature-row__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,74,243,0.25), transparent 55%);
  pointer-events: none;
}
.feature-row__text h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}
.feature-row__text p { color: var(--text-muted); font-size: 1.05rem; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 1rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4.5 12.5 9.5 17.5 19.5 6.5'/%3E%3C/svg%3E"), linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px, 20px 20px;
}
.section--dark .check-list li { color: rgba(255,255,255,0.85); }

/* ===== Product / capability grid ===== */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chip {
  background: var(--white);
  border: 1px solid rgba(8,22,80,0.08);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 8px 20px -14px rgba(8,22,80,0.4);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.chip:hover {
  transform: translateY(-3px);
  background: var(--navy-black);
  color: var(--white);
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 18px 40px -26px rgba(8,22,80,0.5);
  border: 1px solid rgba(8,22,80,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(8,22,80,0.5); }
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  color: var(--white);
  margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.card h3 { font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 0; }

/* ===== Product carousel (focus / coverflow style: 3 slots, center enlarged) ===== */
.carousel--focus {
  --slot-w: 300px;
  --slot-gap: 36px;
  --active-scale: 1.16;
  --inactive-scale: 0.8;
  position: relative;
  margin: 40px auto 0;
}
.carousel__viewport {
  overflow: hidden;
  max-width: calc(var(--slot-w) * 3 + var(--slot-gap) * 2);
  margin: 0 auto;
  padding: 22px 0 12px;
}
.carousel__track {
  display: flex;
  align-items: center;
  gap: var(--slot-gap);
  will-change: transform;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.product-card {
  flex: 0 0 var(--slot-w);
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(8,22,80,0.06);
  opacity: 0.5;
  transform: scale(var(--inactive-scale));
  cursor: pointer;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s ease, box-shadow .35s ease;
}
.product-card.is-active {
  opacity: 1;
  transform: scale(var(--active-scale));
  box-shadow: 0 30px 60px -18px rgba(65, 117, 252, 0.55);
  cursor: default;
  z-index: 3;
}
.product-card__frame {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #EDF1FB, #DCE6FB);
  padding: 18px;
}
.product-card__frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(8,22,80,0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-deep);
  cursor: pointer;
  z-index: 5;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.carousel__arrow:hover { background: var(--blue-deep); color: var(--white); }
.carousel__arrow--prev { left: 4px; }
.carousel__arrow--next { right: 4px; }

.carousel__dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(8,22,80,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.carousel__dot.is-active { background: var(--blue-deep); transform: scale(1.35); }

@media (max-width: 900px) {
  .carousel--focus { --slot-w: 220px; --slot-gap: 24px; --active-scale: 1.14; }
}
@media (max-width: 560px) {
  .carousel--focus { --slot-w: 148px; --slot-gap: 12px; --active-scale: 1.1; }
  .product-card__frame { height: 120px; padding: 12px; }
  .carousel__arrow { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* ===== Clients ===== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* This grid uses per-card staggered reveal instead of the generic .reveal
   fade, so cancel the container's own hidden state -- .is-visible (added by
   the same IntersectionObserver) is used purely as a trigger flag below. */
.client-grid.reveal { opacity: 1; transform: none; transition: none; }

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 120px;
  border: 1px solid rgba(8,22,80,0.06);
  box-shadow: 0 14px 30px -22px rgba(8,22,80,0.4);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .8s ease, box-shadow .35s ease;
}
.client-grid.is-visible .client-card { opacity: 1; transform: translateY(0); }
.client-grid.is-visible .client-card:nth-child(1) { transition-delay: 0ms; }
.client-grid.is-visible .client-card:nth-child(2) { transition-delay: 180ms; }
.client-grid.is-visible .client-card:nth-child(3) { transition-delay: 360ms; }
.client-grid.is-visible .client-card:nth-child(4) { transition-delay: 540ms; }

/* Reset to a fast, undelayed transition on hover so the cursor-tilt
   (applied inline via JS) stays responsive regardless of entrance delay. */
.client-grid.is-visible .client-card:hover {
  transition: transform .18s ease, box-shadow .35s ease;
}
.client-card:hover { box-shadow: 0 24px 50px -18px rgba(65, 117, 252, 0.55); }
.client-card img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
}

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 72px 40px;
  text-align: center;
  background: linear-gradient(120deg, var(--navy-black), var(--navy) 45%, var(--blue-deep));
  color: var(--white);
  margin: 0 24px;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; }

/* ===== Circuit board background effect (optional — remove this block,
   circuit-bg.js, and the .circuit-canvas/.cta-banner--circuit/
   .cta-banner__content markup to disable) ===== */
.cta-banner--circuit { position: relative; }
.circuit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cta-banner__content {
  position: relative;
  z-index: 1;
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 168px 0 88px;
  background: radial-gradient(circle at 15% 20%, #10225E 0%, var(--navy-black) 65%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-size: 1.08rem; }

/* ===== Values grid (about) ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border-top: 4px solid var(--blue-deep);
  box-shadow: 0 18px 40px -28px rgba(8,22,80,0.5);
}
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--text-muted); margin-bottom: 0; }

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,74,243,0.08);
  color: var(--blue-deep);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(8,22,80,0.08);
}
.contact-info__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.contact-info__item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info__item p { margin-bottom: 0; color: var(--text-muted); font-size: 0.95rem; }
.contact-info__item a { color: var(--text-dark); font-weight: 600; }
.contact-info__item a:hover { color: var(--blue-deep); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(8,22,80,0.15);
  background: var(--bg-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  color: var(--text-dark);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(65, 117, 252, 0.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }
.form-note a { color: var(--text-muted); text-decoration: underline; }
.form-note--error { color: #C0392B; }

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  text-align: center;
  padding: 24px 4px 4px;
}
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  margin: 0 auto 18px;
  box-shadow: 0 14px 30px -14px rgba(8,74,243,0.6);
}
.form-success h3 { color: var(--navy); }
.form-success p { color: var(--text-muted); margin-bottom: 0; }

.grecaptcha-badge { z-index: 10; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-black);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { height: 26px; margin-bottom: 18px; }
.footer__blurb { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 340px; }
.footer__heading {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 0.94rem; color: rgba(255,255,255,0.65); transition: color .2s ease; }
.footer__links a:hover { color: var(--cyan); }
.footer__hours { font-size: 0.88rem; margin-top: 8px; color: rgba(255,255,255,0.5); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer__top { color: rgba(255,255,255,0.6); font-weight: 600; }
.footer__top:hover { color: var(--cyan); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: rgba(6,11,26,0.97); backdrop-filter: blur(12px);
    transform: translateX(100%); transition: transform .35s ease;
    padding: 100px 32px 32px; z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 6px; }
  .nav__link { display: block; }
  .nav-toggle { display: flex; }
  .feature-row, .feature-row.is-reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.is-reverse .feature-row__media, .feature-row.is-reverse .feature-row__text { order: unset; }
  .card-grid, .value-grid, .client-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .card-grid, .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { margin: 0 12px; padding: 56px 24px; }
}
