/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MR BIOLOGIST LLP — Main Stylesheet
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  /* ── Brand colours (from logo) ── */
  --orange:       #E8911E;
  --orange-dark:  #c47610;
  --orange-light: #fdf0dc;
  --orange-mid:   #f5a83c;

  --blue:         #2B5BA8;
  --blue-dark:    #1a3d7a;
  --blue-light:   #dde8f8;
  --blue-mid:     #4a7bc4;

  --gray:         #888888;

  /* ── Semantic aliases ── */
  --green:       var(--blue);
  --green-dark:  var(--blue-dark);
  --green-light: var(--blue-light);
  --green-mid:   var(--blue-mid);
  --teal:        var(--orange-dark);
  --accent:      var(--orange);

  --text:        #1a1e2e;
  --text-muted:  #555;
  --text-light:  #888;
  --bg:          #ffffff;
  --bg-alt:      #f7f9fc;
  --bg-dark:     #0d1320;
  --border:      #dde3ee;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
  --radius:      12px;
  --radius-lg:   20px;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --max-w:       1180px;
  --transition:  0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,91,168,.35); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: .45rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Section common ── */
.section { padding: 5rem 0; }
.section:nth-child(even) { background: var(--bg-alt); }
.section-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: .75rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 1rem; }
.section-desc { max-width: 680px; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 3rem; }
.section-tag { color: var(--accent); font-weight: 600; margin-bottom: 2.5rem; font-size: 1.05rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NAV â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.25rem; }
.logo-icon { font-size: 1.4rem; }
.logo-text { letter-spacing: -.01em; }
.accent { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { padding: .45rem .8rem; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-light); }
.nav-links .btn { color: #fff; padding: .45rem 1.1rem; }
.nav-links .btn:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #0d1320;
  overflow: hidden;
}

/* Full-bleed video */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.hero-video.loaded { display: block; }

/* Full-bleed canvas (fallback) */
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-canvas.hidden { display: none; }

/* Dark gradient overlay — readable text + brand feel */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(8,14,30,.88) 40%, rgba(8,14,30,.55) 100%),
    linear-gradient(to top,   rgba(8,14,30,.60)  0%,  transparent       50%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 6rem;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--orange-mid);
  background: rgba(232,145,30,.14);
  border: 1px solid rgba(232,145,30,.35);
  padding: .3rem .9rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff; line-height: 1.12;
  margin-bottom: .75rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-subtitle {
  font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-33.333%);
  text-align: center; color: rgba(255,255,255,.35);
  font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; z-index: 2;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  margin: .6rem auto 0;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ABOUT â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: start; }
.about-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--green-dark); }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-text blockquote { border-left: 3px solid var(--green); padding-left: 1rem; color: var(--green-dark); font-style: italic; margin: 1.5rem 0; font-size: 1.05rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.service-tags span { background: var(--green-light); color: var(--green-dark); padding: .3rem .8rem; border-radius: 50px; font-size: .8rem; font-weight: 600; }

.facility-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; }
.facility-icon { font-size: 1.5rem; }
.facility-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

.achievements { background: var(--green-light); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.5rem; }
.achievements h4 { font-weight: 700; margin-bottom: .75rem; color: var(--green-dark); }
.achievements ul { display: flex; flex-direction: column; gap: .5rem; }
.achievements li { font-size: .9rem; color: var(--green-dark); }

