/* Extend Logics — public redesign (Hostinger-safe, no Node build) */
:root {
  --el-bg: #03070d;
  --el-surface: #07111f;
  --el-surface-2: #0b1729;
  --el-accent: #176bff;
  --el-cyan: #32d5ff;
  --el-violet: #7c5cff;
  --el-text: #ffffff;
  --el-muted: #98a2b3;
  --el-soft: #f6f8fb;
  --el-focus: rgba(50, 213, 255, 0.55);
  --el-border: rgba(255, 255, 255, 0.08);
  --el-border-strong: rgba(50, 213, 255, 0.28);
  --el-radius: 12px;
  --el-radius-sm: 8px;
  --el-shell: min(1180px, calc(100% - 2.5rem));
  --el-font: "Sora", "Manrope", "Inter", system-ui, sans-serif;
  --el-header-h: 72px;
  --el-glow: 0 0 40px rgba(23, 107, 255, 0.25);
  --el-glass: rgba(7, 17, 31, 0.72);
  --el-glass-strong: rgba(11, 23, 41, 0.88);
  --el-glass-border: rgba(50, 213, 255, 0.22);
  --el-inset: inset 0 0 24px rgba(50, 213, 255, 0.04);
  --el-card-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  /* Light-band tokens (enterprise contrast rhythm) */
  --el-light: #ffffff;
  --el-light-muted: #f3f5f8;
  --el-ink: #0b1220;
  --el-ink-muted: #5b6577;
  --el-ink-soft: #3d4656;
  --el-light-border: rgba(11, 18, 32, 0.08);
  --el-light-border-strong: rgba(23, 107, 255, 0.28);
  --el-light-card: #ffffff;
  --el-light-shadow: 0 10px 28px rgba(11, 18, 32, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--el-font);
  background: var(--el-bg);
  color: var(--el-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--el-accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--el-radius-sm);
}
.skip-link:focus {
  top: 1rem;
}

.shell {
  width: var(--el-shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--el-cyan);
}

