.elementor-44503 .elementor-element.elementor-element-4a762af{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44503 .elementor-element.elementor-element-8b079c8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44503 .elementor-element.elementor-element-58826b4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44503 .elementor-element.elementor-element-2d3befc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44503 .elementor-element.elementor-element-0776585{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44503 .elementor-element.elementor-element-2805964{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-44503 .elementor-element.elementor-element-46a6b64{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0f65f22 *//* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* User Palette */
  --primary-navy: #080357;
  --primary-orange: #ff6542;
  --white: #ffffff;
  --neutral-grey: #f3f4f6;
  --ui-blue: #303772;
  --ui-red: #ff9687;

  /* Extended UI Colors */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-navy: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  /* Spacing */
  --section-pad: 6rem 1rem;
  --container-max: 1200px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.light-badge {
  color: var(--primary-orange);
  background: rgba(255, 101, 66, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.dark-badge {
  color: var(--primary-orange);
  background: rgba(255, 101, 66, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.h1-mega {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h2-bold {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.h2-bold em,
.h1-mega em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--primary-orange);
}

.p-large {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e55535;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: var(--neutral-grey);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  transform: translateY(0);
  transition: transform 0.3s;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary-orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Sections specific backgrounds */
.bg-navy {
  background-color: var(--primary-navy);
  color: var(--white);
}

.bg-grey {
  background-color: var(--neutral-grey);
}

.bg-white {
  background-color: var(--white);
}

.bg-blue {
  background-color: var(--ui-blue);
  color: var(--white);
}

/* S01 Hero */
.hero {
  padding: 10rem 1rem 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .p-large {
  color: rgba(255, 255, 255, 0.8);
}

.trust-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-bar p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logo-strip {
  display: flex;
  gap: 3rem;
  opacity: 0.7;
  filter: grayscale(100%) brightness(200%);
}

.hero-visual-wrapper {
  margin-top: 4rem;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-navy);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.hero-visual-wrapper img {
  width: 100%;
  display: block;
}

/* S02 Pain Section */
.pain-section {
  padding: var(--section-pad);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.pc-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pc-quote {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.pain-bridge {
  margin-top: 4rem;
  background: var(--neutral-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-navy);
}

/* S03 Platform Intro */
.platform-intro {
  padding: var(--section-pad);
  text-align: center;
}

/* S04 Module Showcase */
.module-showcase {
  padding: var(--section-pad);
}

.module-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.module-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.module-tab:hover {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.module-content-area {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.mc-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.mc-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.acc-served {
  margin-top: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.acc-served-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mc-visual {
  background: var(--neutral-grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.mc-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* CSS Radio Hack Logic */
.mod-radio {
  display: none;
}

.module-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.mod-visual-img {
  display: none;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Active Tab Styles Based on Radios */
#tab-ams:checked~.module-tabs .tab-ams,
#tab-erp:checked~.module-tabs .tab-erp,
#tab-obe:checked~.module-tabs .tab-obe,
#tab-lms:checked~.module-tabs .tab-lms,
#tab-ems:checked~.module-tabs .tab-ems,
#tab-nba:checked~.module-tabs .tab-nba,
#tab-aaius:checked~.module-tabs .tab-aaius {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

/* Active Panel Styles Based on Radios */
#tab-ams:checked~.module-content-area .mc-text #mod-ams,
#tab-erp:checked~.module-content-area .mc-text #mod-erp,
#tab-obe:checked~.module-content-area .mc-text #mod-obe,
#tab-lms:checked~.module-content-area .mc-text #mod-lms,
#tab-ems:checked~.module-content-area .mc-text #mod-ems,
#tab-nba:checked~.module-content-area .mc-text #mod-nba,
#tab-aaius:checked~.module-content-area .mc-text #mod-aaius {
  display: block;
}

/* Active Image Styles Based on Radios */
#tab-ams:checked~.module-content-area .mc-visual .img-ams,
#tab-erp:checked~.module-content-area .mc-visual .img-erp,
#tab-obe:checked~.module-content-area .mc-visual .img-obe,
#tab-lms:checked~.module-content-area .mc-visual .img-lms,
#tab-ems:checked~.module-content-area .mc-visual .img-ems,
#tab-nba:checked~.module-content-area .mc-visual .img-nba,
#tab-aaius:checked~.module-content-area .mc-visual .img-aaius {
  display: block;
}

/* S04B Bundles */
.bundles-section {
  padding: var(--section-pad);
  background: var(--primary-navy);
  color: var(--white);
}

.bundles-section .section-label {
  color: var(--primary-orange);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: center;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
  position: relative;
}

.bundle-card.featured {
  background: var(--ui-blue);
  border-color: var(--primary-orange);
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.b-tier {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.b-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.b-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  min-height: 48px;
}

.b-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.b-features li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 8px;
}

.b-features li::before {
  content: "✓";
  color: var(--primary-orange);
  font-weight: bold;
}

.bundle-card .btn {
  width: 100%;
}

/* S05 Accreditations */
.accreditations {
  padding: var(--section-pad);
  text-align: center;
}

.acc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.acc-tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  transition: transform 0.2s, background 0.2s;
}

.acc-tile:hover {
  transform: translateY(-3px);
  background: var(--neutral-grey);
}

/* S06 How It Works */
.how-it-works {
  padding: var(--section-pad);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.step-item {
  position: relative;
  padding-top: 3rem;
}

.step-num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 5rem;
  font-weight: 800;
  color: var(--neutral-grey);
  line-height: 1;
  z-index: -1;
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.step-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* S07 Social Proof */
.social-proof {
  padding: var(--section-pad);
  background: var(--primary-navy);
  color: var(--white);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-block: 4rem;
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
  padding-block: 3rem;
}

.stat-box h4 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.stat-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials.testimonial-track {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 1rem;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimoial-track::-webkit-scrollbar {
  display: none;
}

.testimoial-card {
  flex: 0 0 auto;
  min-width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
  background: var(--ui-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary-orange);
  transform: scale(1.1);
}

.tc-quote {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 500;
}

.tc-author {
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tc-uni {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  .testimoial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }
}

/* S08 Why Kramah */
.why-kramah {
  padding: var(--section-pad);
}

.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.diff-card {
  padding: 2rem;
  background: var(--neutral-grey);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: background 0.3s;
}

.diff-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.diff-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* S09 Roles CTA */
.roles-cta {
  padding: var(--section-pad);
  background: var(--ui-blue);
  color: var(--white);
  text-align: center;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.role-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.3s;
}

.role-card:hover {
  transform: translateY(-5px);
}

.rc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.rc-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  min-height: 70px;
}

.rc-link {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* S10 Final CTA */
.final-cta {
  padding: 8rem 1rem;
  background: var(--primary-navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 101, 66, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.closing-quote {
  margin-top: 4rem;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: var(--white);
  padding: 5rem 1rem 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.fc-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.fc-head {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.fc-item {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.fc-item:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

/* Animations */
.reveal {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .bundle-card.featured {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fc-brand {
    grid-column: span 3;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .h1-mega {
    font-size: 2.5rem;
  }

  .h2-bold {
    font-size: 2rem;
  }

  .pain-grid,
  .bundles-grid,
  .steps-grid,
  .stats-grid,
  .testimonials,
  .differentiators,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .module-content-area {
    grid-template-columns: 1fr;
  }

  .mc-visual {
    order: -1;
    margin-bottom: 2rem;
  }

  .acc-grid {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fc-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Hero Bento Grid */
.hero-bento {
  /* Flattened perspective */
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.b-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.bc-head {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Card 1: Gauge (Spans 2 rows) */
.b-gauge {
  grid-row: span 2;
  align-items: center;
  justify-content: center;
}

.gauge-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 12px solid var(--border-light);
  border-top-color: var(--primary-orange);
  border-right-color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transform: rotate(-45deg);
}

.g-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  transform: rotate(45deg);
}

.bc-tags {
  display: flex;
  gap: 0.5rem;
}

.bc-tag {
  background: rgba(255, 101, 66, 0.1);
  color: var(--primary-orange);
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* Card 2: Flow */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;
  margin: auto 0;
}

.flow-pill {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.flow-pill.active {
  background: var(--ui-blue);
  color: white;
  border: 1px solid var(--border-light);
}

.flow-line {
  color: var(--primary-orange);
  font-weight: 800;
}

/* Card 3: Check */
.checklist {
  list-style: none;
  margin: auto 0;
  padding: 0;
}

.checklist li {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.checklist li.done::before {
  content: "✓";
  color: #10b981;
  background: rgba(16, 185, 129, 0.2);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
}

.checklist li.active {
  color: var(--primary-navy);
  font-weight: 700;
}

.checklist li.active::before {
  content: "⋯";
  color: var(--primary-orange);
  background: rgba(255, 101, 66, 0.2);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* =========================================================================
   S08B - Platform Bundles
   ========================================================================= */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bcard {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s, background 0.3s;
}

.bcard:hover {
  background: rgba(255, 255, 255, 0.05);
}

.bcard.pop {
  border: 2px solid var(--primary-orange);
  background: rgba(255, 101, 66, 0.05);
  transform: scale(1.02);
}

.bcard.pop:hover {
  background: rgba(255, 101, 66, 0.08);
}

.bc-top {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bc-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.bc-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.bc-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  min-height: 60px;
}

.bc-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bdg-accent {
  background: rgba(48, 55, 114, 0.3);
  color: var(--ui-red);
  border: 1px solid rgba(48, 55, 114, 0.5);
}

.bdg-pop {
  background: var(--primary-orange);
  color: #fff;
}

.bdg-purple {
  background: rgba(48, 55, 114, 0.3);
  color: #b7bcef;
  border: 1px solid rgba(48, 55, 114, 0.5);
}

.bc-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.bc-section {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.bc-section:first-child {
  margin-top: 0;
}

.chooser {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.chooser-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.chooser-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chooser-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.chooser-pill.active-pill {
  background: var(--ui-blue);
  color: white;
  border-color: var(--ui-blue);
}

.mod-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mod-row:last-of-type {
  border-bottom: none;
}

.mod-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.mod-dot.acc {
  background: var(--ui-blue);
  color: #fff;
}

.mod-dot.ai {
  background: linear-gradient(135deg, var(--ui-blue), var(--primary-orange));
  color: #fff;
  border: none;
  font-size: 0.7rem;
}

.mod-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mod-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-top: 2px;
}

.bc-cta {
  display: block;
  width: calc(100% - 4rem);
  margin: 0 2rem 2rem;
  text-align: center;
  padding: 12px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.cta-dark {
  background: transparent;
  color: white;
}

.cta-dark:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cta-primary {
  background: var(--primary-orange);
  color: white;
  border: none;
}

.cta-primary:hover {
  background: #e55a3b;
}

/* =========================================================================
   S08C - Kramah AI Spotlight
   ========================================================================= */
.stroke-orange {
  stroke: var(--primary-orange);
}

.ai-hero {
  background: linear-gradient(135deg, #05021a 0%, var(--primary-navy) 50%, #030112 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  border: 1px solid rgba(255, 101, 66, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 101, 66, 0.1);
  border: 1px solid rgba(255, 101, 66, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.ai-title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.ai-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.chat-mock {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 600px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-row {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: flex-end;
}

.chat-row.right {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.chat-avatar.user {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.chat-avatar.ai {
  background: var(--ui-blue);
  color: #fff;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-bubble.user {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 14px 14px 4px 14px;
}

.chat-bubble.ai {
  background: var(--ui-blue);
  color: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 4px 12px rgba(48, 55, 114, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.chat-send {
  background: var(--primary-orange);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
}

.ai-use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ai-use-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
}

.ai-use-role {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.ai-use-q {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 1024px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .bcard.pop {
    transform: scale(1);
  }

  .ai-split-grid {
    grid-template-columns: 1fr;
  }
}

/* Light Theme Overrides for Bundles & AI */
.bcard.light-theme {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.bcard.light-theme:hover {
  background: #fafafa;
  transform: translateY(-5px);
}

.bcard.light-theme .bc-top {
  border-bottom: 1px solid var(--border-light);
}

.bcard.light-theme .bc-num {
  color: var(--text-muted);
}

.light-chooser {
  background: var(--neutral-grey);
  border: 1px solid var(--border-light);
}

.light-chooser .chooser-pill {
  color: var(--text-muted);
  background: transparent;
  border-color: transparent;
}

.light-chooser .chooser-pill.active-pill {
  background: var(--white);
  color: var(--primary-navy);
  border-color: var(--border-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.compact-mods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-mods li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.compact-mods li:last-child {
  border-bottom: none;
}

.compact-mods strong {
  color: var(--text-dark);
}

.highlight-mod strong {
  color: var(--ui-blue);
  font-size: 0.95rem;
}

.highlight-ai strong {
  background: linear-gradient(135deg, var(--ui-blue), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.95rem;
}

.ai-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.light-chat {
  background: var(--white);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.light-chat .chat-bubble.user {
  background: var(--neutral-grey);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.light-chat .chat-avatar.user {
  background: var(--neutral-grey);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.light-chat .chat-input {
  border-top: 1px solid var(--border-light);
}

.light-chat .chat-input-box {
  background: var(--white);
  border-color: var(--border-light);
  color: var(--text-dark);
}

.light-use-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

/* Why Kramah Marquee & Pipeline utilities */
.marquee-track {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: scrollMarquee 40s linear infinite;
  min-width: 200%;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .pipeline-container {
    flex-direction: column;
    padding: 2rem !important;
  }
}

/* Interactive Role Accordion */
.role-accordion {
  display: flex;
  height: 500px;
  gap: 1rem;
  width: 100%;
  margin-top: 3rem;
}

.role-panel {
  flex: 1;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
  background: var(--neutral-grey);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.role-panel:hover,
.role-accordion:not(:hover) .role-panel:nth-child(1) {
  flex: 4;
}

.rp-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-navy);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.role-panel:nth-child(2) .rp-bg {
  background: var(--primary-orange);
}

.role-panel:nth-child(3) .rp-bg {
  background: var(--ui-blue);
}

.role-panel:hover .rp-bg,
.role-accordion:not(:hover) .role-panel:nth-child(1) .rp-bg {
  opacity: 1;
}

.rp-header {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 10;
  position: relative;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
}

.role-panel:hover .rp-header,
.role-accordion:not(:hover) .role-panel:nth-child(1) .rp-header {
  flex-direction: row;
  align-items: center;
  padding: 2rem;
  height: auto;
}

.rp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 101, 66, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.6s ease;
}

.role-panel:hover .rp-icon,
.role-accordion:not(:hover) .role-panel:nth-child(1) .rp-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.rp-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  /* Made fully opaque for legibility */
  margin-top: 1rem;
}

.role-panel:hover .rp-title,
.role-accordion:not(:hover) .role-panel:nth-child(1) .rp-title {
  font-size: 1.5rem;
  color: var(--white);
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  opacity: 1;
  margin-top: 0;
}

.rp-content {
  padding: 0 2rem 2rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 50%;
  min-width: 250px;
}

.role-panel:hover .rp-content,
.role-accordion:not(:hover) .role-panel:nth-child(1) .rp-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.rp-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.rp-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rp-link:hover {
  text-decoration: underline;
}

.rp-mockup {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 60%;
  height: 70%;
  background: var(--neutral-grey);
  border-radius: 12px 0 0 0;
  box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(40px) translateY(40px);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: cover;
  background-position: top left;
  z-index: 5;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.role-panel:nth-child(1) .rp-mockup {
  background-image: url('assets/roles_dashboard_1775580109254.png');
}

.role-panel:nth-child(2) .rp-mockup {
  background-image: url('assets/ams_visual.svg');
}

.role-panel:nth-child(3) .rp-mockup {
  background-image: url('assets/obe_visual.svg');
}

.role-panel:hover .rp-mockup,
.role-accordion:not(:hover) .role-panel:nth-child(1) .rp-mockup {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 900px) {
  .role-accordion {
    flex-direction: column;
    height: auto;
  }

  .role-panel {
    min-height: 100px;
  }

  .role-panel:hover {
    flex: auto;
    min-height: 450px;
  }

  .rp-mockup {
    width: 85%;
    bottom: -10%;
  }
}/* End custom CSS */