/* ========== EXACT STYLES FROM NETWORK ACCESS PAGE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-dark: #1e40af;
  --secondary: #10b981;
  --accent: #f59e0b;
  --foreground: #111827;
  --foreground-light: #374151;
  --background: #ffffff;
  --light-grey: #f9fafb;
  --grey: #e5e7eb;
  --dark-grey: #6b7280;
  --header-offset: 110px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 3.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== SMOOTH ANIMATIONS ========== */
.animate-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-up {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulseSlow 4s ease-in-out infinite;
}

.animate-delay-100 {
  animation-delay: 100ms;
}
.animate-delay-200 {
  animation-delay: 200ms;
}
.animate-delay-300 {
  animation-delay: 300ms;
}
.animate-delay-400 {
  animation-delay: 400ms;
}
.animate-delay-500 {
  animation-delay: 500ms;
}
.animate-delay-600 {
  animation-delay: 600ms;
}
.animate-delay-700 {
  animation-delay: 700ms;
}
.animate-delay-800 {
  animation-delay: 800ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulseSlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Button Animations */
.primary-button {
  position: relative;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--foreground) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 9999px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  min-width: 200px;
  justify-content: center;
  text-align: center;
  animation: pulseSlow 4s ease-in-out infinite;
}

.primary-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
  animation: none;
}

.primary-button:active {
  transform: translateY(-1px);
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button span {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-button i {
  transition: transform 0.4s ease;
}

.primary-button:hover i {
  transform: translateX(5px);
}

.secondary-button {
  padding: 1rem 2rem;
  background: white;
  border: 2px solid var(--grey);
  color: var(--foreground);
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.secondary-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.secondary-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.secondary-button:hover::before {
  width: 300px;
  height: 300px;
}

.secondary-button span {
  position: relative;
  z-index: 1;
}

/* Progress Bar Animation */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  );
  width: 0%;
  transition: width 0.3s ease;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
}

section {
  position: relative;
  overflow: hidden;
}

/* ========== HEADER - EXACT FROM NETWORK ACCESS ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--foreground);
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: var(--foreground);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--foreground) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

/* ========== DROPDOWN MENU - EXACT FINANCE CODE ========== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 1.5rem;
  background-color: white;
  min-width: 250px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  z-index: 1001;
  animation: fadeIn 0.3s ease-out;
}

.dropdown-menu.active {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--foreground);
  border-bottom: 1px solid #f9fafb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item:hover {
  background: var(--light-grey);
  padding-left: 2rem;
  color: var(--foreground);
}

.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
  transform: scaleY(1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
  transition: transform 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 1002;
}

.menu-toggle:hover {
  background: var(--light-grey);
  transform: rotate(90deg);
}

/* ========== CAREERS HERO SECTION - MATCHING FINANCE CODE ========== */
.careers-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 110px; /* FINANCE CODE ALIGNMENT */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center content properly */
.careers-hero-content {
  position: relative;
  z-index: 20;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

/* Subtle Background Image Layer */
.careers-hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/3d4c2a_2f337be5b7da445db58a7946af6d1fe4~mv2.jpg');
  background-size: auto 75%;
  background-position: 0 0;
  background-attachment: fixed;
  background-repeat: repeat-x;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: gradientShift 10s ease infinite;
}

.parallax-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.hero-circle-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(30, 58, 138, 0.05);
  border-radius: 50%;
  opacity: 0.2;
  animation: spin 60s linear infinite;
}

.hero-circle-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  opacity: 0.2;
  animation: spin-reverse 40s linear infinite;
  animation-delay: 1s;
}

