/* Login Overlay Styles */
/* Beautified Hero Banner Styles */
.hero-banner {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
  background: #0a1833;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(120deg, rgba(10,24,51,0.82) 0%, rgba(0,95,204,0.38) 100%),
    url('Images/IMG_0138.jpeg') center center/cover no-repeat;
  opacity: 1;
  z-index: 1;
}
.hero-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(0,95,204,0.18) 0%, rgba(10,24,51,0.12) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #005fcc;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 16px rgba(0,95,204,0.08);
  font-family: 'Segoe UI', 'Montserrat', 'Arial', sans-serif;
}
.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2.7rem;
  color: #1a2233;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', 'Montserrat', 'Arial', sans-serif;
}
.hero-cta {
  display: inline-block;
  padding: 1em 2.5em;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #005fcc 0%, #00b4d8 100%);
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,95,204,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.hero-cta:focus, .hero-cta:hover {
  background: linear-gradient(90deg, #003e8a 0%, #0096c7 100%);
  box-shadow: 0 8px 32px rgba(0,95,204,0.22);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}
.hero-cta::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}
.hero-cta:active::after {
  width: 180%;
  height: 180%;
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-content {
    padding: 2rem 0.5rem;
  }
}
/* Home logo (signature) styles */
.home-logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
  outline: none;
}
.home-logo:focus {
  box-shadow: 0 0 0 2px #005fcc;
  border-radius: 4px;
}
.home-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Official Brand Colors (updated to dark blue) */
  --isb-red: #003366;
  --isb-dark-red: #002244;
  --isb-white: #ffffff;
  --isb-light-grey: #f7f7f7;
  --isb-medium-grey: #e5e5e5;
  --isb-dark-grey: #333333;
  --isb-text-dark: #1a1a1a;
  --white: #ffffff;
  --light-grey: #f7f7f7;
  --medium-grey: #e5e5e5;
  --dark-grey: #333333;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;

  /* Typography - TT Norms (official font) */
  --font-family: "TT Norms", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max-width: 1200px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  animation: pageLoad 0.5s ease-out;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 20px rgba(0, 45, 66, 0.08);
}

/* Page content wrapper for smooth transitions */
main,
section:not(.nav) {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--isb-red);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  height: 32px;
  width: auto;
  border: none;
  transition: var(--transition-fast);
}

.logo-image:hover {
  opacity: 0.8;
}

.logo-text {
  color: var(--isb-red);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo-text-link {
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo-text-link:hover .logo-text {
  color: var(--isb-dark-red);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--isb-red);
  transition: var(--transition-fast);
}

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

.nav-menu a:hover {
  color: var(--isb-red);
}

.language-option::after {
  display: none;
}

.btn-contact {
  background: var(--isb-red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.btn-contact::after {
  display: none;
}

.btn-contact:hover {
  background: var(--isb-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--medium-grey);
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.language-btn:hover {
  border-color: var(--isb-red);
  color: var(--isb-red);
  background: var(--light-grey);
}

.language-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.language-selector:hover .language-icon {
  transform: rotate(180deg);
}

.language-current {
  font-weight: 600;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--medium-grey);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.95);
  transform-origin: top right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  overflow: hidden;
  z-index: 1000;
}

.language-dropdown.show,
.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-option {
  display: block;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.language-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--light-grey);
  transition: width 0.3s ease;
  z-index: -1;
}

.language-option:hover::before {
  width: 100%;
}

.language-option:hover {
  border-left-color: var(--isb-red);
  color: var(--isb-red);
  padding-left: 24px;
}

.language-option.active {
  background: var(--light-grey);
  border-left-color: var(--isb-red);
  color: var(--isb-red);
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--isb-red);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  height: clamp(50px, 6vw, 80px);
  width: auto;
  margin-bottom: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12)) brightness(0) invert(1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -2.5px;
}

.hero-title .highlight {
  color: var(--isb-red);
  position: relative;
  display: inline-block;
}

.hero-title .for-text {
  color: var(--white);
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 18px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--white);
  color: var(--isb-red);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--isb-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Currency Banner in Hero */
.currency-banner-hero {
  margin-top: 56px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
}

.currency-rates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 12px;
}

.currency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.currency-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.currency-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.currency-code {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  min-width: 32px;
  letter-spacing: 0.2px;
  font-size: 12px;
}

.currency-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  width: 70px;
  text-align: right;
  font-family: var(--font-family);
  transition: all 0.2s ease;
}

.currency-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.currency-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.currency-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
  border-top: none;
}

