/* STEM English Kids (6–9) — Page CSS Include
 Design headspace-inspired warm pastels  Header ds-  Content #seb-home seb- */


@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,500,1,0&family=Nunito:wght@400;600;700;800;900&display=swap");

/* ── Material Icons ── */
.seb-micon {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1.35em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: FILL 1, wght 500, GRAD 0, opsz 24;
}

.seb-nav-icon {
  font-size: 1.1rem;
  margin-right: 0.15rem;
}

.seb-title-icon {
  font-size: 1.5rem;
  color: var(--seb-purple, #0088ff);
  vertical-align: -0.15em;
  margin-right: 0.25rem;
}

.seb-kicker-icon {
  font-size: 1rem;
  vertical-align: -0.1em;
}

.seb-card-title-icon,
.seb-req-icon {
  font-size: 1.2rem;
  color: var(--seb-purple, #0088ff);
  vertical-align: -0.12em;
  margin-right: 0.2rem;
}

.seb-icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.85rem;
  border-radius: 18px;
  box-shadow: 0 6px 0 rgba(91, 79, 207, 0.15), 0 8px 20px rgba(255, 159, 67, 0.12);
}

.seb-icon-bubble--sm {
  width: 42px;
  height: 42px;
  margin-bottom: 0.65rem;
  border-radius: 14px;
}

.seb-icon-bubble--sky { background: #d4f4ff; color: #0099cc; }
.seb-icon-bubble--purple { background: #ebe4ff; color: #0088ff; }
.seb-icon-bubble--grass { background: #dcfce7; color: #22c55e; }
.seb-icon-bubble--coral { background: #ffe4e6; color: #f43f5e; }
.seb-icon-bubble--sunny { background: #fef3c7; color: #f59e0b; }

/* ── Sticky header (full-bleed in narrow IPS wrapper) ── */
:root {
  --ds-header-h: 68px;
  --ds-navy: #0066cc;
  --ds-blue: #0088ff;
  --ds-border: #f0e6d8;
}

.ds-sticky-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: var(--ds-header-h);
  background: rgba(255, 249, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid #ffe8cc;
  box-shadow: 0 4px 16px rgba(91, 79, 207, 0.08);
  font-family: Nunito, system-ui, sans-serif;
}

.ds-sticky-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.ds-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ds-navy);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ds-brand__logo {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.ds-brand__logo  a {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 0;
  overflow: hidden;
}

.ds-brand__logo img,
.ds-brand__logo .seb-slot-img,
.ds-brand__logo .ds-brand__logo-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ds-brand__slogan {
  white-space: nowrap;
}

.ds-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ds-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.ds-nav ahover {
  color: var(--ds-navy);
  background: #ebe4ff;
}

.ds-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ds-nav-cta.seb-btn--primary {
  border-radius: 999px;
  background: linear-gradient(180deg, #7c6cf0 0%, #0088ff 100%);
  border: 2px solid #0066cc;
  box-shadow: 0 4px 0 #0066cc;
}

.ds-nav-cta.seb-btn--primaryhover {
  background: linear-gradient(180deg, #6d5ce7 0%, #4f46e5 100%);
}

.ds-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ds-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ds-navy);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.ds-nav-togglehover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.ds-nav-togglefocus-visible {
  outline: 2px solid var(--ds-blue);
  outline-offset: 2px;
}

.ds-nav-drawer {
  position: absolute;
  top: var(--ds-header-h);
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(255, 249, 240, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #ffe8cc;
  box-shadow: 0 12px 32px rgba(91, 79, 207, 0.12);
}

.ds-nav-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.ds-nav-drawer__nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s;
}

.ds-nav-drawer__nav ahover {
  background: #ebe4ff;
  color: var(--ds-navy);
}

.ds-nav-drawer .seb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: Nunito, system-ui, sans-serif;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
}

.ds-nav-drawer .seb-btn--primary {
  background: #2563eb;
  color: #fff;
  border-color: #1d4ed8;
}

.ds-nav-drawer .seb-btn--block {
  width: 100%;
}

.ds-lang-switcher {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.ds-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #f8fafc;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition: border-color 0.15s, background 0.15s;
}

.ds-lang-flag {
  display: block;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.ds-lang-btn[data-lang=vi] .ds-lang-flag {
  background-image: url(dataimagesvg+xml,%3Csvg xmlns='httpwww.w3.org2000svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23da251d'%3E%3Cpolygon fill='%23ff0' points='15,2.2 17.1,8.3 23.6,8.3 18.3,12.1 20.4,18.2 15,14.4 9.6,18.2 11.7,12.1 6.4,8.3 12.9,8.3'%3E%3Csvg%3E);
}

.ds-lang-btn[data-lang=en] .ds-lang-flag {
  background-image: url(dataimagesvg+xml,%3Csvg xmlns='httpwww.w3.org2000svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23fff' stroke-width='6'%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23c8102e' stroke-width='3'%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23c8102e' stroke-width='6'%3E%3Csvg%3E);
}

.ds-lang-btn.is-active {
  border-color: var(--ds-blue);
  background: #eff6ff;
}

.ds-lang-btnfocus-visible {
  outline: 2px solid var(--ds-blue);
  outline-offset: 2px;
}

/* ── Page root tokens ── */
#seb-home {
  --seb-navy: #0066cc;
  --seb-navy-dark: #0088ff;
  --seb-blue: #54a0ff;
  --seb-cyan: #4ecdc4;
  --seb-green: #95e86c;
  --seb-yellow: #ffe066;
  --seb-orange: #ff9f43;
  --seb-coral: #ff6b6b;
  --seb-purple: #0088ff;
  --seb-pink: #ff8fab;
  --seb-off-white: #fff9f0;
  --seb-slate: #6b5b95;
  --seb-border: #f0e6d8;
  --seb-shadow: 0 8px 24px rgba(91, 79, 207, 0.12);
  --seb-radius: 20px;
  --seb-radius-sm: 14px;
  --seb-max: 1180px;

  font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a3f6b;
  background: var(--seb-off-white);
}

#seb-home ,
#seb-home before,
#seb-home after {
  box-sizing: border-box;
}

#seb-home [id] {
  scroll-margin-top: 80px;
}

/* ── Layout ── */
#seb-home .seb-wrap {
  max-width: var(--seb-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

#seb-home .seb-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#seb-home .seb-section--white {
  background: #fff;
}

#seb-home .seb-section--slate {
  background: linear-gradient(180deg, #fff9f0 0%, #fff5e6 100%);
}

#seb-home .seb-section--navy {
  background: linear-gradient(135deg, #0088ff 0%, #7c6cf0 45%, #54a0ff 100%);
  color: #fff;
}

#seb-home .seb-section--navy .seb-title,
#seb-home .seb-section--navy .seb-subtitle {
  color: #fff;
}

#seb-home .seb-section--navy .seb-lead,
#seb-home .seb-section--navy .seb-muted {
  color: rgba(255, 255, 255, 0.85);
}

#seb-home .seb-center {
  text-align: center;
  margin-bottom: 2rem;
}

/* ── Typography ── */
#seb-home .seb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--seb-purple);
  background: #ebe4ff;
  border: 2px solid #d4c4ff;
  border-radius: 999px;
}