.display {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0;
  color: var(--el-muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

.band {
  padding: clamp(3.75rem, 8vw, 6.5rem) 0;
  position: relative;
}
.band--tight-top {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}
.band--tint {
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(23, 107, 255, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.7), transparent 45%),
    var(--el-bg);
  border-block: 1px solid var(--el-border);
}
.band--stats {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0;
}
.band--company {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.band--contact {
  background:
    radial-gradient(ellipse 55% 60% at 85% 20%, rgba(23, 107, 255, 0.18), transparent 58%),
    radial-gradient(ellipse 40% 45% at 10% 90%, rgba(50, 213, 255, 0.08), transparent 55%),
    var(--el-bg);
}

/* ----- Section rhythm: dark / light / muted ----- */
.band--dark {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(23, 107, 255, 0.16), transparent 55%),
    var(--el-bg);
  color: var(--el-text);
  border-block: 1px solid var(--el-border);
}
.band--light,
.band--muted {
  color: var(--el-ink);
  --el-text: var(--el-ink);
  --el-muted: var(--el-ink-muted);
  --el-soft: var(--el-ink-soft);
  --el-border: var(--el-light-border);
  --el-border-strong: var(--el-light-border-strong);
  --el-glass: rgba(255, 255, 255, 0.92);
  --el-glass-strong: #ffffff;
  --el-glass-border: rgba(23, 107, 255, 0.18);
  --el-inset: none;
  --el-card-shadow: var(--el-light-shadow);
  --el-glow: 0 0 0 transparent;
}
.band--light {
  background: var(--el-light);
  border-block: 1px solid var(--el-light-border);
}
.band--muted {
  background: var(--el-light-muted);
  border-block: 1px solid var(--el-light-border);
}
.band--light .eyebrow,
.band--muted .eyebrow {
  color: var(--el-accent);
}
.band--light .display,
.band--muted .display,
.band--light h2,
.band--muted h2,
.band--light h3,
.band--muted h3 {
  color: var(--el-ink);
}
.band--light .lede,
.band--muted .lede,
.band--light .meta,
.band--muted .meta {
  color: var(--el-ink-muted);
}
.band--light .band__link,
.band--muted .band__link {
  color: var(--el-accent);
}
.band--light .band__link:hover,
.band--muted .band__link:hover {
  color: #0d4fd6;
}
.band--light.band--contact {
  background:
    radial-gradient(ellipse 50% 55% at 90% 10%, rgba(23, 107, 255, 0.08), transparent 55%),
    var(--el-light);
}

/* Light-band cards: white surfaces, soft borders, dark type */
.band--light .el-card,
.band--muted .el-card,
.band--light .industry-card,
.band--muted .industry-card,
.band--light .process-step,
.band--muted .process-step,
.band--light .company-panel,
.band--muted .company-panel,
.band--light .reviews-panel,
.band--muted .reviews-panel,
.band--light .reviews-empty,
.band--muted .reviews-empty {
  background: var(--el-light-card);
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.band--light .el-card:hover,
.band--muted .el-card:hover,
.band--light .industry-card:hover,
.band--muted .industry-card:hover,
.band--light .process-step:hover,
.band--muted .process-step:hover {
  border-color: var(--el-light-border-strong);
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.09);
}
.band--light .el-card__media::after,
.band--muted .el-card__media::after {
  background: linear-gradient(180deg, transparent 60%, rgba(11, 18, 32, 0.12));
}
.band--light .el-card__body p,
.band--muted .el-card__body p,
.band--light .process-step p,
.band--muted .process-step p {
  color: var(--el-ink-muted);
}
.band--light .el-card__link,
.band--muted .el-card__link,
.band--light .process-step__no,
.band--muted .process-step__no {
  color: var(--el-accent);
}
.band--light .el-card__link:hover,
.band--muted .el-card__link:hover {
  color: #0d4fd6;
}
.band--light .work-card__client span,
.band--muted .work-card__client span {
  color: var(--el-ink-soft);
}
.band--light .work-card__client img,
.band--muted .work-card__client img {
  filter: none;
  opacity: 0.95;
}
.band--light .work-card__tags span,
.band--muted .work-card__tags span {
  color: var(--el-ink-muted);
  border-color: var(--el-light-border);
  background: var(--el-light-muted);
}
.band--light .industry-card__icon,
.band--muted .industry-card__icon {
  color: var(--el-accent);
  background: rgba(23, 107, 255, 0.08);
  border-color: rgba(23, 107, 255, 0.16);
}
.band--light .company-panel {
  background:
    radial-gradient(ellipse 60% 70% at 95% 0%, rgba(23, 107, 255, 0.1), transparent 55%),
    #ffffff;
  border-color: var(--el-light-border);
  backdrop-filter: none;
}

.band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.band__head--stack {
  margin-bottom: 0;
  align-items: center;
}
.band__head.asymmetric {
  align-items: stretch;
}

.band__link {
  color: var(--el-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.band__link:hover {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn--solid {
  background: linear-gradient(135deg, var(--el-accent), #0d4fd6 60%, var(--el-cyan));
  color: #fff;
  box-shadow: var(--el-glow);
}
.btn--solid:hover {
  filter: brightness(1.06);
}
.btn--ghost {
  background: transparent;
  border-color: var(--el-border);
  color: var(--el-soft);
}
.btn--ghost:hover {
  border-color: var(--el-border-strong);
  color: #fff;
}
.btn--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--el-border);
  color: #fff;
}
.btn--light:hover {
  background: rgba(255, 255, 255, 0.14);
}
.btn:focus-visible,
.band__link:focus-visible,
.nav-desktop a:focus-visible,
.nav-mobile a:focus-visible,
.nav-toggle:focus-visible,
.social__link:focus-visible,
.el-card__link:focus-visible,
.footer__col a:focus-visible,
.footer__contact a:focus-visible,
.footer__logo:focus-visible,
.brand:focus-visible,
.contact-list a:focus-visible,
.review-row__toggle:focus-visible,
.cta-final__mail a:focus-visible {
  outline: 2px solid var(--el-focus);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--el-header-h);
  backdrop-filter: blur(16px);
  background: rgba(3, 7, 13, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(3, 7, 13, 0.92);
  border-bottom-color: var(--el-border);
}

.header__inner {
  height: var(--el-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: auto;
  height: 40px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}
.nav-desktop a {
  color: rgba(246, 248, 251, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--el-border);
  border-radius: var(--el-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--el-border);
  background: var(--el-surface);
}
.nav-mobile.is-open {
  display: block;
}
.nav-mobile .shell {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0 1.25rem;
}
.nav-mobile a {
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--el-border);
  color: var(--el-soft);
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0 5.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(23, 107, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124, 92, 255, 0.12), transparent 55%),
    var(--el-bg);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.hero__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--el-cyan);
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero__accent {
  color: var(--el-cyan);
  background: linear-gradient(120deg, #32d5ff 0%, #176bff 55%, #7c5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: var(--el-muted);
  font-size: 1.08rem;
  max-width: 34rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

/* Option 02 — Realistic Earth Glow: soft blue halo behind night Earth */
.hero-globe-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 48%, rgba(50, 213, 255, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(23, 107, 255, 0.38) 0%, transparent 46%),
    radial-gradient(circle at 50% 55%, rgba(10, 40, 120, 0.35) 0%, transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(3, 7, 13, 0.2) 0%, transparent 70%);
}

.hero-globe-wrapper[data-globe-style="realistic-earth-glow"]::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 52%,
    rgba(50, 213, 255, 0.12) 64%,
    rgba(23, 107, 255, 0.18) 78%,
    transparent 92%
  );
  filter: blur(2px);
}

#extend-globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: grab;
  /* Allow vertical page scroll; JS claims horizontal drag once intent is clear */
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

#extend-globe canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  touch-action: pan-y;
}