.timeline { display: flex; flex-direction: column; gap: 1rem; }
.timeline-item { display: flex; gap: 1rem; align-items: flex-start; }
.year { background: var(--green); color: #fff; font-weight: 700; font-size: .8rem; padding: .2rem .6rem; border-radius: 6px; white-space: nowrap; flex-shrink: 0; margin-top: .2rem; }
.timeline-item strong { display: block; font-size: .95rem; }
.timeline-item p { color: var(--text-muted); font-size: .85rem; margin: 0; }

.founder-card { display: flex; gap: 2rem; align-items: flex-start; background: linear-gradient(135deg, var(--blue-dark), var(--orange-dark)); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem; flex-shrink: 0; border: 3px solid rgba(255,255,255,.3); }
.founder-role { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1rem; }
.founder-info blockquote { border-left: 3px solid rgba(255,255,255,.4); padding-left: 1rem; font-style: italic; color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.founder-info p { color: rgba(255,255,255,.75); font-size: .95rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SERVICES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-number { font-size: 2.5rem; font-weight: 800; color: var(--green-light); margin-bottom: .5rem; line-height: 1; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.service-card ul { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.service-card li { font-size: .85rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.service-card li::before { content: '\2022'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.service-link { font-size: .875rem; font-weight: 600; color: var(--green); transition: gap var(--transition); }
.service-link:hover { color: var(--green-dark); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• R&D â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.rd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rd-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.rd-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.rd-tag { background: var(--green-light); color: var(--green-dark); font-size: .75rem; font-weight: 700; padding: .5rem 1.25rem; }
.rd-img-placeholder { font-size: 4rem; text-align: center; padding: 2rem; background: var(--bg-alt); }
.rd-card h3 { font-size: 1rem; font-weight: 700; padding: 1.25rem 1.25rem .5rem; line-height: 1.4; }
.rd-card p { font-size: .875rem; color: var(--text-muted); padding: 0 1.25rem 1rem; }
.rd-impact { background: var(--bg-alt); padding: 1rem 1.25rem; font-size: .85rem; color: var(--green-dark); border-top: 1px solid var(--border); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TEAM â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-light); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 auto 1rem; }
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.team-role { font-size: .8rem; color: var(--text-muted); }
.join-card { border-style: dashed; border-color: var(--border); background: var(--bg-alt); }
.join-avatar { background: #e0ede6 !important; color: var(--green-dark) !important; font-size: 1.5rem; font-weight: 400; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TRAINING â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.training-areas { margin-bottom: 3rem; }
.training-areas h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag { background: var(--green-light); color: var(--green-dark); padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 600; }

.duration-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 3rem; }
.duration-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all var(--transition); }
.duration-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.duration-icon { font-size: 2rem; margin-bottom: .75rem; }
.duration-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.duration-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

.program-flow { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; margin-bottom: 2.5rem; }
.program-flow h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 2rem; }
.flow-steps { display: flex; align-items: flex-start; gap: .75rem; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 140px; text-align: center; }
.flow-icon { font-size: 2rem; margin-bottom: .75rem; }
.flow-step h4 { font-size: .85rem; font-weight: 700; margin-bottom: .4rem; }
.flow-step p { font-size: .78rem; color: var(--text-muted); }
.flow-arrow { font-size: 1.5rem; color: var(--green); align-self: center; flex-shrink: 0; margin-top: -.5rem; }

.who-can-apply { background: var(--green-light); border-radius: var(--radius); padding: 1.75rem; }
.who-can-apply h3 { font-weight: 700; margin-bottom: .75rem; color: var(--green-dark); }
.who-can-apply p { color: var(--green-dark); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• APPLY â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.apply { background: var(--bg-alt); }
.apply-form { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FORMS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,74,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-message { margin-top: 1rem; font-size: .9rem; font-weight: 500; min-height: 1.5rem; }
.form-message.success { color: var(--green); }
.form-message.error { color: #e74c3c; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TESTIMONIALS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials { background: var(--bg-alt); }
.testimonials .section-label { color: var(--accent); }
.testimonials .section-title { color: var(--text); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.quote-mark { font-size: 4rem; line-height: .8; color: var(--green); font-family: Georgia, serif; margin-bottom: .5rem; }
.testimonial-card > p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-author strong { color: var(--text); font-size: .85rem; display: block; }
.testimonial-author p { color: var(--text-light); font-size: .78rem; margin: 0; }

.cta-banner { text-align: center; background: linear-gradient(135deg, var(--blue), var(--orange)); border-radius: var(--radius-lg); padding: 3rem; }
.cta-banner h3 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• CONTACT â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: .25rem; }
.contact-item p { color: var(--text-muted); font-size: .9rem; margin: 0 0 .25rem; }
.contact-phone { color: var(--green-dark) !important; font-weight: 600; }
.map-link { font-size: .85rem; font-weight: 600; color: var(--green); text-decoration: underline; display: inline-block; margin-top: .25rem; }
.map-link:hover { color: var(--green-dark); }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NEWSLETTER â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.newsletter-section { background: linear-gradient(135deg, var(--blue-dark), var(--orange-dark)); padding: 3rem 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-inner h3 { color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; }
.newsletter-inner > div > p { color: rgba(255,255,255,.75); }
.newsletter-form { display: flex; gap: .75rem; align-items: flex-start; flex-wrap: wrap; position: relative; }
.newsletter-form input { padding: .7rem 1.25rem; border: none; border-radius: 50px; font-size: .95rem; min-width: 280px; outline: none; }
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
#newsletter-message { position: absolute; top: 100%; left: 0; margin-top: .5rem; white-space: nowrap; font-size: .85rem; font-weight: 500; }
#newsletter-message.success { color: #a8f0c6; }
#newsletter-message.error { color: #f5a0a0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FOOTER â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: .75rem; }
.footer-tagline { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-links h4 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--green-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-mid); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• LOGO IMAGE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.logo-img { height: 40px; width: auto; object-fit: contain; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TEAM PHOTOS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.team-photo-wrap {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1rem;
  border: 3px solid var(--green-light);
}
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card.featured .team-photo-wrap { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• R&D GALLERY â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.rd-gallery { background: var(--bg-alt); }
.rd-main-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.rd-thumbs { display: flex; gap: 4px; padding: 4px; background: #000; }
.rd-thumbs img { flex: 1; height: 56px; object-fit: cover; cursor: pointer; opacity: .75; transition: opacity var(--transition); border-radius: 2px; }
.rd-thumbs img:hover { opacity: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PARTNER LOGOS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• AWARDS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.awards { padding-bottom: 3rem; }

/* ── Shared carousel base ── */
.carousel-viewport {
  overflow: hidden; width: 100%; position: relative;
  cursor: grab; user-select: none;
}
.carousel-viewport:active { cursor: grabbing; }
.carousel-viewport::before,
.carousel-viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.carousel-viewport::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.carousel-viewport::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.carousel-track {
  display: flex; gap: 1.25rem;
  transition: transform .45s cubic-bezier(.25,.8,.25,1);
  will-change: transform; padding: 1rem 0 1.5rem;
}
.carousel-slide { flex-shrink: 0; }
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: .75rem;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff; color: var(--text);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.08); }
.carousel-counter { font-size: .85rem; font-weight: 600; color: var(--text-muted); min-width: 50px; text-align: center; }

/* ── Award slides ── */
.award-slide {
  width: 280px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-alt);
  transition: box-shadow .3s, transform .3s;
}
.award-slide:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.award-slide img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s ease; }
.award-slide:hover img { transform: scale(1.04); }

/* ── Partners auto-scroll ── */
.partners-section { background: var(--bg-alt); padding: 4rem 0; }
.partners-carousel-viewport {
  overflow: hidden; width: 100%; margin-top: 2.5rem; position: relative;
}
.partners-carousel-viewport::before,
.partners-carousel-viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.partners-carousel-viewport::before { left: 0;  background: linear-gradient(to right, var(--bg-alt), transparent); }
.partners-carousel-viewport::after  { right: 0; background: linear-gradient(to left,  var(--bg-alt), transparent); }
.partners-carousel-track {
  display: flex; gap: 2rem;
  animation: partners-scroll 14s linear infinite;
  width: max-content;
}
.partners-carousel-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.partner-logo-card {
  flex-shrink: 0; width: 200px; height: 120px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; padding: 1.25rem;
  transition: all var(--transition); box-shadow: var(--shadow);
}
.partner-logo-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.partner-logo-card img { max-height: 52px; max-width: 130px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: all var(--transition); }
.partner-logo-card:hover img { filter: grayscale(0); opacity: 1; }
.partner-logo-card span { font-size: .78rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; }

/* ── Team carousel ── */
.team-carousel-wrap { position: relative; display: flex; align-items: center; gap: 1rem; }
.team-carousel-viewport { overflow: hidden; width: 100%; cursor: grab; }
.team-carousel-viewport:active { cursor: grabbing; }
.team-carousel-track {
  display: flex; gap: 1.5rem;
  transition: transform .45s cubic-bezier(.25,.8,.25,1);
  will-change: transform; padding: .5rem 0 1rem;
}
.team-carousel-track .team-card { flex-shrink: 0; width: 220px; }
.team-prev, .team-next { flex-shrink: 0; z-index: 2; }
.team-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.team-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all var(--transition); padding: 0; }
.team-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ANIMATIONS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-grid { grid-template-columns: 1fr 1fr; }
  .duration-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* About sections responsive */
  .mission { grid-template-columns: 1fr; }
  .mission-right { min-height: 320px; padding: 4rem 2rem; }
  .locations-split { grid-template-columns: 1fr; border-radius: 0; }
  .loc-hq { border-right: none; border-bottom: 1px solid var(--border); }
  .journey-top { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 5vw 3rem; }
  .journey-title { white-space: normal; }
  .journey-stats-row { flex-wrap: wrap; }
  .jstat-div { display: none; }
  .jstat { flex: 1 1 40%; padding: 1.5rem 1rem; }
  .jtl-wrap { padding: 3rem 5vw 4rem; }
  .jtl-step { grid-template-columns: 48px 32px 1fr; }
  .founder-bg-split { grid-template-columns: 1fr; }
  .founder-photo-panel { min-height: 360px; }
  .founder-content-panel { padding: 3rem 2rem; }
  .mission-body { grid-template-columns: 1fr; gap: 2rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .journey-stats { grid-template-columns: repeat(2, 1fr); }
  .journey-step { grid-template-columns: 60px 28px 1fr; }
  .founder-layout { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo-wrap { aspect-ratio: 4/3; max-width: 320px; }
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: .25rem; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 1rem; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .rd-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .duration-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); }
  .newsletter-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .duration-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
}











/* ════════════════════════════════════════════════
   MISSION — redesign
════════════════════════════════════════════════ */
.mission {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 0 !important;
}
.mission-left {
  background: #fff;
  display: flex; align-items: center;
  padding: 5rem 4rem;
}
.mission-left-inner { max-width: 520px; }
.mission-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--orange);
  background: var(--orange-light); padding: .3rem .85rem; border-radius: 50px;
  margin-bottom: 1.25rem;
}
.mission-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.15; color: var(--text);
  margin-bottom: .5rem;
}
.mission-tag { font-size: .95rem; font-weight: 700; color: var(--orange); margin-bottom: 2rem; }
.mission-sub { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .75rem; }
.mission-p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: .97rem; }
.mission-caps-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-light);
  margin: 2rem 0 .75rem;
}
.mission-caps { display: flex; flex-wrap: wrap; gap: .5rem; }
.mission-caps span {
  background: var(--blue-light); color: var(--blue-dark);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  border: 1px solid rgba(43,91,168,.12);
  transition: all var(--transition);
}
.mission-caps span:hover { background: var(--blue); color: #fff; }
.mission-right {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a72 50%, #0f2347 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
}
.mission-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,145,30,.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(43,91,168,.2) 0%, transparent 50%);
  pointer-events: none;
}
.mission-quote-wrap { position: relative; z-index: 1; max-width: 460px; }
.mission-bq-mark {
  font-size: 8rem; line-height: .6; color: var(--orange);
  font-family: Georgia, serif; opacity: .7;
  margin-bottom: 1rem; display: block;
}
.mission-bq {
  font-size: 1.2rem; line-height: 1.85; font-style: italic;
  color: rgba(255,255,255,.92); margin: 0; padding: 0; border: none;
}

