@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-dark: #161616;
  --navy-primary: #222D4E;
  --navy-secondary: #1A233E;
  --navy-accent: #344370;
  --blue-accent: #6F7EAB;
  --blue-light: #B5BEE3;
  --blue-muted: #D5DAEF;
  --text-dark: #1B1B1B;
  --text-body: #5E5E5E;
  --text-light: #F7F7F7;
  --text-muted: #B3B6C3;
  --text-silver: #C2C4CD;
  --white: #FFFFFF;
  --black: #000000;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--navy-primary);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }

body.loading { overflow: hidden; }

/* ========== PAGE LOADER ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 40%, #1c2440 0%, var(--navy-dark) 72%);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), visibility 0.7s;
}

.page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(111,126,171,0.1) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(181,190,227,0.07) 0%, transparent 45%);
  pointer-events: none;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-loader-logo {
  height: 60px;
  width: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  animation:
    loaderLogoIn 0.9s cubic-bezier(0.16,1,0.3,1) forwards,
    loaderPulse 2.4s ease-in-out 1s infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

@keyframes loaderLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

.page-loader-bar {
  width: 150px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: loaderBarIn 0.6s ease-out 0.5s forwards;
}

@keyframes loaderBarIn {
  to { opacity: 1; }
}

.page-loader-bar-fill {
  position: absolute;
  top: 0; left: -40%;
  height: 100%;
  width: 40%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-light), var(--blue-accent), transparent);
  animation: loaderBarSlide 1.3s ease-in-out infinite;
}

@keyframes loaderBarSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}

@media (max-width: 480px) {
  .page-loader-logo { height: 48px; }
  .page-loader-bar { width: 120px; }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(22, 32, 58, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: 76px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-logo { display: flex; align-items: center; z-index: 10; }
.header-logo img { height: 56px; width: auto; transition: height var(--transition-smooth); }
.header.scrolled .header-logo img { height: 44px; }

.header-nav { display: flex; align-items: center; gap: 40px; }

.header-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-light);
  transition: width var(--transition-smooth);
  border-radius: 1px;
}

.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: var(--white); }
.header-nav a.active::after { width: 100%; }

a.header-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--navy-accent);
  padding: 12px 28px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

a.header-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

a.header-cta:hover {
  background: var(--blue-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(111, 126, 171, 0.4);
}

a.header-cta:hover::before { left: 100%; }
a.header-cta::after { display: none !important; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100vh;
  height: 100dvh;
  background: rgba(22, 22, 22, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.mobile-menu.active a { transform: translateY(0); opacity: 1; }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:hover { color: var(--blue-light); }

/* ========== PAGE HERO (non-home pages) ========== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-primary);
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(22, 32, 58, 0.7) 0%, rgba(22, 32, 58, 0.5) 50%, rgba(22, 32, 58, 0.85) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 120px 32px 80px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.page-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-silver);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 120px 32px;
}

.section-white { background: var(--white); }
.section-dark { background: var(--black); }
.section-navy { background: var(--navy-primary); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 24px;
  display: inline-block;
}

.section-label-light { color: var(--blue-light); }

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 800px;
}

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

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

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.card-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(111, 126, 171, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all var(--transition-smooth);
}

.card-dark:hover .card-icon {
  background: rgba(111, 126, 171, 0.2);
  transform: scale(1.05);
}

.card-icon svg { width: 28px; height: 28px; stroke: var(--blue-light); }

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-silver);
}

.card-title-dark { color: var(--text-dark); }
.card-text-dark { color: var(--text-body); }

.card-white {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card-white:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-primary);
  padding: 18px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--navy-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 45, 78, 0.45);
}

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

.btn-primary svg {
  width: 16px; height: 16px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-primary);
  background: transparent;
  padding: 16px 36px;
  border-radius: 8px;
  border: 2px solid var(--navy-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: var(--navy-primary);
  transition: width var(--transition-smooth);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline:hover::before { width: 100%; }

.btn-outline svg {
  width: 14px; height: 14px;
  transition: transform var(--transition-fast);
}

.btn-outline:hover svg { transform: translateX(4px); }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid rgba(181, 190, 227, 0.3);
  transition: all var(--transition-fast);
  background: rgba(255,255,255,0.04);
}

.btn-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(111, 126, 171, 0.25);
}

.btn-light svg {
  width: 14px; height: 14px;
  transition: transform var(--transition-fast);
}

.btn-light:hover svg { transform: translateX(4px); }

/* ========== ABOUT DETAILS SECTION ========== */
.about-section {
  position: relative;
  padding: 140px 32px;
  overflow: hidden;
  background: var(--white);
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content { opacity: 0; transform: translateX(-40px); }

.about-item {
  margin-bottom: 36px;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--blue-accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-item:hover {
  transform: translateX(6px);
  border-left-color: var(--blue-light);
}

.about-item:last-child { margin-bottom: 0; }

.about-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-item-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
}

.about-image-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(34, 45, 78, 0.15), transparent 60%);
  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.about-image-frame:hover img { transform: scale(1.03); }