.hero-globe-wrapper[data-globe-dragging="true"] #extend-globe {
  cursor: grabbing;
}

.hero-globe-wrapper[data-globe-state="fallback"] #extend-globe {
  cursor: default;
}

.globe-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Option 02: clean floating labels — not heavy pill chips */
.globe-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: #ffffff;
  font-family: var(--el-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(23, 107, 255, 0.45),
    0 1px 2px rgba(3, 7, 13, 0.85);
  box-shadow: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  transition: opacity 0.25s ease;
}

.globe-fallback {
  display: none;
  position: absolute;
  inset: 8%;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(50, 213, 255, 0.18);
  background: radial-gradient(circle at 40% 35%, #071428, #03070d 72%);
  box-shadow:
    0 0 60px rgba(23, 107, 255, 0.28),
    0 0 100px rgba(50, 213, 255, 0.1);
}

.globe-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.05) brightness(0.95) contrast(1.05);
}

.globe-fallback__tags {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 14% 12%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.globe-fallback__tags li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(23, 107, 255, 0.4),
    0 1px 2px rgba(3, 7, 13, 0.9);
}

.hero-globe-wrapper[data-globe-state="fallback"] .globe-fallback {
  display: block;
}

.hero-globe-wrapper[data-globe-state="fallback"] #extend-globe,
.hero-globe-wrapper[data-globe-state="fallback"] .globe-labels {
  display: none;
}

.hero-globe-wrapper[data-globe-state="live"] .globe-fallback {
  display: none;
}

@media (max-width: 767px) {
  .hero-globe-wrapper {
    max-width: 430px;
  }

  .globe-label {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .globe-fallback__tags li {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .globe-label {
    transition: none;
  }
}

.capability-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--el-border);
  background: rgba(7, 17, 31, 0.85);
  backdrop-filter: blur(10px);
}
.capability-strip__list {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}
@media (min-width: 720px) {
  .capability-strip__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .capability-strip__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.capability-strip__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(246, 248, 251, 0.88);
  font-weight: 500;
}
.capability-strip__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(23, 107, 255, 0.15);
  border: 1px solid var(--el-border);
  color: var(--el-cyan);
  flex-shrink: 0;
}

/* Trust */
.trust {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--el-border);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.75), rgba(3, 7, 13, 0.4));
}
.trust.band--light {
  background: var(--el-light);
  border-bottom: 1px solid var(--el-light-border);
  color: var(--el-ink);
}
.trust__label {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--el-muted);
  font-weight: 600;
}
.trust.band--light .trust__label {
  color: var(--el-ink-muted);
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
}
.trust__logos img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(1) brightness(1.35);
  padding: 0.55rem 0.85rem;
  border-radius: var(--el-radius-sm);
  border: 1px solid var(--el-border);
  background: rgba(7, 17, 31, 0.55);
  box-shadow: var(--el-inset);
  transition: opacity 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}
.trust.band--light .trust__logos img {
  filter: grayscale(0.35);
  opacity: 0.9;
  background: #fff;
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.trust__logos img:hover {
  opacity: 1;
  filter: none;
  border-color: var(--el-glass-border);
}
.trust.band--light .trust__logos img:hover {
  filter: none;
  border-color: var(--el-light-border-strong);
}
/* Dark-on-dark client marks (e.g. Foot Relief) need a light chip for contrast */
.trust__logos img.trust__logo--chip {
  height: 42px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  filter: grayscale(1) brightness(0.98);
  opacity: 0.92;
}
.trust__logos img.trust__logo--chip:hover {
  filter: none;
  opacity: 1;
}

/* Service / work cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .card-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .card-grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.el-card {
  background:
    linear-gradient(165deg, rgba(11, 23, 41, 0.96), rgba(7, 17, 31, 0.9));
  border: 1px solid var(--el-border);
  border-radius: var(--el-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--el-card-shadow);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.el-card:hover {
  border-color: var(--el-border-strong);
  transform: translateY(-3px);
  box-shadow:
    var(--el-card-shadow),
    0 0 0 1px rgba(50, 213, 255, 0.08),
    var(--el-glow);
}
.el-card__media {
  aspect-ratio: 16 / 10;
  background: #0a1424;
  overflow: hidden;
  position: relative;
}
.el-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 7, 13, 0.45));
  pointer-events: none;
}
.el-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.el-card:hover .el-card__media img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .el-card:hover,
  .el-card:hover .el-card__media img {
    transform: none;
  }
}
.el-card__body {
  padding: 1.35rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.el-card__body h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.el-card__body p {
  margin: 0;
  color: var(--el-muted);
  font-size: 0.94rem;
  flex: 1;
}
.el-card__link {
  color: var(--el-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}
.el-card__link:hover {
  color: #fff;
}

.work-card__client {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}
.work-card__client img {
  height: 22px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.35);
  opacity: 0.85;
}
.work-card__client span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--el-soft);
}
.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.15rem 0 0.35rem;
}
.work-card__tags span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(246, 248, 251, 0.72);
  border: 1px solid var(--el-border);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  background: rgba(3, 7, 13, 0.45);
}
.work-note {
  margin: 1.75rem 0 0;
  max-width: 42rem;
}

/* AI Solutions — grounded signal path (scoped to #ai-solutions) */
#ai-solutions.band--dark {
  color: #ffffff;
  position: relative;
  overflow: hidden;
  overflow: clip;
  background:
    radial-gradient(ellipse 50% 40% at 88% 0%, rgba(23, 107, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 42% 36% at 6% 100%, rgba(50, 213, 255, 0.07), transparent 55%),
    linear-gradient(180deg, #03070d 0%, #06101c 52%, #03070d 100%);
  border-block-color: rgba(255, 255, 255, 0.1);
}

#ai-solutions .eyebrow {
  color: #9ecfff;
}

#ai-solutions .display,
#ai-solutions h2 {
  color: #ffffff;
}

