/* ===================================
   STRASS - Business Transformation
   Exact Figma Design Implementation
   =================================== */

/* CSS Custom Properties - Design Tokens */
:root {
  /* Colors */
  --color-primary: #2b92a0;
  --color-primary-dark: #004643;
  --color-dark: #00252a;
  --color-dark-alt: #02312f;
  --color-text-dark: #0a0d11;
  --color-text-secondary: #4b4757;
  --color-text-body: #050503;
  --color-text-muted: #403f3c;
  --color-text-heading: #121821;
  --color-background-light: #e3e6d9;
  --color-white: #ffffff;
  --color-cream: #fbf9f5;

  /* Typography */
  --font-primary: "Avenir", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: "Rethink Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Caramel", Georgia, serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 128px;

  /* Layout */
  --container-max-width: 1440px;
  --content-max-width: 1280px;
  --content-padding: 80px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

p {
  line-height: 1.3;
}

/* Custom Font Faces for Avenir */
@font-face {
  font-family: "Avenir";
  src: local("Avenir Light"), local("AvenirLT-Light");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Avenir";
  src: local("Avenir Roman"), local("AvenirLT-Roman");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Avenir";
  src: local("Avenir Medium"), local("AvenirLT-Medium");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Avenir";
  src: local("Avenir Heavy"), local("AvenirLT-Heavy");
  font-weight: 800;
  font-style: normal;
}

/* Caramel font loaded from Google Fonts */

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  padding: 16px 32px 17px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #248a97;
}

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

.btn-dark:hover {
  background-color: #003a37;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.btn-outline-dark:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-lg {
  padding: 16px 32px 17px;
}

.btn-sm {
  font-size: 18px;
  padding: 16px 32px 17px;
}

.btn svg {
  width: 24px;
  height: 24px;
}

/* ===================================
   HERO AREA (Container for Navbar + Hero)
   =================================== */

.hero-area {
  position: relative;
  width: 100%;
  height: 1000px;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 81px;
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 81px;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.navbar-container {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 84px;
  top: 2px;
}

.logo img {
  height: 80px;
  width: 286px;
  object-fit: cover;
}

.nav-menu {
  position: absolute;
  left: 408px;
  top: 50%;
  transform: translateY(calc(-50% + 1px));
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-dark-alt);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  color: var(--color-primary);
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 1px;
}

.nav-cta {
  position: absolute;
  left: 1241px;
  top: 50%;
  transform: translateY(calc(-50% + 0.5px));
  padding: 16px 32px 17px;
}

/* ===================================
   MOBILE NAVIGATION
   =================================== */

/* Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-white);
  z-index: 999;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--color-primary);
}

/* Mobile Navigation Links */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-dark-alt);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

.mobile-nav-link.active {
  color: var(--color-primary);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  position: absolute;
  left: -169px;
  top: 0;
  width: 1778px;
  height: 1000px;
  background-color: var(--color-dark);
}

.hero-image {
  position: absolute;
  left: 789px;
  top: 282px;
  width: 849px;
  height: 580px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  left: 130px;
  top: 138px;
  width: 807px;
  height: 691px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: flex-end;
  gap: 31px 110px;
  z-index: 10;
}

.hero-title {
  width: 807px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: -3.84px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.hero-title span {
  display: block;
}

.hero-subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 29px;
  height: 174px;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
  width: 625px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary);
  border-radius: 32px;
  width: fit-content;
}

.hero-btn span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.hero-btn svg {
  width: 24px;
  height: 24px;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats {
  background: linear-gradient(180deg, #e3e6d9 0%, #ffffff 100%);
  padding: 84px 0 100px;
}

.stats-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 80px;
}

.stats-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stats-text {
  flex: 1;
  padding: 0 20px 0 0;
}

.stats-heading {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.stats-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.stats-number {
  display: none;
  align-items: center;
  gap: 61px;
}

.stats-divider {
  width: 1px;
  height: 219px;
  background-color: rgba(0, 37, 42, 0.3);
}

.stats-figure {
  width: 216px;
}

.stats-value {
  font-family: "Caramel", serif;
  font-size: 140px;
  line-height: 1.15;
  letter-spacing: 10px;
  color: var(--color-text-dark);
}

.stats-label {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text-dark);
}

.stats-buttons {
  display: flex;
  gap: 16px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  background-color: var(--color-dark);
  padding: 120px 0;
}

.services-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  /* padding: 0 80px; */
}

.services-header {
  text-align: center;
  margin-bottom: 128px;
}

.services-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 16px;
}

.services-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-white);
  max-width: 935px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.service-card {
  position: relative;
  width: 410px;
  min-height: 550px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 230px;
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-gradient {
  display: none;
}

.service-card-content {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--color-text-heading);
}

.service-card-list {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.service-card-list li {
  margin-bottom: 4px;
}

.service-card-list li::before {
  content: "• ";
}

.service-card-list-small {
  font-size: 12px;
}

.service-card-buttons {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.service-card-buttons .btn {
  height: 54px;
}

.service-card-buttons .btn-outline-dark {
  width: 108px;
  padding-left: 32px;
  padding-right: 32px;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */

.testimonial {
  background-color: var(--color-white);
  padding: 120px 0;
}

.testimonial-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 80px;
}

.testimonial-content {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-label {
  font-family: var(--font-primary);
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 32px;
}

.testimonial-label strong {
  font-weight: 800;
}

.testimonial-label em {
  font-weight: 300;
  font-style: oblique;
}

.testimonial-text {
  font-family: var(--font-primary);
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.testimonial-text strong {
  font-weight: 800;
}

.testimonial-text em {
  font-weight: 300;
  font-style: oblique;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */

.value-proposition {
  background-color: var(--color-background-light);
  padding: 99px 0 120px;
}

.value-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 80px;
}

.value-section-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-text-heading);
  text-align: center;
  margin-bottom: 82px;
}

.value-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.value-left {
  max-width: 413px;
}

.value-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.value-description {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.value-description:last-of-type {
  margin-bottom: 32px;
}

.value-right {
  width: 624px;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card {
  width: 300px;
  height: 276px;
  background-color: var(--color-white);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 9px;
}

.value-card-icon img {
  width: 100%;
  height: 100%;
}

.value-card-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 9px;
}

.value-card-description {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

/* ===================================
   GLOBAL EXPERIENCE SECTION
   =================================== */

.global-experience {
  position: relative;
  width: 100%;
  height: 1200px;
  overflow: hidden;
}

.global-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.global-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-container {
  position: absolute;
  left: 80px;
  top: 334px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}

.global-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.05;
  letter-spacing: -3.84px;
  color: var(--color-white);
}

.global-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.global-btn {
  margin-top: 8px;
  width: fit-content;
}

/* ===================================
   CREDENTIALS SECTION
   =================================== */

.credentials {
  background-color: var(--color-white);
  padding: 132px 80px;
}

.credentials-card {
  position: relative;
  background-color: #fafafa;
  border-radius: 24px;
  overflow: hidden;
}

.credentials-card-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.credentials-left {
  width: 367px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.credentials-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000000;
}

.credentials-subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: #4f4f4f;
  width: 377px;
}

.credentials-btn {
  width: fit-content;
  margin-top: 0;
}

.credentials-lists {
  display: flex;
  gap: 52px;
  flex: 1;
}

.credentials-list {
  width: 300px;
  display: flex;
  flex-direction: column;
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: -1px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: #000000;
  transition: color 0.3s ease;
}

.industry-item:hover {
  color: var(--color-primary);
}

.industry-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
  background-color: var(--color-white);
  padding: 80px 0;
}

.cta-card {
  position: relative;
  background-color: #00252a;
  border-radius: 28px;
  padding: 120px 80px;
  overflow: hidden;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -2.24px;
  color: var(--color-white);
  text-align: center;
}

.cta-btn {
  background-color: var(--color-primary);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background-color: var(--color-dark);
  padding: 106px 80px 74px;
  position: relative;
  overflow: hidden;
}

.footer-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.footer-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 146, 160, 0.3) 0%,
    transparent 70%
  );
  left: -100px;
  bottom: -100px;
}

