/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 28, 20, .88) 0%, rgba(16, 28, 20, .66) 42%, rgba(16, 28, 20, .35) 70%, rgba(16, 28, 20, .55) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  padding: 60px 0;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 800;
}

.hero-copy h1 .line-charcoal {
  color: var(--white);
  display: block;
}

.hero-copy h1 .line-green {
  color: #9fe0b8;
  display: block;
}

.hero-copy p {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255, 255, 255, .82);
  max-width: 46ch;
  line-height: 1.7;
}

.hero-online-text strong {
  color: var(--white);
}

.hero-online-text span {
  color: rgba(255, 255, 255, .7);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-online {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--warm-white);
  object-fit: cover;
  margin-left: -12px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-online-text {
  font-size: 14px;
  line-height: 1.4;
}

.hero-online-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.hero-online-text span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-float-card {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  background: rgba(23, 53, 38, .9);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-med);
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.hero-float-card .fc-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-float-card .fc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card .fc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--white);
}

.hero-float-card .fc-sub {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .8);
}

.hero-float-card .fc-sub strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

/* Feature bar */
.feature-bar-wrap {
  max-width: var(--content-max);
  margin: -46px auto 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.feature-bar {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-med);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 30px 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item .fi-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .fi-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-green);
}

.feature-item .fi-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-item .fi-text span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12.5px;
}

/* ==========================================================================
   WHAT WE DO / SERVICES
   ========================================================================== */
.services-section {
  background: var(--cream);
  padding: 40px 0 20px 0; /* Reduced height by another 10px */
}

/* Allow this section to grow naturally instead of locking it to exactly 1 screen height */
.services-section.viewport-section {
  height: auto;
  max-height: none;
  min-height: auto;
}

.services-grid-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
}

.services-grid-layout>* {
  width: 100%;
}

.services-grid-layout>.services-copy {
  margin-bottom: 1%;
}

.services-copy h2 {
  margin-bottom: 18px;
}

.services-copy p {
  margin-bottom: 30px;
}

.service-cards-arrows {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.service-cards.marquee-viewport {
  margin-top: 4px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(230px, 27vw, 300px);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-med);
}

.service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
    padding: 18px 18px 32px;
    min-height: min-content;
  }

.service-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-card-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--dark-green);
}

.service-card h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   TEAM / PERFORMANCE BANNER (Fully Responsive Replacement)
   ========================================================================== */

/* 1. Ensure border-box sizing across the section so padding never adds extra width */
.performance-section,
.performance-section * {
  box-sizing: border-box;
}

.performance-section {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* 2. Main Grid Container */
.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  border-radius: var(--r-xl, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-med, 0 8px 24px rgba(0, 0, 0, 0.12));
}

/* 3. Photo & Panel items: min-width: 0 is mandatory in CSS Grid to allow shrinkage */
.performance-photo,
.performance-panel {
  min-width: 0;
  width: 100%;
}

/* --- Photo Column --- */
.performance-photo {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 32px);
}

.performance-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.performance-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(16, 40, 29, 0.75) 0%, 
    rgba(16, 40, 29, 0.25) 45%, 
    rgba(16, 40, 29, 0.75) 100%
  );
  z-index: 1;
}

