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

:root {
  --blue: #344c98;
  --yellow: #f6eb69;
  --dark: #101828;
  --gray: #6b7280;
  --light-gray: #f9fafb;
  --white: #ffffff;
}

/* ─── Bootstrap container override ─── */
.container, .container-fluid {
  --bs-gutter-x: 0;
}
.container {
  max-width: 1320px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Zain', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ─── */
.navbar {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0;
  height: 93px;
  border-radius: 0 0 16px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  height: 48px;
  object-fit: contain;
  padding: 10px;
}

.navbar-powered {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 10px;
  line-height: 1.3;
}

.navbar-powered strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: white;
  letter-spacing: .01em;
}

.navbar-links {
  display: flex;
  gap: 48px;
  list-style: none;
  margin-bottom: 0;
}

.navbar-links a {
  font-size: 20px;
  font-weight: 700;
  color: white;
  transition: opacity .2s;
}

.navbar-links a:hover { opacity: .75; }

.navbar-btn {
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Zain', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  transition: transform .15s;
}

.navbar-btn:hover { transform: translateY(-1px); }

/* ─── CAROUSEL ─── */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
   background: #ffffff00; 
}

.carousel-track {
  display: flex;
  transition: transform .5s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.desktop-img { display: block; }
.mobile-img  { display: none; }

@media (max-width: 768px) {
  .desktop-img { display: none; }
  .mobile-img  { display: block; }
}


.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  height: 8px;
  width: 8px;
  border-radius: 100px;
  border: none;
  background: #e6e3e3;
  cursor: pointer;
  padding: 0;
  transition: width .3s ease, background .3s ease;
}

.carousel-dot.active {
  width: 32px;
  background: var(--blue);
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.35px;
}

.section-header p {
  font-size: 24px;
  color: var(--dark);
  margin-top: 16px;
}

/* ─── SERVICES ─── */
.services {
  padding: 80px 0;
  background: linear-gradient(136deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
}

.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #344c98 #eef0f8;
  gap: 24px;
  padding: 8px 4px 20px;
}

.services-grid::-webkit-scrollbar         { height: 4px; }
.services-grid::-webkit-scrollbar-track   { background: #eef0f8; border-radius: 100px; }
.services-grid::-webkit-scrollbar-thumb   { background: #344c98; border-radius: 100px; }

.services-grid .service-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

/* Scroll dots – services */
.services-scroll-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.services-scroll-dot {
  height: 7px;
  width: 7px;
  border-radius: 100px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: width .3s ease, background .3s ease;
}
.services-scroll-dot.active {
  width: 24px;
  background: #344c98;
}

.service-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -5px rgba(0,0,0,.15);
}

.service-card-image {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
  position: relative;
}

.service-card-image-wrapper {
  position: relative;
  height: 132px;
  overflow: hidden;
}

.service-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-body {
  padding: 16px;
}

.service-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-card-divider {
  height: 4px;
  width: 40px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 16px;
}

.service-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 3px !important;
}

.service-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--dark);
}

.service-card-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.services-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
  max-width: calc(66.66% + 25px);
  margin-left: auto;
  margin-right: auto;
}

/* ─── WHERE HUMAN TALENT MEETS AI ─── */
.whtma {
  background: #ffffff;
  padding: 100px 0 80px;
}

.whtma-header {
  text-align: center;
  margin-bottom: 64px;
}

.whtma-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, rgba(52, 76, 152, 0.1) 0%, rgba(111, 199, 234, 0.1) 100%);
  border: 1px solid #d1d5db;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #344C98;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.whtma-title {
  font-size: 44px;
  font-weight: 800;
  color: #101828;
  line-height: 1.2;
  margin-bottom: 16px;
}

.whtma-title span {
  color: var(--yellow);
}

.whtma-sub {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}

/* Mobile indicators — desktop hidden */
.whtma-mobile-tops { display: none; }

/* Steps layout */
.whtma-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

.whtma-connector-line {
  position: absolute;
  top: 28px; /* center of 56px circle */
  left: calc(12.5% + 28px); /* start after first circle center */
  right: calc(12.5% + 28px); /* end before last circle center */
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.whtma-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.whtma-steps {
  align-items: stretch;
}

.whtma-step-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 10px;
  overflow: visible;
}

.whtma-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.whtma-icon-circle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.whtma-icon-blue {
  background: var(--blue);
}

.whtma-icon-yellow {
  background: var(--yellow);
}

.whtma-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2.045px solid #fff;
  background: #F6EB69;
  box-shadow: 0 5.113px 7.67px -1.278px rgba(0,0,0,.10), 0 2.557px 5.113px -2.557px rgba(0,0,0,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #344C98;
  z-index: 3;
}

.whtma-dot-ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: white;
  margin-top: 8px;
}

.whtma-step-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  width: calc(100% - 24px);
  text-align: left;
  flex: 1;
}

.whtma-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 4px;
}

.whtma-step-desc {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.whtma-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whtma-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 10px;
}

.whtma-item-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* CTA banner */
.whtma-cta {
  background: var(--blue);
  border-radius: 20px;
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.whtma-cta-title {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.whtma-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin: 0;
}

.whtma-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.whtma-btn-primary {
  background: var(--yellow);
  color: #101828;
  font-family: 'Zain', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}

.whtma-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

.whtma-btn-secondary {
  background: transparent;
  color: white;
  font-family: 'Zain', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}

.whtma-btn-secondary:hover { border-color: white; background: rgba(255,255,255,.08); }

.ai-metric-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 20px 24px;
}