.about-image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid rgba(111, 126, 171, 0.2);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-image-accent-2 {
  position: absolute;
  bottom: -15px; left: -15px;
  width: 80px; height: 80px;
  background: rgba(111, 126, 171, 0.08);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  padding: 80px 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { flex: 1; }

.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.footer-tagline span { color: var(--blue-light); }

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

.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(111, 126, 171, 0.3);
}

.footer-social a svg { width: 18px; height: 18px; fill: var(--text-muted); transition: fill var(--transition-fast); }
.footer-social a:hover svg { fill: var(--white); }

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

.footer-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--blue-light); }

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

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.4); }
.footer-copy a:hover { color: var(--blue-light); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 24px; right: 24px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.05);
}

.cookie-banner.active { transform: translateY(0); opacity: 1; }

.cookie-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.cookie-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy-primary);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn:hover {
  background: var(--navy-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 45, 78, 0.3);
}

/* ========== FORMS ========== */
.form-group { margin-bottom: 20px; }

.form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.form-label-light { color: var(--white); }

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(111, 126, 171, 0.15);
}

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

textarea.form-input { resize: vertical; min-height: 120px; }

/* ========== TEAM GRID ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy-secondary);
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.team-card-info {
  padding: 24px;
  text-align: center;
}

.team-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card-role {
  font-size: 14px;
  color: var(--blue-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ========== QUOTE ========== */
.quote-section {
  position: relative;
  padding: 100px 32px;
  text-align: center;
  background: var(--navy-primary);
}

.quote-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.quote-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.quote-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  margin: 24px auto;
  border-radius: 1px;
}

/* ========== VALUES GRID ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-smooth);
}

.value-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.value-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.value-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ========== HOMEPAGE HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-height: 100dvh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(22, 32, 58, 0.25) 0%,
    rgba(22, 32, 58, 0.10) 40%,
    rgba(22, 32, 58, 0.15) 70%,
    rgba(22, 32, 58, 0.45) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  margin-bottom: 0;
}

.hero-title .accent { color: var(--blue-light); }

.hero-cta-wrap { margin-top: 40px; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-accent), var(--blue-accent));
  padding: 18px 44px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(111, 126, 171, 0.35);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(111, 126, 171, 0.5);
}

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

.hero-cta svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll svg {
  width: 24px; height: 24px;
  stroke: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========== HOMEPAGE INTRO ========== */
.intro {
  background: var(--white);
  padding: 120px 48px;
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text { }

.intro-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.intro-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  padding: 28px 0 28px 24px;
  border-left: 3px solid var(--blue-accent);
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-accent));
  padding: 18px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(34, 45, 78, 0.3);
}

.intro-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.intro-cta:hover {
  background: linear-gradient(135deg, var(--navy-accent), var(--blue-accent));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(34, 45, 78, 0.4);
}

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

.intro-cta svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}

.intro-cta:hover svg { transform: translateX(4px); }

.intro-image { }

.intro-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-image-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(34, 45, 78, 0.1), transparent 60%);
  pointer-events: none;
}

.intro-image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.intro-image-frame:hover img { transform: scale(1.03); }

.intro-image-accent {
  position: absolute;
  top: -16px; right: -16px;
  width: 100px; height: 100px;
  border: 2px solid rgba(111, 126, 171, 0.2);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ========== HOMEPAGE CARDS SECTION ========== */
.cards-section {
  background: var(--navy-primary);
  padding: 120px 48px;
  position: relative;
}

.cards-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(111, 126, 171, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cards-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.cards-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  display: inline-block;
}

.cards-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--white);
}

