*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
 --accent: #d0a741;
  --accent-dark: #8a6a1a;
    --accent-light: #6b4e3f;
  --dark: #0e100f;
  --white: #ffffff;
  --offwhite: #f7f5f2;
  --muted: #9a9490;
  --text-secondary: #6b6560;
  --border: #e6e1da;
  --dark-navy: #0b0b0d;
  --page-pad: 120px;
  --navy: #0b1448;
  --text: #1a1a1a;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--white);
  overflow-x: hidden;
}


/* HERO */
#hero {
  position: relative;
  max-height: 85vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 130px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(26, 57, 98, 0.616) 5%,
      rgba(8, 14, 8, 0) 90%
    ),
    linear-gradient(to top, rgba(14, 12, 8, 0.92) 0%, transparent 15%);
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}
.hero-top-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 22px;
}
.hero-title-col {
  flex: 1;
}
.hero-title {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 820px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary-vort {
  background: #fff;
  color: #0f1410;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary-vort:hover {
  opacity: 0.88;
  color: #0f1410;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 2;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scroll-hint svg {
  width: 14px;
  height: 14px;
}

/* SECTION BODY */
.section-body {
  width: 100%;
}
.industries-sidebar {
  padding: 36px 0 0 40px;
  border-right: 1px solid #e8eaef;
  position: sticky;
  top: 80px;
}
.industry-link {
  display: block;
  padding: 16px 30px 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: #5a6082;
  text-decoration: none;
  border-right: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
  line-height: 1.4;
  margin-right: -1px;
}
.industry-link:hover {
  color: var(--accent);
}
.industry-link.active {
  color: var(--accent-light);
  font-weight: 700;
  border-right-color: var(--accent);
}
.content-panel {
  padding: 40px 48px 60px 48px;
  animation: fadeSlide 0.35s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-panel h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.content-panel .intro {
  font-size: 17px;
  color: #555c78;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 780px;
}
.content-panel h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* AVIATION HERO STRIP */
.aviation-hero-strip {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  height: 320px;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 40%, #0d2040 100%);
  display: flex;
  align-items: flex-end;
}
.aviation-hero-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1200&q=80")
    center/cover;
  opacity: 0.35;
}
.aviation-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.2) 60%,
    transparent 100%
  );
}
.aviation-strip-content {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.aviation-strip-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #7eb3ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.aviation-strip-headline {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 480px;
}
.aviation-strip-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.aviation-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 18px;
  text-align: center;
  min-width: 130px;
}
.aviation-badge-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.aviation-badge-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 500;
}

/* GALLERY */
.aviation-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-img:hover img {
  transform: scale(1.05);
}
.gallery-img .img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 20px 14px 12px;
  letter-spacing: 0.5px;
}

/* HIGHLIGHTS */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8eaef;
  border: 1px solid #e8eaef;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}
.highlight-cell {
  background: #fff;
  padding: 24px 22px;
  transition: background 0.2s;
}
.highlight-cell:hover {
  background: #f7f9ff;
}
.highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a3a6b, #2251a3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.highlight-icon svg {
  width: 18px;
  height: 18px;
}
.highlight-num {
  font-size: 28px;
  font-weight: 800;
  color: #1a2a6c;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.highlight-label {
  font-size: 12px;
  font-weight: 600;
  color: #8892b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.highlight-desc {
  font-size: 12.5px;
  color: #555c78;
  line-height: 1.6;
}

/* PARTNERSHIPS */
.partnerships-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  align-items: stretch;
}
.partnership-card {
  flex: 1;
  min-width: 180px;
  border: 1px solid #e8eaef;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.partnership-card:hover {
  box-shadow: 0 6px 24px rgba(30, 58, 138, 0.08);
  border-color: #bfcfee;
}
.partner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e3a8a;
  margin-bottom: 4px;
}
.partner-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6c;
  line-height: 1.3;
}
.partner-type {
  font-size: 11px;
  font-weight: 600;
  color: #8892b0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.partner-desc {
  font-size: 12.5px;
  color: #636880;
  line-height: 1.6;
  margin-top: auto;
}