#seb-home .seb-section--navy .seb-kicker {
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

#seb-home .seb-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--seb-navy);
  letter-spacing: -0.025em;
}

#seb-home .seb-subtitle {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--seb-navy);
}

#seb-home .seb-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--seb-slate);
  max-width: 720px;
}

#seb-home .seb-center .seb-lead {
  margin-left: auto;
  margin-right: auto;
}

#seb-home .seb-muted {
  color: var(--seb-slate);
  font-size: 0.95rem;
}

#seb-home .seb-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--seb-slate);
  font-style: italic;
}

/* ── Hero ── */
#seb-home .seb-hero {
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8f5 35%, #e8f4ff 70%, #fff9f0 100%);
  color: var(--seb-navy);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #ffe8cc;
}

#seb-home .seb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255, 224, 102, 0.35) 0, transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(84, 160, 255, 0.2) 0, transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 143, 171, 0.12) 0, transparent 40%);
  pointer-events: none;
}

#seb-home .seb-hero .seb-wrap {
  position: relative;
  z-index: 1;
}

#seb-home .seb-hero .seb-kicker {
  color: var(--seb-purple);
  background: #fff;
  border-color: #d4c4ff;
}

#seb-home .seb-hero .seb-title {
  color: var(--seb-navy);
}

#seb-home .seb-hero__sub {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a3f6b;
}

#seb-home .seb-hero__sub em {
  color: var(--seb-orange);
  font-style: normal;
  font-weight: 800;
}

#seb-home .seb-hero .seb-lead {
  color: var(--seb-slate);
}

#seb-home .seb-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

#seb-home .seb-hero__visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

#seb-home .seb-hero__tile {
  border-radius: var(--seb-radius);
  overflow: hidden;
  min-height: 120px;
  background: #ffe8f5;
  border: 3px solid #fff;
  position: relative;
  box-shadow: 0 8px 0 rgba(91, 79, 207, 0.12), var(--seb-shadow);
}

#seb-home .seb-stats--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding-top: 0;
  border-top: none;
}

#seb-home .seb-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border: 2px solid #f0e6d8;
  border-radius: 999px;
  box-shadow: 0 4px 0 rgba(91, 79, 207, 0.1);
  min-width: 0;
}

#seb-home .seb-stat-pill__value {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 800;
  color: var(--seb-navy);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

#seb-home .seb-stat-pill__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--seb-slate);
  line-height: 1.35;
}

#seb-home .seb-hero__tilefirst-child {
  grid-row: span 2;
  min-height: 260px;
}