.cards-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 52px 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(111, 126, 171, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 126, 171, 0.12), rgba(111, 126, 171, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.5s ease;
  border: 1px solid rgba(255,255,255,0.04);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, rgba(111, 126, 171, 0.2), rgba(111, 126, 171, 0.1));
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(111, 126, 171, 0.2);
}

.card-icon svg {
  width: 28px; height: 28px;
  stroke: var(--blue-light);
  transition: stroke 0.3s ease;
}

.card:hover .card-icon svg { stroke: var(--white); }

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.card-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ========== HOMEPAGE ABOUT SECTION VARIANTS ========== */
.about-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 20px;
  display: inline-block;
}

.about-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-accent));
  padding: 16px 36px;
  border-radius: 60px;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(34, 45, 78, 0.25);
}

.about-cta:hover {
  background: linear-gradient(135deg, var(--navy-accent), var(--blue-accent));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(34, 45, 78, 0.35);
}

.about-cta svg {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
}

.about-cta:hover svg { transform: translateX(4px); }

/* ========== IMAGE SLIDER ========== */
.slider-section {
  background: var(--navy-primary);
  padding: 100px 0;
  overflow: hidden;
}

.slider-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 48px;
}

.slider-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  display: inline-block;
}

.slider-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--white);
}

.slider-track {
  display: flex;
  gap: 24px;
  animation: slide-scroll 30s linear infinite;
  width: max-content;
}

.slider-track:hover { animation-play-state: paused; }

.slider-item {
  flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s ease;
}

.slider-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.slider-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slider-item:hover img { transform: scale(1.05); }

.slider-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, rgba(22, 32, 58, 0.7), transparent);
  pointer-events: none;
}

.slider-item-label {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

@keyframes slide-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== ABOUT PAGE - REDESIGNED ========== */

/* Story Section */
.about-story {
  background: var(--white);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.about-story::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(111, 126, 171, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-story-content { }

.about-story-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-story-label::before {
  content: '';
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  border-radius: 1px;
}

.about-story-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.about-story-title span {
  background: linear-gradient(135deg, var(--navy-primary), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-story-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.about-story-text:last-of-type {
  margin-bottom: 32px;
}

.about-story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-story-stat {
  text-align: left;
}

.about-story-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy-primary), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.about-story-stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
}

.about-story-visual {
  position: relative;
}

.about-story-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

.about-story-image-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(22, 32, 58, 0.15) 100%);
  pointer-events: none;
}

.about-story-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-story-image-frame:hover img { transform: scale(1.03); }

.about-story-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.04);
}

.about-story-badge-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-story-badge-icon svg {
  width: 24px; height: 24px;
  stroke: var(--white);
}

.about-story-badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.4;
}

.about-story-badge-text span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-body);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 2px;
}

.about-story-accent {
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  border: 2px solid rgba(111, 126, 171, 0.12);
  border-radius: 24px;
  z-index: -1;
}

/* ========== SMALL BUSINESS ENTERPRISE CERTIFIED ========== */
.about-sbe {
  background: var(--text-light);
  padding: 0 48px 140px;
}

.about-sbe-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-sbe-visual {
  position: relative;
}

.about-sbe-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1 / 1;
}

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

.about-sbe-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 130px; height: 130px;
  border: 2px solid rgba(111, 126, 171, 0.15);
  border-radius: 24px;
  z-index: -1;
}

.about-sbe-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
}

.about-sbe-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-sbe-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 32px;
}

.about-sbe-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-sbe-badge-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-primary);
  background: rgba(111, 126, 171, 0.1);
  border: 1px solid rgba(111, 126, 171, 0.25);
  padding: 10px 20px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .about-sbe { padding: 0 24px 100px; }
  .about-sbe-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-sbe-image-frame { max-width: 440px; margin: 0 auto; }
}