/* ════════════════════════════════════════════════
   LOCATIONS — redesign
════════════════════════════════════════════════ */
.locations { background: var(--bg-alt); }
.locations-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 3rem;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.loc-panel { display: flex; flex-direction: column; background: #fff; }
.loc-hq { border-right: 1px solid var(--border); }
.loc-info {
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.loc-info::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.loc-hq .loc-info::before { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.loc-branch .loc-info::before { background: linear-gradient(90deg, var(--orange), var(--orange-mid)); }
.loc-badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .25rem .8rem; border-radius: 50px;
  background: var(--blue-light); color: var(--blue-dark);
  margin-bottom: 1.25rem;
}
.loc-badge.branch { background: var(--orange-light); color: var(--orange-dark); }
.loc-info h3 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: .2rem; }
.loc-type { color: var(--text-light); font-size: .9rem; margin-bottom: 1.5rem; }
.loc-address p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: .6rem; }
.loc-phone { color: var(--text) !important; font-weight: 600; }
.loc-map { flex: 1; min-height: 280px; }
.loc-map iframe { display: block; width: 100%; height: 100%; min-height: 280px; }

/* ════════════════════════════════════════════════
   JOURNEY — redesign
════════════════════════════════════════════════ */
.journey {
  background: linear-gradient(160deg, #0f1e3d 0%, #1a3566 40%, #0d1b35 100%) !important;
  position: relative; overflow: hidden;
  padding: 0 !important;
}
.journey::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 10%, rgba(232,145,30,.12) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 90%, rgba(43,91,168,.2) 0%, transparent 55%);
  pointer-events: none;
}
.journey-top {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr;
  gap: 4rem; align-items: center;
  padding: 5rem 8vw 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.journey-eyebrow {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; color: var(--orange);
  margin-bottom: .75rem;
}
.journey-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  line-height: 1.15; color: #fff; margin: 0; white-space: nowrap;
}
.journey-stats-row {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.jstat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 2rem 1.5rem;
}
.jstat-val { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: .4rem; }
.jstat-lbl { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.jstat-sub { font-size: .75rem; color: rgba(255,255,255,.4); }
.jstat-div { width: 1px; align-self: stretch; background: rgba(255,255,255,.1); flex-shrink: 0; }
.jtl-wrap {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  padding: 4rem 8vw 5rem;
}
.jtl-step {
  display: grid; grid-template-columns: 60px 40px 1fr;
  gap: 0 1.25rem; align-items: start;
}
.jtl-left { text-align: right; padding-top: .15rem; }
.jtl-year { font-size: 1rem; font-weight: 800; color: var(--orange); }
.jtl-spine { display: flex; flex-direction: column; align-items: center; }
.jtl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: .1rem;
  box-shadow: 0 0 0 4px rgba(232,145,30,.2), 0 0 16px rgba(232,145,30,.3);
}
.jtl-bar {
  width: 2px; flex: 1; min-height: 4rem;
  background: linear-gradient(to bottom, rgba(232,145,30,.5), rgba(255,255,255,.08));
  margin-top: .3rem;
}
.jtl-card { padding-bottom: 3rem; }
.jtl-step.last .jtl-card { padding-bottom: 0; }
.jtl-card h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .45rem; padding-top: .05rem; }
.jtl-card p { color: rgba(255,255,255,.55); font-size: .92rem; line-height: 1.75; margin: 0; }

