:root {
  /* ==========================================================================
     SBM Brand Color Tokens — Derived Directly from Official Logo
     Cyan -> Bright Blue -> Deep Blue -> Purple -> Pink / Magenta
     ========================================================================== */
  --sbm-cyan: #00C8F5;
  --sbm-blue: #1264E8;
  --sbm-deep-blue: #143ED0;
  --sbm-purple: #6A20D9;
  --sbm-magenta: #E91E9B;
  --sbm-pink: #F20A73;

  /* Signature SBM Gradients */
  --grad-sbm: linear-gradient(135deg, #00C8F5 0%, #1264E8 28%, #6A20D9 70%, #E91E9B 100%);
  --grad-sbm-subtle: linear-gradient(135deg, rgba(0, 200, 245, 0.08) 0%, rgba(18, 100, 232, 0.08) 30%, rgba(106, 32, 217, 0.08) 70%, rgba(233, 30, 155, 0.08) 100%);
  --grad-sbm-border: linear-gradient(135deg, rgba(0, 200, 245, 0.5) 0%, rgba(18, 100, 232, 0.5) 30%, rgba(106, 32, 217, 0.5) 70%, rgba(233, 30, 155, 0.5) 100%);
  --grad-text: linear-gradient(135deg, #00C8F5 0%, #1264E8 25%, #6A20D9 65%, #E91E9B 100%);

  /* Neutrals: Clean White Canvas & Dark Typography */
  --bg-white: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-surface: #F1F5F9;
  --bg-card: #FFFFFF;
  --border-light: #E2E8F0;
  --border-card: #E2E8F0;
  
  --text-dark: #0F172A;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;

  /* Elevation & Glows for White Background */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 16px 40px -8px rgba(18, 100, 232, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-dashboard: 0 25px 60px -15px rgba(18, 100, 232, 0.12), 0 10px 25px -10px rgba(106, 32, 217, 0.08);

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   CLEAN WHITE AMBIENT BACKGROUND DETAILS
   90-95% Clean White space with extremely subtle SBM ambient light
   ========================================================================== */
.hero-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-glow-blue {
  position: absolute;
  top: -15%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 245, 0.08) 0%, rgba(18, 100, 232, 0.04) 40%, transparent 70%);
  filter: blur(60px);
}

.ambient-glow-purple {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(106, 32, 217, 0.06) 0%, rgba(233, 30, 155, 0.04) 45%, transparent 70%);
  filter: blur(70px);
}

.ambient-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 48px 48px;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0%, transparent 80%);
}

/* ==========================================================================
   HEADER & NAVIGATION (Clean White Header)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--sbm-blue);
}

.nav-link.has-badge::after {
  content: 'FLAGSHIP';
  position: absolute;
  top: -8px;
  right: -38px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--grad-sbm);
  color: #FFFFFF;
  padding: 2px 7px;
  border-radius: 9999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   BUTTONS (SBM Gradient Primary & White Secondary)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--sbm-blue);
  outline-offset: 2px;
}

/* Primary Button: Cyan -> Blue -> Purple -> Pink gradient */
.btn-primary {
  background: var(--grad-sbm);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(18, 100, 232, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(18, 100, 232, 0.35);
  opacity: 0.96;
}

/* Secondary Button: White background, dark text, SBM colored border */
.btn-secondary {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1.5px solid rgba(18, 100, 232, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
  border-color: var(--sbm-purple);
  color: var(--sbm-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(106, 32, 217, 0.12);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  border-radius: 9px;
}

/* Mobile Toggle Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION — STRICT ONE FLEXBOX CONTAINER WITH TWO COLUMNS
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--bg-white);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Exactly ONE primary Flexbox container with TWO columns on Desktop */
.hero-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  width: 100%;
}

/* ==========================================================================
   HERO LEFT COLUMN
   ========================================================================== */
.hero-left-col {
  flex: 1 1 54%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

/* Eyebrow Label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem;
  background: var(--grad-sbm-subtle);
  border: 1px solid rgba(18, 100, 232, 0.25);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--sbm-deep-blue);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-sbm);
  box-shadow: 0 0 8px rgba(0, 200, 245, 0.6);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.5; }
}

/* Main H1 Headline */
.hero-title {
  font-size: clamp(2.35rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-title-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Supporting Copy */
.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

/* Flagship Product Micro-Card */
.flagship-micro-card {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-left: 4px solid var(--sbm-blue);
  border-radius: 12px;
  padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.flagship-micro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-sbm);
  opacity: 0.6;
}

.flagship-micro-card:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 32, 217, 0.35);
  box-shadow: var(--shadow-lg);
}

.flagship-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.flagship-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sbm-magenta);
  text-transform: uppercase;
}