/* Quote / CTA Section */
.about-cta-section {
  position: relative;
  padding: 120px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 50%, var(--navy-dark) 100%);
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(111, 126, 171, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(181, 190, 227, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-quote {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.about-cta-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.about-cta-author::before {
  content: '';
  display: inline-block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  border-radius: 1px;
  flex-shrink: 0;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Guiding Principles */
.about-principles {
  background: var(--navy-dark);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.about-principles::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(111, 126, 171, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(181, 190, 227, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.about-principles-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.about-principles-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-principles-label::before,
.about-principles-label::after {
  content: '';
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent));
  border-radius: 1px;
}

.about-principles-label::after {
  background: linear-gradient(90deg, var(--blue-accent), transparent);
}

.about-principles-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.about-principles-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mission & Vision Cards */
.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.about-mv-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 48px 44px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-mv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(111, 126, 171, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about-mv-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.about-mv-card:hover::before { transform: scaleX(1); }
.about-mv-card:hover::after { opacity: 1; }

.about-mv-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 126, 171, 0.12), rgba(111, 126, 171, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s ease;
}

.about-mv-card:hover .about-mv-icon {
  background: linear-gradient(135deg, rgba(111, 126, 171, 0.2), rgba(111, 126, 171, 0.08));
  transform: scale(1.05);
}

.about-mv-icon svg {
  width: 28px; height: 28px;
  stroke: var(--blue-light);
}

.about-mv-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.about-mv-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-mv-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* Values Section */
.about-values-full {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}

.about-values-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light), var(--blue-accent));
}

.about-values-full-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-values-full-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
  display: block;
}

.about-values-full-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--blue-accent), var(--blue-light));
  border-radius: 0 0 4px 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-value-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.about-value-card:hover::before { height: 100%; }

.about-value-card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(111, 126, 171, 0.15), rgba(181, 190, 227, 0.06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.about-value-card:hover .about-value-card-number {
  background: linear-gradient(135deg, rgba(111, 126, 171, 0.3), rgba(181, 190, 227, 0.12));
  -webkit-background-clip: text;
  background-clip: text;
}

.about-value-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.about-value-card-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* Gallery Banner */
.about-gallery-banner {
  position: relative;
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(10, 14, 26, 0.68), rgba(10, 14, 26, 0.78)),
    url("https://img1.wsimg.com/isteam/ip/00a4dfa8-2fa3-49c4-9fa9-50434b58f0f5/CA%20Website%20Profiles-65.png/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1600,m") center 20% / cover no-repeat;
  padding: 90px 40px;
  text-align: center;
}

.about-gallery-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-gallery-banner-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.about-gallery-banner-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .about-gallery-banner { padding: 64px 24px; margin-top: 48px; }
}

.about-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-accent), var(--blue-accent));
  padding: 18px 44px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(111, 126, 171, 0.35);
  text-decoration: none;
}

.about-gallery-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.about-gallery-btn:hover {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(111, 126, 171, 0.5);
}

.about-gallery-btn:hover::before { left: 100%; }

.about-gallery-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}

.about-gallery-btn:hover svg { transform: translateX(4px); }

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

/* Services Grid */
/* Service Cards with Images */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

.svc-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.svc-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, rgba(22,22,22,0.8), transparent);
  pointer-events: none;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.08);
}

.svc-card-body {
  padding: 28px 32px 32px;
}

.svc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-card-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Certified Trainings Section */
.certified-section {
  background: var(--navy-dark);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.certified-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(111, 126, 171, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(181, 190, 227, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.certified-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.certified-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.certified-label::before,
.certified-label::after {
  content: '';
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent));
  border-radius: 1px;
}

.certified-label::after {
  background: linear-gradient(90deg, var(--blue-accent), transparent);
}

.certified-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.certified-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Training Cards */
.training-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Certification Cards (Kolbe / Crucial Learning) */
.cert-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 56px;
  transition: all 0.3s ease;
}

.cert-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.cert-card-reverse {
  grid-template-columns: 1fr 1fr;
}

.cert-card-reverse .cert-card-text {
  order: 2;
}

.cert-card-reverse .cert-card-visual {
  order: 1;
}

.cert-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.training-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(111, 126, 171, 0.12);
  border: 1px solid rgba(111, 126, 171, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}

.training-card-badge svg {
  width: 14px; height: 14px;
}

.cert-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cert-card-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.cert-card-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cert-card-body:last-child {
  margin-bottom: 0;
}

/* Screen Mockup Frame */
.cert-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card-screen {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.03);
  background: #1a1a2e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover .cert-card-screen {
  transform: translateY(-4px);
  box-shadow:
    0 28px 72px rgba(0,0,0,0.4),
    0 0 0 1px rgba(111, 126, 171, 0.12);
}

