/* ============================================
   GROVE — Page Styles
   Uses root variables from base.css
   ============================================ */

/* --- Layout primitives --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-padding-x);
  position: relative;
  overflow: visible;
}

.section {
  padding-block: var(--section-padding-y);
}

.section--light {
  background-color: var(--light-azure);
}

.section--white {
  background-color: var(--white);
}

.section--dark {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* --- Section header pattern --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 42rem;
  margin-inline: auto;
}

.section-subtitle {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  color: var(--dark-text-soft);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.section-header--line .section-subtitle {
  margin-bottom: var(--space-3);
}

.section-header--line .section-subtitle::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--vivid-azure);
  margin-top: var(--space-3);
  margin-inline: auto;
}

.section-header--line.section-header--left .section-subtitle::after {
  margin-inline: 0;
}

/* Impact: two dashes above subtitle - left aligned */
.section-header--impact {
  text-align: center;
}

.section-header--impact .section-subtitle {
  margin-bottom: var(--space-2);
  text-align: center;
}

.section-header--impact .section-subtitle::after {
  display: none;
}

/* Testimonials: two dashes ABOVE subtitle */
.section-header--testimonials {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header--testimonials .section-header__dashes-group {
  justify-content: center;
}

.section-header--testimonials .section-subtitle {
  margin-bottom: var(--space-2);
}

.section-header--testimonials .section-subtitle::after {
  display: none;
}

.section-header__dash {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--vivid-azure);
  flex-shrink: 0;
  margin: 0;
}


.section-title--testimonials {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section--light .section-subtitle,
.section--white .section-subtitle {
  color: var(--dark-text-soft);
}

.section--dark .section-subtitle {
  color: var(--light-text);
}

.section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  color: var(--dark-text);
}

.section--dark .section-title {
  color: var(--white);
}