/* ════════════════════════════════════════════════
   FOUNDER — redesign
════════════════════════════════════════════════ */
.founder-section { overflow: hidden; padding: 0 !important; }
.founder-bg-split {
  display: grid; grid-template-columns: 420px 1fr;
  min-height: 600px;
}
.founder-photo-panel { position: relative; overflow: hidden; background: var(--bg-dark); }
.founder-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; filter: brightness(.9) contrast(1.05);
}
.founder-nameplate {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,40,.9) 0%, transparent 100%);
  padding: 3rem 2rem 2rem;
  display: flex; flex-direction: column;
}
.founder-name { font-size: 1.2rem; font-weight: 800; color: #fff; }
.founder-role { color: var(--orange) !important; font-weight: 600; margin-top: .25rem; font-size: .85rem; }
.founder-content-panel {
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem;
}
.founder-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--orange);
  background: var(--orange-light); padding: .3rem .85rem; border-radius: 50px;
  margin-bottom: 1.25rem;
}
.founder-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 800;
  color: var(--text); margin-bottom: 2rem; line-height: 1.15;
}
.founder-bq {
  font-size: 1.15rem; font-style: italic; line-height: 1.85;
  color: var(--blue-dark);
  border-left: 4px solid var(--orange);
  padding-left: 1.75rem; margin: 0 0 2rem;
}
.founder-bio { color: var(--text-muted); line-height: 1.8; font-size: .97rem; }