.screen-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.screen-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.screen-dot:first-child { background: #ff5f57; }
.screen-dot:nth-child(2) { background: #ffbd2e; }
.screen-dot:last-child { background: #28c840; }

.screen-body {
  padding: 0;
  background: #0f0f1a;
}

.screen-body img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.cert-card:hover .screen-body img {
  transform: scale(1.02);
}

/* Gallery Button */
.services-gallery-wrap {
  text-align: center;
  margin-top: 72px;
  position: relative;
  z-index: 1;
}

.services-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-accent), var(--blue-accent));
  padding: 18px 44px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(111, 126, 171, 0.35);
  text-decoration: none;
}

.services-gallery-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.services-gallery-btn:hover {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(111, 126, 171, 0.5);
}

.services-gallery-btn:hover::before { left: 100%; }

.services-gallery-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}

.services-gallery-btn:hover svg { transform: translateX(4px); }

/* Logos Carousel */
.logos-section {
  background: #FFFFFF;
  padding: 100px 0 120px;
  overflow: hidden;
  position: relative;
}

.logos-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

.logos-header {
  text-align: center;
  margin-bottom: 56px;
}

.logos-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-top: 12px;
}

.logos-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logos-track-wrapper {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.logos-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: logos-scroll 60s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logos-slide {
  flex-shrink: 0;
  width: 170px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: default;
}

.logos-slide:hover {
  transform: translateY(-2px);
}

.logos-section .certified-label {
  color: var(--navy-primary);
}

.logos-section .certified-label::before,
.logos-section .certified-label::after {
  background: linear-gradient(90deg, transparent, var(--blue-accent));
}

.logos-section .certified-label::after {
  background: linear-gradient(90deg, var(--blue-accent), transparent);
}

.logos-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: all 0.3s ease;
}

.logos-slide:hover img {
  filter: brightness(1.5) contrast(1.15);
}

/* Logo Arrows */
.logos-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #333;
}

.logos-arrow:hover {
  background: rgba(0,0,0,0.08);
  color: #000;
  transform: scale(1.05);
}

.logos-arrow:active {
  transform: scale(0.95);
}

.logos-arrow svg {
  width: 18px;
  height: 18px;
}

@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* ========== ANIMATIONS ========== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-delay-1 { transition-delay: 0.02s !important; }
.animate-delay-2 { transition-delay: 0.04s !important; }
.animate-delay-3 { transition-delay: 0.06s !important; }
.animate-delay-4 { transition-delay: 0.08s !important; }
.animate-delay-5 { transition-delay: 0.1s !important; }

/* ========== ABOUT PAGE ANIMATIONS ========== */

/* Base animation states for about page */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-animate].animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Slide from left */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-slide-left.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Slide from right */
.animate-slide-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-slide-right.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Scale up */
.animate-scale {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-scale.animate-in {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Fade in only */
.animate-fade {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-fade.animate-in {
  opacity: 1 !important;
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.02s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.04s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.06s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.14s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.16s; }

/* Hero badge pulse */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181, 190, 227, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(181, 190, 227, 0); }
}

.page-hero-badge {
  animation: badge-pulse 1.5s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

/* Gradient shift */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 2.5s ease infinite;
}

/* Rotate subtle */
@keyframes rotate-subtle {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

/* Scale pulse */
@keyframes scale-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.animate-pulse {
  animation: scale-pulse 1.2s ease-in-out infinite;
}

/* Counter animation */
@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Border animation */
@keyframes border-draw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}

/* Card hover glow */
.about-mv-card:hover,
.about-value-card:hover {
  box-shadow: 
    0 24px 64px rgba(0,0,0,0.3),
    0 0 40px rgba(111, 126, 171, 0.1);
}

/* Badge float */
.about-story-badge {
  animation: float 2s ease-in-out infinite;
}

/* Stats counter animation */
.about-story-stat-number {
  transition: all 0.4s ease;
}

.about-story-stat:hover .about-story-stat-number {
  transform: scale(1.1);
}

/* Value card number glow */
.about-value-card:hover .about-value-card-number {
  text-shadow: 0 0 30px rgba(111, 126, 171, 0.3);
}

/* Image parallax effect */
.about-story-image-frame {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-visual:hover .about-story-image-frame {
  transform: translateY(-8px);
}

/* CTA section particles */
.about-cta-section .particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(181, 190, 227, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

/* Smooth scroll indicator */
@keyframes scroll-indicator {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.5; transform: translateY(8px); }
}

/* ========== BLOG INSIGHTS SLIDER ========== */
.blog-section {
  background:
    linear-gradient(rgba(10, 14, 26, 0.72), rgba(10, 14, 26, 0.72)),
    url("https://img1.wsimg.com/isteam/stock/121174/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,m") center center / cover no-repeat fixed;
  padding: 120px 0 100px;
  overflow: hidden;
  position: relative;
}

.blog-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 48px;
}

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

.blog-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.blog-label::before,
.blog-label::after {
  content: '';
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent));
  border-radius: 1px;
}