#ai-solutions .lede {
  color: #d5dbe6;
  max-width: 38rem;
}

#ai-solutions .ai-solutions__cta {
  color: #9ecfff;
  align-self: start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

#ai-solutions .ai-solutions__cta:hover {
  color: #7adfff;
}

#ai-solutions .ai-solutions__cta:focus-visible {
  outline: 2px solid var(--el-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.ai-stage {
  position: relative;
  display: grid;
  gap: 1.5rem;
  isolation: isolate;
}

@media (min-width: 960px) {
  .ai-stage {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
    gap: 1.35rem 1.75rem;
    align-items: stretch;
  }
}

.ai-stage__glow {
  pointer-events: none;
  position: absolute;
  inset: -8% -4% auto auto;
  width: min(52%, 420px);
  height: min(70%, 320px);
  background:
    radial-gradient(circle at 40% 40%, rgba(23, 107, 255, 0.16), transparent 68%);
  z-index: 0;
  filter: blur(2px);
}

.ai-rail {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 1.35rem 1.15rem;
  display: grid;
  gap: 0;
  border-radius: var(--el-radius);
  border: 1px solid rgba(158, 207, 255, 0.22);
  background:
    linear-gradient(165deg, rgba(14, 28, 48, 0.97), rgba(7, 17, 31, 0.94)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(50, 213, 255, 0.03) 11px,
      rgba(50, 213, 255, 0.03) 12px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.3);
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 760px) {
  .ai-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 1.6rem 1.25rem 1.45rem;
  }

  /* Connecting rail under nodes */
  .ai-rail::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: calc(1.6rem + 1.55rem);
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(50, 213, 255, 0.35) 12%,
      rgba(23, 107, 255, 0.55) 50%,
      rgba(50, 213, 255, 0.35) 88%,
      transparent
    );
    z-index: 0;
  }
}

.ai-rail__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem 0.85rem;
  align-items: center;
  padding: 0.95rem 0.35rem;
  min-width: 0;
}

.ai-rail__step + .ai-rail__step {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 760px) {
  .ai-rail__step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.25rem 0.5rem 0.15rem;
  }

  .ai-rail__step + .ai-rail__step {
    border-top: 0;
  }
}

.ai-rail__index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #7eb6ff;
  opacity: 0.9;
}

@media (min-width: 760px) {
  .ai-rail__index {
    order: -1;
    margin-bottom: 0.15rem;
  }
}