#seb-home .seb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#seb-home .seb-stats--inline {
  border-top: none;
  padding-top: 0;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}

#seb-home .seb-stat__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--seb-yellow);
}

#seb-home .seb-section--white .seb-stat__value,
#seb-home .seb-section--slate .seb-stat__value {
  color: var(--seb-navy);
}

#seb-home .seb-stat__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

#seb-home .seb-section--white .seb-stat__label,
#seb-home .seb-section--slate .seb-stat__label {
  color: var(--seb-slate);
}

/* ── Buttons ── */
#seb-home .seb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#seb-home .seb-btn--primary,
.ds-nav-cta.seb-btn--primary {
  background: linear-gradient(180deg, #7c6cf0 0%, #0088ff 100%);
  color: #fff;
  border-color: #0066cc;
  box-shadow: 0 6px 0 #0066cc, 0 10px 24px rgba(91, 79, 207, 0.25);
}

#seb-home .seb-btn--primaryhover,
.ds-nav-cta.seb-btn--primaryhover {
  background: linear-gradient(180deg, #6d5ce7 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 #0066cc, 0 8px 20px rgba(91, 79, 207, 0.3);
}

#seb-home .seb-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

#seb-home .seb-btn--block {
  width: 100%;
}

#seb-home .seb-btn--yellow {
  background: var(--seb-blue);
  color: #fff;
  border-color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

#seb-home .seb-btn--yellowhover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

#seb-home .seb-btn--outline {
  background: transparent;
  color: var(--seb-navy);
  border-color: var(--seb-border);
}

#seb-home .seb-hero .seb-btn--outline {
  background: #fff;
}

#seb-home .seb-btn--outline.seb-btn--on-light,
#seb-home .seb-section--white .seb-btn--outline,
#seb-home .seb-section--slate .seb-btn--outline {
  color: var(--seb-navy);
  border-color: #cbd5e1;
  background: #fff;
}

#seb-home .seb-btn--outlinehover {
  border-color: var(--seb-blue);
  background: #eff6ff;
}

#seb-home .seb-hero .seb-btn--outlinehover {
  border-color: var(--seb-blue);
  background: #eff6ff;
}

#seb-home .seb-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

#seb-home .seb-center-row {
  justify-content: center;
}

/* ── Grids & Cards ── */
#seb-home .seb-grid {
  display: grid;
  gap: 1.25rem;
}

#seb-home .seb-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

#seb-home .seb-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

#seb-home .seb-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

#seb-home .seb-card {
  background: #fff;
  border-radius: var(--seb-radius);
  border: 2px solid var(--seb-border);
  box-shadow: 0 8px 0 rgba(91, 79, 207, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

#seb-home .seb-cardhover {
  box-shadow: var(--seb-shadow);
  transform: translateY(-4px);
}

#seb-home .seb-card__body {
  padding: 1.5rem;
}

#seb-home .seb-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--seb-navy);
}

#seb-home .seb-card__badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--seb-blue);
  background: #eff6ff;
  border-radius: 6px;
}

#seb-home .seb-card--compact {
  padding: 1.25rem;
}

#seb-home .seb-card--compact h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--seb-navy);
}

#seb-home .seb-card--problem,
#seb-home .seb-card--solution {
  position: relative;
  border-left: none;
  overflow: hidden;
}

#seb-home .seb-card--problem::before,
#seb-home .seb-card--solution::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 0;
}

#seb-home .seb-card--problem::before {
  background: var(--seb-orange);
}

#seb-home .seb-card--solution::before {
  background: var(--seb-green);
}

#seb-home .seb-card--problem .seb-card__body,
#seb-home .seb-card--solution .seb-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
}

#seb-home .seb-card--problem .seb-card__title,
#seb-home .seb-card--solution .seb-card__title {
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

#seb-home .seb-card--problem .seb-list,
#seb-home .seb-card--solution .seb-list {
  margin-top: 0;
  padding-left: 1.15rem;
}

#seb-home .seb-card--problem .seb-list li,
#seb-home .seb-card--solution .seb-list li {
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

#seb-home .seb-card--problem .seb-list lilast-child,
#seb-home .seb-card--solution .seb-list lilast-child {
  margin-bottom: 0;
}

#seb-home .seb-badge-duration {
  margin-top: 0.5rem;
}

/* ── Lists ── */
#seb-home .seb-list {
  margin: 0;
  padding-left: 1.25rem;
}

#seb-home .seb-list li {
  margin-bottom: 0.5rem;
}

#seb-home .seb-list--check {
  list-style: none;
  padding-left: 0;
}

#seb-home .seb-list--check li {
  padding-left: 1.5rem;
  position: relative;
}

#seb-home .seb-list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--seb-green);
  font-weight: 700;
}

#seb-home .seb-list--center {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

/* ── Timeline ── */
#seb-home .seb-timeline {
  margin-top: 1.25rem;
}

#seb-home .seb-timeline-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  border-left: 2px solid var(--seb-blue);
}