@media (max-width: 900px) {
  .mission { grid-template-columns: 1fr; }
  .mission-right { min-height: 360px; padding: 4rem 2rem; }
  .locations-split { grid-template-columns: 1fr; border-radius: 0; }
  .loc-hq { border-right: none; border-bottom: 1px solid var(--border); }
  .journey-top { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 5vw 3rem; }
  .journey-title { white-space: normal; }
  .journey-stats-row { flex-wrap: wrap; }
  .jstat-div { display: none; }
  .jstat { flex: 1 1 40%; padding: 1.5rem 1rem; }
  .jtl-wrap { padding: 3rem 5vw 4rem; }
  .jtl-step { grid-template-columns: 48px 32px 1fr; }
  .founder-bg-split { grid-template-columns: 1fr; }
  .founder-photo-panel { min-height: 400px; }
  .founder-content-panel { padding: 3rem 2rem; }
}

/* ════════════════════════════════════════════════
   JOURNEY 2 — alternating timeline
════════════════════════════════════════════════ */
.journey2 {
  background: #0a1428;
  overflow: hidden;
}

.j2-header {
  background: linear-gradient(100deg, #0f1e3d 0%, #1e3f7a 100%);
  padding: 5rem 8vw 5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.j2-header::after {
  content: '2021 — 2024';
  position: absolute; right: 8vw; bottom: 2rem;
  font-size: .75rem; letter-spacing: .2em;
  color: rgba(255,255,255,.18); font-weight: 700;
  text-transform: uppercase;
}
.j2-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--orange); margin-bottom: .75rem;
}
.j2-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800;
  color: #fff; margin: 0; line-height: 1.1;
}