.ai-rail__node {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #7adfff;
  background: rgba(23, 107, 255, 0.2);
  border: 1px solid rgba(50, 213, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(3, 7, 13, 0.85);
  flex-shrink: 0;
}

.ai-rail__node svg {
  display: block;
}

.ai-rail__copy {
  min-width: 0;
}

.ai-rail__copy strong {
  display: block;
  color: #f6f8fb;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ai-rail__copy p {
  margin: 0.28rem 0 0;
  color: #b8c4d6;
  font-size: 0.8rem;
  line-height: 1.45;
}

.ai-outcomes {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.25rem 1.15rem 1.15rem;
  border-radius: var(--el-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(11, 23, 41, 0.98), rgba(7, 17, 31, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ai-outcomes__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ecfff;
}

.ai-outcomes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.ai-outcomes__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border-radius: var(--el-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 28, 48, 0.72);
  color: #f0f3f8;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 44px;
}

.ai-outcomes__list li:hover {
  border-color: rgba(50, 213, 255, 0.38);
  background: rgba(18, 36, 62, 0.92);
}

.ai-outcomes__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #7adfff;
  background: rgba(23, 107, 255, 0.16);
  border: 1px solid rgba(50, 213, 255, 0.22);
}

.ai-outcomes__icon svg {
  display: block;
}

.ai-outcomes__text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.ai-outcomes__text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.ai-outcomes__text span {
  font-size: 0.78rem;
  color: #b8c4d6;
  line-height: 1.4;
  font-weight: 400;
}

/* Soft progressive presence — content stays readable without animation */
.ai-rail__step .ai-rail__node {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.ai-stage.is-in .ai-rail__step .ai-rail__node {
  transition-delay: calc(var(--ai-i, 0) * 95ms);
  border-color: rgba(50, 213, 255, 0.48);
  box-shadow:
    0 0 0 4px rgba(3, 7, 13, 0.85),
    0 0 18px rgba(23, 107, 255, 0.18);
  background: rgba(23, 107, 255, 0.28);
}

@media (min-width: 760px) {
  .ai-stage.is-in .ai-rail::before {
    animation: ai-rail-draw 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes ai-rail-draw {
  from {
    transform: scaleX(0.2);
    opacity: 0.25;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.ai-rail::before {
  transform-origin: left center;
}

@media (prefers-reduced-motion: reduce) {
  .ai-stage.is-in .ai-rail__step .ai-rail__node {
    transition: none;
    transition-delay: 0ms;
  }

  .ai-stage.is-in .ai-rail::before {
    animation: none;
  }

  .ai-stage__glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .ai-rail {
    padding: 0.85rem 0.9rem;
  }

  .ai-rail__step {
    padding: 0.85rem 0.15rem;
  }

  .ai-outcomes {
    padding: 1.1rem 0.95rem 1rem;
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 800px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
.stat {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: var(--el-radius);
  border: 1px solid var(--el-border);
  background:
    linear-gradient(165deg, rgba(11, 23, 41, 0.9), rgba(7, 17, 31, 0.82));
  box-shadow: var(--el-inset);
}
.stat strong {
  display: block;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 20%, var(--el-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
}
.stat span {
  color: var(--el-muted);
  font-size: 0.9rem;
}

/* Industries */
.industry-card {
  text-align: center;
  padding: 1.45rem 0.9rem;
  border-radius: var(--el-radius);
  border: 1px solid var(--el-border);
  background:
    linear-gradient(180deg, rgba(11, 23, 41, 0.92), rgba(7, 17, 31, 0.88));
  min-height: 100%;
  box-shadow: var(--el-inset);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.industry-card:hover {
  border-color: var(--el-border-strong);
  transform: translateY(-2px);
}
.industry-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  color: var(--el-cyan);
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--el-border);
  background: rgba(23, 107, 255, 0.12);
}
.industry-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Process */
.process-rail {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .process-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
  }
}
.process-step {
  padding: 1.35rem 1.2rem;
  border-radius: var(--el-radius);
  border: 1px solid var(--el-border);
  background:
    linear-gradient(165deg, rgba(11, 23, 41, 0.94), rgba(7, 17, 31, 0.88));
  box-shadow: var(--el-inset), var(--el-card-shadow);
  position: relative;
  min-height: 100%;
  transition: border-color 0.2s ease;
}
.process-step:hover {
  border-color: var(--el-border-strong);
}
.process-step__no {
  display: block;
  color: var(--el-cyan);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.process-step p {
  margin: 0;
  color: var(--el-muted);
  font-size: 0.9rem;
}

/* Company */
.company-panel {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: calc(var(--el-radius) + 2px);
  border: 1px solid var(--el-glass-border);
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(23, 107, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(50, 213, 255, 0.08), transparent 50%),
    var(--el-glass-strong);
  box-shadow: var(--el-inset), var(--el-card-shadow);
  backdrop-filter: blur(14px);
}
.company-panel .display {
  max-width: 22ch;
}
.company-panel .lede {
  max-width: 40rem;
}

/* Reviews (preserve semantics, luxury skin) */
.reviews {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(23, 107, 255, 0.14), transparent 55%),
    var(--el-bg);
}
.reviews.band--light {
  background: var(--el-light);
}
.reviews-panel {
  min-width: min(100%, 270px);
  padding: 1.25rem 1.35rem;
  border-radius: var(--el-radius);
  border: 1px solid var(--el-glass-border);
  background: var(--el-glass-strong);
  box-shadow: var(--el-inset), var(--el-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.reviews-panel__score {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 0;
}
.reviews-panel__value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.reviews-panel__value--muted {
  color: var(--el-muted);
}
.reviews-panel__meta {
  display: grid;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--el-muted);
}
.reviews-panel__stars {
  color: #f5c542;
  letter-spacing: 0.05em;
}
.reviews-panel__cta {
  width: 100%;
}
.reviews-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.review-row {
  border: 1px solid var(--el-border);
  border-radius: var(--el-radius);
  background:
    linear-gradient(165deg, rgba(11, 23, 41, 0.92), rgba(7, 17, 31, 0.88));
  padding: 1.25rem 1.35rem;
  box-shadow: var(--el-inset);
  transition: border-color 0.2s ease;
}
.band--light .review-row,
.band--muted .review-row {
  background: #fff;
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.review-row:hover {
  border-color: var(--el-border-strong);
}
.review-row__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-bottom: 0.65rem;
}
.review-row__stars {
  color: #f5c542;
}
.review-row__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  color: var(--el-muted);
  font-size: 0.88rem;
}
.review-row__author {
  color: var(--el-soft);
  font-weight: 600;
}
.band--light .review-row__author,
.band--muted .review-row__author {
  color: var(--el-ink);
}
.review-row__badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--el-border);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  background: rgba(3, 7, 13, 0.45);
}
.band--light .review-row__badge,
.band--muted .review-row__badge {
  background: var(--el-light-muted);
  border-color: var(--el-light-border);
  color: var(--el-ink-muted);
}
.review-row__text {
  margin: 0;
  color: rgba(246, 248, 251, 0.88);
}
.band--light .review-row__text,
.band--muted .review-row__text {
  color: var(--el-ink-soft);
}
.review-row__toggle {
  margin-top: 0.65rem;
  background: none;
  border: 0;
  color: var(--el-cyan);
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}
.band--light .review-row__toggle,
.band--muted .review-row__toggle {
  color: var(--el-accent);
}
.review-row__toggle:hover {
  color: #fff;
}
.band--light .review-row__toggle:hover,
.band--muted .review-row__toggle:hover {
  color: #0d4fd6;
}
.reviews-empty,
.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.reviews-empty {
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1px dashed var(--el-glass-border);
  border-radius: var(--el-radius);
  margin-bottom: 1.25rem;
  background: rgba(7, 17, 31, 0.45);
}
.reviews-empty__title {
  margin: 0;
  font-weight: 700;
}
.meta {
  color: var(--el-muted);
  font-size: 0.92rem;
}

/* Contact */
.split--contact {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .split--contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.75rem;
    align-items: start;
  }
}
.contact-intro .display {
  max-width: 16ch;
}
.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.contact-list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1.05rem;
  border-radius: var(--el-radius-sm);
  border: 1px solid var(--el-border);
  background: rgba(7, 17, 31, 0.55);
  box-shadow: var(--el-inset);
}
.contact-list span {
  color: var(--el-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-list strong {
  font-size: 1rem;
  font-weight: 600;
}
.contact-list a:hover {
  color: var(--el-cyan);
}

.panel {
  padding: 1.65rem 1.55rem;
  border-radius: var(--el-radius);
  border: 1px solid var(--el-border);
  background: var(--el-surface);
}
.panel--glass {
  border-color: var(--el-glass-border);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(23, 107, 255, 0.16), transparent 55%),
    var(--el-glass-strong);
  box-shadow: var(--el-inset), var(--el-card-shadow);
  backdrop-filter: blur(14px);
}
.panel h3 {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#emailForm {
  position: relative;
}

.fields {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.fields--two {
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .fields--two {
    grid-template-columns: 1fr 1fr;
  }
}
.fields input,
.fields select,
.fields textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  border-radius: var(--el-radius-sm);
  border: 1px solid var(--el-border);
  background: rgba(3, 7, 13, 0.72);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fields select option {
  background: #07111f;
  color: #fff;
}
.fields textarea {
  min-height: 148px;
  resize: vertical;
}
.fields input::placeholder,
.fields textarea::placeholder {
  color: rgba(152, 162, 179, 0.85);
}
.fields input:focus,
.fields select:focus,
.fields textarea:focus {
  outline: 2px solid rgba(50, 213, 255, 0.45);
  outline-offset: 1px;
  border-color: var(--el-border-strong);
  box-shadow: 0 0 0 3px rgba(23, 107, 255, 0.15);
}
.fields input:focus-visible,
.fields select:focus-visible,
.fields textarea:focus-visible,
#emailSubmit:focus-visible {
  outline: 2px solid var(--el-focus);
  outline-offset: 2px;
}
#emailSubmit {
  width: 100%;
  margin-top: 0.35rem;
}
#success-message,
#form-error {
  margin: 0.95rem 0 0;
  font-size: 0.92rem;
}
#success-message {
  display: none;
  color: #5eead4;
}
#success-message.is-visible {
  display: block;
}
.form-status.is-error {
  color: #fb7185;
}