#seb-home .seb-timeline-item__year {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--seb-blue);
  margin-bottom: 0.25rem;
}

#seb-home .seb-timeline-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--seb-slate);
}

/* ── Model flow stepper ── */
#seb-home .seb-model-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 1rem;
  position: relative;
}

#seb-home .seb-flow-step {
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--seb-radius-sm);
  color: var(--seb-navy);
  border: 1px solid var(--seb-border);
  box-shadow: 0 1px 4px rgba(11, 30, 105, 0.04);
}

#seb-home .seb-flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  background: #eff6ff;
  color: var(--seb-blue);
  border-radius: 50%;
  border: 1px solid #bfdbfe;
}

#seb-home .seb-flow-step__num .seb-micon {
  font-size: 1.2rem;
  color: var(--seb-blue);
}

#seb-home .seb-flow-step h4 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--seb-navy);
}

#seb-home .seb-flow-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--seb-slate);
  line-height: 1.5;
}

/* ── Program ── */
#seb-home .seb-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#seb-home .seb-topic-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--seb-border);
  font-size: 0.95rem;
}

#seb-home .seb-skill-card {
  padding: 1.35rem;
  background: #fff;
  border-radius: var(--seb-radius-sm);
  border: 2px solid var(--seb-border);
  box-shadow: 0 6px 0 rgba(78, 205, 196, 0.15);
}

#seb-home .seb-skill-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--seb-navy);
}

#seb-home .seb-skill-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--seb-slate);
}

#seb-home .seb-outcome-grid {
  margin-top: 1.5rem;
}

/* ── Training steps ── */
#seb-home .seb-steps .seb-step {
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid var(--seb-blue);
  margin-bottom: 0.5rem;
}

#seb-home .seb-step h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--seb-navy);
}

#seb-home .seb-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--seb-slate);
}

/* ── Roadmap ── */
#seb-home .seb-steps--roadmap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

#seb-home .seb-step--roadmap {
  color: #fff;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--seb-radius-sm);
  border-left: none;
}

#seb-home .seb-step__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}

#seb-home .seb-step--roadmap h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
}

#seb-home .seb-step--roadmap p {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  opacity: 0.9;
}

#seb-home .seb-step__result {
  font-size: 0.75rem !important;
  font-style: italic;
  opacity: 0.75 !important;
}

/* ── Infrastructure ── */
#seb-home .seb-requirement {
  padding: 1rem 0;
  border-bottom: 1px solid var(--seb-border);
}

#seb-home .seb-requirement h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--seb-navy);
}

#seb-home .seb-requirement p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--seb-slate);
}

#seb-home .seb-price-card {
  padding: 1.5rem;
  background: var(--seb-off-white);
  border-radius: var(--seb-radius);
  border: 1px solid var(--seb-border);
}

#seb-home .seb-price-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--seb-navy);
}

/* ── KPI ── */
#seb-home .seb-kpi-card {
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--seb-radius-sm);
  border: 1px solid var(--seb-border);
}

#seb-home .seb-kpi-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--seb-blue);
}

#seb-home .seb-kpi-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--seb-slate);
}

#seb-home .seb-kpi-card--wide {
  grid-column: span 2;
}

#seb-home .seb-dashboard .seb-img-slot {
  min-height: 200px;
  border-radius: var(--seb-radius);
}

/* ── Hidden random media pool (IDs 56–86) ── */
#seb-media-pool {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

#seb-media-pool .seb-img-slot {
  min-height: 0;
  width: 1px;
  height: 1px;
  cursor: default;
}

/* ── Image slots ── */
#seb-home .seb-img-slot {
  position: relative;
  overflow: hidden;
  border-radius: var(--seb-radius-sm);
  background: #e2e8f0;
  min-height: 160px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

#seb-home .seb-img-slot  a {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 0;
  overflow: hidden;
  text-indent: -9999px;
}

 Show: IPS-native or promoted images 
#seb-home .seb-img-slot img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#seb-home .seb-img-slot .seb-slot-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#seb-home .seb-hero__tile.seb-img-slot .seb-slot-img {
  min-height: 100%;
}

#seb-home .seb-img-slot.has-image {
  cursor: zoom-in;
}

#seb-home .seb-img-slot.has-imagefocus-visible {
  outline: 3px solid var(--seb-purple, #0088ff);
  outline-offset: 3px;
}

.seb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  cursor: zoom-out;
}

.seb-lightbox[hidden] {
  display: none !important;
}

.seb-lightbox__img {
  max-width: min(96vw, 1024px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--seb-radius-sm, 14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  cursor: default;
  pointer-events: auto;
}

body.seb-lightbox-open {
  overflow: hidden;
}

#seb-home .seb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}

#seb-home .seb-gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4  3;
  padding: 0;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius-sm);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  box-shadow: 0 4px 0 rgba(91, 79, 207, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#seb-home .seb-gallery-thumbhover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(91, 79, 207, 0.12);
}