.footer-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 70, 67, 0.4) 0%, transparent 70%);
  right: 100px;
  top: 50px;
}

.footer-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size:
    100px 100px,
    50px 50px;
  background-position:
    0 0,
    25px 25px;
  opacity: 0.4;
}

.footer-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: flex;
  gap: 97px;
  margin-bottom: 80px;
}

.footer-brand {
  max-width: 540px;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 14px;
}

.footer-description {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cream);
  opacity: 0.8;
  margin-bottom: 23px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 24px;
  height: 24px;
  color: var(--color-cream);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--color-primary);
}

.footer-links {
  display: flex;
  gap: 52px;
}

.footer-column {
  color: var(--color-cream);
}

.footer-column-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cream);
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--color-primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-cream);
}

.contact-value {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-cream);
  opacity: 0.8;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(251, 249, 245, 0.2);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-cream);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1440px) {
  /* Navbar responsive adjustments */
  .navbar-container {
    padding: 0 40px;
  }

  .logo {
    left: 40px;
  }

  .nav-menu {
    left: 340px;
  }

  .nav-cta {
    left: auto;
    right: 40px;
  }

  /* Hero responsive adjustments */
  .hero-content {
    left: 80px;
    width: calc(100% - 160px);
    max-width: 807px;
  }

  .hero-image {
    left: auto;
    right: -100px;
  }
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 80px;
  }

  .hero-subtitle {
    font-size: 32px;
    width: auto;
  }

  .stats-container,
  .value-container,
  .global-container,
  .credentials-container,
  .cta-container {
    padding: 0 15px;
  }

  .services-container,
  .testimonial-container {
    padding: 0 15px;
  }

  .footer {
    padding: 80px 40px 60px;
  }
}