.currency-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.currency-more {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.currency-more:hover {
  color: rgba(255, 255, 255, 0.95);
  gap: 6px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(10px);
  }
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  color: var(--isb-red);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--isb-red);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Vision Section */
.vision {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 30, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 30, 53, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-content {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-purpose {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.vision-purpose h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.vision-intro {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.vision-statement {
  background: linear-gradient(135deg, var(--isb-red) 0%, #b8182b 100%);
  color: var(--white);
  padding: 64px 48px;
  border-radius: 20px;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(220, 30, 53, 0.25);
  position: relative;
  overflow: hidden;
}

.vision-statement::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-statement::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.purpose-header {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.vision-statement h3 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.purpose-tagline {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.vision-statement p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.vision-mission {
  font-size: 19px;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.vision-image-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.vision-strategy-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.vision-image-wrapper:hover .vision-strategy-image {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .vision-image-wrapper {
    max-width: 100%;
    border-radius: 12px;
  }
}

.stakeholder-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.stakeholder-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stakeholder-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.stakeholder-item:hover .stakeholder-icon {
  transform: scale(1.2) rotate(5deg);
}

.stakeholder-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.stakeholder-item p {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

/* Values Section */
.vision-purpose {
  margin-bottom: 64px;
}

.vision-purpose h3 {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.vision-intro {
  text-align: center;
  font-size: 17px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Values Section */
.vision-values {
  margin-bottom: 64px;
}

.vision-values h3 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-item {
  background: white;
  padding: 48px 36px;
  border-radius: 16px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  border-color: var(--isb-red);
  box-shadow: 0 16px 40px rgba(220, 30, 53, 0.12);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(220, 30, 53, 0.1) 0%, rgba(220, 30, 53, 0.05) 100%);
  color: var(--isb-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(220, 30, 53, 0.25);
}

.value-item h4 {
  font-size: 20px;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Strategic Focus */
.vision-goals h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--isb-red);
}

.strategic-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Financial Health Section */
.financial-health {
  background: linear-gradient(135deg, var(--isb-red) 0%, #c92a2a 100%);
  margin-top: 48px;
}

.financial-health h3 {
  color: var(--white);
}

.financial-health p {
  color: var(--white);
  font-size: 18px;
}

.vision-goals {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.vision-goals h3 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.5px;
}

.strategic-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-weight: 400;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.goal-item {
  background: white;
  padding: 44px 36px;
  border-radius: 16px;
  border: 2px solid var(--medium-grey);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.goal-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.goal-item:hover {
  box-shadow: 0 16px 40px rgba(220, 30, 53, 0.12);
  transform: translateY(-8px);
  border-color: var(--isb-red);
}

.goal-item:hover::before {
  transform: scaleX(1);
}

.goal-number {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(220, 30, 53, 0.08) 0%, rgba(220, 30, 53, 0.03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
}

.goal-item h4 {
  font-size: 22px;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

/* Digital Technology Section */
.digital-technology {
  background: var(--white);
  padding: var(--section-padding);
}

/* Pillars Section */
.pillars {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 30, 53, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: 12px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}

.pillar-card:hover {
  box-shadow: 0 16px 40px rgba(220, 30, 53, 0.12);
  transform: translateY(-8px);
  border-color: var(--isb-red);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--isb-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--isb-red);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--isb-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-size: 24px;
  color: var(--isb-red);
  margin-bottom: 8px;
  font-weight: 700;
}

.pillar-subtitle {
  color: var(--isb-red);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pillar-list {
  list-style: none;
  margin-bottom: 24px;
}

.pillar-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.pillar-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--isb-red);
  font-weight: 700;
}

.pillar-impact {
  padding-top: 24px;
  border-top: 1px solid var(--medium-grey);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pillar-impact strong {
  color: var(--isb-red);
}

/* Culture & Leadership Philosophy Section */
.culture-leadership {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Leadership Matrix */
.leadership-matrix {
  position: relative;
  max-width: 1400px;
  margin: 80px auto 0;
  min-height: 900px;
}

.matrix-connections {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.matrix-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: linear-gradient(135deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(220, 30, 53, 0.3);
  min-width: 280px;
  border: 4px solid white;
}

.hub-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.hub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.hub-subtitle {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.matrix-quadrants {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 60px;
  padding: 40px;
}

.matrix-quadrant {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--medium-grey);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.matrix-quadrant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.matrix-quadrant:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 30, 53, 0.15);
  border-color: var(--isb-red);
}

.matrix-quadrant:hover::before {
  opacity: 1;
}

.quadrant-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-grey);
}

.quadrant-header i {
  font-size: 32px;
  color: var(--isb-red);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 30, 53, 0.1) 0%, rgba(220, 30, 53, 0.05) 100%);
  border-radius: 12px;
}

.quadrant-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.quadrant-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.capability-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--light-grey);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.capability-item:hover {
  background: rgba(220, 30, 53, 0.05);
  transform: translateX(8px);
}

.capability-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  color: var(--isb-red);
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.capability-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.capability-text p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.quadrant-metric {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--light-grey);
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--isb-red);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.metric-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Quadrant specific accents */
.quadrant-team:hover {
  border-color: #3b82f6;
}

.quadrant-team .quadrant-header i {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.quadrant-stakeholder:hover {
  border-color: #8b5cf6;
}

.quadrant-stakeholder .quadrant-header i {
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.quadrant-culture:hover {
  border-color: #10b981;
}

.quadrant-culture .quadrant-header i {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.quadrant-vision:hover {
  border-color: #f59e0b;
}

.quadrant-vision .quadrant-header i {
  color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

/* Responsive */
@media (max-width: 1200px) {
  .matrix-quadrants {
    gap: 40px;
    padding: 20px;
  }
  
  .matrix-hub {
    min-width: 240px;
    padding: 32px;
  }
  
  .hub-icon {
    font-size: 40px;
  }
  
  .hub-title {
    font-size: 20px;
  }
}

@media (max-width: 968px) {
  .leadership-matrix {
    min-height: auto;
  }
  
  .matrix-connections {
    display: none;
  }
  
  .matrix-hub {
    position: static;
    transform: none;
    margin: 0 auto 40px;
    max-width: 400px;
  }
  
  .matrix-quadrants {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .matrix-quadrant {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .culture-leadership {
    padding: 80px 0;
  }
  
  .leadership-matrix {
    margin-top: 40px;
  }
  
  .quadrant-header h3 {
    font-size: 18px;
  }
  
  .capability-item {
    padding: 12px;
  }
}

/* Track Record Section */
.track-record {
  background: var(--light-grey);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--isb-red);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 48px;
}

.timeline-marker {
  position: absolute;
  left: -48px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--isb-red);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--light-grey);
}

.timeline-content {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
  font-size: 22px;
  color: var(--isb-red);
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.timeline-content strong {
  color: var(--isb-red);
  font-weight: 600;
}

/* Roadmap Section */
.roadmap {
  background: var(--white);
}

.roadmap-timeline {
  display: grid;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.roadmap-phase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}

.phase-number {
  width: 120px;
  height: 120px;
  background: var(--isb-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  box-shadow: 0 8px 30px rgba(220, 30, 53, 0.3);
}

.phase-number::after {
  content: "DAYS";
  position: absolute;
  bottom: -30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* .hero-content removed for background-only hero banner */
  margin-bottom: 24px;
  font-weight: 700;
}

.phase-objectives h5 {
  font-size: 16px;
  color: var(--isb-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 24px;
}

.phase-objectives h5:first-child {
  margin-top: 0;
}

.phase-objectives ul {
  list-style: none;
  margin-bottom: 24px;
}

.phase-objectives li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.phase-objectives li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--isb-red);
  font-weight: 700;
}

.phase-objectives p {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--isb-red);
}

/* Contact Section */
.contact {
  background: var(--isb-red);
  color: var(--white);
  text-align: center;
}

.contact-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(90deg, var(--isb-red) 60%, var(--isb-dark-red) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(227, 6, 19, 0.4);
}

.contact-btn:hover {
  background: var(--isb-dark-red);
  color: var(--white);
  border: 2px solid var(--isb-red);
  outline: 2px solid var(--isb-dark-red);
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  align-items: start;
}

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

.footer-section h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section li {
  margin: 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-contact strong {
  color: var(--white);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer-link {
  color: var(--isb-red) !important;
  font-weight: 600;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--isb-dark-red) !important;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--isb-red);
  transform: translateY(-2px);
}

.footer-tagline {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Contact Modal */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.contact-modal.active {
  display: flex;
}

.contact-modal-content {
  background: linear-gradient(135deg, var(--isb-white) 80%, var(--isb-light-grey) 100%);
    animation: fadeIn 0.3s ease-out;
  padding: 60px 50px;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.contact-modal-close:hover {
  background: var(--light-grey);
  color: var(--isb-red);
}

.contact-modal-content h2 {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-modal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--isb-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 30, 53, 0.2);
}

.contact-btn:hover {
  background: var(--isb-dark-red);
  box-shadow: 0 6px 20px rgba(220, 30, 53, 0.3);
}

.contact-btn svg {
  flex-shrink: 0;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-menu {
    gap: 24px;
  }

  .currency-banner-hero {
    margin-top: 48px;
    padding: 24px 20px;
  }

  .currency-rates {
    gap: 24px;
    flex-wrap: wrap;
  }

  .currency-item {
    font-size: 13px;
  }

  .currency-info {
    flex-direction: column;
    gap: 8px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-phase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .phase-number {
    width: 100px;
    height: 100px;
    font-size: 32px;
    margin: 0 auto;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline-marker {
    left: -38px;
  }
}

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .vision-statement {
    padding: 32px 24px;
  }

  .pillar-card {
    padding: 32px 24px;
  }
}

/* ============================================
   SUB-PAGES STYLES
   ============================================ */

/* Page Header */
.page-header {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:
    linear-gradient(120deg, rgba(10,24,51,0.82) 0%, rgba(0,95,204,0.38) 100%),
    url('Images/about-me-bg.jpg') center center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
  z-index: 1;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(10,24,51,0.82) 0%, rgba(0,95,204,0.38) 100%);
  z-index: 2;
  pointer-events: none;
}
.page-header > .container, .page-header > * {
  position: relative;
  z-index: 3;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background-color: var(--white);
}

.references-content {
  padding: 32px 0 28px;
}

.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.content-grid.single-column {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
  gap: 32px;
}

.content-article {
  max-width: 100%;
  align-self: start;
}

.content-article.full-width {
  max-width: 100%;
}

.content-grid .cv-sidebar {
  order: -1;
}

.intro-text {
  margin-bottom: 60px;
}

.profile-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  padding: 32px;
  border-radius: 0;
  background: white;
  border: 1px solid #e8e8e8;
  box-shadow: none;
  transition: var(--transition-fast);
}

.profile-intro:hover {
}

.profile-image-container {
  flex-shrink: 0;
  position: relative;
}

.profile-image-container::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--isb-red), rgba(220, 30, 53, 0.6));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
  filter: blur(8px);
}

.profile-picture {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 4px 16px rgba(220, 30, 53, 0.15);
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.profile-picture:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(220, 30, 53, 0.15);
}

.profile-intro .intro-text {
  margin-bottom: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.profile-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--isb-red);
  margin: 0 0 16px 0;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.profile-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.profile-age {
  font-weight: 500;
}

.profile-separator {
  color: var(--medium-grey);
}

.profile-experience {
  font-weight: 500;
}

.profile-details {
  display: flex;
  gap: 12px;
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
}

.profile-detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.profile-detail-item i {
  font-size: 1.2rem;
  color: var(--isb-red);
  width: 24px;
  text-align: center;
}

.profile-detail-item a {
  color: var(--isb-red);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.profile-detail-item a:hover {
  color: var(--isb-dark-red);
  text-decoration: underline;
}

.profile-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f5f5f5;
  border-radius: 50%;
  color: var(--isb-red);
  font-size: 1.3rem;
  transition: var(--transition-fast);
  border: 2px solid transparent;
  text-decoration: none;
}

.social-link:hover {
  background: var(--isb-red);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(220, 30, 53, 0.25);
}

.social-link.linkedin:hover {
  background: var(--isb-red);
  border-color: var(--isb-red);
  color: white;
}

.social-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-link.github:hover {
  background: var(--isb-red);
  border-color: var(--isb-red);
  color: white;
}

.profile-status {
  margin-top: 24px;
}

.status-badge {
  display: inline-block;
  background: rgba(220, 30, 53, 0.1);
  color: var(--isb-red);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(220, 30, 53, 0.2);
}

@media (max-width: 768px) {
  .profile-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
  }
  
  .profile-picture {
    width: 140px;
    height: 140px;
  }

  .profile-name {
    font-size: 1.8rem;
  }

  .profile-title {
    font-size: 1.1rem;
  }

  .profile-details {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .profile-social {
    justify-content: center;
  }
}


.content-article h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--isb-red);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.content-article h2:first-of-type {
  margin-top: 0;
}

.content-article h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 40px;
}

.content-article p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.content-article h2:not(:first-of-type) {
  margin-top: 2.5rem;
  padding-top: 2rem;
  position: relative;
}

.content-article h2:not(:first-of-type)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--isb-red);
  border-radius: 2px;
}

.content-article ul,
.content-article ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.content-article li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background-color: var(--light-grey);
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
}

.sidebar-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-grey);
  font-size: 1rem;
  color: var(--text-secondary);
}

.sidebar-card li:last-child {
  border-bottom: none;
}

.sidebar-card strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background-color: var(--white);
  border-radius: 4px;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--isb-red);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-box {
  background-color: var(--isb-red);
  color: var(--white);
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  margin-top: 24px;
}