#seb-home .seb-gallery-thumbfocus-visible {
  outline: 3px solid var(--seb-purple, #0088ff);
  outline-offset: 3px;
}

#seb-home .seb-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#seb-home .seb-proof-map,
#seb-home .seb-model-visual,
#seb-home .seb-program-visual,
#seb-home .seb-training-visual,
#seb-home .seb-contact-banner {
  min-height: 200px;
  margin-bottom: 1rem;
}

#seb-home .seb-model-top {
  margin-bottom: 1.25rem;
  align-items: start;
}

#seb-home .seb-why-split {
  margin-bottom: 1.5rem;
}

#seb-home .seb-benefits {
  margin-top: 0.5rem;
}

#seb-home .seb-proof-grid {
  align-items: start;
}

#seb-home .seb-quality-grid {
  align-items: stretch;
}

#seb-home .seb-quality-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}

#seb-home .seb-quality-aside .seb-dashboard {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#seb-home .seb-quality-dashboard-img {
  flex: 1;
  min-height: 180px;
  height: 100%;
  border-radius: var(--seb-radius);
  border: 1px solid var(--seb-border);
  box-shadow: 0 1px 4px rgba(11, 30, 105, 0.04);
}

#seb-home .seb-quality-ops {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
}

#seb-home .seb-kpi-grid {
  height: 100%;
  align-content: stretch;
  grid-auto-rows: 1fr;
}

#seb-home .seb-kpi-grid .seb-icon-item--metric {
  height: 100%;
}

/* ── FAQ ── */
#seb-home .seb-faq {
  max-width: 800px;
  margin: 0 auto;
}

#seb-home .seb-faq-item {
  margin-bottom: 0.5rem;
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-sm);
  background: #fff;
  overflow: hidden;
}

#seb-home .seb-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  color: var(--seb-navy);
  background: none;
  border: none;
  cursor: pointer;
}

#seb-home .seb-faq-qfocus-visible {
  outline: 2px solid var(--seb-blue);
  outline-offset: -2px;
}

#seb-home .seb-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 1rem;
  position: relative;
}

#seb-home .seb-faq-icon::before,
#seb-home .seb-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--seb-navy);
  transition: transform 0.2s;
}

#seb-home .seb-faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

#seb-home .seb-faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

#seb-home .seb-faq-item.is-open .seb-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

#seb-home .seb-faq-a {
  padding: 0 1.25rem 1rem;
}

#seb-home .seb-faq-a p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--seb-slate);
}

/* ── Contact ── */
#seb-home .seb-contact {
  align-items: start;
}

#seb-home .seb-contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

#seb-home .seb-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius-sm);
  box-shadow: 0 4px 0 rgba(91, 79, 207, 0.05);
}

#seb-home .seb-contact-info__item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--seb-slate);
  margin-bottom: 0.15rem;
}

#seb-home .seb-contact-info a {
  color: var(--seb-blue);
  font-weight: 700;
  text-decoration: none;
}

#seb-home .seb-contact-info ahover {
  color: var(--seb-navy);
  text-decoration: underline;
}

#seb-home .seb-contact-form {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--seb-radius);
  border: 2px solid var(--seb-border);
  box-shadow: 0 8px 0 rgba(91, 79, 207, 0.06);
}

#seb-home .seb-field {
  margin-bottom: 1rem;
}

#seb-home .seb-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--seb-navy);
}

#seb-home .seb-field input,
#seb-home .seb-field select,
#seb-home .seb-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid var(--seb-border);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.15s;
}

#seb-home .seb-field inputfocus,
#seb-home .seb-field selectfocus,
#seb-home .seb-field textareafocus {
  outline: none;
  border-color: var(--seb-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

#seb-home .seb-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

#seb-home .seb-form-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

#seb-home .seb-form-msg.is-success {
  color: var(--seb-green);
}

#seb-home .seb-form-msg.is-error {
  color: #dc2626;
}

/* ── Footer ── */
#seb-home .seb-footer {
  background: var(--seb-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
}

#seb-home .seb-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

#seb-home .seb-footer__brand {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

#seb-home .seb-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}

#seb-home .seb-footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

#seb-home .seb-footer__nav ahover {
  color: #93c5fd;
}

#seb-home .seb-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#seb-home .seb-footer .seb-note,
#seb-home .seb-footer .seb-muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

#seb-home .seb-faq-item {
  border: 2px solid var(--seb-border);
  box-shadow: 0 4px 0 rgba(91, 79, 207, 0.05);
}

#seb-home .seb-faq-q {
  font-weight: 800;
  color: var(--seb-navy);
}

#seb-home .seb-badge-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #b45309;
  border: 2px solid #fde68a;
}

#seb-home .seb-list--check li::before {
  color: var(--seb-green);
  font-weight: 900;
  font-size: 1.1rem;
}

/* ── Reveal animation ── */
#seb-home .seb-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#seb-home .seb-card.seb-reveal {
  transform: translateY(12px);
}