@media (max-width: 1024px) {
  /* Hide desktop nav, show mobile menu */
  .nav-menu {
    display: none;
  }

  .nav-cta {
    right: 80px;
  }

  /* Allow mobile menu to overflow navbar */
  .navbar {
    overflow: visible;
  }

  /* Show mobile menu elements */
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  /* Hero adjustments */
  .hero-area {
    height: 800px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-image {
    width: 600px;
    height: 400px;
    right: -50px;
    top: 300px;
  }

  .hero-content {
    top: 120px;
    left: 60px;
  }

  .stats-content {
    flex-direction: column;
    gap: 48px;
  }

  .stats-number {
    flex-direction: column;
    gap: 32px;
  }

  .stats-figure {
    width: 80%;
    padding: 0 0 40px 0;
  }

  .stats-divider {
    width: 100%;
    height: 1px;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-content {
    flex-direction: column;
    gap: 48px;
  }

  .value-left {
    max-width: 100%;
    text-align: center;
  }

  .value-right {
    width: 100%;
  }

  .value-cards {
    justify-content: center;
  }

  .global-experience {
    height: 700px;
  }

  .global-container {
    left: 60px;
    top: 150px;
  }

  .global-title {
    font-size: 64px;
  }

  .credentials {
    padding: 0 40px 80px;
  }

  .credentials-card-container {
    flex-direction: column;
    padding: 48px;
  }

  .credentials-left {
    width: 100%;
  }

  .credentials-subtitle {
    width: 100%;
  }

  .credentials-lists {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    flex-direction: column;
    gap: 0;
  }

  .credentials-list {
    width: 100%;
  }

  .cta-card {
    padding: 80px 40px;
  }

  .cta-title {
    font-size: 40px;
  }

  .footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-area {
    height: 700px;
  }

  .hero-background {
    left: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-image {
    width: 400px;
    height: 280px;
    right: -80px;
    top: 350px;
    opacity: 0.7;
  }

  .hero-content {
    top: 100px;
    left: 40px;
    width: calc(100% - 80px);
    height: auto;
  }

  .hero-subtitle-group {
    height: auto;
  }

  .stats-value {
    font-size: 80px;
  }

  .services-title {
    font-size: 28px;
  }

  .testimonial-label {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 28px;
  }

  .value-section-title,
  .value-title {
    font-size: 28px;
  }

  .value-card {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .global-experience {
    height: 500px;
  }

  .global-container {
    left: 40px;
    top: 100px;
  }

  .global-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .global-description {
    font-size: 18px;
  }

  .credentials {
    padding: 0 20px 60px;
  }

  .credentials-card-container {
    padding: 32px;
  }

  .credentials-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .credentials-subtitle {
    font-size: 14px;
  }

  .cta {
    padding: 60px 40px;
  }

  .cta-card {
    padding: 60px 30px;
  }

  .cta-title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-copyright p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  /* Hide the CTA button on mobile, it's in the mobile menu */
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    right: 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 70px;
  }

  .logo {
    left: 20px;
  }

  .logo img {
    height: 60px;
    width: auto;
  }

  .mobile-menu-btn {
    right: 36px;
  }

  .mobile-menu {
    max-width: 100%;
  }

  .mobile-nav-link {
    font-size: 16px;
    padding: 14px 0;
  }

  .hero-area {
    height: 600px;
  }

  .hero-background {
    left: 0;
    width: 100%;
  }

  .hero-content {
    top: 90px;
    left: 20px;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1.44px;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-image {
    display: block;
    position: absolute;
    width: 280px;
    height: 200px;
    right: 10px;
    top: auto;
    bottom: 40px;
    left: auto;
    opacity: 0.9;
  }

  .btn {
    font-size: 16px;
    padding: 14px 24px 15px;
  }

  .service-card {
    width: 100%;
    height: auto;
    min-height: 480px;
  }

  .service-card-content {
    gap: 24px;
  }

  .service-card-buttons {
    flex-direction: column;
  }

  .service-card-buttons .btn {
    width: 100%;
  }

  .global-experience {
    height: 400px;
  }

  .global-container {
    left: 20px;
    top: 80px;
    right: 20px;
  }

  .global-title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .global-description {
    font-size: 16px;
  }

  .credentials {
    padding: 0 16px 40px;
  }

  .credentials-card-container {
    padding: 24px 20px;
  }

  .credentials-title {
    font-size: 24px;
  }

  .industry-item {
    font-size: 14px;
    padding: 14px 0;
  }

  .cta {
    padding: 40px 20px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .cta-title {
    font-size: 24px;
    letter-spacing: -0.96px;
  }

  .footer {
    padding: 60px 20px 40px;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Area */
.about-hero-area {
  background-color: var(--color-background-dark);
  position: relative;
  padding-top: 81px;
}

.navbar-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-light .nav-link {
  color: var(--color-text-dark);
}

.navbar-light .nav-link:hover {
  color: var(--color-primary);
}

.navbar-light .nav-link.active {
  color: var(--color-primary);
}

.navbar-light .nav-link.active::after {
  background-color: var(--color-primary);
}

.about-hero {
  position: relative;
  min-height: 537px;
  display: flex;
  align-items: center;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 108px;
  padding-top: 90px;
}

.about-hero-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.15;
  letter-spacing: -6px;
  color: var(--color-white);
}

/* Who Are We Section */
.who-are-we {
  position: relative;
  background-color: var(--color-dark);
  padding: 116px 0;
  width: 100%;
}

.who-are-we-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.who-are-we-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.who-are-we-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
}

.who-are-we-description {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-white);
  text-align: center;
  max-width: 572px;
  white-space: pre-wrap;
}

.who-are-we-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 176px;
}

.who-are-we-btn:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

/* About Content Section */
.about-content {
  background-color: var(--color-white);
  padding: 102px 92px;
}

.about-content-container {
  max-width: 1256px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 128px;
}

.about-text {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.3;
  color: #030c3b;
}

.about-row-reverse .about-text-title {
  letter-spacing: -1px;
}

.about-text-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #484d67;
}

.about-row-reverse .about-text-description {
  letter-spacing: -0.3px;
}

.about-image {
  flex-shrink: 0;
  width: 528px;
  height: 383px;
  overflow: hidden;
}

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

.about-image-rounded {
  width: 496px;
  height: 321px;
  border-radius: 30px;
}

.about-image-rounded img {
  border-radius: 30px;
}

/* About Page Responsive */
@media (max-width: 1200px) {
  .about-hero-content {
    padding: 0 60px;
    padding-top: 140px;
  }

  .about-hero-title {
    font-size: 72px;
    letter-spacing: -4px;
  }

  .about-row {
    gap: 64px;
  }

  .about-image {
    width: 400px;
    height: 290px;
  }

  .about-image-rounded {
    width: 380px;
    height: 246px;
  }
}

@media (max-width: 992px) {
  .about-hero {
    min-height: 420px;
  }

  .about-hero-content {
    padding: 0 40px;
    padding-top: 120px;
  }

  .about-hero-title {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .who-are-we {
    padding: 80px 40px;
  }

  .who-are-we-title {
    font-size: 32px;
  }

  .who-are-we-description {
    font-size: 16px;
    max-width: 100%;
    padding: 0 20px;
  }

  .about-content {
    padding: 80px 40px;
  }

  .about-content-container {
    gap: 100px;
  }

  .about-row,
  .about-row-reverse {
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text-title {
    font-size: 32px;
  }

  .about-image,
  .about-image-rounded {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 0 20px;
    padding-top: 100px;
  }

  .about-hero-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .who-are-we {
    padding: 60px 20px;
  }

  .who-are-we-title {
    font-size: 28px;
  }

  .who-are-we-description {
    font-size: 16px;
    max-width: 100%;
    padding: 0 16px;
  }

  .who-are-we-btn {
    width: auto;
    min-width: 160px;
  }

  .about-content {
    padding: 60px 20px;
  }

  .about-content-container {
    gap: 60px;
  }

  .about-text-title {
    font-size: 28px;
  }

  .about-text-description {
    font-size: 15px;
  }

  .about-image,
  .about-image-rounded {
    height: 250px;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Area */
.contact-hero-area {
  position: relative;
  width: 100%;
  height: 580px;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 81px;
}

.navbar-contact {
  background-color: rgba(255, 255, 255, 1);
}

.nav-menu-contact .nav-link {
  color: var(--color-dark-alt);
}

.nav-menu-contact .nav-link.active {
  color: var(--color-primary);
}

.nav-menu-contact .nav-link.active::after {
  background-color: var(--color-primary);
}

.contact-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
}

.contact-hero-image {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.contact-hero-content {
  position: absolute;
  left: 141px;
  top: 180px;
  display: flex;
  flex-direction: column;
  gap: 31px;
  z-index: 10;
  max-width: 807px;
}

.contact-hero-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: -3.84px;
  color: var(--color-white);
}

.contact-hero-subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.contact-hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
  max-width: 625px;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary);
  border-radius: 32px;
  width: fit-content;
}

.contact-hero-btn span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.contact-hero-btn svg {
  width: 24px;
  height: 24px;
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(
    180deg,
    rgba(227, 230, 217, 0.39) 0%,
    #ffffff 100%
  );
  padding: 226px 60px 100px;
}

.contact-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 111px;
  width: 560px;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-heading {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.3;
  color: #0f0f0f;
}

.contact-quote {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.4px;
  color: #0f0f0f;
  opacity: 0.8;
}

.quote-text {
  font-weight: 400;
}

.quote-author {
  font-weight: 800;
  font-style: oblique;
}

.contact-details {
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.4px;
  color: #0f0f0f;
  opacity: 0.6;
}

.contact-detail-value {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: #0f0f0f;
  transition: color 0.3s ease;
}

.contact-detail-value:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-right {
  width: 648px;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 24px;
}

.form-group {
  width: 312px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  width: 100%;
}

.form-label {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.4px;
  color: #0f0f0f;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.4px;
  color: #0f0f0f;
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  outline: none;
}

.form-input::placeholder {
  color: #0f0f0f;
  opacity: 0.5;
}

.form-input-line {
  width: 100%;
  height: 1px;
  background-color: #0f0f0f;
}

.form-select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 32px;
}

.form-select-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  color: #0f0f0f;
}

.form-textarea {
  resize: none;
  min-height: 60px;
}

.contact-submit-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary-dark);
  border-radius: 32px;
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #003a37;
}

.contact-submit-btn span {
  color: var(--color-white);
}

.contact-submit-btn svg {
  width: 24px;
  height: 24px;
}

/* Contact Page Responsive */
@media (max-width: 1440px) {
  .contact-hero-content {
    left: 80px;
  }

  .contact-hero-image {
    right: 50px;
    width: 450px;
  }

  .contact-section {
    padding: 150px 40px 80px;
  }
}

@media (max-width: 1280px) {
  .contact-hero-title {
    font-size: 80px;
  }

  .contact-hero-subtitle {
    font-size: 28px;
  }

  .contact-hero-image {
    width: 400px;
    right: 30px;
  }

  .contact-container {
    flex-direction: column;
    gap: 60px;
  }

  .contact-left {
    width: 100%;
    gap: 60px;
  }

  .contact-right {
    width: 100%;
  }

  .form-group {
    width: calc(50% - 12px);
  }
}