.cta-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn-white {
  background-color: var(--white);
  color: var(--isb-red);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition-fast);
}

.btn-white:hover {
  background-color: var(--light-grey);
  transform: translateY(-2px);
}

/* Competencies Grid */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.competency-card {
  padding: 32px;
  background-color: var(--light-grey);
  border-radius: 4px;
  border-left: 4px solid var(--isb-red);
}

.competency-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.competency-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Experience Timeline */
.experience-timeline {
  position: relative;
  padding-left: 60px;
  margin-top: 60px;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--isb-red);
}

.experience-item {
  position: relative;
  margin-bottom: 60px;
}

.experience-marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--isb-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  z-index: 2;
}

.experience-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.experience-meta {
  font-size: 1rem;
  color: var(--isb-red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  border-bottom: 1px solid var(--medium-grey);
  margin-bottom: 0;
}

.achievement-list li:last-child {
  border-bottom: none;
}

.achievement-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--isb-red);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding: 60px 0;
  background-color: var(--light-grey);
  padding: 60px 40px;
  border-radius: 4px;
}

.skill-category h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--isb-red);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.skill-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-category li {
  padding: 10px 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--medium-grey);
  margin-bottom: 0;
}

.skill-category li:last-child {
  border-bottom: none;
}

/* Approach Pillars */
.approach-pillar {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 2px solid var(--medium-grey);
}

.approach-pillar:last-of-type {
  border-bottom: none;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.pillar-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--isb-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-title-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.pillar-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0;
}

.pillar-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.pillar-main h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  margin-top: 40px;
}

.pillar-main h3:first-child {
  margin-top: 0;
}

.pillar-main ul {
  list-style: none;
  padding: 0;
}

.pillar-main li {
  padding: 16px 0 16px 32px;
  position: relative;
  border-bottom: 1px solid var(--medium-grey);
  margin-bottom: 0;
}

.pillar-main li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--isb-red);
  font-weight: 700;
  font-size: 1.3rem;
}

.pillar-main li:last-child {
  border-bottom: none;
}

.pillar-sidebar {
  position: sticky;
  top: 100px;
}

.impact-card,
.timeline-card {
  background-color: var(--light-grey);
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.impact-card h4,
.timeline-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.impact-metric {
  margin-bottom: 24px;
}

.impact-metric:last-child {
  margin-bottom: 0;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--isb-red);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.timeline-phase {
  padding: 16px 0;
  border-bottom: 1px solid var(--medium-grey);
}

.timeline-phase:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phase-period {
  font-size: 0.9rem;
  color: var(--isb-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.phase-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Success Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding: 60px 0;
}

.metric-card {
  background-color: var(--light-grey);
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  border-top: 4px solid var(--isb-red);
}

.metric-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--isb-red);
  display: block;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Action Plan Styles */
.action-phase {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 3px solid var(--medium-grey);
}

.action-phase:last-of-type {
  border-bottom: none;
}

.phase-header-large {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--isb-red);
}