#seb-home .seb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.seb-title-icon--hero {
  color: var(--seb-blue);
}

/* ── Section headings ── */
#seb-home .seb-section-desc {
  margin: -0.35rem auto 1.25rem;
  max-width: 640px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--seb-slate);
}

#seb-home .seb-center .seb-section-desc {
  text-align: center;
}

#seb-home .seb-section-desc--light,
#seb-home .seb-section--navy .seb-section-desc {
  color: rgba(255, 255, 255, 0.9);
}

.seb-title-icon--light,
#seb-home .seb-section--navy .seb-title-icon {
  color: #ffe066;
}

#seb-home .seb-section--navy .seb-title {
  color: #fff;
}

#seb-home .seb-section--navy .seb-title span[data-i18n] {
  color: inherit;
}

/* ── Hero stats no awkward line breaks ── */
#seb-home .seb-hero .seb-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

#seb-home .seb-hero .seb-stat {
  min-width: 0;
}

#seb-home .seb-hero .seb-stat__value {
  white-space: nowrap;
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  letter-spacing: -0.02em;
}

#seb-home .seb-hero .seb-stat__label {
  font-size: 0.72rem;
  line-height: 1.35;
}

/* ── Card  box images ── */
#seb-home .seb-card--media {
  padding: 0;
}

#seb-home .seb-card__media {
  min-height: 140px;
  border-radius: var(--seb-radius) var(--seb-radius) 0 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #cffafe 100%);
}

#seb-home .seb-card__media--sm {
  min-height: 100px;
}

#seb-home .seb-card--media .seb-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

#seb-home .seb-card--compact.seb-card--media {
  padding: 0 0 1.25rem;
  overflow: hidden;
}

#seb-home .seb-card--compact.seb-card--media .seb-icon-bubble,
#seb-home .seb-card--compact.seb-card--media h4,
#seb-home .seb-card--compact.seb-card--media .seb-muted {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}

#seb-home .seb-card--problem.seb-card--media .seb-card__media,
#seb-home .seb-card--solution.seb-card--media .seb-card__media {
  border-radius: var(--seb-radius) var(--seb-radius) 0 0;
}

/* ── Roadmap on dark background ── */
#seb-home .seb-step--roadmap {
  color: #fff;
  padding: 1.25rem;
  overflow: visible;
}

#seb-home .seb-step--roadmap .seb-step__num,
#seb-home .seb-step--roadmap h3,
#seb-home .seb-step--roadmap p {
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}

#seb-home .seb-step--roadmap h3 {
  margin-top: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

#seb-home .seb-step--roadmap p {
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
  font-size: 0.85rem;
}

#seb-home .seb-step--roadmap .seb-step__result {
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  font-size: 0.78rem;
}

#seb-home .seb-step--roadmap .seb-step__num {
  padding-top: 0;
}

/* ── Infra requirement rows ── */
#seb-home .seb-requirement--media {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--seb-border);
}

#seb-home .seb-requirement__media {
  flex-shrink: 0;
  width: 88px;
  min-height: 72px;
  border-radius: 12px;
  background: #e0e7ff;
}

#seb-home .seb-requirement__text {
  flex: 1;
  min-width: 0;
}

#seb-home .seb-price-card--media .seb-card__media {
  min-height: 120px;
  margin: -1.5rem -1.5rem 1rem;
  border-radius: var(--seb-radius) var(--seb-radius) 0 0;
}

#seb-home .seb-skill-card--media {
  padding-top: 0;
  overflow: hidden;
}

#seb-home .seb-skill-card--media .seb-card__media {
  margin: 0 0 0.75rem;
  border-radius: var(--seb-radius-sm) var(--seb-radius-sm) 0 0;
}

#seb-home .seb-kpi-card--media {
  padding-top: 0;
  overflow: hidden;
}

#seb-home .seb-kpi-card--media .seb-card__media {
  margin-bottom: 0.75rem;
  border-radius: var(--seb-radius-sm) var(--seb-radius-sm) 0 0;
}

/* ── Pilot panel ── */
#seb-home .seb-section--pilot {
  background: linear-gradient(180deg, #fff9f0 0%, #ffe8f5 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

#seb-home .seb-pilot-panel {
  display: block;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: #fff;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius);
  box-shadow: 0 8px 0 rgba(91, 79, 207, 0.1), var(--seb-shadow);
}

#seb-home .seb-pilot-panel--full .seb-title {
  text-align: left;
}

#seb-home .seb-pilot-panel--full .seb-section-desc {
  margin-left: 0;
  text-align: left;
}

#seb-home .seb-pilot-panel--full .seb-lead {
  text-align: left;
  max-width: none;
}

#seb-home .seb-pilot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

#seb-home .seb-pilot-card {
  padding: 1rem;
  background: #fff9f0;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius-sm);
  box-shadow: 0 4px 0 rgba(91, 79, 207, 0.06);
}

