/* Tech page overrides: allow scroll */
html:has(body.tech-page) {
  height: auto;
  min-height: 100vh;
  overflow: auto;
}

body.tech-page {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  display: block;
  flex-direction: unset;
}

/* ── Header ─────────────────────────────── */
.tech-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tech-logo-link {
  display: inline-block;
}

.tech-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.tech-header-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.35rem 0;
}

.tech-header-nav a:hover {
  color: var(--yellow);
}

.tech-header-nav a.tech-header-nav__link--active {
  color: var(--yellow);
  font-weight: 600;
  box-shadow: 0 2px 0 0 currentColor;
}

/* Hamburger: hidden on desktop */
.tech-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.tech-hamburger:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.tech-hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.tech-header.is-open .tech-hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.tech-header.is-open .tech-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.tech-header.is-open .tech-hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Close button (X) – visible only in full-page mobile menu */
.tech-nav-close {
  display: none;
}

@media (max-width: 767px) {
  .tech-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 11;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .tech-nav-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .tech-nav-close-icon {
    position: relative;
    width: 20px;
    height: 20px;
  }

  .tech-nav-close-icon::before,
  .tech-nav-close-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .tech-nav-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* Mobile: show hamburger, full-page overlay when open */
@media (max-width: 767px) {
  .tech-hamburger {
    display: flex;
  }

  .tech-header-nav {
    position: fixed;
    inset: 0;
    z-index: 9;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: var(--black);
    max-height: none;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .tech-header.is-open .tech-header-nav {
    opacity: 1;
    visibility: visible;
  }

  .tech-header-nav a {
    padding: 1rem 1rem;
    border-radius: 6px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .tech-header-nav a.tech-header-nav__link--active {
    box-shadow: none;
    background: rgba(255, 212, 0, 0.12);
    border-radius: 6px;
  }
}

.tech-logo {
  height: 3.5rem;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.tech-logo--mobile {
  display: none;
}

@media (max-width: 767px) {
  .tech-logo--desktop {
    display: none;
  }

  .tech-logo--mobile {
    display: block;
    height: 2.5rem;
    max-width: 120px;
  }
}

@media (min-width: 768px) {
  .tech-logo {
    height: 4rem;
    max-width: 360px;
  }
}

/* ── Tech hero: use home hero classes from styles.css, only override context ── */
.tech-hero.hero {
  flex: none;
  min-height: 70vh;
}

/* ── Section layout (100% width) ───────── */
.tech-section {
  padding: 3.5rem 1.5rem;
  width: 100%;
  margin: 0;
}

/* Grid effect SVG background (Sound Familiar, Our Values, We partner with you) */
.tech-section--grid-bg {
  position: relative;
  overflow: hidden;
}

.tech-section--grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/images_website/grid-effect-svg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

@media (max-width: 767px) {
  .tech-section--grid-bg::before {
    display: none;
  }
}

.tech-section--grid-bg > * {
  position: relative;
  z-index: 1;
}

.tech-section .tech-headline,
.tech-section .tech-body,
.tech-section .tech-cards,
.tech-section .tech-services,
.tech-section .tech-team,
.tech-section .tech-proof,
.tech-section .tech-pillars,
.tech-section .tech-testimonials,
.tech-section .tech-values {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tech-section--dark {
  background: rgba(255, 255, 255, 0.03);
}

/* Section tints + shadows (break monotony) */
.tech-section {
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tech-section--tint-warm {
  background: linear-gradient(
    180deg,
    rgba(28, 26, 0, 0.15) 0%,
    var(--black) 100%
  );
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 240, 0, 0.04);
}

.tech-section--tint-cool {
  background: linear-gradient(
    180deg,
    rgba(0, 12, 24, 0.2) 0%,
    var(--black) 100%
  );
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tech-section--tint-subtle {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    var(--black) 100%
  );
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
}

.tech-section--dark.tech-section--tint-warm {
  background: linear-gradient(
    180deg,
    rgba(40, 36, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.97) 100%
  );
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 240, 0, 0.05);
}

.tech-section--dark.tech-section--tint-cool {
  background: linear-gradient(
    180deg,
    rgba(0, 18, 32, 0.25) 0%,
    rgba(0, 0, 0, 0.97) 100%
  );
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tech-section--dark.tech-section--tint-subtle {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(0, 0, 0, 0.96) 100%
  );
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.22);
}

/* Alternate section depth / accent (differentiate sections without grid) */
.tech-section--depth-recessed {
  box-shadow:
    inset 0 2px 20px rgba(0, 0, 0, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.tech-section--depth-raised {
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tech-section--edge-accent {
  border-left: 4px solid rgba(255, 240, 0, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.tech-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

.tech-icon {
  display: inline-flex;
  color: var(--yellow);
  flex-shrink: 0;
}

.tech-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.tech-headline--center {
  text-align: center;
}

.tech-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tech-body p {
  margin: 0 0 1rem;
}

.tech-body p:last-child {
  margin-bottom: 0;
}

/* ── Problem cards ──────────────────────── */
.tech-cards {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.5rem;
}

.tech-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 240, 0, 0.4);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 240, 0, 0.15);
}

.tech-card:hover .tech-card-icon {
  opacity: 1;
}

.tech-card-icon {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  display: flex;
  color: var(--yellow);
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.tech-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 0.5rem;
}

.tech-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (min-width: 640px) {
  .tech-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .tech-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

/* ── Services ───────────────────────────── */
.tech-services {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.tech-service {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-service:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tech-service-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  color: var(--yellow);
  opacity: 0.9;
}

.tech-service-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.35rem;
}

.tech-service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.tech-service p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ── Team (side by side + profile images) ─ */
.tech-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 720px;
}

@media (max-width: 639px) {
  .tech-team {
    grid-template-columns: 1fr;
  }
}

.tech-team-card {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.tech-team-pfp-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.tech-team-pfp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .tech-team-pfp-wrap {
    width: 140px;
    height: 140px;
    aspect-ratio: unset;
    border-radius: 50%;
    margin: 1.5rem auto 0;
    border: 3px solid rgba(255, 240, 0, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .tech-team-pfp {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.tech-team-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0;
  padding: 1rem 1.5rem 0.2rem;
}

.tech-team-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  padding: 0 1.5rem;
}

.tech-team-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  padding: 1rem 1.5rem 0;
  text-align: left;
}

.tech-team-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  margin: 0 1.5rem 1.5rem;
  padding: 0.5rem 0;
  transition:
    gap 0.2s ease,
    opacity 0.2s ease;
  align-self: flex-start;
}

.tech-team-link:hover {
  opacity: 0.9;
}

.tech-team-link:hover .tech-team-link-arrow {
  transform: translateX(4px);
}

.tech-team-link-icon {
  display: inline-flex;
  color: currentColor;
}

.tech-team-link-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ── Proof points ────────────────────────── */
.tech-proof {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.tech-proof li {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.tech-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ── Pillars (How We Work) ───────────────── */
.tech-pillars {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tech-pillar {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.tech-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 240, 0, 0.4);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 240, 0, 0.15);
}

.tech-pillar-icon {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  display: flex;
  color: var(--yellow);
  opacity: 0.9;
}

.tech-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 0.5rem;
}

.tech-pillar p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (min-width: 640px) {
  .tech-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Trusted by (marquee) ────────────────── */
.tech-trusted {
  border-top: 3px solid var(--yellow);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.tech-trusted--top .tech-label {
  justify-content: center;
}

.tech-trusted .tech-label {
  text-align: center;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.tech-trusted-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 1.25rem auto 0;
  max-width: 560px;
  padding: 0 1.5rem;
}

/* ── Testimonials ───────────────────────── */
.tech-testimonials {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tech-testimonial {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  margin: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--yellow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.tech-testimonial:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 240, 0, 0.12);
  border-left-color: var(--yellow);
}

.tech-testimonial-quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.35;
}

.tech-testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.25rem;
  font-style: italic;
  padding-left: 0.5rem;
}

.tech-testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.tech-testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tech-testimonial-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-style: normal;
  display: block;
}

.tech-testimonial-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.tech-testimonial-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.tech-testimonial-link:hover {
  opacity: 0.9;
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .tech-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Values (hoverable cards) ────────────── */
.tech-values {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.tech-values li {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.tech-values li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 240, 0, 0.4);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 240, 0, 0.15);
}

.tech-value-icon {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  display: flex;
  color: var(--yellow);
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.tech-values li:hover .tech-value-icon {
  opacity: 1;
}

.tech-values strong {
  color: var(--yellow);
  font-weight: 600;
}

@media (min-width: 640px) {
  .tech-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .tech-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── CTA ─────────────────────────────────── */
.tech-cta {
  text-align: center;
  padding: 4rem 1.5rem;
}

.tech-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}

.tech-cta-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 1.5rem;
  max-width: 560px;
  padding: 0 1.5rem;
}

.tech-cta-btn {
  display: inline-block;
  margin-bottom: 1rem;
}

.tech-cta-email {
  margin: 0;
}

.tech-cta-email a {
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
}

.tech-cta-email a:hover {
  text-decoration: underline;
}

/* ── Footer ─────────────────────────────── */
.tech-footer {
  background: #0c0c0c;
  border-top: 3px solid var(--yellow);
  padding: 3.5rem 1.5rem 2.5rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.tech-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.tech-footer-logo {
  display: block;
}

.tech-footer-logo img {
  height: 4rem;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  opacity: 0.95;
}

.tech-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 2rem;
}

.tech-footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.35rem 0;
}

.tech-footer-links a:hover {
  color: var(--yellow);
}

.tech-footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 400px;
}