.phase-number-large {
  text-align: center;
  padding: 32px;
  background-color: var(--isb-red);
  color: var(--white);
  border-radius: 8px;
  min-width: 160px;
}

.phase-number-large .number {
  font-size: 4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.phase-number-large .label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phase-title-large h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.phase-title-large p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin: 0;
}

.phase-weeks {
  margin-bottom: 40px;
}

.week-block {
  margin-bottom: 60px;
}

.week-block h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--isb-red);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--medium-grey);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.activity {
  background-color: var(--light-grey);
  padding: 32px;
  border-radius: 4px;
}

.activity h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.activity ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--medium-grey);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.activity li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--isb-red);
  font-size: 1.5rem;
  line-height: 1;
}

.activity li:last-child {
  border-bottom: none;
}

.deliverables-box {
  background-color: var(--isb-red);
  color: var(--white);
  padding: 48px;
  border-radius: 8px;
  margin-top: 40px;
}

.deliverables-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 0;
  color: var(--white);
}

.deliverable-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverable-list li {
  padding: 20px 0 20px 40px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--white);
}

.deliverable-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.deliverable-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.deliverable-list strong {
  color: var(--white);
  font-weight: 700;
}

.success-dashboard {
  margin-top: 80px;
  padding: 60px 48px;
  background-color: var(--light-grey);
  border-radius: 8px;
}

.success-dashboard h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
}

.success-dashboard > p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.kpi-card {
  background-color: var(--white);
  padding: 40px 24px;
  border-radius: 4px;
  text-align: center;
  border-top: 4px solid var(--isb-red);
}

.kpi-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--isb-red);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.kpi-label {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.risk-section {
  margin-top: 80px;
}

.risk-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  margin-top: 0;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.risk-item {
  background-color: var(--light-grey);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid var(--isb-red);
}

.risk-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.risk-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.risk-item strong {
  color: var(--isb-red);
  font-weight: 700;
}

/* Responsive Styles for Sub-pages */
@media (max-width: 968px) {
  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .content-grid,
  .pillar-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sidebar {
    position: static;
  }

  .competencies-grid,
  .skills-grid,
  .activities-grid,
  .risk-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .metrics-grid,
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .experience-timeline {
    padding-left: 40px;
  }

  .experience-marker {
    left: -38px;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .pillar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .phase-header-large {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .phase-number-large {
    min-width: auto;
    padding: 24px 32px;
  }

  .phase-title-large h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .page-header {
    padding: 80px 0 60px;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .content-section {
    padding: 60px 0;
  }

  .metrics-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    padding: 40px 24px;
  }

  .deliverables-box,
  .success-dashboard {
    padding: 32px 24px;
  }

  .phase-number-large .number {
    font-size: 3rem;
  }

  .week-block h3 {
    font-size: 1.5rem;
  }
}

/* ===================================
   LOGIN PAGE STYLES
   =================================== */

.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--isb-red) 0%,
    var(--isb-dark-red) 100%
  );
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.login-background-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.login-container {
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Login Card */
.login-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  animation: slideInLeft 0.6s ease-out;
}

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

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo {
  height: 50px;
  width: auto;
  margin-bottom: 32px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(91%) saturate(2417%)
    hue-rotate(342deg) brightness(92%) contrast(89%);
  /* This filter converts the logo to red #dc1e35 */
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.login-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
}

/* Form Styles */
.login-form {
  margin-top: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid var(--medium-grey);
  border-radius: 10px;
  font-family: var(--font-family);
  color: var(--text-primary);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--isb-red);
  box-shadow: 0 0 0 4px rgba(220, 30, 53, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--isb-red);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--isb-red);
}