/* ============================================
   HEADER (screenshot: logo+nav | dividers | contact stacked | social | white bottom line)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: background-color 0.2s ease;
  overflow: visible;
}

.header:hover,
.header.is-scrolled {
  background-color: var(--header-scrolled-bg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(3.5rem, 10vw, 4.5rem);
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: inherit;
  overflow: visible;
}

.header__left {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 4vw, var(--space-8));
  min-width: 0;
  flex-shrink: 0;
  position: relative;
  z-index: inherit;
  overflow: visible;
}

.header__right {
  display: none;
  align-items: center;
  gap: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.header__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin: 0 clamp(var(--space-2), 2vw, var(--space-4));
}

.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.header__address,
.header__email {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.25vw, 13px);
  font-weight: var(--fw-normal);
  line-height: 1.4;
}

.header__address-text {
  display: block;
}

.header__email {
  text-decoration: underline;
}

.header__address:hover,
.header__email:hover {
  color: var(--vivid-azure);
}

.header__address svg,
.header__email svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.header__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 2px;
  background-color: var(--vivid-azure, #edf3f6);
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  color: var(--dark-azure);
}

.header__social-link:hover {
  color: var(--light-azure);
}

.header__social-link svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 48em) {
  .header__inner {
    flex-wrap: nowrap;
  }

  .header__right {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 47.99em) {
  .header__inner {
    min-height: 3.5rem;
  }
}

.header__logo {
  flex-shrink: 0;
  display: block;
}

.header__logo img {
  display: block;
  height: clamp(2rem, 5vw, 2.75rem);
  width: auto;
  max-width: 10rem;
}

.nav {
  display: none;
  position: relative;
  z-index: inherit;
  overflow: visible;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.5vw, var(--space-2));
  min-width: 0;
  flex-wrap: wrap;
  position: relative;
  overflow: visible;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: clamp(var(--space-2), 2vw, var(--space-3)) clamp(var(--space-3), 3vw, var(--space-5));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.nav__link--active {
  color: var(--vivid-azure);
  position: relative;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(var(--space-3), 3vw, var(--space-5));
  right: clamp(var(--space-3), 3vw, var(--space-5));
  height: 2px;
  background-color: var(--vivid-azure);
  border-radius: var(--radius-full);
}

.nav__arrow {
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.nav__item--has-dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 14rem;
  max-width: min(20rem, calc(100vw - 2rem));
  background: var(--primary-blue-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 99999;
  overflow: visible;
  white-space: nowrap;
  pointer-events: none;
  list-style: none;
  margin: 0;
  margin-top: 0;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown li {
  list-style: none;
  margin: 0;
}

.nav__dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  white-space: normal;
  text-decoration: none;
  line-height: 1.5;
}

.nav__dropdown a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 48em) {
  .nav {
    display: block;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: var(--space-2);
  background: transparent;
  border: none;
  color: var(--white);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 48em) {
  .hamburger {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-blue);
  padding: var(--space-8);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  z-index: var(--z-dropdown);
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  min-height: 2.75rem;
  box-sizing: border-box;
  color: var(--light-text-on-dark);
  font-size: clamp(1rem, 4vw, 1.125rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--white);
}

.mobile-nav__item--dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  min-height: 2.75rem;
  box-sizing: border-box;
  background: none;
  border: none;
  color: var(--light-text-on-dark);
  font-size: clamp(1rem, 4vw, 1.125rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.mobile-nav__toggle:hover {
  color: var(--white);
}

.mobile-nav__toggle::after {
  content: '';
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}

.mobile-nav__toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.mobile-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
}

.mobile-nav__sublist[hidden] {
  display: none;
}

.mobile-nav__sublist li {
  margin: 0;
}

.mobile-nav__sublink {
  display: flex;
  align-items: center;
  padding: var(--space-3) var(--space-5) var(--space-3) var(--space-8);
  min-height: 2.75rem;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9375rem, 3.5vw, 1.0625rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__sublink:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 48em) {
  .mobile-nav {
    display: none;
  }
}

/* ============================================
   HERO (100vh, bg image + blue tint, L+R triangles, text 70%, larger fonts)
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--dark-azure);
  color: var(--white);
  overflow: hidden;
}

.hero.has-bg-image {
  background: var(--dark-azure) url('../assets/Home page/Home page.png') center / cover no-repeat;
}

.hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 41, 75, 0.25) 0%, rgba(0, 41, 75, 0.12) 50%, rgba(0, 41, 75, 0.28) 100%);
  z-index: 0;
  pointer-events: none;
}

/* 3 triangles to match screenshot exactly */
.hero__triangle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* 1. LEFT-MOST: Small dark-azure triangle around "Connecting" (behind headline). */
.hero__triangle--behind-connecting {
  top: var(--header-height);
  left: clamp(var(--space-4), 5vw, var(--section-padding-x));
  width: min(7vw, 4.5rem);
  height: min(7vw, 4.5rem);
  background: var(--dark-azure);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* 2. Vivid azure below woman's neck, right: isosceles pointing right. */
.hero__triangle--right-vivid {
  top: 38vh;
  right: 12%;
  width: min(14vw, 9rem);
  height: min(14vw, 9rem);
  background: var(--vivid-azure);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* 3. Large dark azure bottom-right: right angle at bottom-right corner, hypo top-left → bottom-right.
    Opaque. Fills bottom-right. */
.hero__triangle--bottom-right {
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  background: var(--dark-azure);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Arrow images from assets - matching screenshot exactly */
.hero__arrow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

/* Large dark triangle on LEFT edge - behind "Connecting Innovation" */
.hero__arrow--left {
  top: 10%;
  left: 8%;
  width: clamp(8rem, 13vw, 12rem);
  height: auto;
  opacity: 0.4;
  transform: translateX(-35%);
  z-index: 0;
}

/* Small bright blue triangle - just below the woman */
.hero__arrow--small-blue {
  top: 52%;
  left: clamp(1.5rem, 4vw, 3.5rem);
  width: clamp(2.2rem, 4vw, 3.2rem);
  height: auto;
  opacity: 1;
  z-index: 2;
}

/* Large cyan triangle on RIGHT side - middle area */
.hero__arrow--right {
  top: 32%;
  right: 10%;
  width: clamp(8rem, 15vw, 13rem);
  height: auto;
  opacity: 0.9;
  filter: brightness(1.6) saturate(1.4);
  mix-blend-mode: screen;
}

/* Responsive adjustments for arrows on mobile */
@media (max-width: 47.99em) {
  .hero__arrow--left {
    width: clamp(6rem, 12vw, 9rem);
    top: 10%;
    transform: translateX(-40%);
    opacity: 0.35;
  }
  
  .hero__arrow--small-blue {
    top: 50%;
    left: clamp(1.2rem, 3.5vw, 2.5rem);
    width: clamp(1.8rem, 3.8vw, 2.8rem);
  }
  
  .hero__arrow--right {
    top: 32%;
    right: 8%;
    width: clamp(6.5rem, 14vw, 10rem);
    opacity: 0.85;
  }
}

@media (max-width: 35.99em) {
  .hero__arrow--left {
    width: clamp(5rem, 11vw, 7.5rem);
    opacity: 0.3;
    transform: translateX(-42%);
  }
  
  .hero__arrow--small-blue {
    top: 48%;
    left: clamp(1rem, 3vw, 2rem);
    width: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  
  .hero__arrow--right {
    top: 34%;
    right: 6%;
    width: clamp(5.5rem, 13vw, 8rem);
    opacity: 0.8;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--section-padding-x));
  padding-top: var(--header-height);
  padding-bottom: clamp(var(--space-5), 5vh, var(--space-8));
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  max-width: 70%;
  min-width: min(100%, 20rem);
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--white);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: var(--fw-medium);
  margin: 0;
  color: var(--white);
}

.hero__text {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.35vw, 1.125rem);
  font-weight: var(--fw-normal);
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero__text strong {
  color: var(--white);
  font-weight: var(--fw-bold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(var(--space-4), 4vw, var(--space-6));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: clamp(var(--space-3), 2.5vw, var(--space-4)) clamp(var(--space-6), 5vw, var(--space-8));
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn--primary {
  background-color: var(--vivid-azure);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--vivid-azure-hover);
}

.hero__video-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(var(--space-2), 2vw, var(--space-4));
  color: var(--white);
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.hero__video-link:hover {
  color: var(--vivid-azure);
}

.hero__video-icon {
  width: clamp(2.5rem, 4.5vw, 3.125rem);
  height: clamp(2.5rem, 4.5vw, 3.125rem);
  min-width: clamp(2.5rem, 4.5vw, 3.125rem);
  border-radius: 50%;
  background-color: var(--dark-azure);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__video-link:hover .hero__video-icon {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__video-icon svg {
  width: clamp(0.75rem, 1.5vw, 1rem);
  height: clamp(0.75rem, 1.5vw, 1rem);
  margin-left: 2px;
  color: var(--vivid-azure);
}

.hero__video-label {
  font-family: 'Dancing Script', cursive;
  font-weight: 500;
}

@media (max-width: 47.99em) {
  .hero__content {
    max-width: 100%;
  }
}

/* ============================================
   SERVICES GRID — Our Services
   Section: light azure. Cards: no radius, drop shadow.
   Icons: square vivid-azure. Arrow: solid outline only, vivid-azure.
   ============================================ */
.section--services {
  background-color: var(--light-azure);
}

.section-header--services {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-header--services .section-header__dashes-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-3);
  width: 100%;
}

.section-header__dashes-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-3);
  width: 100%;
}

.section-header__dashes-group .section-header__dash {
  display: block;
  width: 1rem;
  height: 2px;
}

.section-header--industries .section-header__dashes-group {
  align-items: flex-start;
  justify-content: flex-start;
}

.section-header--impact .section-header__dashes-group {
  justify-content: center;
}

.section-header__services-subtitle {
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--dark-text-soft);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header--services .section-subtitle::after,
.section-header__services-subtitle::after {
  display: none;
}

.section-title--services {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: #1a1a1a;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 36em) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 64em) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 35.99em) {
  .service-card__icon {
    width: 48px;
    height: 48px;
    bottom: -12px;
    right: 0.75rem;
  }
  .service-card__icon img {
    width: 20px;
    height: 20px;
  }
  .service-card__cta i {
    font-size: 1.5rem;
  }
}

.service-card {
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.service-card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--light-azure);
  overflow: visible;
  flex-shrink: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Square vivid-azure icon at bottom-right of image, overlapping into body */
.service-card__icon {
  position: absolute;
  bottom: -14px;
  right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: var(--vivid-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

.service-card__body {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
}

.service-card__title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--fw-bold);
  color: #1a1a1a;
  flex: 1;
  line-height: 1.3;
}

/* Icon only (fa-circle-right), no wrapper circle; vivid-azure */
.service-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vivid-azure);
  transition: color var(--transition-fast);
}