@media (max-width: 1024px) {
  .contact-hero-area {
    height: 500px;
  }

  .contact-hero-content {
    left: 60px;
    top: 140px;
  }

  .contact-hero-title {
    font-size: 64px;
  }

  .contact-hero-subtitle {
    font-size: 24px;
  }

  .contact-hero-image {
    width: 350px;
    right: 20px;
    opacity: 0.8;
  }

  .contact-section {
    padding: 100px 40px 60px;
  }

  .contact-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-hero-area {
    height: 450px;
  }

  .contact-hero-content {
    left: 40px;
    right: 40px;
    top: 120px;
  }

  .contact-hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .contact-hero-subtitle {
    font-size: 20px;
  }

  .contact-hero-image {
    display: none;
  }

  .contact-section {
    padding: 80px 20px 60px;
  }

  .contact-left {
    gap: 40px;
  }

  .contact-heading {
    font-size: 28px;
  }

  .form-group {
    width: 100%;
  }

  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .contact-hero-area {
    height: 400px;
  }

  .contact-hero-content {
    left: 20px;
    right: 20px;
    top: 100px;
    gap: 20px;
  }

  .contact-hero-title {
    font-size: 36px;
    letter-spacing: -1.44px;
  }

  .contact-hero-subtitle {
    font-size: 18px;
  }

  .contact-hero-subtitle-group {
    gap: 20px;
  }

  .contact-section {
    padding: 60px 16px 40px;
  }

  .contact-heading {
    font-size: 24px;
  }

  .contact-quote {
    font-size: 14px;
  }

  .contact-submit-btn {
    width: 100%;
  }
}

/* ========================================
   CREDENTIALS PAGE STYLES
   ======================================== */

/* Credentials Hero Area */
.credentials-hero-area {
  position: relative;
  width: 100%;
  height: 1000px;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 81px;
}

.navbar-credentials {
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(6px);
}

.credentials-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.credentials-hero-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.credentials-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credentials-hero-content {
  position: absolute;
  left: 118px;
  top: 300px;
  width: 845px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 31px 110px;
  z-index: 10;
}

.credentials-hero-title {
  width: 807px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: -3.84px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.credentials-hero-title span {
  display: block;
}

.credentials-hero-subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.credentials-hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
  width: 625px;
}

.credentials-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary);
  border-radius: 32px;
  width: fit-content;
}

.credentials-hero-btn span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.credentials-hero-btn svg {
  width: 24px;
  height: 24px;
}

/* Credentials Testimonial Section */
.credentials-testimonial {
  background-color: var(--color-white);
  padding: 120px 80px;
}

.credentials-testimonial-container {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}

.credentials-testimonial-text {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  color: #0f0f0f;
}

/* Clients Section */
.clients-section {
  background: linear-gradient(to bottom, #ffffff, #e3e6d9);
  padding: 0 80px 120px;
}

.clients-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 80px;
}

.category-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-width: 61px;
  min-height: 61px;
  border-radius: 36px;
  border: none;
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #0f0f0f;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-pill:hover {
  background-color: #f5f5f5;
}

.category-pill.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Industry Sections */
.industry-section {
  margin-bottom: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.industry-section:last-child {
  margin-bottom: 0;
}

.industry-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: #0f0f0f;
  text-align: center;
  margin-bottom: 16px;
}

.industry-subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
}

/* Logos Grid */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.logos-grid-small {
  max-width: 800px;
}

.logos-grid-centered {
  justify-content: center;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  box-shadow:
    0px 1px 2px 0px rgba(0, 0, 0, 0.06),
    0px 0px 0px 1px rgba(0, 0, 0, 0.06);
  height: 96px;
  width: 140px;
  padding: 12px;
  overflow: hidden;
}

.logo-card-sm {
  width: 140px;
}

.logo-card-md {
  width: 190px;
}

.logo-card-lg {
  width: 241px;
}

.logo-card-xl {
  width: 286px;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-card:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  text-align: center;
}

.logo-text-large {
  font-size: 28px;
  font-weight: 700;
}

/* Credentials Page Responsive */
@media (max-width: 1440px) {
  .credentials-hero-content {
    left: 80px;
    width: calc(100% - 160px);
    max-width: 845px;
  }

  .credentials-hero-background {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 1280px) {
  .credentials-hero-title {
    font-size: 80px;
  }

  .credentials-hero-subtitle {
    font-size: 28px;
    width: auto;
  }

  .credentials-testimonial {
    padding: 80px 40px;
  }

  .credentials-testimonial-text {
    font-size: 24px;
  }

  .clients-section {
    padding: 0 40px 80px;
  }
}

@media (max-width: 1024px) {
  .credentials-hero-area {
    height: 800px;
  }

  .credentials-hero-title {
    font-size: 64px;
  }

  .credentials-hero-subtitle {
    font-size: 24px;
  }

  .credentials-hero-content {
    top: 200px;
    left: 60px;
  }

  .category-filter {
    gap: 16px;
  }

  .category-pill {
    font-size: 14px;
    padding: 12px 16px;
    min-height: 48px;
  }

  .industry-title {
    font-size: 32px;
  }

  .logos-grid {
    gap: 8px;
  }

  .logo-card {
    height: 80px;
  }

  .logo-card-sm {
    width: 120px;
  }

  .logo-card-md {
    width: 160px;
  }

  .logo-card-lg {
    width: 200px;
  }

  .logo-card-xl {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .credentials-hero-area {
    height: 700px;
  }

  .credentials-hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .credentials-hero-subtitle {
    font-size: 20px;
  }

  .credentials-hero-content {
    top: 150px;
    left: 40px;
    width: calc(100% - 80px);
  }

  .credentials-testimonial {
    padding: 60px 20px;
  }

  .credentials-testimonial-text {
    font-size: 24px;
  }

  .clients-section {
    padding: 0 20px 60px;
  }

  .category-filter {
    gap: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }

  .category-pill {
    font-size: 13px;
    padding: 10px 14px;
    min-height: 44px;
    flex-shrink: 0;
  }

  .industry-section {
    margin-bottom: 40px;
    padding: 40px 0;
  }

  .industry-title {
    font-size: 28px;
  }

  .logos-grid {
    gap: 6px;
    justify-content: center;
  }

  .logo-card {
    height: 70px;
  }

  .logo-card-sm,
  .logo-card-md,
  .logo-card-lg,
  .logo-card-xl {
    width: calc(50% - 6px);
    max-width: 160px;
  }

  .logo-text {
    font-size: 14px;
  }

  .logo-text-large {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .credentials-hero-area {
    height: 600px;
  }

  .credentials-hero-content {
    top: 100px;
    left: 20px;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .credentials-hero-title {
    font-size: 36px;
    letter-spacing: -1.44px;
  }

  .credentials-hero-subtitle {
    font-size: 18px;
  }

  .credentials-hero-subtitle-group {
    gap: 20px;
  }

  .credentials-testimonial-text {
    font-size: 16px;
  }

  .category-pill {
    font-size: 12px;
    padding: 8px 12px;
    min-height: 40px;
  }

  .industry-title {
    font-size: 24px;
  }

  .logos-grid {
    gap: 6px;
  }

  .logo-card {
    height: 60px;
  }

  .logo-card-sm,
  .logo-card-md,
  .logo-card-lg,
  .logo-card-xl {
    width: calc(50% - 6px);
    max-width: 140px;
  }

  .logo-text {
    font-size: 12px;
  }

  .logo-text-large {
    font-size: 16px;
  }
}

/* ========================================
   STRATEGIC PARTNERS PAGE STYLES
   ======================================== */

/* Partners Hero Area */
.partners-hero-area {
  position: relative;
  width: 100%;
  height: 1000px;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 81px;
}

.partners-navbar {
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.partners-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.partners-hero-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.partners-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partners-hero-content {
  position: absolute;
  left: 141px;
  top: 282px;
  width: 807px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 31px 110px;
  z-index: 10;
}

.partners-hero-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: -3.84px;
  color: var(--color-white);
  width: 807px;
}

.partners-hero-subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.partners-hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
  width: 625px;
}

.partners-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary);
  border-radius: 32px;
  width: fit-content;
}

.partners-hero-btn span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

/* Partners Brand Section */
.partners-brand {
  background-color: var(--color-white);
  padding: 107px 0;
}

.partners-brand-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.partners-brand-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.partners-brand-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.partners-brand-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.15;
  color: #1e1a1c;
}