#seb-home .seb-pilot-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--seb-slate);
}

#seb-home .seb-pilot-panel .seb-btn-row {
  flex-wrap: wrap;
}

#seb-home .seb-section--pilot .seb-btn--outline {
  color: var(--seb-navy);
  border-color: var(--seb-border);
  background: #fff;
}

#seb-home .seb-steps .seb-step--media {
  padding: 0;
  border-left: none;
  background: #fff;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

#seb-home .seb-steps .seb-step--media .seb-step__media {
  min-height: 80px;
  background: #e0e7ff;
}

#seb-home .seb-steps .seb-step--media h4,
#seb-home .seb-steps .seb-step--media p {
  padding: 0 1rem;
}

#seb-home .seb-steps .seb-step--media h4 {
  margin: 0.75rem 0 0.25rem;
}

#seb-home .seb-steps .seb-step--media p {
  margin: 0 0 1rem;
}

#seb-home .seb-field input,
#seb-home .seb-field select,
#seb-home .seb-field textarea {
  border-radius: 12px;
  border-width: 2px;
}

#seb-home .seb-btnfocus-visible {
  outline: 2px solid var(--seb-blue);
  outline-offset: 2px;
}

/* ── Icon grid items ── */
#seb-home .seb-icon-grid {
  display: grid;
  gap: 1.25rem;
}

#seb-home .seb-icon-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

#seb-home .seb-icon-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

#seb-home .seb-icon-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

#seb-home .seb-icon-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

#seb-home .seb-icon-item--compact {
  gap: 0.4rem;
}

#seb-home .seb-icon-item--banner {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius);
  box-shadow: 0 6px 0 rgba(91, 79, 207, 0.08);
}

#seb-home .seb-icon-item--metric {
  padding: 1.15rem;
  background: #fff;
  border: 2px solid var(--seb-border);
  border-radius: var(--seb-radius);
  box-shadow: 0 6px 0 rgba(91, 79, 207, 0.08);
}

#seb-home .seb-icon-item--wide {
  grid-column: 1  -1;
}

#seb-home .seb-icon-item__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 0 rgba(91, 79, 207, 0.12);
}

#seb-home .seb-icon-item__circle--sm {
  width: 40px;
  height: 40px;
}

#seb-home .seb-icon-item__circle .seb-micon {
  font-size: 1.35rem;
}

#seb-home .seb-icon-item__circle--sm .seb-micon {
  font-size: 1.15rem;
}

#seb-home .seb-icon-item__circle--blue { background: #dbeafe; color: #54a0ff; }
#seb-home .seb-icon-item__circle--teal { background: #ccfbf1; color: #4ecdc4; }
#seb-home .seb-icon-item__circle--green { background: #dcfce7; color: #22c55e; }
#seb-home .seb-icon-item__circle--navy { background: #ebe4ff; color: #0088ff; }
#seb-home .seb-icon-item__circle--orange { background: #ffedd5; color: #ff9f43; }

#seb-home .seb-icon-item__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--seb-navy);
}

#seb-home .seb-icon-item--compact .seb-icon-item__title {
  font-size: 0.95rem;
}

#seb-home .seb-icon-item__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--seb-slate);
}

#seb-home .seb-icon-item--compact .seb-icon-item__desc {
  font-size: 0.85rem;
}

/* ── Problem  solution panels ── */
#seb-home .seb-panel {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius);
  box-shadow: 0 1px 4px rgba(11, 30, 105, 0.04);
}

#seb-home .seb-panel--problem {
  border-left: 3px solid var(--seb-orange);
}

#seb-home .seb-panel--solution {
  border-left: 3px solid var(--seb-green);
}

#seb-home .seb-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

#seb-home .seb-panel__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--seb-navy);
}

#seb-home .seb-list--icon {
  list-style: none;
  padding: 0;
  margin: 0;
}

#seb-home .seb-list--icon li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

#seb-home .seb-list--icon lilast-child {
  margin-bottom: 0;
}

#seb-home .seb-list--icon .seb-micon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  color: #94a3b8;
}

#seb-home .seb-list--icon.seb-list--check .seb-micon {
  color: var(--seb-green);
}

#seb-home .seb-panel .seb-list--icon li .seb-micon {
  color: #f97316;
}

#seb-home .seb-panel--solution .seb-list--icon .seb-micon {
  color: var(--seb-green);
}

/* ── Model block ── */
#seb-home .seb-model-block {
  margin-bottom: 0.5rem;
}

#seb-home .seb-model-visual {
  min-height: 320px;
  border-radius: var(--seb-radius);
  border: 1px solid var(--seb-border);
  box-shadow: var(--seb-shadow);
}

/* ── Training process ── */
#seb-home .seb-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#seb-home .seb-process-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius-sm);
}

#seb-home .seb-process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--seb-blue);
  background: #eff6ff;
  border-radius: 50%;
  margin-top: 0.35rem;
}