.service-card__cta:hover {
  color: var(--vivid-azure-hover);
}

.service-card__cta i {
  font-size: 1.75rem;
  line-height: 1;
}

/* ============================================
   INDUSTRIES — 100% width, 50/50 image | content
   Dashed lines + GET TO KNOW US. Pills: light azure bg, FA check vivid azure.
   ============================================ */
.section--industries {
  padding-inline: 0;
}

.section--industries .section-title {
  margin-bottom: 0;
}

.industries {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 28rem;
}

@media (min-width: 64em) {
  .industries {
    grid-template-columns: 1fr 1fr;
    min-height: 32rem;
  }
}

.industries__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-azure);
}

@media (min-width: 64em) {
  .industries__image {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.industries__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries__content {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header--industries {
  text-align: left;
  max-width: none;
  margin-inline: 0;
  margin-bottom: var(--space-8);
}


.section-header__industries-subtitle {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  color: var(--dark-text-soft);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.section-header--industries .section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  color: var(--dark-text);
}

.industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 36em) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--light-azure);
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
  color: var(--dark-text);
  transition: box-shadow var(--transition-fast);
}

.industry-pill:hover {
  box-shadow: var(--shadow-sm);
}

.industry-pill__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--vivid-azure);
}

/* ============================================
   WHAT SETS GROVE APART — light azure section, 4 cards
   Two dashed lines + WHAT WE DO + title (centered). White cards, drop shadow.
   Icon: vivid azure square, white border, bottom-center overlap. Text semi-bold.
   ============================================ */