/* Changed from absolute to relative inside flex container to prevent overlap */
.performance-overlay-title {
  position: relative;
  z-index: 2;
  color: var(--white, #fff);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.performance-stat-card {
  position: relative;
  z-index: 2;
  background: var(--white, #fff);
  border-radius: var(--r-lg, 12px);
  padding: 14px 16px;
  box-shadow: var(--shadow-med, 0 8px 24px rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

.performance-stat-card .psc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-green, #e8f5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.performance-stat-card .psc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-green, #173526);
}

.performance-stat-card .psc-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.performance-stat-card .psc-label {
  font-size: 11.5px;
  color: var(--muted, #666);
  margin-top: 3px;
  line-height: 1.3;
}

/* --- Panel Column --- */
.performance-panel {
  background: var(--dark-green, #173526);
  color: var(--white, #fff);
  padding: clamp(32px, 5vw, 52px) clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.performance-panel h2 {
  color: var(--white, #fff);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.15;
  margin-bottom: clamp(24px, 3vw, 34px);
  overflow-wrap: break-word;
  word-break: break-word;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  width: 100%;
}

.stat-item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.stat-item .si-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-item .si-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white, #fff);
}

.stat-item > div {
  min-width: 0; /* Allows text to wrap instead of pushing boundaries */
}

.stat-item .si-num {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.1;
}

.stat-item .si-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  overflow-wrap: break-word;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet & Mobile: Stack vertically */
@media screen and (max-width: 860px) {
  .performance-grid {
    grid-template-columns: 1fr;
  }

  .performance-photo {
    min-height: 300px;
    height: auto;
  }

  /* 2x2 grid for stats on medium screens with proper column boundaries */
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

/* Phones */
@media screen and (max-width: 540px) {
  .performance-photo {
    min-height: 240px;
    padding: 18px;
  }

  .stat-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .performance-stat-card {
    padding: 10px 12px;
  }

  .performance-stat-card .psc-icon {
    width: 32px;
    height: 32px;
  }

  .performance-stat-card .psc-num {
    font-size: 18px;
  }
}/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  gap: 20px;
}

.industries-track-wrap {
  overflow: hidden;
}

.industries-track {
  gap: 18px;
  padding-bottom: 4px;
}

.industry-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.industry-card:hover img {
  transform: scale(1.07);
}

.industry-card .ic-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 40, 29, 0) 40%, rgba(16, 40, 29, .75) 100%);
}

.industry-card .ic-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  z-index: 2;
}

.industry-card.is-cta {
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
}

.industry-card.is-cta .ic-cta-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.industry-card.is-cta .ic-cta-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card.is-cta .ic-cta-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

.industry-card.is-cta:hover .ic-cta-arrow {
  background: var(--white);
}

.industry-card.is-cta:hover .ic-cta-arrow svg {
  stroke: var(--dark-green);
}

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.why-copy h2 {
  margin-bottom: 22px;
}

.why-checklist {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-circle svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-med);
  position: relative;
  z-index: 2;
}

.testimonial-quote-mark {
  font-size: 54px;
  color: var(--light-green);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.testimonial-card p.quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 22px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong {
  display: block;
  font-size: 14.5px;
}

.testimonial-person span {
  font-size: 12.5px;
  color: var(--muted);
}

.why-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 480px;
  margin-left: -60px;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   TECHNOLOGY STRIP
   ========================================================================== */
.tech-strip {
  background: var(--dark-green);
  padding: 44px 0;
}

.tech-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
}

.tech-item:last-child {
  border-right: none;
}

.tech-item .ti-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-item .ti-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.tech-item span {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

/* ==========================================================================
   GLOBAL PRESENCE
   ========================================================================== */
.global-section {
  background: var(--cream);
}

.global-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.global-copy p {
  margin: 18px 0 26px;
}

.global-map {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.global-map svg {
  width: 100%;
  height: auto;
  opacity: .9;
}

.global-locations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  width: 100%;
}

.global-locations-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  background: var(--white);
  padding: 6px 12px 6px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.global-locations-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark-green);
  fill: var(--dark-green);
  flex-shrink: 0;
}

.global-cta-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-med);
  position: relative;
  overflow: hidden;
}

.global-cta-card h3 {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.global-cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 22px;
}

.global-cta-phone svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark-green);
}

.global-leaf {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  opacity: .5;
}

.global-leaf svg {
  stroke: var(--green);
}
/* ==========================================================================
   TRUSTED BRANDS
   ========================================================================== */
.brands-section {
  padding: var(--sp-8) 0;
  text-align: center;
}

.brands-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 34px;
}

.brands-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card container for each logo or brand name */
.brand-card {
  background-color: var(--warm-white);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
  transform: translateY(-2px);
}

.brand-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--muted);
  opacity: .65;
  filter: grayscale(1);
  transition: opacity var(--transition);
}

.brand-card:hover .brand-name {
  opacity: 1;
}

/* ==========================================================================
   LOGO IMAGE / MAP IMAGE / BRAND LOGOS
   ========================================================================== */