.forgot-link {
  font-size: 14px;
  color: var(--isb-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.forgot-link:hover {
  color: var(--isb-dark-red);
  text-decoration: underline;
}

.login-button {
  width: 100%;
  padding: 16px 24px;
  background: var(--isb-red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(220, 30, 53, 0.3);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.login-button:hover {
  background: var(--isb-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220, 30, 53, 0.4);
}

.login-button:active {
  transform: translateY(0);
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 32px 0 24px;
}

.login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--medium-grey);
}

.login-divider span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: var(--white);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

/* Social Login Buttons */
.social-login-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-button {
  flex: 1;
  padding: 12px 16px;
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--medium-grey);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-button:hover {
  border-color: var(--isb-red);
  background: rgba(220, 30, 53, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--medium-grey);
}

.login-footer p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.signup-link {
  color: var(--isb-red);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: all 0.2s ease;
}

.signup-link:hover {
  color: var(--isb-dark-red);
  text-decoration: underline;
}

.login-back {
  margin-top: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: var(--isb-red);
  gap: 8px;
}

/* Responsive Login Page */
@media (max-width: 1024px) {
  .login-container {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .login-section {
    padding: 24px 16px;
  }

  .login-card {
    padding: 32px 24px;
  }

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

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

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .social-login-buttons {
    flex-direction: column;
  }
}

/* Footer Responsive Styles */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer h3 {
    font-size: 16px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Modal Responsive Styles */
@media (max-width: 640px) {
  .contact-modal-content {
    width: calc(100% - 32px);
    margin: 16px;
    padding: 32px 24px;
  }

  .contact-modal h2 {
    font-size: 24px;
  }

  .contact-btns {
    flex-direction: column;
  }

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

/* Legal Modals Styles */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 40px 20px;
}

.legal-modal.active {
  display: flex;
}

.legal-modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s ease;
}

.legal-modal-content h2 {
  position: sticky;
  top: 0;
  background: linear-gradient(
    135deg,
    var(--isb-red) 0%,
    var(--isb-dark-red) 100%
  );
  color: white;
  margin: 0;
  padding: 32px 80px 32px 40px;
  font-size: 28px;
  font-weight: 700;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.legal-modal-close {
  position: sticky;
  top: 24px;
  right: 24px;
  margin-left: auto;
  margin-right: 24px;
  margin-top: 24px;
  margin-bottom: -72px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 11;
  line-height: 1;
  padding: 0;
  float: right;
}

.legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.legal-content {
  padding: 32px 40px;
}

.legal-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eaed;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h3 {
  color: var(--isb-red);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h3::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--isb-red) 0%,
    var(--isb-dark-red) 100%
  );
  border-radius: 2px;
}

.legal-section p {
  color: #202124;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 8px 0;
}

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

.legal-section ul {
  margin: 12px 0;
  padding-left: 28px;
}

.legal-section li {
  color: #5f6368;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  position: relative;
}

.legal-section li::marker {
  color: var(--isb-red);
  font-weight: 700;
}

.legal-section strong {
  color: var(--isb-dark-red);
  font-weight: 700;
}

/* Legal Modal Responsive */
@media (max-width: 768px) {
  .legal-modal {
    padding: 20px 16px;
  }

  .legal-modal-content {
    max-height: 95vh;
  }

  .legal-modal-content h2 {
    font-size: 22px;
    padding: 24px 60px 24px 24px;
  }

  .legal-modal-close {
    width: 40px;
    height: 40px;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: -60px;
  }

  .legal-content {
    padding: 24px 20px;
  }

  .legal-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .legal-section h3 {
    font-size: 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 14px;
  }
}

/* Chatbot Responsive Styles */
@media (max-width: 768px) {
  .chatbot-container {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .chat-message {
    max-width: 85%;
  }

  .chatbot-trigger {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

/* ===================================
   CV / Experience Page Styles
   =================================== */

/* CV Header */
.cv-header {
  background: var(--isb-red);
  color: white;
  padding: 64px 0 48px;
}

.cv-profile {
  max-width: 1000px;
}

.cv-name {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.cv-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0.92;
  letter-spacing: 0.3px;
}

.cv-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}

.cv-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.cv-contact-item svg {
  opacity: 0.85;
}

.cv-contact-item a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: var(--transition-fast);
}

.cv-contact-item a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

/* CV Content */
.cv-content {
  padding: 80px 0;
  background: #fafafa;
}

.cv-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.cv-main {
  background: white;
  padding: 56px 64px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cv-section {
  margin-bottom: 56px;
}

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

.cv-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--isb-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cv-summary {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* CV Job Entries */
.cv-job {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}

.cv-job:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cv-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 24px;
}

.cv-job-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.cv-company {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cv-date {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

.cv-achievements {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}

.cv-achievements li {
  padding-left: 20px;
  margin-bottom: 14px;
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.cv-achievements li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--isb-red);
  border-radius: 50%;
}

.cv-achievements li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Education */
.cv-education {
  margin-bottom: 24px;
}

.cv-education:last-child {
  margin-bottom: 0;
}

.cv-education-details {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 8px;
}

/* Sidebar Sections */
.cv-sidebar .cv-section {
  background: white;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

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

.cv-sidebar .cv-section-title {
  font-size: 12px;
  margin-bottom: 24px;
  padding-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

/* Skills */
.cv-skill-category {
  margin-bottom: 24px;
}

.cv-skill-category:last-child {
  margin-bottom: 0;
}

.cv-skill-category h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cv-skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-skill-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--medium-grey);
}

.cv-skill-list li:last-child {
  border-bottom: none;
}

/* Certifications */
.cv-cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-cert-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-grey);
}

.cv-cert-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cv-cert-list strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cv-cert-list span {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.cv-cert-year {
  color: var(--isb-red);
  font-weight: 600;
  margin-top: 4px;
}

/* Languages */
.cv-language {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-grey);
}

.cv-language:last-child {
  border-bottom: none;
}

.cv-language-name {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.cv-language-level {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--light-grey);
  padding: 4px 12px;
  border-radius: 12px;
}

/* Achievements */
.cv-achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-achievement-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0 10px 24px;
  position: relative;
  line-height: 1.6;
  border-left: 3px solid var(--isb-red);
  margin-bottom: 12px;
  padding-left: 16px;
}

/* Download CV Button */
.cv-download {
  padding: 48px 0;
  text-align: center;
  background: white;
}

.btn-download-cv {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--isb-red);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(220, 30, 53, 0.3);
}

.btn-download-cv:hover {
  background: var(--isb-dark-red);
  transform: none;
  box-shadow: 0 2px 8px rgba(220, 30, 53, 0.3);
}

/* Responsive CV Layout */
@media (max-width: 1024px) {
  .cv-grid {
    grid-template-columns: 1fr;
  }

  .cv-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cv-header {
    padding: 40px 0 30px;
  }

  .cv-name {
    font-size: 32px;
  }

  .cv-title {
    font-size: 20px;
  }

  .cv-contact {
    flex-direction: column;
    gap: 12px;
  }

  .cv-main {
    padding: 32px 24px;
  }

  .cv-sidebar {
    grid-template-columns: 1fr;
  }

  .cv-sidebar .cv-section {
    padding: 24px;
  }

  .cv-job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-date {
    font-size: 13px;
  }
}

@media print {
  .nav,
  .cv-download,
  #footer-placeholder {
    display: none;
  }

  .cv-header {
    background: var(--isb-red);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .cv-grid {
    display: block;
  }

  .cv-sidebar {
    margin-top: 24px;
  }

  .cv-section {
    page-break-inside: avoid;
  }
}

/* ===================================
   Executive CV Enhancements
   =================================== */

/* CV Hero Header - Executive Style */
.cv-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.cv-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.cv-hero .container {
  position: relative;
  z-index: 1;
}

.cv-label {
  display: inline-block;
  background: rgba(220, 30, 53, 0.9);
  color: white;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.cv-hero .cv-name {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cv-hero .cv-title {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.cv-tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.cv-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.cv-highlight {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cv-highlight:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cv-highlight-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--isb-red);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(220, 30, 53, 0.3);
}

.cv-highlight-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.cv-hero .cv-contact-bar {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  flex-wrap: wrap;
}

.cv-hero .cv-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cv-hero .cv-contact-item svg {
  color: var(--isb-red);
  flex-shrink: 0;
}

.cv-hero .cv-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.cv-hero .cv-contact-item a:hover {
  color: white;
  text-decoration: underline;
}

/* Executive Summary Section */
.cv-executive-summary {
  background: #fafafa;
  border-left: 4px solid var(--isb-red);
  padding: 48px;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 64px;
}

.cv-summary-text {
  font-size: 18px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 40px;
  font-weight: 400;
}

.cv-value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cv-value-prop {
  text-align: left;
  padding: 24px 20px;
  background: white;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}

.cv-value-prop:hover {
  border-color: var(--isb-red);
  transform: none;
  box-shadow: 0 2px 8px rgba(220, 30, 53, 0.08);
}

.cv-value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.cv-value-prop h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}

.cv-value-prop p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* CV Jobs - Executive Enhancement */
.cv-job-featured {
  background: #fafafa;
  padding: 40px;
  border-radius: 0;
  border-left: 4px solid var(--isb-red);
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 48px;
  box-shadow: none;
}

/* Multiple positions within same employer */
.cv-position {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}

.cv-position:first-of-type {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.cv-position-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 24px;
}

.cv-position-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.1px;
}

.cv-position-date {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  white-space: nowrap;
  font-style: normal;
}

.cv-job-impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 24px;
  background: white;
  border-radius: 8px;
}

.cv-impact-metric {
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  background: var(--light-grey);
  transition: all 0.3s ease;
}

.cv-impact-metric:hover {
  background: var(--isb-red);
  transform: scale(1.05);
}