.section--apart {
  background-color: var(--light-azure);
}

.section-header--apart {
  text-align: center;
  margin-bottom: var(--space-12);
}


.section-header__apart-subtitle {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  color: var(--dark-text-soft);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.section-header--apart .section-title {
  color: var(--dark-text);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 36em) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64em) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
}

@media (max-width: 35.99em) {
  .features-grid {
    gap: var(--space-5);
  }
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: visible;
  transition: box-shadow var(--transition-base);
}

.feature-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.feature-card__image {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: visible;
  background: var(--light-azure);
  border-radius: 8px 8px 0 0;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

/* Vivid azure square, white border, bottom-center of image, overlapping into text */
.feature-card__icon {
  position: absolute;
  bottom: -12px;
  left: 87%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--vivid-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.feature-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

.feature-card__body {
  padding: var(--space-6);
  padding-top: calc(var(--space-6) + 0.5rem);
}

.feature-card__text {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--description-grey);
  line-height: var(--lh-relaxed);
  margin: 0;
  text-align: left;
}

/* ============================================
   IMPACT NUMBERS — light azure section, 2x2 grid
   Two dashed lines + ACHIEVED CATEGORIES + title. Thin vivid-azure line
   between top and bottom row. Labels: description-grey, normal weight.
   Icons: light grey square bg, no shadow.
   ============================================ */
.section--impact {
  background-color: var(--white);
}

.section--impact .section-subtitle {
  color: var(--dark-text-soft);
  text-transform: uppercase;
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  letter-spacing: var(--ls-wide);
  text-align: center;
}

.section--impact .section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 60rem;
  margin-inline: auto;
}

@media (min-width: 36em) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.stats-grid__separator {
  display: none;
}