.partners-brand-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.36px;
  color: #2c2d2f;
  max-width: 616px;
}

.partners-logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.partner-logo {
  width: 95px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-logo-flip {
  height: 85px;
}

.partner-logo-flip img {
  transform: rotate(180deg) scaleY(-1);
}

.partner-logo-wide {
  width: 150px;
  height: 84px;
}

.partner-logo-medium {
  width: 129px;
  height: 69px;
}

.partner-logo-medium:last-child {
  width: 120px;
  height: 72px;
}

/* Strategic Partners Responsive Styles */
@media (max-width: 1440px) {
  .partners-hero-content {
    left: 80px;
    width: calc(100% - 160px);
    max-width: 807px;
  }
}

@media (max-width: 1280px) {
  .partners-hero-title {
    font-size: 80px;
  }

  .partners-hero-subtitle {
    font-size: 28px;
    width: auto;
  }

  .partners-brand-container {
    padding: 0 60px;
  }

  .partners-logo-list {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .partners-hero-area {
    height: 800px;
  }

  .partners-hero-title {
    font-size: 64px;
    width: auto;
  }

  .partners-hero-subtitle {
    font-size: 24px;
  }

  .partners-hero-content {
    top: 200px;
    left: 60px;
    width: calc(100% - 120px);
  }

  .partners-brand {
    padding: 80px 0;
  }

  .partners-brand-container {
    padding: 0 40px;
  }

  .partners-brand-title {
    font-size: 32px;
  }

  .partners-logo-list {
    gap: 32px;
  }

  .partner-logo,
  .partner-logo-flip,
  .partner-logo-wide,
  .partner-logo-medium {
    width: 80px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .partners-hero-area {
    height: 700px;
  }

  .partners-hero-background {
    /* height: calc(100% - 81px); */
    height: 100%;
    opacity: 0.6;
  }

  .partners-hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .partners-hero-subtitle {
    font-size: 20px;
  }

  .partners-hero-content {
    top: 150px;
    left: 40px;
    width: calc(100% - 80px);
    gap: 24px;
  }

  .partners-brand {
    padding: 60px 0;
  }

  .partners-brand-container {
    padding: 0 20px;
  }

  .partners-brand-content {
    gap: 40px;
  }

  .partners-brand-title {
    font-size: 28px;
  }

  .partners-brand-description {
    font-size: 16px;
  }

  .partners-logo-list {
    gap: 24px;
  }

  .partner-logo,
  .partner-logo-flip,
  .partner-logo-wide,
  .partner-logo-medium {
    width: 70px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .partners-hero-area {
    height: 600px;
  }

  .partners-hero-title {
    font-size: 36px;
    letter-spacing: -1.44px;
  }

  .partners-hero-subtitle {
    font-size: 18px;
  }

  .partners-hero-content {
    top: 120px;
    left: 20px;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .partners-hero-subtitle-group {
    gap: 20px;
  }

  .partners-brand {
    padding: 40px 0;
  }

  .partners-brand-content {
    gap: 32px;
  }

  .partners-brand-title {
    font-size: 24px;
  }

  .partners-brand-description {
    font-size: 15px;
  }

  .partners-logo-list {
    gap: 20px;
  }

  .partner-logo,
  .partner-logo-flip,
  .partner-logo-wide,
  .partner-logo-medium {
    width: 60px;
    height: 50px;
  }
}

/* ========================================
   OUR PEOPLE PAGE STYLES
   ======================================== */

/* People Hero Area */
.people-hero-area {
  position: relative;
  width: 100%;
  height: 1000px;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 81px;
}

.people-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.people-hero-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.people-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-hero-content {
  position: absolute;
  left: 141px;
  top: 282px;
  width: 807px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 31px 110px;
  z-index: 10;
}

.people-hero-title {
  width: 100%;
  max-width: 807px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: -3.84px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.people-hero-title span {
  display: block;
}

.people-hero-subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.people-hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--color-white);
  width: 625px;
}

.people-hero-quote {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.people-hero-quote-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--color-white);
  font-style: italic;
}

.people-hero-quote-text .highlight-yellow {
  color: #f1e53c;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.people-hero-quote-author {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.9;
}

.people-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary);
  border-radius: 32px;
  width: fit-content;
}

.people-hero-btn span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.people-hero-btn svg {
  width: 24px;
  height: 24px;
}

/* Nav menu adjustments for people page */
.nav-menu-people {
  position: absolute;
  left: 408px;
  top: 50%;
  transform: translateY(calc(-50% + 1px));
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu-right {
  left: 791px;
}

/* Quote Section */
.people-quote {
  background: linear-gradient(180deg, #e3e6d9 0%, #ffffff 100%);
  padding: 84px 0 100px;
}

.people-quote-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-quote-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.people-quote-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.people-quote-text:last-child {
  margin-bottom: 0;
}

.people-quote-author {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-text-dark);
}

.people-quote-author span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
}

/* Managing Partner Section */
.managing-partner {
  background-color: var(--color-white);
  padding: 80px 0;
}

.managing-partner-container {
  max-width: 1268px;
  margin: 0 auto;
  padding: 0 80px;
}

.managing-partner-row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.managing-partner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.managing-partner-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #0f0f0f;
  padding-top: 30px;
}

.managing-partner-subtitle {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #3f3f43;
}