#seb-home .seb-process-step h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--seb-navy);
}

#seb-home .seb-process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--seb-slate);
  line-height: 1.5;
}

#seb-home .seb-badge-duration--lg {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--seb-navy);
  border: 1px solid #bfdbfe;
}

#seb-home .seb-price-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--seb-radius);
  border: 1px solid var(--seb-border);
  box-shadow: var(--seb-shadow);
}

#seb-home .seb-price-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

#seb-home .seb-price-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--seb-navy);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .ds-nav {
    display: none;
  }

  .ds-nav-toggle {
    display: inline-flex;
  }

  .ds-header-actions .ds-nav-cta {
    display: none;
  }

  #seb-home .seb-icon-grid--4,
  #seb-home .seb-icon-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  #seb-home .seb-pilot-cards {
    grid-template-columns: 1fr;
  }

  #seb-home .seb-quality-aside .seb-dashboard {
    flex: none;
  }

  #seb-home .seb-quality-dashboard-img {
    min-height: 200px;
    height: auto;
  }

  #seb-home .seb-kpi-grid {
    height: auto;
    grid-auto-rows: auto;
  }

  #seb-home .seb-kpi-grid .seb-icon-item--metric {
    height: auto;
  }

  #seb-home .seb-stats--pills {
    gap: 0.5rem;
  }

  #seb-home .seb-stat-pill {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }

  #seb-home .seb-hero__grid,
  #seb-home .seb-grid--2,
  #seb-home .seb-grid--3,
  #seb-home .seb-grid--4,
  #seb-home .seb-model-flow,
  #seb-home .seb-steps--roadmap,
  #seb-home .seb-footer__grid {
    grid-template-columns: 1fr;
  }

  #seb-home .seb-icon-grid--2 {
    grid-template-columns: 1fr;
  }

  #seb-home .seb-model-flow {
    grid-template-columns: 1fr;
  }

  #seb-home .seb-flow-step--wide {
    grid-column: auto;
  }

  #seb-home .seb-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  #seb-home .seb-icon-item--wide {
    grid-column: auto;
  }

  #seb-home .seb-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ds-brand__slogan {
    display: none;
  }

  #seb-home .seb-section {
    padding: 2.75rem 0;
  }

  #seb-home .seb-icon-grid--4,
  #seb-home .seb-icon-grid--3,
  #seb-home .seb-icon-grid--2 {
    grid-template-columns: 1fr;
  }

  #seb-home .seb-stat-pill {
    flex: 1 1 100%;
    min-width: 100%;
  }

  #seb-home .seb-btn-row {
    flex-direction: column;
  }

  #seb-home .seb-btn {
    width: 100%;
  }

  #seb-home .seb-stats {
    grid-template-columns: 1fr 1fr;
  }

  #seb-home .seb-icon-item--banner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ds-sticky-header__inner {
    padding: 0 0.75rem;
  }

  .ds-lang-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion reduce) {
  #seb-home .seb-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #seb-home .seb-btn,
  #seb-home .seb-card,
  #seb-home .seb-faq-icon::before,
  #seb-home .seb-faq-icon::after {
    transition: none;
  }
}

/* Phase 3B — Learning CTAs + brand + empty media slots */
.bnc-learn-ctas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-right: 0.75rem;
}
.bnc-cta-speak,
.bnc-cta-lms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-family: Nunito, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.bnc-cta-speak {
  background: linear-gradient(180deg, #33aaff 0%, #0088ff 100%);
  color: #fff;
  border: 2px solid #0066cc;
  box-shadow: 0 3px 0 #0066cc;
}
.bnc-cta-speak:hover {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #0066cc;
}
.bnc-cta-lms {
  background: #fff;
  color: #0088ff;
  border: 2px solid #0088ff;
  box-shadow: 0 3px 0 #cfe8ff;
}
.bnc-cta-lms:hover {
  background: #f0f8ff;
  transform: translateY(1px);
  box-shadow: 0 2px 0 #cfe8ff;
}
.ds-brand__logo img,
.ds-brand__logo > img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.seb-img-slot:not(.has-image):empty,
.seb-img-slot:not(.has-image):not(:has(img)) {
  display: block;
  min-height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f4ff 0%, #f0f7ff 45%, #d9ecff 100%);
}
.ds-brand__logo.seb-img-slot:not(.has-image):empty,
.ds-brand__logo.seb-img-slot {
  min-height: 0;
  background: transparent;
}
#seb-media-pool {
  display: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
@media (max-width: 960px) {
  .ds-header-actions .bnc-learn-ctas {
    display: none;
  }
  .ds-nav-drawer__nav .bnc-cta-speak,
  .ds-nav-drawer__nav .bnc-cta-lms {
    margin: 0.25rem 0.75rem;
    width: calc(100% - 1.5rem);
    box-sizing: border-box;
  }
}
.seb-btn-row .bnc-cta-speak,
.seb-btn-row .bnc-cta-lms {
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
}
