@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #1A1D21;
  --navy2:    #2C3238;
  --charcoal: #374151;
  --blue:     #1A56DB;
  --blue-l:   #3B7BFF;
  --sky:      #EBF2FF;
  --slate:    #5A6472;
  --text:     #1A1D21;
  --muted:    #6B7280;
  --line:     #E2E6EA;
  --white:    #FFFFFF;
  --card:     #F4F5F7;
  --card2:    #ECEEF1;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 68px;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: #1E2226;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #374151 !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  padding: 148px 6% 100px;
  background: linear-gradient(160deg, #1A1D21 0%, #2C3238 55%, #374151 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 85% 35%, rgba(26,86,219,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 35% 50% at 5% 85%, rgba(26,86,219,0.06) 0%, transparent 65%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}
.hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: #1A1D21;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary:hover { background: #374151; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* Hero stat cards */
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  backdrop-filter: blur(8px);
}
.stat-card.full { grid-column: span 2; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin-top: 0.8rem;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-l));
  animation: growBar 1.6s ease forwards;
}
@keyframes growBar { from { width: 0 } }

/* ── SECTIONS ── */
section { padding: 90px 6%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 580px;
}
.section-header { margin-bottom: 3.5rem; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  background: var(--card);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #374151, #6B7280);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(10,22,40,0.10);
  transform: translateY(-3px);
  border-color: #9CA3AF;
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 44px; height: 44px;
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--muted);
}