.managing-partner-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #3f3f43;
  opacity: 0.8;
  max-width: 546px;
}

.managing-partner-description p {
  margin-bottom: 1em;
}

.managing-partner-description p:last-child {
  margin-bottom: 0;
}

.managing-partner-experience-wrapper {
  width: 100%;
}

.managing-partner-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(63, 63, 67, 0.2);
  margin: 32px 0;
}

.managing-partner-label {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.7;
  color: #3f3f43;
  margin-bottom: 20px;
}

.managing-partner-strategic-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #3f3f43;
  margin-bottom: 0;
}

.managing-partner-linkedin {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

/* Experience List */
.managing-partner-experience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  max-width: 100%;
}

.experience-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.experience-check {
  width: 20px;
  height: 20px;
  background-color: rgba(66, 156, 140, 0.1);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.experience-check svg {
  width: 13px;
  height: 13px;
}

.experience-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #3f3f43;
}

/* Managing Partner Image */
.managing-partner-image-container {
  flex-shrink: 0;
}

.managing-partner-image-bg {
  width: 596px;
  height: 649px;
  background-color: var(--color-background-light);
  border-radius: 30px;
  position: relative;
  overflow: visible;
}

.managing-partner-image {
  position: absolute;
  left: -39px;
  top: 56px;
  width: 674px;
  height: 537px;
  object-fit: cover;
}

/* Our People Page Responsive */
@media (max-width: 1440px) {
  .people-hero-content {
    left: 80px;
    width: calc(100% - 160px);
    max-width: 807px;
  }

  .people-hero-background {
    width: 100%;
  }

  .nav-menu-people {
    left: 340px;
  }

  .nav-menu-right {
    left: auto;
    right: 200px;
  }
}

@media (max-width: 1280px) {
  .people-hero-title {
    font-size: 80px;
  }

  .people-hero-subtitle {
    font-size: 28px;
    width: auto;
  }

  .managing-partner-container {
    padding: 0 60px;
  }

  .managing-partner-row {
    gap: 60px;
  }

  .managing-partner-image-bg {
    width: 480px;
    height: 520px;
  }

  .managing-partner-image {
    width: 540px;
    height: 430px;
    left: -30px;
    top: 45px;
  }
}

@media (max-width: 1024px) {
  .nav-menu-people {
    display: none;
  }

  .people-hero-area {
    height: 800px;
  }

  .people-hero-title {
    font-size: 64px;
  }

  .people-hero-subtitle {
    font-size: 24px;
  }

  .people-hero-content {
    top: 180px;
    left: 60px;
  }

  .people-quote-container {
    padding: 0 40px;
  }

  .people-quote-text {
    font-size: 24px;
  }

  .people-quote-author {
    font-size: 24px;
  }

  .people-quote-author span {
    font-size: 18px;
  }

  .managing-partner-container {
    padding: 0 40px;
  }

  .managing-partner-row {
    flex-direction: column-reverse;
    gap: 48px;
    margin-bottom: 32px;
  }

  .managing-partner-title {
    font-size: 36px;
  }

  .managing-partner-subtitle {
    font-size: 18px;
  }

  .managing-partner-description {
    max-width: 100%;
  }

  .managing-partner-experience {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .managing-partner-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .managing-partner-image-bg {
    width: 100%;
    max-width: 500px;
    height: 400px;
  }

  .managing-partner-image {
    width: 100%;
    height: auto;
    left: 0;
    top: 40px;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .people-hero-area {
    height: 700px;
  }

  .people-hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .people-hero-subtitle {
    font-size: 20px;
  }

  .people-hero-quote-text {
    font-size: 18px;
  }

  .people-hero-quote-author {
    font-size: 15px;
  }

  .people-hero-content {
    top: 150px;
    left: 40px;
    width: calc(100% - 80px);
    gap: 24px;
  }

  .people-quote {
    padding: 60px 0 80px;
  }

  .people-quote-container {
    padding: 0 20px;
  }

  .people-quote-text {
    font-size: 20px;
  }

  .people-quote-author {
    font-size: 20px;
  }

  .people-quote-author span {
    font-size: 16px;
  }

  .managing-partner {
    padding: 60px 0;
  }

  .managing-partner-container {
    padding: 0 20px;
  }

  .managing-partner-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .managing-partner-description {
    font-size: 16px;
  }

  .experience-text {
    font-size: 16px;
  }

  .managing-partner-image-bg {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .people-hero-area {
    height: 600px;
  }

  .people-hero-content {
    top: 120px;
    left: 20px;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .people-hero-background {
    left: 0;
    width: 100%;
  }

  .people-hero-title {
    font-size: 36px;
    letter-spacing: -1.44px;
    width: 100%;
  }

  .people-hero-subtitle {
    font-size: 18px;
  }

  .people-hero-quote-text {
    font-size: 16px;
  }

  .people-hero-quote-author {
    font-size: 14px;
  }

  .people-hero-subtitle-group {
    gap: 20px;
  }

  .people-quote {
    padding: 48px 0 60px;
  }

  .people-quote-text {
    font-size: 18px;
  }

  .people-quote-author {
    font-size: 18px;
  }

  .people-quote-author span {
    font-size: 14px;
  }

  .managing-partner {
    padding: 48px 0;
  }

  .managing-partner-row {
    margin-bottom: 24px;
  }

  .managing-partner-content {
    gap: 20px;
  }

  .managing-partner-title {
    font-size: 28px;
  }

  .managing-partner-subtitle {
    font-size: 16px;
  }

  .managing-partner-description {
    font-size: 15px;
  }

  .managing-partner-divider {
    margin: 24px 0;
  }

  .managing-partner-label {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .experience-text {
    font-size: 15px;
  }

  .managing-partner-image-bg {
    height: 300px;
    border-radius: 12px;
  }

  .managing-partner-image {
    top: 20px;
  }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Area */
.services-hero-area {
  position: relative;
  width: 100%;
  height: 1000px;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 81px;
}

.services-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-hero-background {
  position: absolute;
  left: -169px;
  top: 0;
  width: 1778px;
  height: 1000px;
  background-color: var(--color-dark);
}

.services-hero-image {
  position: absolute;
  right: 0;
  top: 282px;
  width: 773px;
  height: 528px;
  object-fit: cover;
}

.services-hero-content {
  position: absolute;
  left: 141px;
  top: 282px;
  width: 807px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 31px 110px;
  z-index: 10;
}

.services-hero-title {
  width: 807px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: -3.84px;
  color: var(--color-white);
}

.services-hero-subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 29px;
  height: 174px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
  width: 625px;
}

.services-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 17px;
  background-color: var(--color-primary);
  border-radius: 32px;
  width: fit-content;
}

.services-hero-btn span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.3px;
  color: var(--color-white);
}

.services-hero-btn svg {
  width: 24px;
  height: 24px;
}

/* Services Intro Section */
.services-intro {
  background: linear-gradient(180deg, #e3e6d9 0%, #ffffff 100%);
  padding: 84px 0 100px;
}

.services-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.services-intro-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.services-intro-subtext {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Services Navigation Cards */
.services-nav-cards {
  background-color: var(--color-white);
  padding: 10px 0px 16px 0;
  position: sticky;
  top: 81px;
  z-index: 100;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.services-nav-cards.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.services-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 86px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-nav-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  min-width: 220px;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.service-nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
}

.service-nav-card-active {
  background-color: var(--color-primary);
}

.service-nav-card-active .service-nav-text {
  color: var(--color-white);
}

.service-nav-icon {
  width: 72px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-nav-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #0f0f0f;
}

/* Service Feature Section */
.service-feature {
  background-color: var(--color-white);
  padding: 180px 0 180px;
}

.service-feature-container {
  max-width: 1268px;
  margin: 0 auto;
  padding: 0 86px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.service-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-feature-text {
  display: flex;
  flex-direction: column;
  gap: 33px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background-color: var(--color-background-light);
  border: 1px solid var(--color-background-light);
  border-radius: 36px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  width: fit-content;
}

.service-feature-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #0f0f0f;
}

.service-feature-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #3f3f43;
  opacity: 0.8;
  max-width: 564px;
}

.service-feature-label {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.7;
  color: #3f3f43;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.service-check-icon {
  width: 20px;
  height: 20px;
  background-color: rgba(66, 156, 140, 0.1);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-check-icon svg {
  width: 13px;
  height: 13px;
}

.service-feature-item span:last-child {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #3f3f43;
}

.service-feature-image-container {
  flex-shrink: 0;
}

.service-feature-image-bg {
  width: 624px;
  height: 518px;
  background-color: var(--color-background-light);
  border-radius: 16px;
  position: relative;
}

.service-feature-image {
  position: absolute;
  left: 50px;
  top: -110px;
  width: 523px;
  height: 738px;
  object-fit: cover;
  border-radius: 25px;
}

/* What We Deliver Section */
.what-we-deliver {
  background-color: var(--color-dark);
  padding: 114px 0 143px;
}

.what-we-deliver-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.what-we-deliver-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 935px;
}

.what-we-deliver-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: var(--color-white);
  text-align: center;
}

.what-we-deliver-subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-white);
  text-align: center;
}

.what-we-deliver-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  width: 100%;
}