.cv-impact-metric:hover .cv-metric-value,
.cv-impact-metric:hover .cv-metric-label {
  color: white;
}

.cv-metric-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--isb-red);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.cv-metric-label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cv-job-summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin: 16px 0;
  padding-left: 16px;
  border-left: 3px solid var(--isb-red);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .cv-hero .cv-name {
    font-size: 42px;
  }

  .cv-hero .cv-title {
    font-size: 22px;
  }

  .cv-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .cv-value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .cv-job-impact {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   STATE OF THE INDUSTRY SECTION STYLES
   ============================================ */

.industry-analysis {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.industry-analysis::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(220, 30, 53, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Landscape Grid */
/* Evolution Comparison Section */
.evolution-comparison {
  margin: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.comparison-intro {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.evolution-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.evolution-header {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 20px;
  padding: 24px 30px;
  background: linear-gradient(135deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

 .evolution-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 20px;
  padding: 30px;
  border-bottom: 1px solid #eef1f4;
  transition: all 0.3s ease;
  position: relative;
}

.evolution-row:last-child {
  border-bottom: none;
}

.evolution-row:hover {
  background: linear-gradient(90deg, rgba(220, 30, 53, 0.02) 0%, rgba(220, 30, 53, 0.05) 100%);
}

.evolution-area {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}

.evolution-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--isb-red) 0%, var(--isb-dark-red) 100%);
  color: white;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(220, 30, 53, 0.2);
  transition: all 0.3s ease;
}

.evolution-row:hover .evolution-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(220, 30, 53, 0.3);
}

.evolution-traditional,
.evolution-modern {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px 14px;
  border-radius: 14px;
  font-size: 15px;
  min-height: 100px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 35px -25px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e8ebef;
}

.evolution-row:hover .evolution-traditional,
.evolution-row:hover .evolution-modern {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.4);
}

/* Make traditional column feel muted/inactive */
.evolution-traditional {
  background: #f5f6f7;
  color: #7a808a;
  border-color: #dfe3e8;
  box-shadow: none;
}

.evolution-row:hover .evolution-traditional {
  transform: none;
  box-shadow: none;
}

/* Remove badge styling now unused */
.evolution-badge {
  display: none;
}

/* Mobile stacking adjustments */
@media (max-width: 768px) {
  .evolution-header,
  .evolution-row {
    grid-template-columns: 1fr;
  }

  .evolution-row {
    gap: 12px;
  }

  .evolution-area {
    align-items: flex-start;
  }

  .evolution-modern {
    border-top: 2px solid rgba(220, 30, 53, 0.25);
  }
}

.evolution-traditional::after,
.evolution-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.evolution-modern {
  color: var(--text-primary);
  background: #ffffff;
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 16px 45px -26px rgba(34, 197, 94, 0.35), 0 0 0 1px rgba(34, 197, 94, 0.12), 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.evolution-row:hover .evolution-modern {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.evolution-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--medium-grey);
}

.evolution-footer p {
  font-size: 17px;
  color: var(--isb-red);
  font-weight: 600;
  font-style: italic;
}

/* Market Landscape & Opportunities */
.market-landscape {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.landscape-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.opportunity-card {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.opportunity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--isb-red) 0%, #ff6b7a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.opportunity-card:hover::before {
  transform: scaleX(1);
}

.opportunity-card:hover {
  transform: translateY(-8px);
  border-color: var(--isb-red);
  box-shadow: 0 16px 40px rgba(220, 30, 53, 0.12);
}

.opportunity-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.opportunity-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--isb-red);
  opacity: 0.15;
  min-width: 40px;
}

.opportunity-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.opportunity-content {
  position: relative;
  z-index: 1;
}

.competitor-tag {
  display: inline-block;
  background: var(--isb-red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  margin: 0 0 16px 0;
}

.opportunity-problem {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.opportunity-solution {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.strategy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.strategy-list li {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.strategy-list li::before {
  content: "•";
  color: var(--isb-red);
  font-weight: bold;
  position: absolute;
  left: 8px;
}

.opportunity-impact {
  background: rgba(220, 30, 53, 0.08);
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid var(--isb-red);
}

.impact-label {
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.impact-value {
  color: var(--isb-red);
  font-weight: 600;
  font-size: 15px;
}

.market-conclusion {
  background: linear-gradient(135deg, var(--isb-red) 0%, #b8182b 100%);
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
}

.market-conclusion p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .evolution-header,
  .evolution-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .evolution-header {
    display: none; /* Hide header on mobile, use inline labels */
  }

  .evolution-area {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--medium-grey);
    margin-bottom: 12px;
  }

  .evolution-traditional,
  .evolution-modern {
    position: relative;
    padding-left: 100px;
  }

  .evolution-traditional::before {
    content: "Traditional:";
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6c757d;
  }

  .evolution-modern::before {
    content: "Modern:";
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--isb-red);
  }

  .evolution-comparison {
    padding: 40px 20px;
  }
}

.industry-landscape {
  margin: 60px 0;
}

.landscape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.landscape-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--medium-grey);
  position: relative;
  overflow: hidden;
}

.landscape-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--isb-red), var(--isb-dark-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.landscape-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(220, 30, 53, 0.15);
}

.landscape-card:hover::before {
  transform: scaleX(1);
}

.landscape-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.landscape-card h3 {
  font-size: 22px;
  color: var(--isb-red);
  margin-bottom: 16px;
  font-weight: 600;
}

.landscape-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Thought Leadership Section */
.thought-leadership {
  margin: 80px 0;
}