.world-map-img {
  width: 100%;
  height: auto;
  opacity: .85;
  filter: sepia(1) saturate(0.5) hue-rotate(60deg) brightness(1.05);
}

.brand-logo {
  display: block;
  height: 135px;
  width: auto;
  /* max-width: 130px; */
  object-fit: contain;
  opacity: .85;
  transition: opacity var(--transition);
}

.brand-card:hover .brand-logo {
  opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .brands-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* ==========================================================================
   CARD ALIGNMENT FIXES
   ========================================================================== */
.service-cards {
  align-items: stretch;
}

.service-card {
  height: 100%;
  min-height: 380px;
  justify-content: flex-start;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body p {
}

.stat-grid {
  align-items: stretch;
}

.stat-item {
  height: 100%;
}

.tech-strip-grid {
  align-items: center;
}

.industries-track {
  align-items: stretch;
}

.why-checklist li {
  align-items: center;
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-float-card {
    right: 24px;
    bottom: 24px;
  }

  .feature-bar-wrap {
    margin-top: 0;
    padding: 0 24px;
    margin-bottom: 0;
  }

  .feature-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
    border-radius: var(--r-lg);
  }

  .feature-item {
    border-right: none;
    padding: 6px 12px;
  }

  .services-grid-layout {
    grid-template-columns: 1fr;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .performance-photo {
    min-height: 320px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-photo {
    display: none;
  }

  .global-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .global-copy .btn {
    margin: 0 auto;
  }

  .global-map {
    order: 3;
    margin-top: 10px;
  }

  .global-locations-list li {
    font-size: 11px;
    padding: 5px 10px 5px 7px;
  }

  .tech-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .tech-item {
    border-right: none;
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero-copy p {
    font-size: 15.5px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-float-card {
    right: 14px;
    bottom: 14px;
    max-width: 170px;
    padding: 14px 16px;
  }

  .feature-bar {
    grid-template-columns: 1fr 1fr;
    padding: 22px 16px;
  }


  .performance-panel {
    padding: 36px 24px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .performance-overlay-title {
    font-size: 20px;
    top: 20px;
    left: 20px;
  }

  .performance-stat-card {
    left: 20px;
    bottom: 20px;
    padding: 14px 16px;
    max-width: 190px;
  }

  .industries-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    order: -1;
  }

  .tech-strip-grid {
    grid-template-columns: 1fr;
  }

  .tech-item {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding: 16px 4px;
  }

  .tech-item:last-child {
    border-bottom: none;
  }

  .brands-row {
    gap: 26px 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-to-top-btn {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TEAM / PERFORMANCE BANNER (Fitted to Viewport)
   ========================================================================== */
.performance-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    margin-top: 64px;
  }

.performance-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  min-height: 0;
  /* Clears the rigid 480px min-height */
  max-height: calc(100vh - var(--header-h) - 48px);
  max-height: calc(100svh - var(--header-h) - 48px);
}

.performance-photo {
  position: relative;
  min-height: 0;
  height: 100%;
}

.performance-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.performance-overlay-title {
  position: absolute;
  top: clamp(16px, 2.5vh, 28px);
  left: clamp(16px, 2.5vw, 28px);
  z-index: 2;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.15;
}

.performance-stat-card {
  position: absolute;
  left: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vh, 28px);
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(12px, 1.5vh, 16px) clamp(14px, 1.5vw, 18px);
  box-shadow: var(--shadow-med);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.performance-stat-card .psc-num {
  font-size: 20px;
}

.performance-panel {
    background: var(--dark-green);
    color: var(--white);
    padding: clamp(24px, 4vh, 44px) clamp(24px, 3.5vw, 40px);
    display: flex;
    flex-direction: column;
   
    overflow: hidden;
  }

  .performance-panel h2 {
    color: var(--white);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.1;
    margin-bottom: clamp(16px, 2.5vh, 28px);
  }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vh, 22px);
}

.stat-item .si-num {
  font-size: clamp(18px, 1.8vw, 22px);
}

.stat-item .si-label {
  font-size: 12px;
}
.world-map-img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(21%) saturate(1212%) hue-rotate(98deg) brightness(60%) contrast(92%);
}