/* SERVICE CARDS */
.service-card {
  background: #f7f8fc;
  border-radius: 10px;
  padding: 28px 28px 24px;
  height: 100%;
  border: 1px solid #eaedf5;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
  transform: translateY(-3px);
}
.service-card .card-icon {
  width: 38px;
  height: 38px;
  background: #1e3a8a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card .card-icon svg {
  width: 20px;
  height: 20px;
}
.service-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: #636880;
  line-height: 1.7;
  margin: 0;
}
.section-divider {
  border: none;
  border-top: 1px solid #eaedf5;
  margin: 36px 0;
}


    .aviation-subnav {
      display: flex;
      gap: 0;
      border-bottom: 2px solid #e8eaef;
      margin-bottom: 32px;
    }
    .aviation-subnav-btn {
      padding: 10px 22px;
      font-size: 13.5px;
      font-weight: 600;
      color: #5a6082;
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
      font-family: inherit;
    }
    .aviation-subnav-btn:hover { color: #1e3a8a; }
    .aviation-subnav-btn.active {
      color: #1e3a8a;
      border-bottom-color: #1e3a8a;
    }
    .aviation-subpanel { display: none; }
    .aviation-subpanel.active { display: block; animation: fadeSlide 0.3s ease; }

    /* Leasing-specific styles */
    .leasing-hero {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      margin-bottom: 36px;
      height: 280px;
      background: linear-gradient(135deg, #071320 0%, #0d2b4b 50%, #04101e 100%);
      display: flex;
      align-items: flex-end;
    }
    .leasing-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("https://images.unsplash.com/photo-1474302770737-173ee21bab63?w=1200&q=80") center/cover;
      opacity: 0.28;
    }
    .leasing-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,19,32,0.95) 0%, rgba(7,19,32,0.15) 60%, transparent 100%);
    }
    .leasing-hero-content {
      position: relative;
      z-index: 2;
      padding: 28px 36px;
    }
    .leasing-tag {
      display: inline-block;
      background: rgba(208,167,65,0.9);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    .leasing-hero-title {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    .leasing-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid #e8eaef;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 36px;
    }
    .leasing-step {
      padding: 24px 20px;
      border-right: 1px solid #e8eaef;
      position: relative;
      background: #fff;
      transition: background 0.2s;
    }
    .leasing-step:last-child { border-right: none; }
    .leasing-step:hover { background: #f7f9ff; }
    .leasing-step-num {
      font-size: 32px;
      font-weight: 800;
      color: #e8eaef;
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.04em;
    }
    .leasing-step-title {
      font-size: 13.5px;
      font-weight: 700;
      color: #1a2a6c;
      margin-bottom: 8px;
    }
    .leasing-step-desc {
      font-size: 12.5px;
      color: #636880;
      line-height: 1.65;
    }
    .leasing-types {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 36px;
    }
    .leasing-type-card {
      border: 1px solid #e8eaef;
      border-radius: 12px;
      padding: 24px 22px;
      transition: box-shadow 0.2s, border-color 0.2s;
    }
    .leasing-type-card:hover {
      box-shadow: 0 6px 24px rgba(30,58,138,0.08);
      border-color: #bfcfee;
    }
    .leasing-type-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #4a7fc1;
      margin-bottom: 8px;
    }
    .leasing-type-name {
      font-size: 16px;
      font-weight: 700;
      color: #1a2a6c;
      margin-bottom: 10px;
    }
    .leasing-type-desc {
      font-size: 13px;
      color: #636880;
      line-height: 1.7;
    }
    .leasing-differentiators {
      background: #f7f8fc;
      border-radius: 14px;
      border: 1px solid #eaedf5;
      padding: 28px;
      margin-bottom: 36px;
    }
    .leasing-diff-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-top: 18px;
    }
    .leasing-diff-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .leasing-diff-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, #1a3a6b, #2251a3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .leasing-diff-icon svg { width: 15px; height: 15px; }
    .leasing-diff-title {
      font-size: 13px;
      font-weight: 700;
      color: #1a2a6c;
      margin-bottom: 4px;
    }
    .leasing-diff-desc {
      font-size: 12px;
      color: #636880;
      line-height: 1.6;
    }