/* Stats bar */
.j2-stats {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.j2-stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 1rem;
  transition: background var(--transition);
}
.j2-stat:hover { background: rgba(232,145,30,.08); }
.j2-num {
  font-size: 2.4rem; font-weight: 800; color: var(--orange);
  line-height: 1; margin-bottom: .5rem; display: block;
}
.j2-star { color: var(--orange); }
.j2-lbl { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .2rem; display: block; }
.j2-sub { font-size: .75rem; color: rgba(255,255,255,.38); display: block; }
.j2-divider { width: 1px; background: rgba(255,255,255,.07); flex-shrink: 0; }

/* Alternating timeline */
.j2-timeline {
  max-width: 1000px; margin: 0 auto;
  padding: 5rem 4rem;
  position: relative;
}
.j2-timeline::before {
  content: '';
  position: absolute; left: 50%; top: 5rem; bottom: 5rem;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(232,145,30,.4) 10%,
    rgba(232,145,30,.4) 90%,
    transparent 100%);
  transform: translateX(-50%);
}

.j2-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
.j2-item:last-child { margin-bottom: 0; }

.j2-node {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232,145,30,.2), 0 0 20px rgba(232,145,30,.4);
  justify-self: center; position: relative; z-index: 1;
}

/* Left-side card */
.j2-left .j2-card { text-align: right; padding-right: 2rem; }
.j2-left .j2-spacer { padding-left: 2rem; }
/* Right-side card */
.j2-right .j2-card { text-align: left; padding-left: 2rem; }
.j2-right .j2-spacer { padding-right: 2rem; }