/* ── PRODUCTS ── */
#products { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.products-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.products-sidebar p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.product-tabs { display: flex; flex-direction: column; gap: 0.4rem; }
.tab-btn {
  text-align: left;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.18s;
}
.tab-btn:hover { background: var(--card2); color: var(--text); }
.tab-btn.active {
  background: var(--card2);
  border-color: var(--line);
  color: var(--text);
  font-weight: 600;
}
.products-list { display: none; }
.products-list.active { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(10,22,40,0.08);
  border-color: var(--charcoal);
}
.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}
.badge-ready      { background: #e6f4ea; color: #1e7e34; }
.badge-custom     { background: #fff3e0; color: #c76b00; }
.badge-integration{ background: #ede7f6; color: #5c35b5; }
.badge-automation { background: #fff3e0; color: #c76b00; }
.badge-ux         { background: #ebf2ff; color: #1a56db; }
.product-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.product-card p {
  font-size: 0.85rem;
  line-height: 1.62;
  color: var(--muted);
}
.product-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.product-link:hover { gap: 0.5rem; }

/* ── APPROACH ── */
#approach { background: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.approach-steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card2);
  border: 2px solid var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.step-body h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.step-body p {
  font-size: 0.88rem;
  line-height: 1.68;
  color: var(--muted);
}
.approach-visual {
  background: linear-gradient(145deg, #1E2226 0%, #374151 100%);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.approach-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(26,86,219,0.1) 0%, transparent 65%);
}
.approach-visual-inner { position: relative; z-index: 1; }
.av-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.av-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.av-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.av-list li::before {
  content: '✓';
  flex-shrink: 0;
  margin-top: 0.08rem;
  width: 18px; height: 18px;
  background: rgba(26,86,219,0.25);
  border: 1px solid rgba(59,123,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: #92b4ff;
}

/* ── ABOUT ── */
#about { background: #F4F5F7; border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.about-text p:last-of-type { margin-bottom: 2rem; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.2rem;
}
.pillar-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pillar h5 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.pillar p { font-size: 0.82rem; line-height: 1.6; color: var(--muted); }

/* ── CONTACT ── */
#contact {
  background: linear-gradient(160deg, #1E2226 0%, #374151 100%);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 50% at 90% 50%, rgba(26,86,219,0.08) 0%, transparent 65%);
}
.contact-inner { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-left p {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.contact-detail-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.contact-detail span { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.contact-detail a { color: #92b4ff; text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(59,123,255,0.6);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: #374151;
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: #1A1D21; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: #1A1D21;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem 6%;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.animate { opacity: 0; transform: translateY(24px); }
.fade-up.animate.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero-grid, .about-grid, .approach-grid, .contact-grid, .products-layout {
    grid-template-columns: 1fr;
  }
  .hero-stats { grid-template-columns: repeat(4,1fr); }
  .stat-card.full { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-list.active { grid-template-columns: 1fr; }
  .approach-visual { display: none; }
}
@media (max-width: 640px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  section { padding: 70px 4%; }
  .hero { padding: 110px 4% 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { gap: 1rem; }
}

/* ── MARKETPLACE REDIRECT SECTION ── */
.marketplace-redirect-section { background: #F4F5F7; }
.mpr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mpr-left .section-sub { max-width: 440px; }
.mpr-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.mpr-cat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}
.mpr-cat [data-lucide] { width: 16px; height: 16px; stroke: #1A56DB; stroke-width: 2; flex-shrink: 0; }

.mpr-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mpr-card-link { text-decoration: none; display: block; }
.mpr-preview-card {
  background: #FFFFFF;
  border: 1px solid #E2E6EA;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.mpr-card-link:hover .mpr-preview-card {
  border-color: #9CA3AF;
  box-shadow: 0 4px 16px rgba(26,29,33,0.07);
}
.mpr-pc-header { flex-shrink: 0; }
.mpr-preview-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1D21;
  margin-bottom: 0.1rem;
  flex: 1;
}
.mpr-preview-card p {
  font-size: 0.78rem;
  color: #6B7280;
  flex: 1;
  line-height: 1.4;
}
.mpr-pc-price {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1D21;
  white-space: nowrap;
}
.mpr-pc-price span { font-size: 0.72rem; font-weight: 400; color: #9CA3AF; }
.mpr-more-link {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A56DB;
  text-decoration: none;
  padding-top: 0.25rem;
}
.mpr-more-link:hover { text-decoration: underline; }

/* ── TEAM SECTION ── */
.team-section {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid #E2E6EA;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  display: flex;
  gap: 1.1rem;
  background: #F4F5F7;
  border: 1px solid #E2E6EA;
  border-radius: 14px;
  padding: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(26,29,33,0.08); }
.team-avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #E2E6EA;
  border: 2px solid #D1D5DB;
  display: flex; align-items: center; justify-content: center;
}
.team-avatar [data-lucide] { width: 22px; height: 22px; stroke: #6B7280; stroke-width: 1.5; }
.team-info { flex: 1; min-width: 0; }
.team-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1D21;
  margin-bottom: 0.15rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  color: #1A56DB;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.team-info p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #6B7280;
  margin-bottom: 0.8rem;
}
.team-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.team-certs span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #FFFFFF;
  border: 1px solid #E2E6EA;
  color: #374151;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

@media (max-width: 900px) {
  .mpr-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: row; }
}

/* ── ABOUT — MERGED LAYOUT ── */
.about-intro { margin-bottom: 3rem; }

.team-grid-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.team-card-wide {
  display: flex;
  gap: 1.4rem;
  background: #F4F5F7;
  border: 1px solid #E2E6EA;
  border-radius: 16px;
  padding: 2rem;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.team-card-wide:hover { box-shadow: 0 6px 28px rgba(26,29,33,0.09); }
.team-avatar-lg {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #E2E6EA;
  border: 2px solid #D1D5DB;
  display: flex; align-items: center; justify-content: center;
}
.team-avatar-lg [data-lucide] { width: 26px; height: 26px; stroke: #6B7280; stroke-width: 1.5; }

.about-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid #E2E6EA;
}

@media (max-width: 900px) {
  .team-grid-wide { grid-template-columns: 1fr; }
  .about-pillars-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .about-pillars-row { grid-template-columns: 1fr; }
  .team-card-wide { flex-direction: column; }
}

/* ── ABOUT SPLIT LAYOUT ── */
#about .section-inner {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: flex-start;
}
.about-split-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.about-split-right {
  flex: 1;
  min-width: 0;
}

/* ── TEAM CARDS ── */
.team-card-wide {
  display: flex;
  gap: 1.2rem;
  background: #FFFFFF;
  border: 1px solid #E2E6EA;
  border-radius: 14px;
  padding: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.team-card-wide:hover { box-shadow: 0 6px 24px rgba(26,29,33,0.08); }
.team-card-wide .team-avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #E2E6EA;
  border: 2px solid #D1D5DB;
  display: flex; align-items: center; justify-content: center;
}
.team-card-wide .team-avatar [data-lucide] { width: 22px; height: 22px; stroke: #6B7280; stroke-width: 1.5; }
.team-info { flex: 1; min-width: 0; }
.team-info h5 { font-size: 0.95rem; font-weight: 700; color: #1A1D21; margin-bottom: 0.15rem; }
.team-role { font-size: 0.78rem; font-weight: 500; color: #1A56DB; letter-spacing: 0.02em; margin-bottom: 0.55rem; }
.team-info p { font-size: 0.82rem; line-height: 1.65; color: #6B7280; margin-bottom: 0.75rem; }
.team-certs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-certs span {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  background: #F4F5F7; border: 1px solid #E2E6EA;
  color: #374151; border-radius: 4px; padding: 0.2rem 0.5rem;
}

@media (max-width: 860px) {
  #about .section-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .about-split-left { flex: none; width: 100%; }
  .about-split-right { order: -1; }
}

.cert-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.cert-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  padding: 0;
  margin-right: 0.25rem;
  white-space: nowrap;
}

.team-certs .cert-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-right: 0.25rem;
  white-space: nowrap;
}