.deliver-card {
  position: relative;
  width: 410px;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.deliver-card-image {
  position: absolute;
  top: 0;
  left: -103px;
  width: 560px;
  height: 340px;
}

.deliver-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deliver-card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, #ffffff 85%, transparent 100%);
  border-radius: 0 0 24px 24px;
}

.deliver-card-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 346px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deliver-card-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #121821;
}

.deliver-card-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #121821;
  opacity: 0.6;
}

/* Services CTA Section */
.services-cta {
  background-color: var(--color-white);
  padding: 60px 80px 88px;
}

.services-cta-card {
  position: relative;
  background-color: var(--color-background-light);
  border-radius: 30px;
  padding: 91px 80px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.services-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 57px 57px;
  opacity: 0.5;
  border-radius: 210px 210px 0 0;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.services-cta-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #030c3b;
  text-align: center;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: var(--color-primary);
  border-radius: 68px;
}

.services-cta-btn span {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-white);
}

.services-cta-btn svg {
  width: 16px;
  height: 16px;
}

/* Services Page Responsive */
@media (max-width: 1440px) {
  .services-hero-content {
    left: 80px;
    width: calc(100% - 160px);
    max-width: 807px;
  }

  .services-hero-image {
    right: -100px;
  }

  .services-nav-container {
    padding: 0 40px;
  }

  .service-feature-container {
    padding: 0 40px;
  }
}