.j2-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.j2-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(232,145,30,.3);
  transform: translateY(-3px);
}
.j2-year-pill {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 800;
  padding: .2rem .7rem; border-radius: 50px;
  margin-bottom: .75rem; letter-spacing: .05em;
}
.j2-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.j2-card p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75; margin: 0; }

/* ════════════════════════════════════════════════
   FOUNDER 2 — full-bleed split
════════════════════════════════════════════════ */
.founder2 {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 600px;
  overflow: hidden;
}
.founder2-photo-side {
  position: relative; overflow: hidden;
  background: #111;
}
.founder2-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  filter: brightness(.85) saturate(1.1);
}
.founder2-plate {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 2rem 2.25rem;
  background: linear-gradient(to top, rgba(5,10,25,.92) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: .3rem;
}
.founder2-name { font-size: 1.15rem; font-weight: 800; color: #fff; }
.founder2-role { font-size: .85rem; color: var(--orange); font-weight: 600; }

.founder2-content-side {
  background: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5rem;
}
.founder2-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--orange); background: var(--orange-light);
  padding: .3rem .85rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.founder2-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 2rem; line-height: 1.15;
}
.founder2-quote {
  font-size: 1.15rem; font-style: italic; line-height: 1.85;
  color: var(--blue-dark);
  border-left: 4px solid var(--orange);
  padding-left: 1.75rem; margin: 0 0 2rem;
}
.founder2-bio { color: var(--text-muted); line-height: 1.8; font-size: .97rem; }

/* ════════════════════════════════════════════════
   PROGRAM FLOW — numbered steps
════════════════════════════════════════════════ */
.prog-flow {
  margin-top: 4rem;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}
.prog-flow-header { margin-bottom: 2.5rem; }
.prog-flow-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--orange); background: rgba(232,145,30,.12);
  padding: .25rem .75rem; border-radius: 50px; margin-bottom: .6rem;
}
.prog-flow-title {
  font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0;
}

.prog-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 0;
}
.pf-step {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.pf-step:not(.pf-last) .pf-connector {
  position: absolute; top: 2rem; left: 50%; right: -50%;
  display: flex; align-items: center;
}
.pf-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(232,145,30,.4), rgba(232,145,30,.1));
}
.pf-arrow {
  color: var(--orange); font-size: .9rem; opacity: .6;
  padding-left: .2rem;
}

.pf-num {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: rgba(232,145,30,.1);
  border: 2px solid rgba(232,145,30,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--orange);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.pf-num-final {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(232,145,30,.15), 0 0 24px rgba(232,145,30,.3);
}
.pf-step:hover .pf-num {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(232,145,30,.15);
}
.pf-body { text-align: center; padding: 0 .75rem; }
.pf-body h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .5rem; line-height: 1.3; }
.pf-body p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .j2-timeline::before { display: none; }
  .j2-item { grid-template-columns: 1fr; }
  .j2-left .j2-card { text-align: left; padding-right: 0; }
  .j2-node { display: none; }
  .j2-spacer { display: none; }
  .j2-stats { flex-wrap: wrap; }
  .j2-stat { flex: 1 1 40%; }
  .j2-divider { display: none; }
  .j2-timeline { padding: 3rem 1.5rem; }
  .founder2 { grid-template-columns: 1fr; }
  .founder2-photo-side { min-height: 380px; }
  .founder2-content-side { padding: 3rem 2rem; }
  .prog-flow-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .pf-connector { display: none; }
}