/* Location */
.location {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .location {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    gap: 1.75rem;
  }
}
.location__info {
  padding: 1.5rem 1.4rem;
  border-radius: var(--el-radius);
  border: 1px solid var(--el-border);
  background:
    linear-gradient(165deg, rgba(11, 23, 41, 0.92), rgba(7, 17, 31, 0.88));
  box-shadow: var(--el-inset);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.location__info h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.location__info .lede {
  margin: 0;
}
.location__info .meta {
  margin: 0;
}
.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
  margin: 0 0 0.15rem;
}
.location-tabs__btn {
  appearance: none;
  border: 1px solid var(--el-border);
  background: rgba(7, 17, 31, 0.55);
  color: var(--el-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.location-tabs__btn:hover {
  color: var(--el-text, #f6f8fb);
  border-color: var(--el-border-strong);
}
.location-tabs__btn.is-active,
.location-tabs__btn[aria-selected="true"] {
  color: #fff;
  border-color: rgba(23, 107, 255, 0.55);
  background: rgba(23, 107, 255, 0.22);
}
.location-tabs__btn:focus-visible {
  outline: 2px solid var(--el-cyan, #32d5ff);
  outline-offset: 2px;
}
.contact-locations {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}
.location__map {
  border: 1px solid var(--el-glass-border);
  border-radius: var(--el-radius);
  overflow: hidden;
  background: var(--el-surface);
  box-shadow: var(--el-card-shadow);
}
.location__toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--el-border);
  background: rgba(7, 17, 31, 0.9);
}
.location__toolbar h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.location__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.branch-map {
  position: relative;
  min-height: 280px;
}
.branch-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05) saturate(0.9);
}
.branch-map__overlay {
  position: absolute;
  inset: 0;
}
.branch-map__hint {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(3, 7, 13, 0.82);
  border: 1px solid var(--el-border);
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* Final CTA */
.cta-final {
  padding: clamp(3.75rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 120%, rgba(23, 107, 255, 0.38), transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 0%, rgba(50, 213, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #06101d, #03070d);
  border-top: 1px solid var(--el-border);
  text-align: center;
}
.cta-final .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.cta-final h2 {
  margin: 0 auto 1.4rem;
  max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  justify-content: center;
  align-items: center;
}
.cta-final__mail {
  color: var(--el-muted);
  margin: 0;
}
.cta-final__mail a {
  color: var(--el-cyan);
  font-weight: 600;
}
.cta-final__mail a:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--el-border);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.55), #02050a 35%);
  padding-top: 3.25rem;
}
.footer__grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.75rem;
}
@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
  }
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__tagline {
  color: var(--el-muted);
  margin: 1.1rem 0;
  max-width: 28rem;
  line-height: 1.55;
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--el-soft);
  margin-bottom: 1.15rem;
  font-size: 0.92rem;
}
.footer__contact a:hover {
  color: var(--el-cyan);
}
.footer__col h4 {
  margin: 0 0 0.95rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--el-soft);
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer__col a {
  color: var(--el-muted);
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.footer__col a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid var(--el-border);
  padding: 1.15rem 0;
  background: rgba(0, 0, 0, 0.25);
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--el-muted);
  font-size: 0.85rem;
}
.footer__slogan {
  color: rgba(246, 248, 251, 0.72);
  font-weight: 500;
}