.blog-label::after {
  background: linear-gradient(90deg, var(--blue-accent), transparent);
}

.blog-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

/* Filter Tabs */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.blog-filter-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.blog-filter-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, var(--navy-accent), var(--blue-accent));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(111, 126, 171, 0.3);
}

/* Slider */
.blog-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-viewport {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

.blog-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blog Card */
.blog-card {
  flex-shrink: 0;
  width: 270px;
  display: block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.blog-card.hidden {
  display: none;
}

.blog-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.blog-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 18px 20px 22px;
}

.blog-card-date {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  transition: gap 0.2s ease;
}

.blog-card-link svg {
  width: 13px;
  height: 13px;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

/* Blog Arrows */
.blog-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.blog-arrow:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.blog-arrow:active {
  transform: scale(0.95);
}

.blog-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .blog-inner { padding: 0 32px; }
}

@media (max-width: 768px) {
  .blog-section { padding: 80px 0 60px; }
  .blog-inner { padding: 0 20px; }
  .blog-filters { gap: 8px; }
  .blog-filter-btn { font-size: 12px; padding: 8px 16px; }
  .blog-slider { gap: 12px; }
  .blog-card { width: 250px; }
  .blog-card-img { height: 150px; }
  .blog-card-body { padding: 16px 16px 20px; }
  .blog-arrow { display: none; }

  /* No arrows on mobile — let the track scroll natively via touch instead */
  .blog-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .blog-viewport::-webkit-scrollbar { display: none; }
  .blog-track { transform: none !important; }
  .blog-card { scroll-snap-align: start; }
}

@media (max-width: 480px) {
  .blog-card { width: 230px; }
  .blog-card-img { height: 140px; }
}

/* ========== CULTURE GALLERY ========== */
.section-gallery {
  background: var(--navy-dark);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.section-gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(111, 126, 171, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(181, 190, 227, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-slide {
  flex-shrink: 0;
  width: 320px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.gallery-slide:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  border-color: rgba(111, 126, 171, 0.2);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-slide:hover img {
  transform: scale(1.06);
}

.gallery-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(to top, rgba(22, 32, 58, 0.6), transparent);
  pointer-events: none;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.gallery-arrow:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.gallery-arrow:active {
  transform: scale(0.95);
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

@media (max-width: 768px) {
  .section-gallery { padding: 60px 0 48px; }
  .gallery-heading { margin-bottom: 32px; }
  .gallery-carousel { padding: 0 20px; gap: 12px; }
  .gallery-slide { width: 260px; height: 190px; }
  .gallery-arrow { display: none; }
}

@media (max-width: 480px) {
  .gallery-slide { width: 220px; height: 160px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .header { padding: 0 32px; }
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .cards-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-image { order: -1; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { order: -1; }
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-story-visual { order: -1; }
  .about-mv-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-full { padding: 40px 32px; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .training-cards { gap: 32px; }
  .cert-card { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .cert-card-reverse .cert-card-text { order: 1; }
  .cert-card-reverse .cert-card-visual { order: 2; }
  .screen-body img { height: 240px; padding: 6px; }
  .logos-track { gap: 20px; }
  .logos-slide { width: 140px; height: 76px; }
  .logos-inner { padding: 0 40px; }
  .logos-arrow { width: 42px; height: 42px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; height: 72px; }
  .header-logo img { height: 40px; }
  .page-hero-content { padding: 100px 20px 60px; }
  .section { padding: 80px 20px; }
  .intro { padding: 80px 20px; }
  .cards-section { padding: 80px 20px; }
  .card { padding: 36px 28px; }
  .card-dark { padding: 36px 28px; }
  .about-section { padding: 80px 20px; }
  .about-story { padding: 80px 20px; }
  .about-story-stats { flex-direction: column; gap: 24px; }
  .about-story-image-frame img { height: 360px; }
  .about-story-badge { bottom: -16px; left: 16px; right: 16px; }
  .about-cta-section { padding: 80px 20px; }
  .about-cta-buttons { flex-direction: column; align-items: center; }
  .about-principles { padding: 80px 20px; }
  .about-values-full { padding: 32px 20px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-card-img { height: 180px; }
  .certified-section { padding: 80px 20px; }
  .cert-card { padding: 28px 20px; gap: 28px; border-radius: 18px; }
  .cert-card-title { font-size: 26px; }
  .cert-card-body { font-size: 14px; }
  .logos-carousel { gap: 10px; }
  .logos-track { gap: 16px; animation-duration: 40s; }
  .logos-slide { width: 120px; height: 64px; padding: 14px; }
  .logos-inner { padding: 0 20px; }
  .logos-arrow { display: none; }
  .slider-section { padding: 60px 0; }
  .slider-item { width: 300px; height: 220px; }
  .footer { padding: 60px 20px 32px; }
  .footer-links { flex-direction: column; gap: 16px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; padding: 24px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .intro-title { font-size: 28px; }
  .page-hero-title { font-size: 28px; }
  .section-title { font-size: 28px; }
  .about-story-title { font-size: 28px; }
  .about-story-stat-number { font-size: 32px; }
  .about-principles-title { font-size: 28px; }
  .certified-title { font-size: 28px; }
  .cert-card-title { font-size: 22px; }
  .logos-slide { width: 110px; height: 60px; padding: 12px; }
  .card-icon { width: 48px; height: 48px; }
  .card-icon svg { width: 24px; height: 24px; }
  .slider-item { width: 260px; height: 180px; }
  .footer-tagline { font-size: 24px; }
}

/* ========== WORK IN PROGRESS BANNER ========== */
.wip-banner {
  background: linear-gradient(90deg, rgba(111,126,171,0.07), rgba(181,190,227,0.1), rgba(111,126,171,0.07));
  border-top: 1px solid rgba(111,126,171,0.18);
  border-bottom: 1px solid rgba(111,126,171,0.18);
  padding: 22px 32px;
}

.wip-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-primary);
  background: rgba(111,126,171,0.12);
  border: 1px solid rgba(111,126,171,0.35);
  padding: 7px 16px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

.wip-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-accent);
  animation: wipPulse 1.8s ease-in-out infinite;
}

@keyframes wipPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.5); }
}

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

@media (max-width: 640px) {
  .wip-banner { padding: 20px 20px; }
  .wip-banner-inner { flex-direction: column; gap: 10px; }
}

/* Pages with no dark hero to sit against — keep header solid always */
.page-plain .header {
  background: rgba(22, 32, 58, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.page-plain .wip-feature {
  padding-top: 200px;
  padding-bottom: 140px;
}

@media (max-width: 640px) {
  .page-plain .wip-feature {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

/* ========== WORK IN PROGRESS — FEATURE SECTION ========== */
.wip-feature {
  position: relative;
  background: var(--white);
  padding: 150px 32px;
  overflow: hidden;
  text-align: center;
}

.wip-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(111,126,171,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(181,190,227,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.wip-feature-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wip-feature-icon {
  width: 88px; height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-primary), var(--blue-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 16px 40px rgba(52, 67, 112, 0.3);
}

.wip-feature-icon svg {
  width: 38px; height: 38px;
  stroke: var(--white);
}

.wip-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-primary);
  background: rgba(111,126,171,0.1);
  border: 1px solid rgba(111,126,171,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.wip-feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.wip-feature-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 40px;
}

.wip-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 640px) {
  .wip-feature { padding: 100px 24px; }
  .wip-feature-icon { width: 72px; height: 72px; border-radius: 20px; margin-bottom: 24px; }
  .wip-feature-icon svg { width: 32px; height: 32px; }
  .wip-feature-actions { flex-direction: column; width: 100%; }
  .wip-feature-actions a { justify-content: center; }
}