/* ═══ CORE DIVISIONS SECTION ═══════════════════════════════════════════ */
#core-divisions {
  background: #09111f;
  padding: 100px 0 0;
  overflow: hidden;
  margin-top: 100px;
  position: relative;
}
#core-divisions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(126, 179, 255, 0.3),
    transparent
  );
}
.divisions-inner {
  margin: 0 auto;
  padding: 0 64px;
}
.divisions-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #d0a741;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.divisions-heading {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.divisions-heading span {
  color: #d0a741;
}
.divisions-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 680px;
}
.divisions-body strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Stats bar */
.divisions-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin: 56px 0 64px;
}
.div-stat {
  padding: 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.div-stat:last-child {
  border-right: none;
}
.div-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.div-stat-num span {
  color: #d0a741;
}
.div-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}


    @media (max-width: 768px) {
  .divisions-stats {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .div-stat {
    min-width: 200px; /* forces horizontal scroll */
  }
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.carousel-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.carousel-arrows {
  display: flex;
  gap: 10px;
}
.proj-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.proj-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Carousel track — full viewport width */
.proj-carousel-wrap {
  width: 100%;
  overflow: hidden;
  padding-bottom: 64px;
}
.proj-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 4px 64px 20px;
}

/* Project card */
.proj-card {
  flex: 0 0 580px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
          /* transform 0.3s ease, */
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.proj-card:hover {
  /* transform: translateY(-6px); */
  border-color: rgba(74, 127, 193, 0.4);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(74, 127, 193, 0.15);
}
.proj-card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.proj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.proj-card:hover .proj-card-img img {
  transform: scale(1.06);
}
.proj-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 17, 31, 0.9) 0%, transparent 60%);
}
.proj-card-sector {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0d2b4b2f;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.proj-card-body {
  padding: 22px 24px 24px;
}
.proj-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.proj-card-desc {
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* limits to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;

  color: rgb(0, 0, 0);
  line-height: 1.7;
  margin-bottom: 20px;
}
.proj-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.proj-meta-chip {
  background: rgba(70, 64, 64, 0.042);
  border: 1px solid rgba(255, 255, 255, 0.712);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}
.proj-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.proj-card-cta-label {
  font-size: 12px;
  font-weight: 600;
  color: #d0a741;
  letter-spacing: 0.3px;
}
.proj-card-cta-arrow {
  color: #d0a741;
  display: flex;
  align-items: center;
}

/* Dots */
.proj-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}
.proj-dot.active {
  background: #c1ab4a;
  width: 20px;
  border-radius: 3px;
}

/* ═══ MODAL ═══════════════════════════════════════════════════════════════ */
.proj-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.proj-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.proj-modal-box {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);

  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 212, 19, 0.3) transparent;
}
.proj-modal-backdrop.open .proj-modal-box {
  transform: translateY(0) scale(1);
}
.proj-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.proj-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Modal content */
.modal-hero {
  height: 260px;
  position: relative;
  overflow: hidden;
  /* border-radius: 20px 20px 0 0; */
}
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 26, 46, 1) 0%,
    rgba(13, 26, 46, 0.3) 60%,
    transparent 100%
  );
}
.modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
}
.modal-sector-badge {
  display: inline-block;
  background: rgba(193, 167, 74, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.modal-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #2e2e2e;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.modal-body {
  padding: 32px 36px 40px;
}
.modal-intro {
  font-size: 15px;
  color: rgba(68, 68, 68, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}

.modal-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.modal-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 20px;
  text-align: center;
}
.modal-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #2c2c2c;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}
.modal-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.modal-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #4a7fc1;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.modal-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.modal-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(206, 43, 43, 0.06);
}
.modal-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(74, 127, 193, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.modal-feature-icon svg {
  width: 14px;
  height: 14px;
}
.modal-feature-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 3px;
}
.modal-feature-desc {
  font-size: 12.5px;
  color: rgba(47, 46, 46, 0.5);
  line-height: 1.6;
}

.modal-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.modal-partner-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(45, 45, 45, 0.65);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
}

.modal-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.modal-btn-primary {
  background: #1e3a8a;
  color: #414141;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  font-family: inherit;
}
.modal-btn-primary:hover {
  background: #2251a3;
  color: #fff;
}
.modal-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: inherit;
}
.modal-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

footer {
  padding: 30px 40px;
  border-top: 1px solid #eaedf5;
  font-size: 13px;
  color: #8892b0;
}