/* Social */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.social__link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--el-border);
  display: grid;
  place-items: center;
  color: var(--el-soft);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social__link:hover {
  border-color: var(--el-border-strong);
  color: var(--el-cyan);
  background: rgba(23, 107, 255, 0.12);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Internship modal — light surface, dark type, blue accents */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200; /* above header (100) and skip-link (1000) */
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top, 0px))
    max(0.75rem, env(safe-area-inset-right, 0px))
    max(0.75rem, env(safe-area-inset-bottom, 0px))
    max(0.75rem, env(safe-area-inset-left, 0px));
}
.modal.is-open {
  display: flex;
  visibility: visible;
  opacity: 1;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 13, 0.72);
  backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(23, 107, 255, 0.06), transparent 55%),
    #ffffff;
  color: var(--el-ink);
  /* Remap tokens so inherited .lede / .meta / links stay dark on white */
  --el-text: var(--el-ink);
  --el-muted: var(--el-ink-muted);
  --el-soft: var(--el-ink-soft);
  --el-border: var(--el-light-border);
  --el-border-strong: var(--el-light-border-strong);
  --el-glass-border: rgba(23, 107, 255, 0.18);
  --el-inset: none;
  --el-card-shadow: var(--el-light-shadow);
  --el-glow: 0 10px 28px rgba(23, 107, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 28px 72px rgba(11, 18, 32, 0.22);
  outline: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #ffffff;
  color: var(--el-ink);
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.modal__close:hover {
  border-color: rgba(23, 107, 255, 0.35);
  background: #f3f5f8;
  color: var(--el-ink);
}
.modal__close:focus-visible {
  outline: 2px solid var(--el-accent);
  outline-offset: 2px;
}
.modal__chrome {
  padding: 1.85rem 1.6rem 1.6rem;
  padding-inline-end: 3.25rem;
}
.modal__intro .eyebrow {
  margin-bottom: 0.5rem;
  color: var(--el-accent);
}
.modal__intro h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  letter-spacing: -0.02em;
  color: #0b1220;
  line-height: 1.25;
  max-width: 36rem;
}
.modal__intro .lede {
  color: #5b6577;
  max-width: 40rem;
}
.modal__body {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.35rem;
}
@media (min-width: 720px) {
  .modal__body {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.modal .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}
.modal .badge {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(23, 107, 255, 0.22);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  color: #0d4fd6;
  background: rgba(23, 107, 255, 0.08);
  font-weight: 600;
}
.modal .ticks {
  margin: 0;
  padding-left: 1.15rem;
  color: #3d4656;
  display: grid;
  gap: 0.55rem;
  line-height: 1.55;
}
.modal .ticks li::marker {
  color: var(--el-accent);
}
.modal .meta {
  color: #5b6577;
  margin-top: 0.85rem;
  font-size: 0.92rem;
}
.modal .meta a {
  color: var(--el-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.modal .meta a:hover {
  color: #0d4fd6;
}
.modal .qr-card {
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: var(--el-radius);
  padding: 1.25rem 1.1rem 1.15rem;
  text-align: center;
  background: #f7f9fc;
  box-shadow: none;
}
.modal .qr-card__title {
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #0b1220;
  font-size: 0.98rem;
}
.modal .qr-card .btn--solid {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #176bff, #0d4fd6 70%);
  box-shadow: 0 10px 24px rgba(23, 107, 255, 0.28);
}
.modal .qr-card .btn--solid:hover {
  filter: brightness(1.05);
}
.modal .qr-card .btn--solid:focus-visible {
  outline: 2px solid var(--el-accent);
  outline-offset: 3px;
}
.qr-card__frame {
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  width: min(168px, 100%);
  height: 168px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  padding: 0.55rem;
  box-shadow: 0 4px 14px rgba(11, 18, 32, 0.06);
}
.qr-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.qr-card__fallback {
  display: none;
  color: #3d4656;
  font-size: 0.8rem;
  padding: 0.5rem;
  line-height: 1.4;
}
.qr-card__frame.is-broken .qr-card__fallback {
  display: block;
}
.qr-card__frame.is-broken img {
  display: none;
}
@media (max-width: 719px) {
  .modal__chrome {
    padding: 1.5rem 1.15rem 1.25rem;
    padding-inline-end: 3rem;
  }
  .modal .qr-card .btn--solid {
    min-height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop {
    backdrop-filter: none;
  }
  .modal__close,
  .modal .qr-card .btn--solid {
    transition: none;
  }
}

/* Mobile stacking polish (post-hero) */
@media (max-width: 640px) {
  .band__head {
    margin-bottom: 1.75rem;
  }
  .band__link {
    white-space: normal;
  }
  .trust__logos {
    gap: 0.75rem;
  }
  .panel--glass,
  .company-panel {
    backdrop-filter: none;
  }
  .cta-final__actions {
    flex-direction: column;
  }
  .location__btns .btn,
  .reviews-cta .btn {
    width: 100%;
  }
}

/* Light-band contact / form / location polish */
.band--light .contact-list li,
.band--muted .contact-list li {
  background: #fff;
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.band--light .contact-list a:hover,
.band--muted .contact-list a:hover {
  color: var(--el-accent);
}
.band--light .panel,
.band--muted .panel,
.band--light .panel--glass,
.band--muted .panel--glass {
  background: #fff;
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.band--light .panel--glass {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(23, 107, 255, 0.07), transparent 55%),
    #fff;
}
.band--light .fields label,
.band--muted .fields label {
  color: var(--el-ink-soft);
}
.band--light .fields input,
.band--light .fields select,
.band--light .fields textarea,
.band--muted .fields input,
.band--muted .fields select,
.band--muted .fields textarea {
  background: #fff;
  color: var(--el-ink);
  border-color: var(--el-light-border);
}
.band--light .fields select option,
.band--muted .fields select option {
  background: #fff;
  color: var(--el-ink);
}
.band--light .fields input::placeholder,
.band--light .fields textarea::placeholder,
.band--muted .fields input::placeholder,
.band--muted .fields textarea::placeholder {
  color: rgba(91, 101, 119, 0.75);
}
.band--light .location__info,
.band--muted .location__info {
  background: #fff;
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.band--light .location-tabs__btn,
.band--muted .location-tabs__btn {
  background: var(--el-light-muted, #f3f5f8);
  border-color: var(--el-light-border);
  color: var(--el-ink-muted);
}
.band--light .location-tabs__btn:hover,
.band--muted .location-tabs__btn:hover {
  color: var(--el-ink);
  border-color: var(--el-light-border-strong, #c9d2e0);
}
.band--light .location-tabs__btn.is-active,
.band--muted .location-tabs__btn.is-active,
.band--light .location-tabs__btn[aria-selected="true"],
.band--muted .location-tabs__btn[aria-selected="true"] {
  color: var(--el-ink);
  border-color: rgba(23, 107, 255, 0.45);
  background: rgba(23, 107, 255, 0.1);
}
.band--light .location__toolbar,
.band--muted .location__toolbar {
  background: #fff;
  border-bottom-color: var(--el-light-border);
  color: var(--el-ink);
}
.band--light .branch-map,
.band--muted .branch-map {
  border-color: var(--el-light-border);
  box-shadow: var(--el-light-shadow);
}
.band--light .branch-map__hint,
.band--muted .branch-map__hint {
  background: rgba(255, 255, 255, 0.92);
  color: var(--el-ink-muted);
  border: 1px solid var(--el-light-border);
}