.flagship-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.flagship-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.flagship-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sbm-blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.flagship-link:hover {
  color: var(--sbm-purple);
  transform: translateX(3px);
}

/* ==========================================================================
   HERO RIGHT COLUMN — SBM AI School Automations Dashboard Visual
   ========================================================================== */
.hero-right-col {
  flex: 1 1 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Soft Glow Backdrops */
.dashboard-glow-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.glow-backdrop-top {
  position: absolute;
  top: -20px;
  left: 10%;
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0, 200, 245, 0.22) 0%, transparent 70%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.glow-backdrop-bottom {
  position: absolute;
  bottom: -20px;
  left: 15%;
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(106, 32, 217, 0.18) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

/* Main SaaS Dashboard Frame */
.saas-device-frame {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-dashboard);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

.saas-device-frame:hover {
  transform: translateY(-3px);
}

/* Browser Topbar */
.frame-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
}

.frame-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #FDA4AF; }
.dot-yellow { background: #FDE047; }
.dot-green { background: #86EFAC; }

.frame-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.frame-status {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 2px 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.frame-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
}

/* Dashboard Module Tabs */
.frame-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.frame-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.78125rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.frame-tab-btn:hover {
  color: var(--text-dark);
  background: #F1F5F9;
}

.frame-tab-btn.active {
  color: var(--sbm-blue);
  background: rgba(18, 100, 232, 0.08);
  border-color: rgba(18, 100, 232, 0.25);
}

/* Dashboard Body */
.frame-body {
  padding: 1.25rem;
  background: #F8FAFC;
}

/* Metric Cards */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.metric-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.metric-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.metric-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.metric-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #059669;
  margin-top: 0.2rem;
}

/* Dashboard Activity List */
.dash-panel {
  display: none;
  animation: panelFade 0.25s ease;
}

.dash-panel.active {
  display: block;
}

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

.module-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.module-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.95rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.item-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.icon-blue { background: rgba(18, 100, 232, 0.1); color: var(--sbm-blue); }
.icon-purple { background: rgba(106, 32, 217, 0.1); color: var(--sbm-purple); }
.icon-magenta { background: rgba(233, 30, 155, 0.1); color: var(--sbm-magenta); }
.icon-green { background: #ECFDF5; color: #059669; }

.item-main-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.item-sub-text {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.item-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
}

.badge-green { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.badge-blue { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }

/* Subtle Floating Cards */
.subtle-float-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.25s ease;
}

.subtle-float-card:hover {
  transform: scale(1.02);
}

.float-top-right {
  top: -18px;
  right: -16px;
  border-top: 3px solid var(--sbm-cyan);
}

.float-bottom-left {
  bottom: -20px;
  left: -16px;
  border-bottom: 3px solid var(--sbm-magenta);
}

.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.float-name {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.float-detail {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 2: FLAGSHIP PRODUCT — SBM AI SCHOOL AUTOMATIONS
   Clean White -> Very Light Blue (#F7FAFF) Transition
   ========================================================================== */
.flagship-section {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 60%, #FFFFFF 100%);
  padding: 6rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  z-index: 2;
}

.flagship-ambient-fx {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 85% 20%, rgba(106, 32, 217, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(0, 200, 245, 0.05) 0%, transparent 45%);
}

/* Primary Flexbox Container — 2 Columns on Desktop, Column on Mobile */
.flagship-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  width: 100%;
}

/* Left Column: Product Content (Approx 48%) */
.flagship-content-col {
  flex: 1 1 48%;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flagship-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sbm-purple);
  background: rgba(106, 32, 217, 0.08);
  border: 1px solid rgba(106, 32, 217, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.flagship-h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.flagship-product-title {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.flagship-desc-p1 {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.flagship-desc-p2 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* 6 Compact Feature Items Grid */
.flagship-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

.flagship-feature-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.flagship-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(18, 100, 232, 0.2);
  transition: background 0.25s ease;
}

.flagship-feature-item:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 100, 232, 0.35);
  box-shadow: var(--shadow-md);
}

.flagship-feature-item:hover::before {
  background: var(--grad-sbm);
}

.feat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.feat-icon {
  font-size: 1.1rem;
}

.feat-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feat-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTAs & Trust Line */
.flagship-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flagship-proof-line {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Right Column: Layered Product UI Presentation (Approx 52%) */
.flagship-visual-col {
  flex: 1 1 52%;
  display: flex;
  justify-content: center;
  position: relative;
}

.product-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.product-ai-badge {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  z-index: 10;
  background: var(--grad-sbm);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(18, 100, 232, 0.3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Layered UI Showcase Cards */
.layer-main-dashboard {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-dashboard);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.layer-main-dashboard:hover {
  transform: translateY(-3px);
}

.showcase-banner-bar {
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-banner-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.showcase-status-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 2px 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.showcase-status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
}

.showcase-modules-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  overflow-x: auto;
}

.showcase-module-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
}

.showcase-module-item.active {
  color: var(--sbm-blue);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
}

.showcase-body {
  padding: 1.35rem;
  background: #FAFCFF;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.showcase-metric-tile {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.85rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.metric-tile-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.metric-tile-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.metric-tile-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #059669;
}

.showcase-console {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
}

.console-header {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.8125rem;
}

.console-row:last-child {
  border-bottom: none;
}

.row-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.row-icon {
  font-size: 1rem;
}

.row-label {
  font-weight: 700;
  color: var(--text-dark);
}

.row-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Layered Floating Sub-Cards */
.layer-float-top {
  position: absolute;
  top: -24px;
  right: -20px;
  background: #FFFFFF;
  border: 1.5px solid rgba(18, 100, 232, 0.25);
  border-top: 3px solid var(--sbm-blue);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 16px 36px rgba(18, 100, 232, 0.12);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.layer-float-bottom {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: #FFFFFF;
  border: 1.5px solid rgba(233, 30, 155, 0.25);
  border-bottom: 3px solid var(--sbm-magenta);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 16px 36px rgba(106, 32, 217, 0.12);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.layer-float-title {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-dark);
}

.layer-float-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Responsive Rules for Flagship Section */
@media (max-width: 1024px) {
  .flagship-flex-container {
    flex-direction: column;
    gap: 3.5rem;
  }

  .flagship-content-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .flagship-cta-group {
    justify-content: center;
  }

  .flagship-proof-line {
    justify-content: center;
  }

  .layer-float-top {
    top: -12px;
    right: 0;
  }

  .layer-float-bottom {
    bottom: -12px;
    left: 0;
  }
}

@media (max-width: 640px) {
  .flagship-section {
    padding: 4rem 0;
  }

  .flagship-features-grid {
    grid-template-columns: 1fr;
  }

  .showcase-metrics {
    grid-template-columns: 1fr;
  }

  .layer-float-top, .layer-float-bottom {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }
}

/* ==========================================================================
   TRUST & CREDENTIAL STRIP (Clean White / Off-White)
   ========================================================================== */
.trust-strip {
  position: relative;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
  z-index: 2;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 200px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-stat {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: SOLUTIONS & CAPABILITIES (WHAT WE BUILD)
   Clean White SaaS 2x2 Strategic Grid + Specialized Platforms
   ========================================================================== */
.solutions-section {
  position: relative;
  background: #FFFFFF;
  padding: 6.5rem 0 5.5rem;
  z-index: 2;
}

.solutions-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.75rem;
}

.solutions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sbm-blue);
  background: rgba(18, 100, 232, 0.06);
  border: 1px solid rgba(18, 100, 232, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.solutions-h2 {
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.solutions-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 2 x 2 Primary Strategic Capability Grid */
.solutions-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.solution-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 100, 232, 0.35);
  box-shadow: var(--shadow-lg);
}

.solution-card:nth-child(1):hover::before { background: var(--grad-sbm); }
.solution-card:nth-child(2):hover::before { background: linear-gradient(90deg, var(--sbm-blue), var(--sbm-deep-blue)); }
.solution-card:nth-child(3):hover::before { background: linear-gradient(90deg, var(--sbm-cyan), var(--sbm-blue)); }
.solution-card:nth-child(4):hover::before { background: linear-gradient(90deg, var(--sbm-purple), var(--sbm-magenta)); }

.sol-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  background: #F8FAFC;
  transition: transform 0.25s ease, background 0.25s ease;
}

.solution-card:hover .sol-icon-box {
  transform: scale(1.05);
  background: #EFF6FF;
}

.sol-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.sol-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Feature Tag Pills */
.sol-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.sol-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.solution-card:hover .sol-pill {
  color: var(--sbm-blue);
  background: #EFF6FF;
  border-color: #BFDBFE;
}

/* Card CTA Link */
.sol-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sbm-blue);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sol-link-cta:hover {
  color: var(--sbm-purple);
  transform: translateX(4px);
}

/* ==========================================================================
   SPECIALIZED PLATFORMS AREA (3 Compact Items)
   ========================================================================== */
.specialized-area {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 4rem;
}

.specialized-header {
  text-align: center;
  margin-bottom: 2rem;
}

.specialized-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.spec-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-item:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 100, 232, 0.3);
  box-shadow: var(--shadow-md);
}

.spec-icon {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.spec-heading {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.spec-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CREDIBILITY MESSAGE & BOTTOM WORKFLOW CTA
   ========================================================================== */
.credibility-box {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--grad-sbm-subtle);
  border: 1px dashed rgba(18, 100, 232, 0.25);
  border-radius: 12px;
}

.credibility-statement {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
}

.workflow-cta-banner {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.workflow-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-sbm);
}

.workflow-cta-content {
  max-width: 640px;
}

.workflow-cta-h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.workflow-cta-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.workflow-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Rules for Section 3 */
@media (max-width: 1024px) {
  .solutions-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .specialized-grid {
    grid-template-columns: 1fr;
  }

  .workflow-cta-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .workflow-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 4.5rem 0;
  }

  .solutions-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ==========================================================================
   CONSULTATION MODAL (Clean Light SaaS Style)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-dark);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--sbm-blue);
  box-shadow: 0 0 0 3px rgba(18, 100, 232, 0.12);
}