.ai-metric-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ai-metric-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.ai-metric-card-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ai-metrics-row {
  display: flex;
  gap: 24px;
}

.ai-metric {
  text-align: center;
}

.ai-metric-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
}

.ai-metric-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Zain', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

.btn-secondary {
  background: transparent;
  color: white;
  font-family: 'Zain', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 14px 32px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.btn-secondary:hover { border-color: white; background: rgba(255,255,255,.05); }

/* ─── AI POWERS SECTION (section504) ─── */
.ai-powers {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1540 0%, #1a2f7a 100%);
}

.ai-powers-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.ai-powers-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-scroll-dots { display: none; }

.ai-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 24px 28px;
  transition: background .2s, border-color .2s;
}

.ai-feature-card:hover, .ai-feature-card.active {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
}

/* gradient-border icon box */
.ai-feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(246,235,105,0.7) 0%, rgba(255,255,255,0.15) 50%, rgba(246,235,105,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.ai-feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ai-feature-text {
  flex: 1;
}

.ai-feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.ai-feature-card p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
}

.ai-powers-demo {
  flex: 1;
}

.ai-powers-header {
  text-align: center;
  margin-bottom: 48px;
}

.ai-powers-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ai-powers-header p {
  font-size: 20px;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Chat Demo Card ── */
.chat-demo {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 28px 32px;
  max-width: 500px;
  margin: 0 auto;
}

/* Header */
.chat-demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.chat-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.chat-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #344C98 0%, #6FC7EA 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar svg {
  width: 28px;
  height: 28px;
}

.chat-avatar-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #F6EB69;
  border-radius: 50%;
  border: 2px solid #fff;
}

.chat-demo-info {
  flex: 1;
}

.chat-demo-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.chat-demo-subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6FC7EA;
  font-weight: 500;
  margin-top: 3px;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background: #6FC7EA;
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-demo-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}

.chat-demo-menu span {
  display: block;
  width: 4px;
  height: 4px;
  background: #9ca3af;
  border-radius: 50%;
}

.chat-demo-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}

/* Messages */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  padding: 14px 18px;
  border-radius: 16px;
  max-width: 85%;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
}

.chat-msg.user {
  background: #fff;
  color: #1a1a2e;
  align-self: flex-end;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom-right-radius: 4px;
}

.chat-msg.ai {
  background: linear-gradient(135deg, #344C98 0%, #6FC7EA 100%);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-ai-dot {
  position: absolute;
  bottom: -6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #F6EB69;
  border-radius: 50%;
}

/* ─── PARTNERS ─── */
.partners {
  padding: 80px 0 72px;
  background: #f9fafb;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle diagonal lines background */
.partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(52,76,152,.04) 1px, transparent 1px),
    linear-gradient(45deg,  rgba(52,76,152,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.partners-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  background: white;
  margin-bottom: 20px;
}

.partners-heading {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.partners-heading span { color: var(--blue); }

.partners-sub {
  font-size: 20px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 56px;
}

/* Desktop: carousel track */
.partners-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.partners-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Carousel navigation */
.partners-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 40px;
}

.partners-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: white;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, box-shadow .2s, color .2s;
  flex-shrink: 0;
}

.partners-carousel-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(52,76,152,.15);
}

.partners-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.partners-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.partners-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background .25s, transform .25s;
}

.partners-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}

.partner-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}

.partner-card-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card-logo img {
  max-height: 52px;
  max-width: 180px;
  object-fit: contain;
}

.partner-card-desc {
  font-size: 15px;
  color: var(--gray);
  text-align: center;
}

/* CTA banner */
.partners-cta {
  background: var(--blue);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.partners-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.partners-cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.partners-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
}

.partners-cta-btn {
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Zain', sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}

.partners-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

/* ─── TECHNOLOGY PLATFORM ─── */
.technology {
  padding: 80px 0 80px;
  background: linear-gradient(131.35deg, #344c98 0%, #2a3d7a 50%, #344c98 100%);
  position: relative;
  overflow: hidden;
}

.technology::before {
  content: '';
  position: absolute;
  width: 256px;
  height: 256px;
  background: rgba(111,199,234,.2);
  border-radius: 50%;
  filter: blur(32px);
  top: 80px;
  left: 40px;
  pointer-events: none;
}

.technology::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(246,235,105,.1);
  border-radius: 50%;
  filter: blur(32px);
  bottom: 100px;
  right: 80px;
  pointer-events: none;
}

.tech-header {
  text-align: center;
  margin-bottom: 64px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(3px);
  border: 1.5px solid rgba(246,235,105,.3);
  border-radius: 100px;
  padding: 10px 22px;
  margin-bottom: 24px;
}

.tech-badge-icon {
  background: var(--yellow);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-badge-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0);
}

.tech-badge-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .4px;
}