.hero-circle-3 {
  position: absolute;
  top: 60%;
  left: 10%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(30, 58, 138, 0.05);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-circle-4 {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(30, 58, 138, 0.05);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 10s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.careers-title {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--foreground) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.careers-subtitle {
  font-size: 1.25rem;
  color: var(--dark-grey);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* CTA Button - Matching Network Access */
.cta-button-large {
  position: relative;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--foreground) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 9999px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  min-width: 200px;
  justify-content: center;
  text-align: center;
  animation: pulseSlow 4s ease-in-out infinite;
}

.cta-button-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
  animation: none;
}

.cta-button-large:active {
  transform: translateY(-1px);
}

.cta-button-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.cta-button-large:hover::before {
  left: 100%;
}

.cta-button-large span {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-button-large i {
  transition: transform 0.4s ease;
}

.cta-button-large:hover i {
  transform: translateX(5px);
}

/* ========== FIXED SCROLL INDICATOR - NO TEXT ========== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  transition: opacity 0.5s ease;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(30, 58, 138, 0) 0%,
    rgba(30, 58, 138, 0.7) 50%,
    rgba(30, 58, 138, 0) 100%
  );
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--foreground) 0%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--dark-grey);
  max-width: 48rem;
  margin: 0 auto 5rem;
  line-height: 1.6;
  text-align: center;
}

/* ========== CULTURE SECTION ========== */
.culture-section {
  background-color: var(--light-grey);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.culture-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 2px solid var(--grey);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.culture-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.culture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

.culture-card:hover::before {
  transform: scaleY(1);
}

.culture-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(30, 58, 138, 0.2);
  margin-bottom: 1rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.culture-card:hover .culture-number {
  color: rgba(30, 58, 138, 0.3);
}

.culture-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--foreground);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.culture-card:hover .culture-card-title {
  color: var(--primary);
}

.culture-card-description {
  color: var(--dark-grey);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========== QUALITIES SECTION ========== */
.qualities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.quality-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border: 2px solid var(--grey);
  border-radius: 1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.quality-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quality-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.quality-item:hover .quality-icon {
  transform: scale(1.2);
}

.quality-text {
  font-size: 1.125rem;
  color: var(--dark-grey);
  line-height: 1.6;
}

/* ========== OPEN ROLES SECTION ========== */
.open-roles-section {
  background-color: var(--light-grey);
}

.open-roles-card {
  background: white;
  border: 2px solid var(--grey);
  border-radius: 1.25rem;
  padding: 4rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.open-roles-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.open-roles-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

.open-roles-card:hover::before {
  transform: scaleY(1);
}

.open-roles-text {
  font-size: 1.25rem;
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========== FUTURE READINESS SECTION ========== */
.future-readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.future-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.future-quote {
  position: relative;
  padding: 4rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05),
    rgba(30, 58, 138, 0.1)
  );
  border: 1px solid rgba(30, 58, 138, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.future-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
}

.quote-text {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author {
  color: var(--dark-grey);
  font-style: italic;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-weight: 600;
  transition: color 0.3s;
  text-decoration: none;
  padding: 0.5rem 0;
}

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

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
  background-color: var(--light-grey);
}

.final-cta-card {
  border: 2px solid var(--grey);
  background: white;
  padding: 4rem;
  border-radius: 1.25rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    transparent
  );
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ========== FOOTER NOTE ========== */
.footer-note {
  padding: 4rem 0;
  background-color: white;
  border-top: 1px solid var(--grey);
}

.footer-note p {
  text-align: center;
  color: var(--dark-grey);
  font-size: 1rem;
  font-family: "Nunito Sans", sans-serif;
}

/* ========== FOOTER - EXACT FROM NETWORK ACCESS ========== */
.footer {
  background: linear-gradient(135deg, var(--foreground) 0%, #1f2937 100%);
  color: white;
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
}

.footer h3 {
  font-size: 1.75rem;
  color: white;
  position: relative;
  display: inline-block;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}

.footer h4 {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  opacity: 0.5;
}

.footer p,
.footer a {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.footer a:hover {
  color: white;
  transform: translateX(5px);
}

.footer a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-bottom p {
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.25rem;
  color: #9ca3af;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: white;
  background: var(--primary);
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* ================================================= */
/* ===== UNIVERSAL DEVICE RESPONSIVE + ABSOLUTE SAFE */
/* ===== Android + iPhone + iPad + Tablets ========= */
/* ================================================= */

/* ---------- GLOBAL SAFARI + GPU STABILITY ---------- */
.parallax-layer,
.careers-hero-background,
.blog-hero-background,
.about-hero-background {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

/* ---------- HERO ABSOLUTE SAFE FOR ALL DEVICES ---------- */
.careers-hero,
.blog-hero,
.about-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
}

/* Prevent stacking issues */
.careers-hero-content,
.blog-hero-content,
.about-hero-content {
    position: relative;
    z-index: 20;
}

/* ========== MOBILE RESPONSIVE - MATCHING FINANCE CODE ========== */
@media (max-width: 768px) {
    /* FIX: MOBILE DROPDOWN - EXACT FINANCE CODE */
    .nav-links {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.4rem;
        cursor: pointer;
        color: var(--foreground);
        padding: 0.5rem;
    }
    
    /* DROPDOWN MENU - EXACT SAME AS FINANCE CODE */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        background-color: white;
        min-width: 250px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid #e5e7eb;
        z-index: 1001;
        animation: fadeIn 0.3s ease-out;
    }
    
    .dropdown-menu.active {
        display: block;
    }
    
    .dropdown-item {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--foreground);
        border-bottom: 1px solid #f9fafb;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .dropdown-item:hover {
        background: var(--light-grey);
        padding-left: 2rem;
        color: var(--foreground);
    }
    
    .dropdown-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .dropdown-item:hover::before {
        transform: scaleY(1);
    }

    /* FIX: HERO SECTION MOBILE ALIGNMENT - MATCHING FINANCE CODE */
    .careers-hero {
        padding-top: 100px;
        padding-bottom: 40px;
        align-items: center;
        min-height: 90vh;
        max-height: none;
        overflow: visible;
    }

    .careers-hero-content {
        padding-top: 0;
        margin-top: 0;
    }

    .careers-hero-background {
        background-attachment: scroll;
        background-size: 800px auto;
        animation-duration: 20s;
        opacity: 0.1;
    }

    .careers-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .careers-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    /* Fix sections for mobile */
    .section {
        padding: 5rem 0 !important;
    }
    
    .section-container {
        padding: 0 1.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem !important;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    /* Fix buttons */
    .primary-button,
    .secondary-button,
    .cta-button-large {
        min-width: auto;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    /* Fix culture grid */
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .culture-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .culture-number {
        font-size: 2rem;
    }
    
    .culture-card-title {
        font-size: 1.1rem;
    }
    
    /* Fix qualities grid */
    .qualities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .quality-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Fix future readiness grid */
    .future-readiness-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .future-quote {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    /* Fix open roles card */
    .open-roles-card {
        padding: 2rem;
    }
    
    .open-roles-text {
        font-size: 1rem;
    }
    
    /* Fix final cta card */
    .final-cta-card {
        padding: 2rem;
    }
    
    /* Fix button group */
    .button-group {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding-top: 90px;
        min-height: 85vh;
    }
    
    .careers-title {
        font-size: 1.8rem;
    }
    
    .careers-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    .careers-hero-background {
        background-size: 600px auto;
    }
    
    .culture-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .quality-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .careers-hero-background {
        background-size: 1100px auto;
        animation-duration: 18s;
    }

    .careers-title {
        font-size: clamp(3.5rem, 6vw, 5rem);
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1366px) {
    .careers-hero-background {
        background-size: 1300px auto;
    }
}

@supports (padding: max(0px)) {
    .careers-hero {
        padding-top: max(110px, env(safe-area-inset-top));
    }
}

/* ================================================= */
/* ========= ULTRA PREMIUM MOBILE EXPERIENCE ======= */
/* ================================================= */

/* ---------- GPU LAYER LOCK ---------- */
.parallax-layer,
.careers-hero-background,
.blog-hero-background,
.about-hero-background {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    will-change: transform;
    backface-visibility: hidden;
}

/* ---------- HERO PERFECT VIEWPORT ---------- */
.careers-hero,
.blog-hero,
.about-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
}

/* ---------- FAKE FIXED BACKGROUND SYSTEM ---------- */
.careers-hero-background,
.blog-hero-background,
.about-hero-background {
    position: absolute;
    inset: -20%;
    transform: translateY(var(--scroll-parallax, 0px)) scale(1.15);
    transition: transform 0.08s linear;
}

/* ---------- CONTENT ABOVE EVERYTHING ---------- */
.careers-hero-content,
.blog-hero-content,
.about-hero-content {
    position: relative;
    z-index: 20;
}

/* ---------- MOBILE OPTICAL TUNING ---------- */
@media (max-width: 768px) {
    .careers-title,
    .blog-hero-title {
        font-size: clamp(2.2rem, 6vw, 2.8rem);
        line-height: 1.15;
    }

    .careers-subtitle,
    .blog-hero-subtitle {
        font-size: 1rem;
    }
}

/* ---------- SMALL PHONE SAFE ---------- */
@media (max-width: 420px) {
    .careers-title,
    .blog-hero-title {
        font-size: 2.1rem;
    }
}

/* ---------- SAFE AREA SUPPORT ---------- */
@supports (padding: max(0px)) {
    .careers-hero,
    .blog-hero,
    .about-hero {
        padding-top: max(80px, env(safe-area-inset-top));
    }
}

/* ---------- TOUCH FEEL ---------- */
* {
    -webkit-tap-highlight-color: transparent;
}