@media (max-width: 1280px) {
  .services-hero-title {
    font-size: 80px;
  }

  .services-hero-subtitle {
    font-size: 28px;
    width: auto;
  }

  .service-feature-container {
    gap: 60px;
  }

  .service-feature-image-bg {
    width: 500px;
    height: 420px;
  }

  .service-feature-image {
    width: 420px;
    height: 600px;
    left: 40px;
    top: -90px;
  }

  .what-we-deliver-container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .services-hero-area {
    height: 800px;
  }

  .services-hero-title {
    font-size: 64px;
  }

  .services-hero-subtitle {
    font-size: 24px;
  }

  .services-hero-content {
    top: 180px;
    left: 60px;
  }

  .services-hero-image {
    width: 500px;
    height: 350px;
    right: -50px;
    top: 350px;
    opacity: 0.8;
  }

  .services-nav-container {
    justify-content: center;
  }

  .service-nav-card {
    min-width: auto;
    flex: 1;
    max-width: 200px;
  }

  .service-feature-container {
    flex-direction: column;
    gap: 48px;
  }

  .service-feature-image-bg {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
  }

  .service-feature-image {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 420px;
    height: auto;
    top: -60px;
  }

  .what-we-deliver-cards {
    flex-direction: column;
    align-items: center;
  }

  .deliver-card {
    width: 100%;
    max-width: 410px;
  }

  .services-cta {
    padding: 60px 40px 80px;
  }

  .services-cta-card {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .services-hero-area {
    height: 700px;
  }

  .services-hero-title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .services-hero-subtitle {
    font-size: 20px;
  }

  .services-hero-content {
    top: 150px;
    left: 40px;
    width: calc(100% - 80px);
    gap: 24px;
  }

  .services-hero-subtitle-group {
    height: auto;
  }

  .services-hero-image {
    display: block;
    position: absolute;
    width: 280px;
    height: 200px;
    right: 10px;
    top: auto;
    bottom: 40px;
    left: auto;
    opacity: 0.9;
  }

  .services-intro {
    padding: 60px 0 80px;
  }

  .services-intro-container {
    padding: 0 40px;
  }

  .services-nav-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 16px 10px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .service-nav-card {
    flex-shrink: 0;
    min-width: auto;
    padding: 12px 16px;
    gap: 8px;
  }

  .service-nav-icon {
    display: none;
  }

  .service-nav-text {
    font-size: 13px;
    white-space: nowrap;
  }

  .service-nav-text br {
    display: none;
  }

  .service-feature {
    padding: 60px 0 80px;
  }

  .service-feature-container {
    padding: 0 20px;
  }

  .service-feature-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .service-feature-description {
    font-size: 16px;
  }

  .service-feature-item span:last-child {
    font-size: 16px;
  }

  .service-feature-image-bg {
    height: 350px;
  }

  .what-we-deliver {
    padding: 80px 0 100px;
  }

  .what-we-deliver-container {
    padding: 0 20px;
  }

  .what-we-deliver-title {
    font-size: 32px;
  }

  .what-we-deliver-subtitle {
    font-size: 16px;
  }

  .deliver-card {
    height: 480px;
  }

  .deliver-card-image {
    left: -80px;
    width: 500px;
    height: 300px;
  }

  .deliver-card-content {
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .services-cta {
    padding: 40px 20px 60px;
  }

  .services-cta-card {
    padding: 48px 24px;
    border-radius: 20px;
  }

  .services-cta-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .services-hero-area {
    height: 600px;
  }

  .services-hero-content {
    top: 120px;
    left: 20px;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .services-hero-title {
    font-size: 36px;
    letter-spacing: -1.44px;
  }

  .services-hero-subtitle {
    font-size: 18px;
  }

  .services-hero-subtitle-group {
    gap: 20px;
  }

  .services-intro {
    padding: 48px 0 60px;
  }

  .services-intro-container {
    padding: 0 20px;
  }

  .services-intro-text {
    font-size: 16px;
  }

  .services-intro-subtext {
    font-size: 14px;
  }

  .services-nav-cards {
    padding: 16px 0 0;
    top: 70px;
  }

  .service-nav-card {
    padding: 10px 14px;
  }

  .service-nav-text {
    font-size: 12px;
  }

  .service-feature {
    padding: 48px 0 60px;
  }

  .service-badge {
    font-size: 14px;
    padding: 3px 10px;
  }

  .service-feature-title {
    font-size: 28px;
  }

  .service-feature-description {
    font-size: 15px;
  }

  .service-feature-label {
    font-size: 16px;
  }

  .service-feature-item span:last-child {
    font-size: 15px;
  }

  .service-feature-image-bg {
    height: 200px;
    border-radius: 12px;
  }

  .service-feature-image-container {
    display: contents;
  }

  .service-feature-image {
    border-radius: 16px;
    top: -20px;
  }

  .what-we-deliver {
    padding: 60px 0 80px;
  }

  .what-we-deliver-title {
    font-size: 28px;
  }

  .what-we-deliver-subtitle {
    font-size: 15px;
  }

  .deliver-card {
    height: 420px;
  }

  .deliver-card-image {
    left: -60px;
    width: 440px;
    height: 260px;
  }

  .deliver-card-gradient {
    height: 200px;
  }

  .deliver-card-content {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .deliver-card-title {
    font-size: 20px;
  }

  .deliver-card-description {
    font-size: 13px;
  }

  .services-cta {
    padding: 32px 16px 48px;
  }

  .services-cta-card {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .services-cta-title {
    font-size: 20px;
    letter-spacing: -0.5px;
  }

  .services-cta-btn {
    padding: 14px 20px;
  }

  .services-cta-btn span {
    font-size: 14px;
  }
}

/* ===================================
   TEAM SECTION (Our People Page)
   =================================== */

/* Wrapper with continuous gradient from light green to white */
.team-sections-wrapper {
  background: linear-gradient(
    to bottom,
    var(--color-background-light) 0%,
    var(--color-white) 100%
  );
}

.team-section {
  padding: 100px 0 80px;
}

.team-section:first-child {
  padding-top: 120px;
}

.team-section:last-child {
  padding-bottom: 120px;
}

.team-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 96px;
}

.team-section-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-card-image {
  width: 100%;
  max-width: 280px;
}

.team-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-card-name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin: 0;
}

.team-card-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin: 0;
}

.team-card-bio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-card-bio p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #3f3f43;
  opacity: 0.7;
  margin: 0;
}

.team-card-section-title {
  font-family: var(--font-primary);
  font-weight: 800 !important;
  opacity: 1 !important;
  margin-top: 16px !important;
}

.team-card-experience {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 0;
}

.team-card-experience li {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #3f3f43;
  opacity: 0.7;
  margin-bottom: 4px;
}

.team-card-experience li ul {
  list-style: disc;
  padding-left: 24px;
  margin-top: 4px;
}

.team-card-experience li ul li {
  list-style-type: circle;
}

.team-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.social-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  color: #0c0e17;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.team-card-link:hover {
  opacity: 0.7;
}

.team-card-link svg {
  width: 16px;
  height: 16px;
}

/* Compact Team Cards (for Solution Leads and Associates) */
.team-section-compact .team-grid {
  gap: 48px 60px;
}

.team-card-compact {
  gap: 20px;
}

/* Fixed-size images for standardization - circular */
.team-card-image-fixed {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

.team-card-image-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Associates grid - 3 columns */
.team-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Accordion Styles */
.team-card-accordions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-dark);
  text-align: left;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.accordion-header span {
  flex: 1;
}

.accordion-chevron {
  width: 20px;
  height: 20px;
  color: #3f3f43;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p,
.accordion-content ul {
  padding: 0 16px 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #3f3f43;
  opacity: 0.8;
  margin: 0;
}

.accordion-content p + p {
  padding-top: 8px;
}

.accordion-content .team-card-experience {
  padding-left: 40px;
  padding-right: 16px;
}

.accordion-content .team-card-experience li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Compact card footer */
.team-card-compact .team-card-footer {
  margin-top: 12px;
}

/* Team Section Responsive */
@media (max-width: 1200px) {
  .team-container {
    padding: 0 48px;
  }

  .team-section-title {
    font-size: 40px;
  }

  .team-grid {
    gap: 48px 40px;
  }
}

@media (max-width: 992px) {
  .team-section {
    padding: 80px 0 100px;
  }

  .team-container {
    padding: 0 32px;
  }

  .team-section-title {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .team-card {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0 80px;
  }

  .team-container {
    padding: 0 20px;
  }

  .team-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .team-card-name {
    font-size: 20px;
  }

  .team-card-title {
    font-size: 14px;
  }

  .team-card-bio p,
  .team-card-experience li {
    font-size: 15px;
  }

  .team-card-link {
    font-size: 14px;
  }

  /* Compact cards on tablet */
  .team-card-image-fixed {
    width: 180px;
    height: 180px;
  }

  /* 3-column grid becomes 2 on tablet */
  .team-grid-3col {
    /* grid-template-columns: repeat(2, 1fr); */
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 48px 0 64px;
  }

  .team-section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .team-card-image {
    max-width: 200px;
  }

  .team-card-name {
    font-size: 18px;
  }

  .team-card-title {
    font-size: 13px;
  }

  .team-card-bio p,
  .team-card-experience li {
    font-size: 14px;
  }

  /* Compact cards on mobile */
  .team-card-image-fixed {
    width: 160px;
    height: 160px;
  }

  .accordion-header {
    padding: 10px 12px;
    font-size: 13px;
  }

  .accordion-content p,
  .accordion-content ul {
    font-size: 13px;
    padding: 0 12px 12px;
  }

  .accordion-content .team-card-experience {
    padding-left: 32px;
  }

  /* 3-column grid becomes 1 on mobile */
  .team-grid-3col {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

/* Base state for animated elements - hidden and translated down */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* Visible state when element enters viewport */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for groups of elements */
.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}
.animate-delay-4 {
  transition-delay: 0.4s;
}
.animate-delay-5 {
  transition-delay: 0.5s;
}
.animate-delay-6 {
  transition-delay: 0.6s;
}

/* Fade in from left */
.animate-from-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.animate-from-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Fade in only (no movement) */
.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade.is-visible {
  opacity: 1;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-from-left,
  .animate-from-right,
  .animate-scale,
  .animate-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