@media (min-width: 36em) {
  .stats-grid__separator {
    display: block;
    height: 1px;
    background-color: var(--vivid-azure);
    grid-row: 2;
    align-self: end;
  }
  
  /* First separator under first stat block */
  .stats-grid__separator:nth-child(3) {
    grid-column: 1;
    width: calc(100% - var(--space-8));
    margin-right: var(--space-8);
    justify-self: start;
    margin-top: var(--space-2);
  }
  
  /* Second separator under second stat block */
  .stats-grid__separator:nth-child(4) {
    grid-column: 2;
    width: calc(100% - var(--space-8));
    margin-left: var(--space-8);
    justify-self: end;
    margin-top: var(--space-2);
  }
  
  .stat-block:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  
  .stat-block:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .stat-block:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }
  
  .stat-block:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }
}

.stat-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--space-6);
  padding: var(--space-8) var(--space-6);
}

@media (min-width: 36em) {
  .stat-block {
    padding: var(--space-10) var(--space-8);
    align-items: flex-start;
    gap: var(--space-6);
    justify-content: flex-end;
  }
  
  /* Top row - padding for separator space */
  .stat-block:nth-child(1),
  .stat-block:nth-child(2) {
    padding-bottom: var(--space-10);
    border-bottom: none;
  }
  
  /* Bottom row - spacing */
  .stat-block:nth-child(5),
  .stat-block:nth-child(6) {
    padding-top: var(--space-10);
    border-bottom: none;
  }
}

.stat-block__content {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
}

.stat-block__number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: var(--space-2);
  text-align: right;
  display: block;
}

.stat-block__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  color: var(--description-grey);
  margin-bottom: 0;
  line-height: var(--lh-normal);
  text-align: right;
  display: block;
}

.stat-block__icon-wrap {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-md);
  background: var(--impact-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  margin-top: 0;
}

.stat-block__icon-wrap img,
.stat-block__icon-wrap svg {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

/* Responsive adjustments for mobile */
@media (max-width: 35.99em) {
  .stat-block {
    padding: var(--space-6) var(--space-4);
  }
  
  .stat-block:not(:last-child) {
    border-bottom: 1px solid var(--light-grey-border);
  }
}

/* ============================================
   BANNER (Technical Recruiting)
   ============================================ */
.banner {
  position: relative;
  padding: var(--space-16) var(--section-padding-x);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.banner.has-bg-image {
  background: var(--primary-blue) url('../assets/Home page/Technical recruiting heading banner.png') center / cover no-repeat;
}

.banner.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

.banner__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
}

.banner__title {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-4);
  color: var(--white);
  line-height: var(--lh-tight);
}

.banner__dashes-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-6);
}

.banner__dash {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--vivid-azure);
  flex-shrink: 0;
}

.banner__text {
  color: var(--white);
  font-size: var(--fs-md);
  font-weight: var(--fw-normal);
  margin: 0;
  line-height: var(--lh-relaxed);
  text-align: center;
}

/* ============================================
   TESTIMONIALS (screenshot: OUR FEEDBACK LIST flanked by dashes,
   What They're Saying, 4 cards, light gray, 4/5 vs 5/5 stars,
   quote icon bottom-right overlapping)
   ============================================ */
.section--testimonials {
  background-color: var(--white);
  background-image: url('../assets/Home page/Dotted pattern-our-feedback.png');
  background-size: auto;
  background-repeat: repeat;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 36em) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64em) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
}