/* Floating WhatsApp Quick Connect */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   RESPONSIVE LAYOUT (Strict Flexbox)
   ========================================================================== */
@media (max-width: 1024px) {
  /* On tablet/mobile: flex-direction becomes column */
  .hero-flex-container {
    flex-direction: column;
    gap: 3rem;
  }

  .hero-left-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .flagship-micro-card {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav, .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }

  .float-top-right {
    top: -12px;
    right: 0;
  }

  .float-bottom-left {
    bottom: -14px;
    left: 0;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   SECTION 4: PARTNERS & PROJECT ECOSYSTEM
   Clean White B2B Design Language with Institutional Monograms
   ========================================================================== */
.partners-section {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  z-index: 2;
}

.partners-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.75rem;
}

.partners-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sbm-purple);
  background: rgba(106, 32, 217, 0.06);
  border: 1px solid rgba(106, 32, 217, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.partners-h2 {
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.partners-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Category Dividers */
.partner-category-block {
  margin-bottom: 3.5rem;
}

.partner-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.partner-category-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--border-light);
}

/* Partner Cards Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 100, 232, 0.35);
  box-shadow: var(--shadow-md);
}

.partner-card:hover::before {
  background: var(--grad-sbm);
}

/* Institutional Monogram Icon */
.partner-monogram {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  color: var(--sbm-blue);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: all 0.2s ease;
}