.tech-header h2 {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.tech-header .tech-subtitle {
  font-size: 22px;
  color: rgba(255,255,255,.9);
  max-width: 720px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.tech-header .tech-subdesc {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 2×2 cards grid */
.tech-scroll-dots { display: none; }

.tech-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #f6eb69 rgba(255,255,255,0.1);
  gap: 24px;
  padding: 8px 4px 20px;
  margin-bottom: 12px;
}

.tech-cards::-webkit-scrollbar         { height: 4px; }
.tech-cards::-webkit-scrollbar-track   { background: rgba(255,255,255,0.1); border-radius: 100px; }
.tech-cards::-webkit-scrollbar-thumb   { background: #f6eb69; border-radius: 100px; }

.tech-cards .tech-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.tech-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 33px;
  backdrop-filter: blur(6px);
  overflow: hidden;
  position: relative;
}

.tech-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tech-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.tech-card-icon-1 { background: linear-gradient(135deg, #f6eb69 0%, #6fc7ea 100%); }
.tech-card-icon-2 { background: linear-gradient(135deg, #6fc7ea 0%, #f6eb69 100%); }
.tech-card-icon-3 { background: linear-gradient(135deg, #f6eb69 0%, #344c98 100%); }
.tech-card-icon-4 { background: linear-gradient(135deg, #6fc7ea 0%, #344c98 100%); }

.tech-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}

.tech-card-status.yellow {
  background: rgba(246,235,105,.2);
  color: var(--yellow);
}

.tech-card-status.blue {
  background: rgba(111,199,234,.2);
  color: #6fc7ea;
}

.tech-card-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tech-card-status.yellow .tech-card-status-dot { background: var(--yellow); }
.tech-card-status.blue .tech-card-status-dot { background: #6fc7ea; }

.tech-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tech-card > p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 400;
}

/* Stats bar */
.tech-stats {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(6px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tech-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.tech-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-stat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.tech-stat-icon-1 { background: rgba(246,235,105,.2); }
.tech-stat-icon-2 { background: rgba(111,199,234,.2); }
.tech-stat-icon-3 { background: rgba(246,235,105,.2); }
.tech-stat-icon-4 { background: rgba(111,199,234,.2); }

.tech-stat h4 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.tech-stat p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* ─── TRAINING ─── */
.training {
  padding: 40px 0 60px;
  background: #fff;
}

.training-header {
  text-align: center;
  margin-bottom: 50px;
}

.training-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,76,152,.1);
  border: 1px solid rgba(52,76,152,.2);
  border-radius: 100px;
  padding: 9px 17px;
  margin-bottom: 20px;
}

.training-badge-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}

.training-badge span {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.training-header h2 {
  font-size: 64px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 20px;
}

.training-header p {
  font-size: 22px;
  color: #4b5563;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto;
}

/* Grid layout */
.training-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #344c98 #eef0f8;
  gap: 32px;
  padding: 8px 4px 20px;
  align-items: stretch;
}

.training-grid::-webkit-scrollbar         { height: 4px; }
.training-grid::-webkit-scrollbar-track   { background: #eef0f8; border-radius: 100px; }
.training-grid::-webkit-scrollbar-thumb   { background: #344c98; border-radius: 100px; }

.training-row {
  display: contents;
}

/* Scroll dots – training */
.training-scroll-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.training-scroll-dot {
  height: 7px;
  width: 7px;
  border-radius: 100px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: width .3s ease, background .3s ease;
}
.training-scroll-dot.active {
  width: 24px;
  background: #344c98;
}

/* Card */
.tc {
  flex: 0 0 540px;
  width: 540px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Image */
.tc-img {
  position: relative;
  height: 154px;
  overflow: hidden;
  flex-shrink: 0;
}

.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  font-weight: 700;
  color: #344c98;
}

.tc-img-badge.badge-blue {
  background: linear-gradient(134.79deg, #6fc7ea 0%, rgba(111,199,234,.87) 100%);
}

.tc-img-badge.badge-yellow {
  background: #f6eb69;
}

.tc-img-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.tc-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #344c98;
}

.tc-duration.dur-blue { background: #6fc7ea; }
.tc-duration.dur-yellow { background: #f6eb69; }

/* Card body */
.tc-body {
  padding: 18px 28px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tc-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 3px;
}

.tc-title {
  font-size: 21px;
  font-weight: 700;
  color: #344c98;
  line-height: 1.3;
  margin-bottom: 10px;
}

.tc-target-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 12px;
}

.tc-target-row svg { flex-shrink: 0; margin-top: 3px; }

.tc-target-label {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
}

.tc-target-val {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.tc-focus-heading {
  font-size: 16px;
  font-weight: 700;
  color: #344c98;
  margin-bottom: 8px;
}

.tc-focus-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.tc-focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.tc-focus-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: #6fc7ea;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Buttons */
.tc-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  font-family: 'Zain', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
}

.tc-btn.btn-enroll {
  background: #6fc7ea;
  color: #344c98;
}

.tc-btn.btn-enroll:hover { opacity: .85; }

.tc-btn.btn-soon-blue {
  background: #b1ddef;
  color: rgba(52,76,152,.7);
  cursor: not-allowed;
}

.tc-btn.btn-soon-yellow {
  background: #fcf8cc;
  color: rgba(52,76,152,.7);
  cursor: not-allowed;
}

.tc-btn.btn-soon-yellow2 {
  background: rgba(250,244,179,.67);
  color: rgba(52,76,152,.7);
  cursor: not-allowed;
}

/* Bottom accent bar */
.tc-accent {
  height: 4px;
  background-size: 100% 100%;
  flex-shrink: 0;
}

.tc-accent.accent-blue {
  background-image: url('../assets/b5bcbe1fa57bc8bf56c621041f6f4e545aa69a50.png');
}

.tc-accent.accent-yellow {
  background-image: url('../assets/617b841ca940919443ffc998fce32aba931cda1a.png');
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0 80px;
  background: linear-gradient(131.35deg, #344c98 0%, #2a3d7a 50%, #344c98 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(111,199,234,.15);
  border-radius: 50%;
  filter: blur(48px);
  top: -60px; left: -60px;
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(246,235,105,.08);
  border-radius: 50%;
  filter: blur(48px);
  bottom: -40px; right: -40px;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,235,105,.08);
  border: 1.5px solid rgba(246,235,105,.3);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.contact-badge-dot {
  width: 8px; height: 8px;
  background: #34d399;
  border-radius: 50%;
}

.contact-badge span {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
}

.contact-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-header h2 span { color: var(--yellow); }

.contact-header p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}

/* ── Contact info side ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 15px 17px;
  backdrop-filter: blur(5px);
}

.contact-channel-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(246,235,105,.18), rgba(52,76,152,.35));
  border: 1px solid rgba(246,235,105,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon img {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
}

.contact-channel-title {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
}

.contact-channel-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.contact-available {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-available-dot {
  width: 10px; height: 10px;
  background: #34d399;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-available-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-available-sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* ── Form side ── */
.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 33px;
  backdrop-filter: blur(8px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.6px;
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap .fi-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.form-input-wrap .fi-icon img {
  width: 16px; height: 16px;
  filter: brightness(0) invert(1);
  opacity: .5;
}

.form-input-wrap input,
.form-input-wrap textarea {
  font-family: 'Zain', sans-serif;
  font-size: 16px;
  width: 100%;
  height: 50px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 0 14px 0 40px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}

.form-input-wrap textarea {
  height: 136px;
  padding: 14px 14px 14px 40px;
  resize: none;
}

.form-input-wrap input::placeholder,
.form-input-wrap textarea::placeholder {
  color: rgba(255,255,255,.25);
}

.form-input-wrap input:focus,
.form-input-wrap textarea:focus {
  border-color: rgba(246,235,105,.4);
}

.form-msg-wrap {
  position: relative;
}

.form-msg-wrap .fi-icon {
  top: 18px;
  transform: none;
}

.form-char-counter {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  height: 56px;
  background: linear-gradient(139.5deg, #f6eb69 0%, #e8d94a 100%);
  color: #0d1a4a;
  font-family: 'Zain', sans-serif;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(246,235,105,.25);
  transition: opacity .2s, transform .15s;
}

.form-submit:hover { opacity: .92; transform: translateY(-1px); }

.form-submit img {
  width: 18px; height: 18px;
  filter: brightness(0);
}

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-top: 14px;
}

/* ── Form toast notification ── */
.form-toast {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  animation: toastIn .3s ease;
}
.form-toast.success {
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74, 222, 128, .35);
  color: #86efac;
}
.form-toast.error {
  background: rgba(252, 165, 165, .1);
  border: 1px solid rgba(252, 165, 165, .3);
  color: #fca5a5;
}
.form-toast.show { display: flex; }
.form-toast-icon { font-size: 18px; flex-shrink: 0; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field-error {
  display: none;
  font-size: 12px;
  color: #fca5a5;
  margin-top: 5px;
  padding-left: 2px;
}

.form-optional {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  margin-left: 4px;
}

.form-input-wrap input.input-error,
.form-input-wrap textarea.input-error {
  border-color: rgba(252,165,165,.6) !important;
  outline: none;
}

/* ─── FOOTER ─── */
footer {
  background: var(--blue);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 460px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 40px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 20px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: background .2s;
}

.footer-social-btn:hover { background: rgba(255,255,255,.2); }

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
}

.footer-copyright {
  font-size: 16px;
  color: rgba(255,255,255,.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-legal a:hover { color: white; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #0f1f5c, #1a2f7a);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 20px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE  (≤ 768px)
══════════════════════════════════════ */

/* hamburger – hidden on desktop */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.navbar-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}
/* animated X when open */
.navbar-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile slide-down menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blue);
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 16px 24px 24px;
  gap: 4px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 700;
  color: white;
  padding: 12px 0;
}
.mobile-menu .navbar-btn {
  margin-top: 12px;
  width: 100%;
  font-size: 17px;
  padding: 14px;
}

@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar {
    padding: 0;
    height: 80px;
    border-radius: 0 0 12px 12px;
  }
  .navbar-logo img { height: 36px;padding: 5px; }
  .navbar-links   { display: none; }
  .navbar-btn     { display: none; }
  .navbar-hamburger { display: flex; }
  #langSwitcher   { display: none; }

  /* ── Section headers ── */
  .section-header h2 { font-size: 28px; }
  .section-header p  { font-size: 16px; }

  /* ── Services ── */
  .services {
    padding: 48px 0;
  }
  .services .container {
    padding: 0;
  }
  .services .section-header {
    padding: 0 20px;
  }
  .services-scroll-dots { display: flex; }

  .services-grid {
    gap: 16px;
    padding: 8px 20px 16px;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .services-grid .service-card {
    flex: 0 0 78%;
  }

  .ai-metric-value { font-size: 22px; }
  .cta-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  /* ── AI Powers section ── */
  .ai-powers {
    padding: 56px 20px;
  }
  .ai-powers-inner {
    flex-direction: column;
    gap: 16px;
  }
  .ai-powers-header h2 { font-size: 26px; }
  .ai-powers-header p  { font-size: 15px; }

  .ai-powers-features {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 4px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .ai-powers-features::-webkit-scrollbar { display: none; }
  .ai-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }
  .ai-feature-icon img {
    width: 26px;
    height: 26px;
  }
  .ai-powers-features .ai-feature-card {
    flex: 0 0 85%;
    max-width: calc(100vw - 60px);
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .ai-scroll-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 4px 0 8px;
    width: 100%;
    align-self: center;
  }
  .ai-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #FFFFFF4D;
    transition: width 0.3s ease, background 0.3s ease;
    cursor: pointer;
  }
  .ai-scroll-dot.active {
    width: 28px;
    background: #F6EB69;
  }

  /* ── Partners ── */
  .partners { padding: 48px 0 40px; }
  .partners-badge,
  .partners-heading,
  .partners-sub { padding-left: 20px; padding-right: 20px; }
  .partners-heading { font-size: 32px; }
  .partners-sub     { font-size: 16px; margin-bottom: 32px; }
  /* On mobile: undo the carousel clip so native scroll works */
  .partners-carousel-wrapper { overflow: visible; }
  .partners-carousel-controls { display: none; }
  .partners-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 20px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none !important;
    transition: none;
    margin-bottom: 24px;
  }
  .partners-cards::-webkit-scrollbar { display: none; }
  .partner-card {
    min-width: 200px;
    flex: 0 0 200px !important;
    scroll-snap-align: start;
    padding: 28px 16px 20px;
  }
  .partners-cta     { flex-direction: column; text-align: center; padding: 24px 20px; margin: 0 20px; }
  .partners-cta-left { flex-direction: column; align-items: center; text-align: center; }
  .partners-cta-btn { width: 100%; }

  /* ── Technology ── */
  .technology { padding: 56px 0 48px; }
  .tech-header { margin-bottom: 36px; }
  .tech-header h2 { font-size: 26px; }
  .tech-header .tech-subtitle { font-size: 16px; }
  .tech-header .tech-subdesc  { font-size: 14px; }
  .tech-scroll-dots { display: flex; }

  .tech-cards {
    gap: 16px;
    padding: 8px 20px 16px;
    scrollbar-width: none;
  }
  .tech-cards::-webkit-scrollbar { display: none; }
  .tech-cards .tech-card {
    flex: 0 0 85%;
  }
  .tech-scroll-dots {
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }
  .tech-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #FFFFFF4D;
    transition: width 0.3s ease, background 0.3s ease;
    cursor: pointer;
  }
  .tech-scroll-dot.active {
    width: 28px;
    background: #F6EB69;
  }
  .tech-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    gap: 24px;
  }

  /* ── Training ── */
  .training { padding: 48px 0 40px; }
  .training-header h2 { font-size: 36px; }
  .training-header p { font-size: 17px; }
  .training-badge span { font-size: 17px; }
  .training-scroll-dots { display: flex; }

  .training-grid {
    gap: 16px;
    padding: 8px 20px 16px;
    scrollbar-width: none;
  }
  .training-grid::-webkit-scrollbar { display: none; }
  .tc {
    flex: 0 0 82%;
    width: 82%;
  }

  /* ── Contact ── */
  .contact { padding: 60px 0 48px; }
  .contact-header { margin-bottom: 36px; }
  .contact-header h2 { font-size: 32px; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* ── CTA banner ── */
  .cta-banner { padding: 56px 20px; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner p  { font-size: 16px; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }

  /* ── Where Human Talent Meets AI ── */
  .whtma { padding: 60px 0 48px; }
  .whtma-title { font-size: 28px; }
  .whtma-sub { font-size: 15px; }
  .whtma-header { margin-bottom: 40px; }

  /* Mobile indicators bar */
  .whtma-mobile-tops {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 16px 20px;
    position: relative;
  }
  .whtma-mobile-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
    transition: opacity .3s;
  }
  .whtma-mobile-top.active { opacity: 1; }

  /* Cards scroll */
  .whtma-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    margin-bottom: 40px;
    padding: 0 16px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .whtma-steps::-webkit-scrollbar { display: none; }
  .whtma-steps .whtma-step {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0 8px;
  }
  .whtma-steps .whtma-step-top { display: none; }
  .whtma-connector-line { display: none; }
  .whtma-step-card {
    width: 100%;
    background: #f9fafb;
    border-color: #e5e7eb;
    transition: background .3s;
  }
  .whtma-step.active .whtma-step-card {
    background: rgba(52, 76, 152, 0.06);
    border-color: rgba(52, 76, 152, 0.15);
  }
  .whtma-cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }
  .whtma-cta-buttons { justify-content: center; flex-wrap: wrap; }
  .whtma-cta-title { font-size: 20px; }

  /* ── Footer ── */
  footer { padding: 40px 20px; gap: 40px; }
  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  .footer-brand { max-width: 100%; }
  .footer-brand p { font-size: 16px; }
  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-col h4  { font-size: 17px; }
  .footer-col ul li a { font-size: 15px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-copyright { font-size: 13px; }
  .footer-legal a   { font-size: 13px; }
}

/* ═══════════════════════════════════════════
   ENROLL MODAL
═══════════════════════════════════════════ */

/* Overlay */
.enroll-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.enroll-overlay.open { display: flex; }

/* Modal card */
.enroll-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  width: 100%;
  max-width: 896px;
  overflow: hidden;
  animation: emSlideIn .3s ease;
  position: relative;
  margin: auto;
}
@keyframes emSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Header ── */
.em-header {
  position: relative;
  background: linear-gradient(135deg, #344c98 0%, #2a3d7a 60%, #1e2d5a 100%);
  padding: 20px 24px;
  overflow: hidden;
}
.em-header-glow {
  position: absolute;
  border-radius: 9999px;
  opacity: .10;
  pointer-events: none;
}
.em-glow-yellow { width: 160px; height: 160px; background: #f6eb69; top: -48px; right: 160px; }
.em-glow-blue   { width: 112px; height: 112px; background: #6fc7ea; bottom: -30px; left: -34px; }
.em-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px 20px;
}
.em-header-left { display: flex; align-items: center; gap: 16px; }
.em-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(246,235,105,.2);
  border: 1px solid rgba(246,235,105,.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,.1), 0 10px 15px -3px rgba(0,0,0,.1);
}
.em-icon-wrap img { width: 26px; height: 26px; }
.em-header-info { display: flex; flex-direction: column; gap: 8px; }
.em-training-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}
.em-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.em-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
}
.em-tag img { width: 13px; height: 13px; }

/* Price badge */
.em-price-badge {
  flex-shrink: 0;
  background: #f6eb69;
  border-radius: 16px;
  padding: 12px 20px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 4px 6px -4px rgba(0,0,0,.1), 0 10px 15px -3px rgba(0,0,0,.1);
  min-width: 96px;
}
.em-price-top { display: flex; align-items: baseline; gap: 4px; }
.em-price-amount { font-size: 28px; font-weight: 800; color: #344c98; line-height: 1; }
.em-price-currency { font-size: 16px; font-weight: 700; color: #344c98; }
.em-price-divider { width: 60px; height: 1px; background: rgba(52,76,152,.2); margin: 6px 0; }
.em-price-label { font-size: 11px; font-weight: 600; color: rgba(52,76,152,.7); white-space: nowrap; }

/* ── Steps progress ── */
.em-steps-wrap {
  padding: 16px 24px 0;
  border-bottom: 1px solid #f3f4f6;
}
.em-steps-inner {
  display: flex; align-items: flex-start; justify-content: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.em-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 0 0 auto;
}
.em-step-circle {
  width: 40px; height: 40px; border-radius: 9999px;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, box-shadow .2s;
}
.em-step-circle img { width: 18px; height: 18px; }
.em-step span {
  font-size: 11px; font-weight: 700; color: #9ca3af;
  text-align: center;
  transition: color .2s;
}
.em-step.active .em-step-circle {
  background: #f6eb69;
  box-shadow: 0 4px 6px -4px rgba(246,235,105,.5), 0 10px 15px -3px rgba(246,235,105,.5);
}
.em-step.done .em-step-circle { background: #344c98; }
.em-step.done .em-step-circle img { filter: brightness(0) invert(1); }
.em-step.active span, .em-step.done span { color: #344c98; }
.em-step-line {
  flex: 1; height: 2px; background: #e5e7eb;
  border-radius: 9999px;
  margin: 0 8px;
  align-self: flex-start;
  margin-top: 20px;
  min-width: 60px;
  position: relative;
}
.em-step-line::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%; background: #344c98;
  border-radius: 9999px;
  transition: width .4s ease;
}
.em-step-line.done::after { width: 100%; }

/* ── Body ── */
.em-body {
  padding: 24px;
  min-height: 280px;
  max-height: 440px;
  overflow-y: auto;
}
.em-body-header { margin-bottom: 20px; }
.em-body-header h3 {
  font-size: 20px; font-weight: 700; color: #344c98; margin-bottom: 6px;
}
.em-body-header p { font-size: 14px; color: #6b7280; }

/* Date options */
.em-dates { display: flex; flex-direction: column; gap: 10px; }
.em-date-option {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  user-select: none;
}
.em-date-option:hover { border-color: #344c98; background: #f5f7ff; }
.em-date-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.em-date-option:has(input:checked) {
  border-color: #344c98;
  background: rgba(52,76,152,.04);
}
.em-date-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.em-date-option:has(input:checked) .em-date-icon { background: rgba(52,76,152,.1); }
.em-date-icon img { width: 16px; height: 16px; }
.em-date-option > span {
  flex: 1; font-size: 16px; font-weight: 700; color: #374151;
}
.em-radio-circle {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 2px solid #d1d5db; border-radius: 9999px;
  transition: border-color .2s, background .2s;
  position: relative;
}
.em-date-option:has(input:checked) .em-radio-circle {
  border-color: #344c98;
  background: #344c98;
}
.em-date-option:has(input:checked) .em-radio-circle::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
}

/* ── Registration form (Step 2) ── */
.em-form { display: flex; flex-direction: column; gap: 16px; }
.em-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.em-form-group { display: flex; flex-direction: column; gap: 6px; }
.em-form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.em-optional { font-size: 11px; font-weight: 400; color: #9ca3af; margin-left: 4px; }
.em-form-group input {
  width: 100%; height: 48px;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 0 14px;
  font-size: 14px; color: #111827;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.em-form-group input:focus { border-color: #344c98; }
.em-field-error { font-size: 12px; color: #fca5a5; display: none; }
.em-field-error.show { display: block; }

/* ── Review (Step 3) ── */
.em-review { display: flex; flex-direction: column; gap: 0; border: 1px solid #f3f4f6; border-radius: 12px; overflow: hidden; }
.em-review-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #f3f4f6;
}
.em-review-row:last-child { border-bottom: none; }
.em-review-label { font-size: 13px; color: #6b7280; font-weight: 500; }
.em-review-val { font-size: 14px; color: #111827; font-weight: 600; text-align: right; }
.em-review-price { color: #344c98; font-size: 16px; }

/* ── Confirm (Step 4) ── */
.em-confirm-wrap {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 20px 0;
}
.em-confirm-icon {
  width: 72px; height: 72px; border-radius: 9999px;
  background: rgba(52,76,152,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.em-confirm-wrap h3 { font-size: 22px; font-weight: 700; color: #344c98; margin-bottom: 12px; }
.em-confirm-wrap p { font-size: 14px; color: #6b7280; max-width: 420px; line-height: 1.6; margin-bottom: 8px; }
.em-confirm-email { font-size: 13px; color: #9ca3af; }

/* ── Footer ── */
.em-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  background: #fff;
}
.em-footer-right { display: flex; gap: 12px; align-items: center; }
.em-btn-prev {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #6b7280;
  padding: 10px 0;
  transition: color .2s;
}
.em-btn-prev:hover { color: #344c98; }
.em-btn-prev[disabled] { opacity: .3; cursor: default; }
.em-btn-cancel {
  background: none; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 10px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #6b7280;
  transition: border-color .2s, color .2s;
}
.em-btn-cancel:hover { border-color: #344c98; color: #344c98; }
.em-btn-continue {
  display: flex; align-items: center; gap: 6px;
  background: #344c98; border: none; border-radius: 10px;
  padding: 10px 22px; cursor: pointer;
  font-size: 14px; font-weight: 700; color: #fff;
  transition: opacity .2s, transform .15s;
}
.em-btn-continue:hover { opacity: .9; transform: translateY(-1px); }
.em-btn-continue.submit { background: #22c55e; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .enroll-modal { border-radius: 12px; }
  .em-training-name { font-size: 15px; max-width: 180px; }
  .em-price-amount { font-size: 22px; }
  .em-header-inner { flex-wrap: wrap; gap: 12px; }
  .em-icon-wrap { width: 40px; height: 40px; }
  .em-icon-wrap img { width: 20px; height: 20px; }
  .em-steps-inner { padding: 12px 8px; gap: 0; }
  .em-step span { font-size: 10px; }
  .em-step-line { min-width: 24px; }
  .em-step-circle { width: 32px; height: 32px; }
  .em-step-circle img { width: 14px; height: 14px; }
  .em-body { padding: 16px; max-height: 380px; }
  .em-form-row { grid-template-columns: 1fr; }
  .em-footer { padding: 12px 16px; }
  .em-btn-cancel { display: none; }
}

/* ── Registration Type cards (Step 2a) ── */
.em-reg-types { display: flex; flex-direction: column; gap: 12px; }

.em-reg-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 21px 17px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: border-color .2s, box-shadow .2s, background .2s;
  user-select: none;
}
.em-reg-option:hover {
  border-color: #344c98;
  box-shadow: 0 0 0 3px rgba(52,76,152,.08);
}
.em-reg-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.em-reg-option:has(input:checked) {
  border-color: #344c98;
  background: rgba(52,76,152,.03);
  box-shadow: 0 0 0 3px rgba(52,76,152,.1);
}

.em-reg-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.em-reg-option:has(input:checked) .em-reg-icon {
  background: rgba(52,76,152,.1);
}
.em-reg-icon img { width: 22px; height: 22px; }

.em-reg-info {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.em-reg-title {
  font-size: 17px; font-weight: 700; color: #111827; line-height: 1.2;
}
.em-reg-desc {
  font-size: 14px; font-weight: 400; color: #6b7280; line-height: 1.3;
}

/* Radio circle for reg-option (reuse .em-radio-circle sizing) */
.em-reg-option .em-radio-circle {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid #d1d5db; border-radius: 9999px;
  transition: border-color .2s, background .2s;
  position: relative;
}
.em-reg-option:has(input:checked) .em-radio-circle {
  border-color: #344c98;
  background: #344c98;
}
.em-reg-option:has(input:checked) .em-radio-circle::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
}

/* ── Review & Consent (Step 3) ── */
.em-summary-card {
  border: 1px solid #e5e7eb; border-radius: 12px;
  overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.05);
  margin-bottom: 20px;
}
.em-summary-header {
  display: flex; align-items: center; gap: 10px;
  background: #f8f9ff; border-bottom: 1px solid #e5e7eb; padding: 13px 16px;
}
.em-summary-header-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: #eef1fb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.em-summary-header-icon img { width: 14px; height: 14px; }
.em-summary-header > span { font-size: 16px; font-weight: 700; color: #344c98; }
.em-summary-rows { display: flex; flex-direction: column; }
.em-summary-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-top: 1px solid #e5e7eb;
}
.em-summary-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: #f3f4f6; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.em-summary-icon img { width: 13px; height: 13px; }
.em-summary-info { display: flex; flex-direction: column; gap: 2px; }
.em-summary-label { font-size: 13px; color: #9ca3af; font-weight: 400; line-height: 1.2; }
.em-summary-val   { font-size: 16px; color: #111827; font-weight: 700; line-height: 1.3; }

/* Consent section */
.em-consent-section { display: flex; flex-direction: column; gap: 11px; }
.em-consent-heading {
  display: flex; align-items: center; gap: 9px; margin-bottom: 2px;
}
.em-consent-heading-icon {
  width: 29px; height: 29px; flex-shrink: 0;
  background: #eef1fb; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.em-consent-heading-icon img { width: 13px; height: 13px; }
.em-consent-heading > span { font-size: 13px; font-weight: 700; color: #344c98; }
.em-consent-item {
  display: flex; align-items: flex-start; gap: 11px;
  background: #fff; border: 0.92px solid #e5e7eb;
  border-radius: 11px; padding: 15px; cursor: pointer;
  box-shadow: 0 0.92px 2.76px rgba(0,0,0,.05);
  user-select: none; transition: border-color .2s;
}
.em-consent-item:hover { border-color: #344c98; }
.em-consent-item input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.em-consent-check {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px;
  border: 1.84px solid #d1d5db; border-radius: 3.68px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s; position: relative;
}
.em-consent-item:has(input:checked) .em-consent-check {
  background: #344c98; border-color: #344c98;
}
.em-consent-item:has(input:checked) .em-consent-check::after {
  content: ''; position: absolute;
  width: 10px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.em-consent-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.em-consent-title-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.em-consent-title { font-size: 12px; font-weight: 700; color: #111827; line-height: 1.4; }
.em-consent-link {
  font-size: 11px; font-weight: 700; color: #344c98;
  text-decoration: underline; white-space: nowrap; flex-shrink: 0;
}
.em-consent-info > p { font-size: 11px; color: #6b7280; line-height: 1.6; }
@media (max-width: 640px) {
  .em-summary-val { font-size: 14px; }
  .em-consent-item { padding: 12px; }
}

/* ── Review & Consent (Step 3) ── */

/* Registration Summary card */
.em-summary-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  overflow: hidden;
  margin-bottom: 16px;
}
.em-summary-header {
  display: flex; align-items: center; gap: 10px;
  background: #f8f9ff;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 16px;
}
.em-summary-header-icon {
  width: 28px; height: 28px;
  background: #eef1fb;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.em-summary-header-icon img { width: 14px; height: 14px; }
.em-summary-header > span {
  font-size: 16px; font-weight: 700; color: #344c98;
}
.em-summary-rows { display: flex; flex-direction: column; }
.em-summary-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
}
.em-summary-row:first-child { border-top: none; }
.em-summary-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.em-summary-icon img { width: 13px; height: 13px; }
.em-summary-info {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.em-summary-label { font-size: 13px; color: #9ca3af; font-weight: 400; line-height: 1.2; }
.em-summary-val   { font-size: 16px; color: #111827; font-weight: 700; line-height: 1.3; }

/* Consent & Agreements section */
.em-consent-section { display: flex; flex-direction: column; gap: 10px; }
.em-consent-heading {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 2px;
}
.em-consent-heading-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: #eef1fb;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.em-consent-heading-icon img { width: 13px; height: 13px; }
.em-consent-heading > span {
  font-size: 14px; font-weight: 700; color: #344c98;
}
.em-consent-item {
  display: flex; align-items: flex-start; gap: 11px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  padding: 14px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  user-select: none;
  transition: border-color .2s;
}
.em-consent-item:hover { border-color: #344c98; }
.em-consent-item input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.em-consent-check {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid #d1d5db; border-radius: 4px;
  background: #fff;
  transition: background .2s, border-color .2s;
  position: relative;
}
.em-consent-item:has(input:checked) .em-consent-check {
  background: #344c98; border-color: #344c98;
}
.em-consent-item:has(input:checked) .em-consent-check::after {
  content: '';
  position: absolute; top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.em-consent-item:has(input:checked) { border-color: #344c98; }
.em-consent-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.em-consent-title-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.em-consent-title { font-size: 13px; font-weight: 700; color: #111827; }
.em-consent-link  { font-size: 12px; font-weight: 700; color: #344c98; text-decoration: underline; white-space: nowrap; }
.em-consent-info p { font-size: 12px; color: #6b7280; line-height: 1.6; margin: 0; }

/* ── Confirm Step (Step 4) ── */
.em-body-confirm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  max-height: none;
  overflow-y: auto;
}

/* Hero */
.conf-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}
.conf-icon-wrap { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.conf-icon-circle {
  width: 80px; height: 80px;
  background: #f0f2fa;
  border: 3px solid #344c98;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
}
.conf-icon-circle img { width: 36px; height: 36px; }
.conf-icon-badge {
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  background: #f6eb69;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.conf-icon-badge img { width: 13px; height: 13px; }
.conf-title {
  font-size: 20px; font-weight: 800;
  color: #344c98; text-align: center;
  margin: 0;
}
.conf-subtitle {
  font-size: 16px; color: #6b7280;
  text-align: center; margin: 0;
}

/* Divider */
.conf-divider {
  height: 1px;
  background: #f3f4f6;
  width: 100%;
}

/* Details card */
.conf-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}
.conf-ref-header {
  background: #344c98;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.conf-ref-label {
  font-size: 13px; color: rgba(255,255,255,.8);
  letter-spacing: .3px;
}
.conf-ref-number {
  font-size: 22px; font-weight: 800;
  color: #f6eb69;
  letter-spacing: 1.2px;
}
.conf-details {
  padding: 12px 16px;
  display: flex; flex-direction: column;
}
.conf-detail-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
}
.conf-detail-row:first-child { border-top: none; }
.conf-detail-left {
  display: flex; align-items: center; gap: 8px;
}
.conf-detail-icon {
  width: 28px; height: 28px;
  background: #f0f2fa;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.conf-detail-icon img { width: 14px; height: 14px; }
.conf-detail-left > span {
  font-size: 14px; color: #6b7280;
}
.conf-detail-val {
  font-size: 16px; font-weight: 700; color: #1f2937;
  text-align: right; max-width: 55%;
}
.conf-status-badge {
  display: inline-flex; align-items: center;
  background: #ecfdf5;
  color: #059669;
  font-size: 14px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}

/* Email banner */
.conf-email-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fffde7;
  border: 1px solid #f6eb69;
  border-radius: 16px;
  padding: 17px;
}
.conf-email-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #f6eb69;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.conf-email-icon img { width: 16px; height: 16px; }
.conf-email-text { display: flex; flex-direction: column; gap: 4px; }
.conf-email-title {
  font-size: 16px; font-weight: 700; color: #344c98;
}
.conf-email-text p {
  font-size: 14px; color: #4b5563;
  line-height: 1.6; margin: 0;
}