.subsection-title {
  font-size: 32px;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.subsection-intro {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.leadership-toggles {
  max-width: 900px;
  margin: 0 auto;
}

.toggle-item {
  background: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.toggle-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s ease;
}

.toggle-header:hover {
  background: var(--light-grey);
}

.toggle-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toggle-icon {
  font-size: 32px;
}

.toggle-title h4 {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.toggle-arrow {
  font-size: 20px;
  color: var(--isb-red);
  transition: transform 0.3s ease;
}

.toggle-item.active .toggle-arrow {
  transform: rotate(180deg);
}

.toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-item.active .toggle-content {
  max-height: 2000px;
  padding: 0 30px 30px;
}

.video-placeholder {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.video-mock {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.video-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 30, 53, 0.1) 0%,
    rgba(184, 24, 43, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-mock:hover::before {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--isb-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(220, 30, 53, 0.4);
}

.video-mock:hover .play-button {
  transform: scale(1.1);
  background: var(--isb-dark-red);
}

.video-label {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.toggle-text h5 {
  font-size: 20px;
  color: var(--isb-red);
  margin-bottom: 16px;
  font-weight: 600;
}

.toggle-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.strategy-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.strategy-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 12px 0 12px 32px;
  position: relative;
  border-left: 3px solid var(--isb-red);
  margin-left: 16px;
  margin-bottom: 12px;
}

.strategy-list li::before {
  content: "→";
  position: absolute;
  left: 8px;
  color: var(--isb-red);
  font-weight: bold;
}

/* Case Studies Section */
.case-studies {
  margin: 80px 0 0;
}

.par-slider {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 40px;
}

.case-selector {
  display: flex;
  border-bottom: 2px solid var(--medium-grey);
  background: var(--light-grey);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.case-tab {
  flex: 1;
  min-width: 200px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.case-tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--isb-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.case-tab:hover {
  background: rgba(220, 30, 53, 0.05);
  color: var(--isb-red);
}

.case-tab.active {
  color: var(--isb-red);
  font-weight: 600;
}

.case-tab.active::after {
  transform: scaleX(1);
}

.case-content {
  padding: 50px 40px;
  min-height: 600px;
}

.case-detail {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.case-detail.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PAR Container */
.par-container {
  display: grid;
  gap: 40px;
}

.par-section {
  background: var(--light-grey);
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid var(--isb-red);
}

.par-section.action {
  border-left-color: #2563eb;
}

.par-section.result {
  border-left-color: #10b981;
}

.par-header {
  margin-bottom: 20px;
}

.par-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--isb-red);
  margin-bottom: 8px;
}

.par-section.action .par-label {
  color: #2563eb;
}

.par-section.result .par-label {
  color: #10b981;
}

.par-header h4 {
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.par-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.metrics {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--isb-red);
  line-height: 1;
}

.metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.action-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.action-list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 12px 0 12px 40px;
  position: relative;
  margin-bottom: 12px;
}

.action-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: #2563eb;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.timeline-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #2563eb;
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.result-card {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.result-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.result-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.result-icon.success {
  background: #10b981;
  color: var(--white);
}

.result-text strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 600;
}

.result-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .landscape-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-selector {
    flex-wrap: wrap;
  }

  .case-tab {
    min-width: 150px;
    font-size: 14px;
    padding: 16px 20px;
  }

  .case-content {
    padding: 40px 30px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .industry-analysis {
    padding: 80px 0;
  }

  .landscape-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landscape-card {
    padding: 30px 24px;
  }

  .subsection-title {
    font-size: 26px;
  }

  .subsection-intro {
    font-size: 16px;
  }

  .toggle-header {
    padding: 20px;
  }

  .toggle-icon {
    font-size: 24px;
  }

  .toggle-title h4 {
    font-size: 17px;
  }

  .toggle-item.active .toggle-content {
    padding: 0 20px 24px;
  }

  .case-selector {
    flex-direction: column;
  }

  .case-tab {
    width: 100%;
    text-align: left;
  }

  .case-content {
    padding: 30px 20px;
    min-height: auto;
  }

  .par-section {
    padding: 24px 20px;
  }

  .par-header h4 {
    font-size: 20px;
  }

  .metrics {
    gap: 24px;
  }

  .metric-value {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .cv-hero {
    padding: 60px 0 40px;
  }

  .cv-hero .cv-name {
    font-size: 36px;
  }

  .cv-hero .cv-title {
    font-size: 20px;
  }

  .cv-tagline {
    font-size: 16px;
  }

  .cv-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cv-value-props {
    grid-template-columns: 1fr;
  }

  .cv-job-impact {
    grid-template-columns: 1fr;
  }

  .cv-executive-summary {
    padding: 24px;
  }
}

/* Voluntary Work Grid */
.cv-voluntary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.cv-voluntary-card {
  background: white;
  padding: 32px;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cv-voluntary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--isb-red);
}

.cv-voluntary-card:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(220, 30, 53, 0.08);
  border-color: var(--isb-red);
}

.cv-voluntary-badge {
  display: inline-block;
  background: var(--isb-red);
  color: white;
  padding: 6px 14px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cv-voluntary-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}

.cv-voluntary-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .cv-voluntary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cv-voluntary-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================
   CV / Experience Page - Complete Redesign
   =================================== */

/* Profile Card */
.cv-profile-card {
  background: white;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
  overflow: hidden;
}

.cv-profile-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 48px 56px 40px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-bottom: 3px solid var(--isb-red);
}

.cv-profile-info {
  flex: 1;
}

.cv-profile-name {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.cv-profile-title {
  font-size: 18px;
  color: var(--isb-red);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cv-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cv-meta-item {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cv-profile-stats {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cv-stat {
  text-align: center;
}

.cv-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--isb-red);
  line-height: 1.2;
  margin-bottom: 4px;
}

.cv-stat-label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.cv-profile-summary {
  padding: 32px 56px;
  border-bottom: 1px solid #e8e8e8;
}

.cv-profile-summary p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.cv-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e8e8;
}

.cv-expertise-item {
  background: white;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.cv-expertise-item:hover {
  background: #fafafa;
}

.cv-expertise-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.cv-expertise-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.cv-expertise-item p {
  font-size: 12px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

/* Timeline Styles */
.cv-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 32px;
}

.cv-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--isb-red) 0%, #e8e8e8 100%);
}

.cv-timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #f0f0f0;
}

.cv-timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cv-timeline-marker {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid var(--isb-red);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(220, 30, 53, 0.1);
}

.cv-timeline-content {
  background: white;
  padding: 0;
}

.cv-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 24px;
}

.cv-timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.cv-timeline-company {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.cv-timeline-company strong {
  color: var(--text-primary);
  font-weight: 600;
}

.cv-timeline-date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 4px;
}

.cv-timeline-highlights {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.cv-timeline-highlights li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.cv-timeline-highlights li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--isb-red);
  border-radius: 50%;
}

.cv-timeline-highlights li:last-child {
  margin-bottom: 0;
}

.cv-timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cv-tag {
  display: inline-block;
  background: #f8f8f8;
  color: #666;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}

.cv-tag:hover {
  background: var(--isb-red);
  color: white;
  border-color: var(--isb-red);
}

/* Education Cards */
.cv-education-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.sidebar-education {
  margin-top: 0;
  gap: 12px;
}

.sidebar-education .cv-education-card {
  padding: 18px 16px;
  border-radius: 4px;
  background: #fcfcfc;
}

.sidebar-education .cv-degree-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.sidebar-education .cv-school,
.sidebar-education .cv-location {
  font-size: 12px;
  margin-bottom: 4px;
}

.sidebar-education .cv-year {
  font-size: 11px;
  padding: 3px 10px;
}

.sidebar-education .cv-degree-desc {
  font-size: 12.5px;
  margin-top: 8px;
  line-height: 1.5;
}

.cv-education-card {
  background: white;
  border: 1px solid #e8e8e8;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  transition: all 0.2s ease;
}

.cv-education-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cv-degree-icon {
  font-size: 40px;
  line-height: 1;
}

.cv-degree-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.cv-school {
  font-size: 14px;
  color: var(--isb-red);
  font-weight: 600;
  margin-bottom: 4px;
}

.cv-location {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.cv-year {
  display: inline-block;
  background: #f5f5f5;
  color: #666;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.cv-degree-desc {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 12px 0 0 0;
}

/* Activity Cards */
.cv-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.sidebar-activity-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .sidebar-activity-grid {
    grid-template-columns: 1fr;
  }
}

.cv-activity-card {
  background: white;
  border: 1px solid #e8e8e8;
  padding: 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.cv-activity-card:hover {
  border-color: var(--isb-red);
  box-shadow: 0 4px 12px rgba(220, 30, 53, 0.08);
}

.cv-activity-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.cv-activity-badge.tech {
  background: #e3f2fd;
  color: #1976d2;
}

.cv-activity-badge.sports {
  background: #e8f5e9;
  color: #388e3c;
}

.cv-activity-badge.lead {
  background: #fce4ec;
  color: #c2185b;
}

.cv-activity-badge.council {
  background: #f3e5f5;
  color: #7b1fa2;
}

.cv-activity-badge.media {
  background: #fff3e0;
  color: #f57c00;
}

.cv-activity-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px 0;
  letter-spacing: -0.1px;
}

.cv-activity-card p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* Sidebar */
.cv-sidebar-section {
  background: white;
  border: 1px solid #e8e8e8;
  padding: 32px;
  margin-bottom: 24px;
}

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

.cv-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--isb-red);
}

