@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy:       #0D1B3E;
  --navy-mid:   #0f2147;
  --navy-light: #162d5e;
  --blue:       #2563EB;
  --blue-light: #60A5FA;
  --blue-dark:  #1d4ed8;
  --white:      #ffffff;
  --gray-100:   #f0f4ff;
  --gray-300:   #c3cfe2;
  --gray-500:   #8499bf;
  --border:     rgba(96,165,250,0.18);
  --font-head:  'Archivo', sans-serif;
  --font-body:  'DMSans', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 32px rgba(0,0,0,0.35);
  --transition: 0.28s ease;
  --max-w:      1280px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 19px;
}
body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
p {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-300);
}
input, textarea, select {
  font-family: var(--font-body);
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 48px;
}
section {
  padding-block: 96px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.45);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.55); }
  50%       { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}
.nav-cta .btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1e88e5 60%, #60A5FA 100%);
  font-size: 0.95rem;
  padding: 14px 28px;
  border: 2px solid rgba(96,165,250,0.4);
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  animation: ctaPulse 2.6s ease-in-out infinite;
  letter-spacing: 0.06em;
}
.nav-cta .btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563EB 100%);
  animation: none;
  box-shadow: 0 6px 28px rgba(37,99,235,0.65);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--blue-light);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--blue-light);
  color: var(--navy);
  transform: translateY(-2px);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.75;
}
.text-center {
  text-align: center;
}
.divider-accent {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin-bottom: 32px;
}
.text-center .divider-accent {
  margin-inline: auto;
}
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,62,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.2s ease;
}
.site-nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.nav-inner {
  box-sizing: border-box;
  width: 100%;
  padding-inline: 48px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; list-style: none; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
  cursor: pointer;
}
.nav-links > li > a:hover { color: #fff; background: rgba(96,165,250,0.1); }
.nav-links > li.has-dropdown.active > a { color: #60a5fa; background: rgba(96,165,250,0.1); }
.nav-links > li > a.active { color: #60a5fa; background: rgba(96,165,250,0.1); }
.nav-chevron { font-size: 0.58rem; opacity: 0.55; transition: transform 0.18s ease; }
.nav-links > li:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  margin-top: 8px;
  padding: 6px;
  z-index: 200;
  list-style: none;
  background: #0d1e45;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover { color: #fff; background: rgba(96,165,250,0.1); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero-inner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-top: 84px;
  overflow: hidden;
}
.hero-inner .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-inner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,0.90) 0%,
    rgba(13,27,62,0.70) 60%,
    rgba(13,27,62,0.82) 100%
  );
}
.hero-inner .hero-content {
  position: relative;
  z-index: 2;
  padding-block: 80px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 48px;
  width: 100%;
}
.hero-inner .hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-inner h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  max-width: 760px;
  margin-bottom: 20px;
}
.hero-inner .hero-desc {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 540px;
  line-height: 1.75;
}
.site-footer {
  background: #070f20;
  border-top: 1px solid var(--border);
  padding-top: 72px;
  padding-bottom: 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 280px;
}
.footer-tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 14px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 0.95rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--blue-light);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--gray-500);
}
.footer-contact-item .ico {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-light);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(96,165,250,0.1);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.footer-bottom a {
  color: var(--blue-light);
  transition: opacity var(--transition);
}
.footer-bottom a:hover { opacity: 0.75; }
.card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(96,165,250,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(37,99,235,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}
.card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span {
  color: var(--blue-light);
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0a1d4a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../figuras/fig2.png') center / cover no-repeat;
  opacity: 0.06;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-inline: auto;
}
.cta-banner .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.09);
}
.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
@media (max-width: 1024px) {
  .container { padding-inline: 32px; }
  .nav-inner { padding-inline: 32px; }
  .hero-inner .hero-content { padding-inline: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding-block: 64px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item { border-right: 1px solid var(--border); }
  .stats-grid .stat-item:nth-child(even) { border-right: none; }
}
@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .nav-inner { padding-inline: 20px; }
  .hero-inner .hero-content { padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: rgba(10,20,50,0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile-panel a:hover { background: rgba(96,165,250,0.1); color: #fff; }
.nav-mobile-panel .btn-primary { margin-top: 10px; text-align: center; justify-content: center; }
.mobile-nav-label {
  display: block;
  padding: 10px 14px 3px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #60a5fa;
  opacity: 0.55;
  margin-top: 4px;
}
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-12 { gap: 12px; }
.highlight { color: var(--blue-light); }
.section-alt { background: var(--navy-mid); }
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,15,32,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.28s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  padding: 4px;
}
.modal-close:hover { color: var(--white); }
.modal-eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.modal-box h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-box .modal-sub {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .modal-box { padding: 36px 24px; }
  .modal-form-row { grid-template-columns: 1fr; }
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.strength-card {
  position: relative;
  padding: 40px 36px;
  background: var(--navy-mid);
  overflow: hidden;
  transition: background var(--transition);
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.strength-card:hover { background: var(--navy-light); }
.strength-card:hover::before { opacity: 1; }
.strength-num {
  position: absolute;
  bottom: -16px; right: 12px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 7rem;
  color: var(--white);
  opacity: 0.035;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.strength-icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,235,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--blue-light);
  margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,0.25);
}
.strength-card h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.strength-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .strengths-grid { grid-template-columns: 1fr; }
  .strength-card { padding: 32px 24px; }
}
.director-exec {
  display: grid;
  grid-template-columns: 380px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.director-exec-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.director-exec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.director-exec-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    var(--navy-mid) 100%
  ), linear-gradient(
    to bottom,
    transparent 70%,
    rgba(7,15,32,0.7) 100%
  );
}
.director-exec-info {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.director-ceo-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1.5px solid rgba(96,165,250,0.35);
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.director-exec-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.director-exec-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--blue-light);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.director-exec-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin-bottom: 28px;
}
.director-exec-info p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 14px;
}
.director-exec-info p:last-of-type {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}
.director-exec-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.director-exec-certs span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 12px;
}
@media (max-width: 900px) {
  .director-exec {
    grid-template-columns: 1fr;
  }
  .director-exec-photo {
    min-height: 360px;
  }
  .director-exec-photo::after {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      var(--navy-mid) 100%
    );
  }
  .director-exec-info {
    padding: 40px 32px;
  }
}
@media (max-width: 640px) {
  .director-exec-info { padding: 32px 24px; }
}
.steps-grid {
  display: grid;
  gap: 0;
  position: relative;
}
.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(96,165,250,0.15);
  line-height: 1;
  min-width: 64px;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.step-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .split-2 { grid-template-columns: 1fr; gap: 40px; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.04em;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(96,165,250,0.08);
}
