/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--blue);
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--blue);
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--blue-light);
}

/* ── SECTION UTILITIES ────────────────────────────────── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.6);
}

.section-eyebrow.light::before {
  background: rgba(255, 255, 255, 0.4);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.18;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

/* ── PAGE HERO ────────────────────────────────────────── */
.page-hero {
  padding: 148px 6vw 90px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 47px,
    var(--blue-mid) 47px,
    var(--blue-mid) 48px
  );
  opacity: 0.22;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.page-hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FOUNDING STRIP ───────────────────────────────────── */
.founding-strip {
  background: var(--blue);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.founding-stat {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.founding-stat:last-child {
  border-right: none;
}

.founding-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.founding-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── STORY SECTION ────────────────────────────────────── */
.story-section {
  padding: 6rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
}

.story-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text p strong {
  font-weight: 600;
  color: var(--text);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--blue);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin: 4px 0;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content {
  padding-top: 8px;
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

/* ── MISSION & VISION ─────────────────────────────────── */
.mission-section {
  padding: 6rem 6vw;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.mission-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(10, 79, 191, 0.09);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}

.mission-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mission-card-icon svg {
  width: 24px;
  height: 24px;
}

.mission-card h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ── EXPERTISE SECTION ────────────────────────────────── */
.expertise-section {
  padding: 6rem 6vw;
  background: var(--white);
}

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

.expertise-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition:
    border-color 0.22s,
    background 0.22s;
}

.expertise-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.exp-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.expertise-card:hover .exp-num {
  color: var(--blue);
}

.exp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.exp-desc {
  font-size: 0.858rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ── VALUES SECTION ───────────────────────────────────── */
.values-section {
  padding: 6rem 6vw;
  background: var(--blue-deeper);
}

.values-section h2 {
  color: var(--white);
}

.values-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.value-card {
  background: var(--blue-deeper);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}

.value-card:hover {
  background: var(--blue-dark);
}

.value-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.value-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.value-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 300;
  line-height: 1.7;
}

/* ── WHY CHOOSE US ────────────────────────────────────── */
.why-section {
  padding: 6rem 6vw;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg {
  width: 18px;
  height: 18px;
}

.why-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.why-text p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* Why right: team graphic card */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 79, 191, 0.08);
}

.team-card-header {
  background: var(--blue);
  padding: 2rem;
}

.team-card-header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.team-card-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.65;
}

.team-roles {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-role {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.team-role:last-child {
  border-bottom: none;
}

.role-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue);
  flex-shrink: 0;
}

.role-info h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.role-info span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

.role-badge {
  margin-left: auto;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--white);
  padding: 7rem 6vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border-top: 1px solid var(--border);
}

.cta-left h2 {
  margin-bottom: 0.75rem;
}

.cta-left p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ───────────────────────────────────────── */

@media (min-width: 1770px) {
  .hero-img img {
    width: 837.6px;
  }
}

@media (max-width: 1100px) {
  .hero-img {
    display: none;
  }
}

@media (max-width: 1024px) {
  .story-section,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-right {
    flex-direction: row;
  }

  .founding-strip {
    grid-template-columns: repeat(1, 1fr);
  }

  .founding-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/*added 20260414*/
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .overview-stats {
    grid-template-columns: repeat(1, 1fr);
  }

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-right {
    flex-direction: column;
  }
  
  
  /*added 20260414*/
  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }
  /*hide secondary nav*/
  .industry-nav {
    display: none;
    margin: 0;
    padding: 0;
  }
    
  .page-hero-inner {
    margin-top: 0rem;
   }
   /*end added 20260414*/
   
   
}
/*end added 20260414*/



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

  .values-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-right {
    flex-direction: column;
  }
}