.partner-card:hover .partner-monogram {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: var(--sbm-deep-blue);
}

.partner-org-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.partner-solution-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: auto;
}

/* ==========================================================================
   MULTI-BRANCH HIGHLIGHT ARCHITECTURE
   ========================================================================== */
.multibranch-block {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin: 4.5rem 0 3.5rem;
  box-shadow: var(--shadow-md);
}

.multibranch-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.multibranch-content {
  flex: 1 1 45%;
}

.multibranch-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sbm-magenta);
  margin-bottom: 0.5rem;
}

.multibranch-h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.multibranch-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.multibranch-diagram {
  flex: 1 1 55%;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.diagram-node-central {
  background: #FFFFFF;
  border: 2px solid var(--sbm-blue);
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(18, 100, 232, 0.12);
  width: 100%;
  max-width: 320px;
}

.node-title-main {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-dark);
}

.node-sub-main {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--sbm-blue);
  text-transform: uppercase;
}

.diagram-connectors {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  position: relative;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.diagram-branches-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.branch-node {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
}

.branch-title {
  font-weight: 700;
  color: var(--text-dark);
}

.branch-status {
  font-size: 0.6875rem;
  color: #059669;
  font-weight: 600;
}

.diagram-bottom-node {
  background: #FFFFFF;
  border: 1.5px dashed rgba(106, 32, 217, 0.35);
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sbm-purple);
  width: 100%;
  max-width: 320px;
}

/* ==========================================================================
   SPECIALIZED PROJECTS BLOCK: BEYOND TRADITIONAL BUSINESS SOFTWARE
   ========================================================================== */
.beyond-traditional-block {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
}

.beyond-header {
  text-align: center;
  margin-bottom: 2rem;
}

.beyond-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.beyond-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.beyond-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.beyond-card:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  border-color: rgba(18, 100, 232, 0.35);
  box-shadow: var(--shadow-sm);
}

.beyond-icon {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.beyond-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.beyond-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Trust Statement & Bottom CTA */
.partner-trust-block {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 2rem 2.5rem;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 14px;
}

.partner-trust-p1 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.partner-trust-p2 {
  font-size: 1rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-cta-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.partner-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-sbm);
}

.partner-cta-content {
  max-width: 620px;
}

.partner-cta-h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.partner-cta-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.partner-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Rules for Section 4 */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .multibranch-inner {
    flex-direction: column;
    text-align: center;
  }

  .multibranch-content {
    max-width: 100%;
  }

  .multibranch-diagram {
    width: 100%;
  }

  .beyond-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .partner-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .partners-section {
    padding: 4.5rem 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .diagram-branches-row {
    grid-template-columns: 1fr;
  }

  .beyond-grid {
    grid-template-columns: 1fr;
  }
}