/* ════════════════════════════════════════════════
   J2 — Journey / Milestones redesign
════════════════════════════════════════════════ */
.j2 {
  background: #08122a;
  overflow: hidden;
}

/* ── Banner (title + stats) ── */
.j2-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.j2-banner-text {
  padding: 4rem 5vw 4rem 8vw;
  background: linear-gradient(110deg, #0f1e3d 0%, #132244 100%);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.j2-eyebrow {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: var(--orange); margin-bottom: .75rem;
  display: block;
}
.j2-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin: 0;
}

/* Stats bar — right half of banner */
.j2-stats-bar {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.025);
}
.j2-stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1rem;
  transition: background .2s;
  border-right: 1px solid rgba(255,255,255,.05);
}
.j2-stat:last-child { border-right: none; }
.j2-stat:hover { background: rgba(232,145,30,.08); }
.j2-stat strong {
  font-size: 2rem; font-weight: 800; color: var(--orange);
  line-height: 1; margin-bottom: .45rem; display: block;
}
.j2-stat span {
  font-size: .85rem; font-weight: 700; color: #fff;
  margin-bottom: .2rem; display: block;
}
.j2-stat em {
  font-style: normal; font-size: .72rem;
  color: rgba(255,255,255,.35); display: block;
}
.j2-sdivider { display: none; }

/* ── Alternating timeline ── */
.j2-tl {
  position: relative;
  max-width: 960px; margin: 0 auto;
  padding: 5rem 4rem 6rem;
}
.j2-tl-line {
  position: absolute;
  left: 50%; top: 5rem; bottom: 6rem;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(232,145,30,.5) 15%,
    rgba(232,145,30,.5) 85%,
    transparent);
  transform: translateX(-50%);
}

.j2-tl-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  margin-bottom: 4.5rem;
  gap: 0;
}
.j2-tl-row:last-child { margin-bottom: 0; }
.j2-tl-empty { /* spacer side */ }

/* Card sits on the correct side */
.j2-tl-left .j2-tl-card { padding-right: 2.5rem; text-align: right; }
.j2-tl-right .j2-tl-card { padding-left: 2.5rem; text-align: left; }

.j2-tl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 2rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.j2-tl-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,145,30,.35);
  transform: translateY(-4px);
}
.j2-pill {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  padding: .2rem .7rem; border-radius: 50px;
  margin-bottom: .75rem;
}
.j2-pill-gold {
  background: linear-gradient(90deg, #c87c10, var(--orange));
  box-shadow: 0 0 12px rgba(232,145,30,.4);
}
.j2-tl-card h4 {
  font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.j2-tl-card p {
  font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; margin: 0;
}

/* Centre dot */
.j2-tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232,145,30,.18), 0 0 18px rgba(232,145,30,.35);
  justify-self: center; position: relative; z-index: 2;
  flex-shrink: 0;
}
.j2-tl-dot-final {
  width: 20px; height: 20px;
  box-shadow: 0 0 0 6px rgba(232,145,30,.25), 0 0 28px rgba(232,145,30,.5);
}

@media (max-width: 860px) {
  .j2-banner { grid-template-columns: 1fr; }
  .j2-banner-text { padding: 3rem 6vw; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .j2-tl-line { display: none; }
  .j2-tl-row { grid-template-columns: 1fr; }
  .j2-tl-empty { display: none; }
  .j2-tl-dot { display: none; }
  .j2-tl-left .j2-tl-card { padding-right: 0; text-align: left; }
  .j2-tl-card { margin-bottom: 1.5rem; }
  .j2-tl { padding: 3rem 5vw 4rem; }
}