/* Skills */
.cv-skill-group {
  margin-bottom: 28px;
}

.cv-skill-group:last-child {
  margin-bottom: 0;
}

.cv-skill-category-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.1px;
}

.cv-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cv-skill-tag {
  background: #f8f8f8;
  color: #555;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
}

.cv-skill-tag:hover {
  background: var(--isb-red);
  color: white;
  border-color: var(--isb-red);
}

/* Languages */
.cv-language-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv-language-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cv-language-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cv-language-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.cv-language-level {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.cv-language-bar {
  width: 100%;
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}

.cv-language-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--isb-red) 0%,
    var(--isb-dark-red) 100%
  );
  transition: width 0.3s ease;
}

/* Achievements Box */
.cv-achievements-box {
  background: white;
  border-left: none;
}

.cv-impact-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Metrics Grid */
.cv-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.cv-metric-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cv-metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--isb-red) 0%, #e85868 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cv-metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 30, 53, 0.12);
  border-color: var(--isb-red);
}

.cv-metric-card:hover::before {
  opacity: 1;
}

.cv-metric-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
  filter: grayscale(0.2);
}

.cv-metric-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--isb-red);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.cv-metric-label {
  font-size: 11px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cv-impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-impact-list li {
  padding-left: 24px;
  margin-bottom: 14px;
  position: relative;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

.cv-impact-list li:last-child {
  margin-bottom: 0;
}

.cv-impact-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--isb-red);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.cv-impact-list li:before {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cv-profile-header {
    grid-template-columns: 1fr;
  }

  .cv-profile-stats {
    justify-content: flex-start;
  }

  .cv-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cv-activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cv-profile-header {
    padding: 32px 24px;
  }

  .cv-profile-summary {
    padding: 24px;
  }

  .cv-profile-name {
    font-size: 28px;
  }

  .cv-profile-title {
    font-size: 16px;
  }

  .cv-expertise-grid {
    grid-template-columns: 1fr;
  }

  .cv-timeline {
    padding-left: 30px;
  }

  .cv-timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-activity-grid {
    grid-template-columns: 1fr;
  }

  .cv-education-card {
    grid-template-columns: 1fr;
  }

  .cv-degree-desc {
    grid-column: 1;
  }
}

/* Grouped Employer Styles */
.cv-timeline-group .cv-employer-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.cv-employer-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.cv-employer-tenure {
  font-size: 13px;
  color: #999;
  margin: 0;
  font-weight: 500;
}

.cv-position-group {
  padding: 24px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cv-position-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cv-position-group .cv-timeline-title {
  font-size: 18px;
  color: var(--isb-red);
}

.cv-position-group .cv-timeline-header {
  margin-bottom: 12px;
}

/* Reference Portfolio */
.reference-portfolio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px auto 12px;
  max-width: 1100px;
}

.reference-card {
  background: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reference-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--isb-dark-red);
}

.reference-card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 4px;
}

.reference-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--isb-red), var(--isb-dark-red));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.reference-avatar-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--isb-red);
}

.reference-name {
  margin: 0;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  text-align: center;
  font-weight: 600;
}

.reference-role {
  margin: 0;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.reference-org {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  margin-top: -8px;
}
}

.reference-quote {
  font-style: italic;
  color: var(--text-primary);
  margin: 8px 0 10px;
  font-size: 14px;
  line-height: 1.5;
  flex: 0 0 auto;
}

.reference-points {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
}

.reference-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.reference-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--isb-red);
  font-weight: 700;
}

.reference-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.linkedin-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.linkedin-icon-link:hover {
  transform: scale(1.1);
}

.contact-pill {
  background: var(--light-grey);
  border: 1px solid var(--medium-grey);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--isb-red);
  stroke-width: 1.8;
  fill: none;
}

.contact-pill .contact-icon-fill {
  fill: var(--isb-red);
  stroke: none;
}

.reference-note {
  margin-top: 24px;
}

.reference-disclaimer-label {
  display: inline-block;
  color: var(--isb-red);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .reference-card-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .reference-contact {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .reference-portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .reference-portfolio {
    grid-template-columns: 1fr;
  }
}

/* References Redesign */

.references-hero {
  background: linear-gradient(135deg, #ffffff, #f7f7f9);
  color: var(--text-primary);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--medium-grey);
}

.references-hero-content {
  max-width: 1000px;
}

.references-hero h2 {
  font-size: clamp(32px, 4vw, 40px);
  margin: 12px 0 10px;
  letter-spacing: -0.8px;
}

.hero-subtext {
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.75;
}

.pill {
  display: inline-block;
  background: rgba(220, 30, 53, 0.1);
  color: var(--isb-red);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0 6px;
}

.meta-item {
  background: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.meta-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.meta-item strong {
  display: block;
  font-size: 18px;
  color: var(--text-primary);
}

.meta-item small {
  color: var(--text-secondary);
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.references-grid-section .section-header.minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-header.minimal h3 {
  margin: 6px 0 2px;
  font-size: 28px;
  letter-spacing: -0.4px;
}

.section-kicker {
  color: var(--text-secondary);
  max-width: 680px;
  text-align: center;
}

.reference-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reference-legend .legend-item {
  background: var(--light-grey);
  border: 1px solid var(--medium-grey);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}

.reference-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.reference-tags span {
  background: rgba(220, 30, 53, 0.08);
  color: var(--isb-red);
  border: 1px solid rgba(220, 30, 53, 0.18);
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.references-cta {
  background: var(--white);
  border: 1px solid var(--medium-grey);
  border-radius: 14px;
  padding: 24px;
  margin: 28px 0 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-content h3 {
  margin: 6px 0 4px;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.cta-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 900px) {
  .references-hero {
    padding: 32px;
  }

  .references-grid-section .section-header.minimal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