.testimonial-card {
  position: relative;
  background: var(--light-grey-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  transition: box-shadow var(--transition-base);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.testimonial-card__stars .star-filled {
  width: 1rem;
  height: 1rem;
  color: var(--vivid-azure);
}

.testimonial-card__stars .star-outline {
  width: 1rem;
  height: 1rem;
  color: var(--light-grey-border);
}

.testimonial-card__quote {
  font-size: var(--fs-sm);
  color: var(--dark-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-3);
  flex: 1;
}

.testimonial-card__author {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--dark-text);
  margin-bottom: 0;
}

.testimonial-card__quote-icon {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 3.5rem;
  height: 3.5rem;
  color: var(--vivid-azure);
  opacity: 0.6;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.testimonial-card__quote-icon img,
.testimonial-card__quote-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.section-header--contact {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header--contact .section-header__dashes-group {
  justify-content: center;
  margin-bottom: var(--space-3);
}

.section-header--contact .section-header__dash {
  background: #7dd3f0;
  width: 1.5rem;
  height: 2px;
}

.section-header--contact .section-subtitle {
  color: #6b9fc7;
  margin-bottom: var(--space-2);
}

.section-header--contact .section-title {
  color: #00294b;
  font-weight: var(--fw-bold);
}

.contact-form-wrap {
  max-width: 36rem;
  margin-inline: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

@media (max-width: 35.99em) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: none;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--fs-md);
  background: var(--light-azure);
  border: 1px solid #e0e8eb;
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--dark-text-soft);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 2px var(--vivid-azure);
}

.form-textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-input.error,
.form-textarea.error {
  border-color: #dc3545;
}

.btn--submit {
  width: auto;
  padding: var(--space-4) var(--space-8);
  margin-top: var(--space-2);
  margin-inline: 0;
  display: inline-block;
  background-color: var(--vivid-azure);
  color: var(--white);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--primary-blue);
  color: var(--light-text-on-dark);
  padding-block: var(--space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 36em) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64em) {
  .footer__grid {
    grid-template-columns: 2.2fr 1.2fr 1.2fr 1.5fr;
    gap: var(--space-8);
  }
}

.footer__nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 64em) {
  .footer__nav-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-6);
  }
  
  .footer__nav-wrapper > div:first-child,
  .footer__nav-wrapper > div:nth-child(2) {
    grid-row: 1;
    min-width: 0;
  }
  
  .footer__social-wrapper {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 75em) {
  .footer__grid {
    grid-template-columns: 2.5fr 1.3fr 1.3fr 1.5fr;
    gap: var(--space-10);
  }
}

.footer__brand .footer__logo {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-4);
  display: inline-block;
}

.footer__brand .footer__logo img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 8rem;
}

.footer__brand p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-6);
  color: var(--light-text-on-dark);
}

.footer__subscribe-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-3);
  display: block;
}

.footer__subscribe-form {
  display: flex;
  gap: 0;
  max-width: 20rem;
}

.footer__subscribe-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-sm);
  background: var(--primary-blue-dark);
  border: var(--border-width) solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--white);
}

.footer__subscribe-input::placeholder {
  color: var(--light-text);
}

.footer__subscribe-btn {
  padding: var(--space-3);
  width: 3rem;
  height: 3rem;
  background: var(--vivid-azure);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__subscribe-btn:hover {
  background: var(--vivid-azure-hover);
}

.footer__heading {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-5);
  white-space: nowrap;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: var(--light-text-on-dark);
}

.footer__links a:hover {
  color: var(--vivid-azure);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
  color: var(--light-text-on-dark);
}

.footer__contact-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 2px;
  color: #7dd3f0;
}

.footer__email-link {
  color: var(--white);
  text-decoration: underline;
}

.footer__address-link {
  color: var(--white);
  text-decoration: none;
}

.footer__contact-item--phone {
  flex-direction: column;
  gap: var(--space-1);
}

.footer__contact-item--phone svg {
  display: none;
}

.footer__phone-label {
  color: var(--white);
  font-size: var(--fs-sm);
}

.footer__phone-number {
  color: var(--white);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

a.footer__phone-number {
  text-decoration: none;
}

a.footer__phone-number:hover {
  text-decoration: underline;
}

.footer__social-wrapper {
  margin-top: var(--space-4);
}

.footer__social-wrapper .footer__social {
  justify-content: flex-start;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--white);
  text-align: center;
}

.footer__social {
  display: flex;
  gap: var(--space-2);
}

.footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  color: #333333;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.footer__social a:hover {
  background: var(--white);
  color: #333333;
  opacity: 0.8;
}

.footer__social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: var(--z-modal-backdrop);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 56rem;
  aspect-ratio: 16 / 9;
  background: var(--primary-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-backdrop.is-open .modal {
  transform: scale(1);
}

.modal__video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.modal__video-wrap iframe,
.modal__video-wrap .modal__video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  object-fit: contain;
}

.modal__video {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  .modal {
    max-width: 100%;
    margin: var(--space-4);
    aspect-ratio: 16 / 9;
  }
  .modal__video-wrap .modal__video {
    object-fit: contain;
  }
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background-color var(--transition-fast);
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
