/* ============================================================
   SignalMatrix AI — Main Stylesheet
   Healthcare AI Marketing Platform
   Dark Theme | Bootstrap 5.3.3 Companion
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --sm-primary: #00ff88;
  --sm-primary-rgb: 0, 255, 136;
  --sm-primary-dark: #00cc6a;
  --sm-primary-light: #33ff9f;
  --sm-cyan: #00d4ff;
  --sm-cyan-rgb: 0, 212, 255;
  --sm-purple: #8b5cf6;
  --sm-purple-rgb: 139, 92, 246;
  --sm-amber: #f59e0b;
  --sm-amber-rgb: 245, 158, 11;
  --sm-red: #ef4444;
  --sm-red-rgb: 239, 68, 68;

  /* Background Colors */
  --sm-bg-primary: #0a0f1c;
  --sm-bg-secondary: #0d1321;
  --sm-bg-card: #111827;
  --sm-bg-card-hover: #1a2332;
  --sm-bg-input: #0f172a;
  --sm-bg-navbar: rgba(10, 15, 28, 0.85);

  /* Text Colors */
  --sm-text-white: #ffffff;
  --sm-text-body: #94a3b8;
  --sm-text-muted: #64748b;
  --sm-text-heading: #ffffff;

  /* Borders */
  --sm-border-subtle: rgba(255, 255, 255, 0.05);
  --sm-border-light: rgba(255, 255, 255, 0.1);
  --sm-border-green: rgba(0, 255, 136, 0.3);
  --sm-border-cyan: rgba(0, 212, 255, 0.3);

  /* Border Radius */
  --sm-radius-sm: 6px;
  --sm-radius-md: 8px;
  --sm-radius-lg: 12px;
  --sm-radius-xl: 16px;
  --sm-radius-pill: 50px;
  --sm-radius-circle: 50%;

  /* Spacing */
  --sm-section-padding: 100px;
  --sm-section-padding-sm: 60px;
  --sm-container-max: 1200px;
  --sm-gap-sm: 8px;
  --sm-gap-md: 16px;
  --sm-gap-lg: 24px;
  --sm-gap-xl: 32px;

  /* Shadows */
  --sm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --sm-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --sm-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --sm-shadow-green: 0 0 20px rgba(0, 255, 136, 0.15);
  --sm-shadow-green-lg: 0 0 40px rgba(0, 255, 136, 0.2);
  --sm-shadow-cyan: 0 0 20px rgba(0, 212, 255, 0.15);
  --sm-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --sm-shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4);

  /* Gradients */
  --sm-gradient-green-cyan: linear-gradient(135deg, #00ff88, #00d4ff);
  --sm-gradient-green-purple: linear-gradient(135deg, #00ff88, #8b5cf6);
  --sm-gradient-cyan-purple: linear-gradient(135deg, #00d4ff, #8b5cf6);
  --sm-gradient-dark: linear-gradient(180deg, #0a0f1c, #0d1321);
  --sm-gradient-card: linear-gradient(180deg, #111827, #0d1321);
  --sm-gradient-hero: radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
                       radial-gradient(ellipse at 70% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);

  /* Transitions */
  --sm-transition: 0.3s ease;
  --sm-transition-fast: 0.15s ease;
  --sm-transition-slow: 0.5s ease;

  /* Z-Index */
  --sm-z-dropdown: 100;
  --sm-z-sticky: 200;
  --sm-z-navbar: 1000;
  --sm-z-modal-backdrop: 1040;
  --sm-z-modal: 1050;
  --sm-z-tooltip: 1070;
  --sm-z-cookie: 9999;

  /* Bridge plain names */
  --green: var(--sm-primary, #00ff88);
  --cyan: var(--sm-cyan, #00d4ff);
  --purple: var(--sm-purple, #8b5cf6);
  --amber: var(--sm-amber, #f59e0b);
  --red: var(--sm-red, #ef4444);
}


/* ============================================================
   2. BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--sm-text-body);
  background-color: var(--sm-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--sm-text-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: 3.5rem; font-weight: 900; }
h2 { font-size: 2.5rem; font-weight: 800; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

a {
  color: var(--sm-primary);
  text-decoration: none;
  transition: color var(--sm-transition);
}

a:hover {
  color: var(--sm-primary-light);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(0, 255, 136, 0.25);
  color: var(--sm-text-white);
}

::-moz-selection {
  background: rgba(0, 255, 136, 0.25);
  color: var(--sm-text-white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--sm-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--sm-border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sm-text-muted);
}


/* ============================================================
   3. LAYOUT
   ============================================================ */
.sm-section {
  padding: var(--sm-section-padding) 0;
  position: relative;
  overflow: hidden;
}

.sm-section-alt {
  padding: var(--sm-section-padding) 0;
  position: relative;
  overflow: hidden;
  background-color: var(--sm-bg-secondary);
}

.sm-section-sm {
  padding: var(--sm-section-padding-sm) 0;
  position: relative;
}

.sm-container {
  max-width: var(--sm-container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.sm-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.sm-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.sm-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.sm-col {
  padding: 0 12px;
  flex: 1;
}

.sm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sm-gap-lg);
}

.sm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sm-gap-lg);
}

.sm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sm-gap-lg);
}

.sm-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sm-section-header h2 {
  margin-bottom: 16px;
}

.sm-section-header p {
  color: var(--sm-text-body);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.sm-divider {
  width: 60px;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
  border: none;
  border-radius: 2px;
  margin: 16px auto 0;
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */
.sm-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--sm-z-navbar);
  background: var(--sm-bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sm-border-subtle);
  padding: 0;
  transition: all var(--sm-transition);
}

.sm-navbar.scrolled {
  background: rgba(10, 15, 28, 0.95);
  box-shadow: var(--sm-shadow-md);
}

.sm-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--sm-container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.sm-brand {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.sm-brand-signal {
  color: var(--sm-text-white);
}

.sm-brand-matrix {
  color: var(--sm-primary);
}

.sm-brand-ai {
  color: var(--sm-cyan);
  font-size: 0.7em;
  font-weight: 700;
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 6px;
  border-radius: var(--sm-radius-sm);
  margin-left: 4px;
  vertical-align: super;
}

.sm-brand:hover {
  text-decoration: none;
}

.sm-brand:hover .sm-brand-matrix {
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.sm-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-nav-item {
  position: relative;
}

.sm-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--sm-text-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--sm-radius-sm);
  transition: all var(--sm-transition);
  position: relative;
  white-space: nowrap;
}

.sm-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--sm-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--sm-transition);
}

.sm-nav-link:hover {
  color: var(--sm-text-white);
}

.sm-nav-link:hover::after {
  transform: scaleX(1);
}

.sm-nav-link.active {
  color: var(--sm-primary);
}

.sm-nav-link.active::after {
  transform: scaleX(1);
}

.sm-nav-link i {
  font-size: 0.7em;
  transition: transform var(--sm-transition);
}

.sm-nav-item:hover .sm-nav-link i {
  transform: rotate(180deg);
}

/* Navigation Dropdown */
.sm-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  box-shadow: var(--sm-shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--sm-transition);
  z-index: var(--sm-z-dropdown);
}

.sm-nav-item:hover .sm-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sm-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--sm-text-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-nav-dropdown-item:hover {
  background: rgba(0, 255, 136, 0.05);
  color: var(--sm-text-white);
  padding-left: 24px;
}

.sm-nav-dropdown-item i {
  font-size: 1.1rem;
  color: var(--sm-primary);
  width: 20px;
  text-align: center;
}

.sm-nav-dropdown-divider {
  height: 1px;
  background: var(--sm-border-subtle);
  margin: 6px 0;
}

/* Nav CTA */
.sm-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--sm-primary);
  color: #0a0f1c !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--sm-radius-pill);
  text-decoration: none;
  transition: all var(--sm-transition);
  margin-left: 8px;
  white-space: nowrap;
}

.sm-nav-cta:hover {
  background: var(--sm-primary-light);
  color: #0a0f1c !important;
  box-shadow: var(--sm-shadow-green);
  transform: translateY(-1px);
}

.sm-nav-cta::after {
  display: none;
}

/* Hamburger Menu */
.sm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-sm);
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: all var(--sm-transition);
}

.sm-hamburger:hover {
  border-color: var(--sm-primary);
}

.sm-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sm-text-white);
  border-radius: 1px;
  transition: all var(--sm-transition);
}

.sm-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.sm-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.sm-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Panel */
.sm-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  right: -100%;
  width: 300px;
  height: calc(100vh - 72px);
  background: var(--sm-bg-card);
  border-left: 1px solid var(--sm-border-subtle);
  box-shadow: var(--sm-shadow-lg);
  padding: 24px;
  overflow-y: auto;
  transition: right var(--sm-transition);
  z-index: var(--sm-z-navbar);
}

.sm-mobile-nav.open {
  right: 0;
}

.sm-mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--sm-z-navbar) - 1);
  opacity: 0;
  transition: opacity var(--sm-transition);
}

.sm-mobile-nav-overlay.open {
  opacity: 1;
}

.sm-mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--sm-text-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--sm-border-subtle);
  transition: all var(--sm-transition);
}

.sm-mobile-nav-link:hover {
  color: var(--sm-primary);
  padding-left: 8px;
}

.sm-mobile-nav-sub {
  padding-left: 16px;
}

.sm-mobile-nav-sub .sm-mobile-nav-link {
  font-size: 0.9rem;
  color: var(--sm-text-muted);
}

.sm-mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: var(--sm-primary);
  color: #0a0f1c;
  font-weight: 600;
  border-radius: var(--sm-radius-pill);
  margin-top: 24px;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-mobile-nav-cta:hover {
  background: var(--sm-primary-light);
  color: #0a0f1c;
  box-shadow: var(--sm-shadow-green);
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */
.sm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: var(--sm-bg-primary);
  overflow: hidden;
}

.sm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sm-gradient-hero);
  pointer-events: none;
}

.sm-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sm-hero-content {
  max-width: 600px;
}

.sm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.sm-hero-badge i {
  font-size: 0.9rem;
}

.sm-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sm-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.sm-hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--sm-text-white);
}

.sm-hero-title .sm-text-gradient {
  background: var(--sm-gradient-green-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-text-cycle {
  display: inline-block;
  position: relative;
  color: var(--sm-primary);
  min-width: 200px;
}

.sm-text-cycle-item {
  display: none;
  animation: fadeInUp 0.5s ease forwards;
}

.sm-text-cycle-item.active {
  display: inline;
}

.sm-hero-subtitle {
  font-size: 1.2rem;
  color: var(--sm-text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.sm-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sm-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sm-hero-stat {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-md);
  transition: all var(--sm-transition);
}

.sm-hero-stat:hover {
  border-color: var(--sm-border-green);
  background: rgba(0, 255, 136, 0.03);
}

.sm-hero-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sm-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.sm-hero-stat-label {
  font-size: 0.8rem;
  color: var(--sm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Hero Cards (Right Side) */
.sm-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.sm-hero-cards {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.sm-hero-card {
  position: absolute;
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-lg);
  padding: 20px 24px;
  min-width: 260px;
  box-shadow: var(--sm-shadow-card);
  transition: all var(--sm-transition);
}

.sm-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
  border-color: var(--sm-border-green);
}

.sm-hero-card:nth-child(1) {
  top: 0;
  right: 0;
  animation: float 6s ease-in-out infinite;
}

.sm-hero-card:nth-child(2) {
  top: 140px;
  left: 0;
  animation: float 6s ease-in-out infinite 1s;
}

.sm-hero-card:nth-child(3) {
  top: 280px;
  right: 20px;
  animation: float 6s ease-in-out infinite 2s;
}

.sm-hero-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--sm-radius-md);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.sm-hero-card-icon.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--sm-primary);
}

.sm-hero-card-icon.cyan {
  background: rgba(0, 212, 255, 0.1);
  color: var(--sm-cyan);
}

.sm-hero-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--sm-purple);
}

.sm-hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 4px;
}

.sm-hero-card-text {
  font-size: 0.85rem;
  color: var(--sm-text-muted);
  margin-bottom: 0;
}

.sm-hero-card-metric {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--sm-radius-pill);
  margin-top: 8px;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */
.sm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--sm-primary);
  color: #0a0f1c;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sm-transition);
  white-space: nowrap;
}

.sm-btn-primary:hover {
  background: var(--sm-primary-light);
  color: #0a0f1c;
  box-shadow: var(--sm-shadow-green-lg);
  transform: translateY(-2px);
}

.sm-btn-primary:active {
  transform: translateY(0);
}

.sm-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--sm-text-white);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--sm-border-green);
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sm-transition);
  white-space: nowrap;
}

.sm-btn-outline:hover {
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  border-color: var(--sm-primary);
  box-shadow: var(--sm-shadow-green);
  transform: translateY(-2px);
}

.sm-btn-outline:active {
  transform: translateY(0);
}

.sm-btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.sm-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.sm-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--sm-radius-md);
}

.sm-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--sm-text-white);
  color: var(--sm-bg-primary);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-btn-white:hover {
  background: #e2e8f0;
  color: var(--sm-bg-primary);
  transform: translateY(-2px);
}

.sm-btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--sm-cyan);
  color: #0a0f1c;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-btn-cyan:hover {
  background: #33ddff;
  color: #0a0f1c;
  box-shadow: var(--sm-shadow-cyan);
  transform: translateY(-2px);
}

.sm-btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--sm-amber);
  color: #0a0f1c;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-btn-amber:hover {
  background: #fbbf24;
  color: #0a0f1c;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}


/* ============================================================
   7. CARDS
   ============================================================ */
.sm-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  padding: 32px;
  transition: all var(--sm-transition);
  position: relative;
  overflow: hidden;
}

.sm-card:hover {
  border-color: var(--sm-border-light);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
}

.sm-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--sm-radius-lg);
  margin-bottom: 20px;
  font-size: 1.5rem;
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
}

.sm-card-icon.cyan {
  background: rgba(0, 212, 255, 0.08);
  color: var(--sm-cyan);
}

.sm-card-icon.purple {
  background: rgba(139, 92, 246, 0.08);
  color: var(--sm-purple);
}

.sm-card-icon.amber {
  background: rgba(245, 158, 11, 0.08);
  color: var(--sm-amber);
}

.sm-card-icon.red {
  background: rgba(239, 68, 68, 0.08);
  color: var(--sm-red);
}

.sm-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 12px;
}

.sm-card-text {
  font-size: 0.95rem;
  color: var(--sm-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.sm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sm-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-card-link:hover {
  gap: 10px;
  color: var(--sm-primary-light);
}

.sm-card-body {
  padding: 24px;
}

.sm-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--sm-border-subtle);
}

.sm-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--sm-border-subtle);
}

/* Card with gradient top bar */
.sm-card-accent {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--sm-transition);
}

.sm-card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
}

.sm-card-accent:hover {
  border-color: var(--sm-border-light);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
}

/* Problem Card */
.sm-problem-card {
  background: var(--sm-bg-card);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--sm-radius-lg);
  padding: 28px;
  transition: all var(--sm-transition);
}

.sm-problem-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

.sm-problem-card .sm-card-icon {
  background: rgba(239, 68, 68, 0.08);
  color: var(--sm-red);
}

.sm-problem-card-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--sm-red);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 12px;
}

/* Specialty Card */
.sm-specialty-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--sm-transition);
}

.sm-specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
  transition: height var(--sm-transition);
}

.sm-specialty-card:hover {
  border-color: var(--sm-border-green);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
}

.sm-specialty-card:hover::before {
  height: 4px;
}

.sm-specialty-card.dental::before {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
}

.sm-specialty-card.ortho::before {
  background: linear-gradient(135deg, #8b5cf6, #00d4ff);
}

.sm-specialty-card.physician::before {
  background: linear-gradient(135deg, #00d4ff, #00ff88);
}

.sm-specialty-card.cosmetic::before {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.sm-specialty-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--sm-radius-md);
  margin-bottom: 20px;
}

.sm-specialty-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 8px;
}

.sm-specialty-card-text {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sm-specialty-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sm-specialty-card-features li {
  padding: 4px 0;
  color: var(--sm-text-body);
  font-size: 0.85rem;
}

.sm-specialty-card-features li::before {
  content: '\2713';
  color: var(--sm-primary);
  font-weight: 700;
  margin-right: 8px;
}

/* Stat Card */
.sm-stat-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--sm-transition);
}

.sm-stat-card:hover {
  border-color: var(--sm-border-green);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-green);
}

.sm-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sm-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.sm-stat-label {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  font-weight: 500;
}

.sm-stat-sublabel {
  display: block;
  font-size: 0.75rem;
  color: var(--sm-text-muted);
  margin-top: 4px;
}

/* Promise Card */
.sm-promise-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-top: 3px solid var(--sm-primary);
  border-radius: var(--sm-radius-lg);
  padding: 32px;
  transition: all var(--sm-transition);
}

.sm-promise-card:hover {
  border-color: var(--sm-border-green);
  border-top-color: var(--sm-primary);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
}

.sm-promise-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--sm-radius-circle);
  margin-bottom: 16px;
}

.sm-promise-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 10px;
}

.sm-promise-card-text {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Agent Card (for AI Agents page) */
.sm-agent-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  padding: 28px;
  transition: all var(--sm-transition);
  display: flex;
  flex-direction: column;
}

.sm-agent-card:hover {
  border-color: var(--sm-border-green);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
}

.sm-agent-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--sm-radius-lg);
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.sm-agent-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 4px;
}

.sm-agent-card-role {
  font-size: 0.8rem;
  color: var(--sm-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.sm-agent-card-desc {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.6;
  flex: 1;
}

.sm-agent-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.sm-agent-card-tag {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

/* CRM Feature Card */
.sm-crm-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  padding: 32px;
  transition: all var(--sm-transition);
  text-align: center;
}

.sm-crm-card:hover {
  border-color: var(--sm-border-cyan);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-cyan);
}

.sm-crm-card .sm-card-icon {
  margin: 0 auto 20px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--sm-cyan);
}


/* ============================================================
   8. TRUST BAR
   ============================================================ */
.sm-trust-bar {
  padding: 24px 0;
  border-top: 1px solid var(--sm-border-subtle);
  border-bottom: 1px solid var(--sm-border-subtle);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.sm-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.sm-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sm-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--sm-transition);
}

.sm-trust-badge:hover {
  color: var(--sm-text-body);
}

.sm-trust-badge i {
  font-size: 1.25rem;
  color: var(--sm-primary);
  opacity: 0.7;
}

.sm-trust-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sm-trust-badge-label {
  font-size: 0.75rem;
  color: var(--sm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sm-trust-badge-value {
  font-size: 0.95rem;
  color: var(--sm-text-white);
  font-weight: 600;
}

.sm-trust-bar-scroll {
  display: flex;
  gap: 48px;
  animation: scrollTrust 30s linear infinite;
}

@keyframes scrollTrust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   9. PROCESS / TIMELINE
   ============================================================ */
/* .sm-process — no grid on section; Bootstrap row handles layout */

.sm-process-step {
  text-align: center;
  position: relative;
}

.sm-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--sm-radius-circle);
  background: var(--sm-bg-card);
  border: 2px solid var(--sm-border-green);
  color: var(--sm-primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all var(--sm-transition);
}

.sm-process-step:hover .sm-step-number {
  background: rgba(0, 255, 136, 0.08);
  box-shadow: var(--sm-shadow-green);
  transform: scale(1.05);
}

.sm-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--sm-radius-circle);
  background: var(--sm-bg-card);
  border: 2px solid var(--sm-border-green);
  color: var(--sm-primary);
  font-size: 1.5rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all var(--sm-transition);
}

.sm-process-step:hover .sm-step-icon {
  background: rgba(0, 255, 136, 0.08);
  box-shadow: var(--sm-shadow-green);
}

.sm-process-connector {
  display: none;
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--sm-border-green);
}

.sm-process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 8px;
}

.sm-process-text {
  font-size: 0.85rem;
  color: var(--sm-text-body);
  line-height: 1.6;
}

.sm-process-label {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 255, 136, 0.06);
  color: var(--sm-primary);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--sm-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* Vertical Timeline Variant */
.sm-timeline {
  position: relative;
  padding-left: 48px;
}

.sm-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: var(--sm-border-subtle);
}

.sm-timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.sm-timeline-item:last-child {
  padding-bottom: 0;
}

.sm-timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sm-bg-card);
  border: 3px solid var(--sm-primary);
  z-index: 2;
}

.sm-timeline-item.active .sm-timeline-dot {
  background: var(--sm-primary);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.sm-timeline-content {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-md);
  padding: 20px 24px;
}

.sm-timeline-date {
  font-size: 0.8rem;
  color: var(--sm-primary);
  font-weight: 600;
  margin-bottom: 8px;
}


/* ============================================================
   10. PRICING SECTION
   ============================================================ */
.sm-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.sm-pricing-toggle-label {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  font-weight: 500;
}

.sm-pricing-toggle-label.active {
  color: var(--sm-text-white);
}

.sm-pricing-toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-light);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: all var(--sm-transition);
}

.sm-pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--sm-primary);
  border-radius: 50%;
  transition: all var(--sm-transition);
}

.sm-pricing-toggle-switch.active::after {
  left: 27px;
}

.sm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sm-pricing-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--sm-transition);
  overflow: hidden;
}

.sm-pricing-card:hover {
  border-color: var(--sm-border-light);
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
}

.sm-pricing-card.popular {
  border-color: rgba(0, 255, 136, 0.4);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.03) 0%, var(--sm-bg-card) 100%);
  transform: scale(1.02);
  z-index: 2;
}

.sm-pricing-card.popular:hover {
  border-color: rgba(0, 255, 136, 0.6);
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--sm-shadow-green-lg);
}

.sm-pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
}

.sm-pricing-card.enterprise {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.03) 0%, var(--sm-bg-card) 100%);
}

.sm-pricing-card.enterprise:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.sm-pricing-card.enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.sm-pricing-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sm-border-subtle);
}

.sm-pricing-tier {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sm-text-muted);
  margin-bottom: 8px;
}

.sm-pricing-card.popular .sm-pricing-tier {
  color: var(--sm-primary);
}

.sm-pricing-card.enterprise .sm-pricing-tier {
  color: var(--sm-amber);
}

.sm-pricing-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sm-text-white);
  margin-bottom: 12px;
}

.sm-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sm-pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sm-text-white);
  line-height: 1;
}

.sm-pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--sm-text-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sm-pricing-card.popular .sm-pricing-amount {
  color: var(--sm-primary);
}

.sm-pricing-card.enterprise .sm-pricing-amount {
  color: var(--sm-amber);
}

.sm-pricing-period {
  font-size: 0.9rem;
  color: var(--sm-text-muted);
  font-weight: 500;
}

.sm-pricing-desc {
  font-size: 0.85rem;
  color: var(--sm-text-muted);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
}

.sm-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.sm-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.5;
}

.sm-pricing-features li::before {
  content: '\2713';
  flex-shrink: 0;
  color: var(--sm-primary);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sm-pricing-card.enterprise .sm-pricing-features li::before {
  color: var(--sm-amber);
}

.sm-pricing-features li.disabled {
  color: var(--sm-text-muted);
  opacity: 0.5;
}

.sm-pricing-features li.disabled::before {
  content: '\2014';
  color: var(--sm-text-muted);
}

.sm-pricing-cta {
  margin-top: auto;
}

.sm-pricing-cta .sm-btn-primary,
.sm-pricing-cta .sm-btn-outline {
  width: 100%;
  justify-content: center;
}

.sm-pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--sm-text-muted);
}

.sm-pricing-note i {
  color: var(--sm-primary);
  margin-right: 4px;
}

.sm-pricing-badge-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
}

.sm-pricing-savings {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
}

.sm-pricing-original {
  text-decoration: line-through;
  color: var(--sm-text-muted);
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 8px;
}

.sm-pricing-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.sm-pricing-compare th,
.sm-pricing-compare td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sm-border-subtle);
  font-size: 0.9rem;
}

.sm-pricing-compare th {
  color: var(--sm-text-white);
  font-weight: 600;
}

.sm-pricing-compare td {
  color: var(--sm-text-body);
}

.sm-pricing-compare tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}


/* ============================================================
   11. FOUNDERS PROGRAM
   ============================================================ */
.sm-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sm-founders-header {
  margin-bottom: 32px;
}

.sm-founders-header h2 {
  margin-bottom: 12px;
}

.sm-founders-header p {
  font-size: 1.05rem;
  color: var(--sm-text-body);
}

.sm-founders-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sm-founders-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-founders-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sm-border-subtle);
  font-size: 0.95rem;
  color: var(--sm-text-body);
}

.sm-founders-benefits li:last-child {
  border-bottom: none;
}

.sm-founders-benefits li i {
  color: var(--sm-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sm-founders-discount {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--sm-primary);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--sm-radius-sm);
  margin-left: 6px;
}

.sm-founders-ask {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.sm-founders-ask::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
}

.sm-founders-ask h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.sm-founders-ask-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.sm-founders-ask-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--sm-text-body);
}

.sm-founders-ask-list li i {
  color: var(--sm-cyan);
  margin-top: 2px;
  flex-shrink: 0;
}

.sm-founders-spots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--sm-radius-md);
  margin-top: 20px;
}

.sm-founders-spots-count {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--sm-primary);
  line-height: 1;
}

.sm-founders-spots-text {
  font-size: 0.85rem;
  color: var(--sm-text-body);
  line-height: 1.3;
}

.sm-founders-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--sm-radius-md);
  margin-top: 12px;
  color: var(--sm-red);
  font-size: 0.85rem;
  font-weight: 600;
}


/* ============================================================
   12. FAQ SECTION
   ============================================================ */
/* .sm-faq — no max-width on section; inner col-lg-8 constrains content */

.sm-faq-item {
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--sm-transition);
  background: var(--sm-bg-card);
}

.sm-faq-item:hover {
  border-color: var(--sm-border-light);
}

.sm-faq-item.active {
  border-color: var(--sm-border-green);
}

.sm-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: all var(--sm-transition);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--sm-text-white);
  font-family: inherit;
}

.sm-faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.sm-faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: inherit;
  flex: 1;
  padding-right: 16px;
}

.sm-faq-question .sm-faq-chevron {
  font-size: 1rem;
  color: var(--sm-text-muted);
  transition: transform var(--sm-transition);
  flex-shrink: 0;
}

.sm-faq-item.active .sm-faq-chevron {
  transform: rotate(180deg);
  color: var(--sm-primary);
}

.sm-faq-item.active .sm-faq-question {
  color: var(--sm-primary);
}

.sm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.sm-faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--sm-text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sm-faq-item.active .sm-faq-answer {
  max-height: 500px;
}

.sm-faq-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sm-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sm-border-subtle);
}

.sm-faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.sm-faq-tab {
  padding: 8px 20px;
  background: none;
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-text-body);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--sm-transition);
}

.sm-faq-tab:hover {
  border-color: var(--sm-border-green);
  color: var(--sm-text-white);
}

.sm-faq-tab.active {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--sm-primary);
  color: var(--sm-primary);
}


/* ============================================================
   13. CONTACT / BOOKING FORM
   ============================================================ */
.sm-form {
  max-width: 600px;
  margin: 0 auto;
}

.sm-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sm-form-grid .sm-form-group.full-width {
  grid-column: 1 / -1;
}

.sm-form-group {
  margin-bottom: 20px;
}

.sm-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sm-text-white);
  margin-bottom: 8px;
}

.sm-form-label .required {
  color: var(--sm-red);
  margin-left: 2px;
}

.sm-form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--sm-bg-input);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  color: var(--sm-text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--sm-transition);
  outline: none;
}

.sm-form-input:focus {
  border-color: var(--sm-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.sm-form-input::placeholder {
  color: var(--sm-text-muted);
}

.sm-form-select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--sm-bg-input);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  color: var(--sm-text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--sm-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.sm-form-select:focus {
  border-color: var(--sm-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.sm-form-textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--sm-bg-input);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  color: var(--sm-text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--sm-transition);
  outline: none;
  resize: vertical;
  min-height: 120px;
}

.sm-form-textarea:focus {
  border-color: var(--sm-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.sm-form-textarea::placeholder {
  color: var(--sm-text-muted);
}

.sm-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--sm-primary);
  color: #0a0f1c;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  transition: all var(--sm-transition);
  width: 100%;
}

.sm-form-submit:hover {
  background: var(--sm-primary-light);
  box-shadow: var(--sm-shadow-green-lg);
  transform: translateY(-2px);
}

.sm-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.sm-form-hint {
  font-size: 0.8rem;
  color: var(--sm-text-muted);
  margin-top: 6px;
}

.sm-form-error {
  font-size: 0.8rem;
  color: var(--sm-red);
  margin-top: 6px;
}

.sm-form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--sm-radius-lg);
  color: var(--sm-primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 20px;
}

.sm-form-success i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sm-form-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-xl);
  padding: 48px;
}

.sm-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.sm-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sm-primary);
  flex-shrink: 0;
}

.sm-form-checkbox-label {
  font-size: 0.85rem;
  color: var(--sm-text-body);
  line-height: 1.5;
}

.sm-form-radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sm-form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--sm-bg-input);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  cursor: pointer;
  transition: all var(--sm-transition);
}

.sm-form-radio:hover {
  border-color: var(--sm-border-green);
}

.sm-form-radio input[type="radio"] {
  accent-color: var(--sm-primary);
}

.sm-form-radio.selected {
  border-color: var(--sm-primary);
  background: rgba(0, 255, 136, 0.05);
}


/* ============================================================
   14. FOOTER
   ============================================================ */
.sm-footer {
  background: var(--sm-bg-secondary);
  border-top: 1px solid var(--sm-border-subtle);
  padding: 80px 0 0;
}

.sm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--sm-border-subtle);
}

.sm-footer-brand {
  max-width: 300px;
}

.sm-footer-brand .sm-brand {
  margin-bottom: 16px;
}

.sm-footer-brand p {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.sm-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-md);
  color: var(--sm-text-muted);
  font-size: 1rem;
  transition: all var(--sm-transition);
}

.sm-footer-social a:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--sm-border-green);
  color: var(--sm-primary);
  transform: translateY(-2px);
}

.sm-footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sm-text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.sm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-footer-links li {
  margin-bottom: 10px;
}

.sm-footer-links a {
  color: var(--sm-text-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--sm-transition);
}

.sm-footer-links a:hover {
  color: var(--sm-primary);
  padding-left: 4px;
}

.sm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.sm-footer-copy {
  font-size: 0.85rem;
  color: var(--sm-text-muted);
}

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

.sm-footer-legal a {
  color: var(--sm-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--sm-transition);
}

.sm-footer-legal a:hover {
  color: var(--sm-primary);
}

.sm-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
  margin-top: 24px;
  border-top: 1px solid var(--sm-border-subtle);
  flex-wrap: wrap;
}

.sm-footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sm-text-muted);
  font-size: 0.8rem;
}

.sm-footer-trust-item i {
  color: var(--sm-primary);
  font-size: 1rem;
  opacity: 0.7;
}

.sm-footer-newsletter {
  margin-top: 20px;
}

.sm-footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.sm-footer-newsletter-form input {
  flex: 1;
  padding: 8px 14px;
  background: var(--sm-bg-input);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  color: var(--sm-text-white);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--sm-transition);
}

.sm-footer-newsletter-form input:focus {
  border-color: var(--sm-primary);
}

.sm-footer-newsletter-form button {
  padding: 8px 16px;
  background: var(--sm-primary);
  color: #0a0f1c;
  border: none;
  border-radius: var(--sm-radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--sm-transition);
}

.sm-footer-newsletter-form button:hover {
  background: var(--sm-primary-light);
}


/* ============================================================
   15. BADGES & PILLS
   ============================================================ */
.sm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.sm-badge i {
  font-size: 0.85rem;
}

.sm-badge-popular {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--sm-primary);
  color: #0a0f1c;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--sm-radius-pill);
  white-space: nowrap;
}

.sm-badge-enterprise {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--sm-amber);
  color: #0a0f1c;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--sm-radius-pill);
  white-space: nowrap;
}

.sm-badge-founding {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 212, 255, 0.12));
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sm-badge-new {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sm-badge-inline {
  display: inline-flex;
  padding: 2px 8px;
  font-size: 0.7rem;
  vertical-align: middle;
  margin-left: 8px;
}

.sm-badge-cyan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sm-badge-purple {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-purple);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sm-badge-amber {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-amber);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   16. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.1); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.25); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 255, 136, 0.2); }
  50% { border-color: rgba(0, 255, 136, 0.5); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }
.fade-in-up.delay-6 { transition-delay: 0.6s; }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.sm-text-gradient {
  background: var(--sm-gradient-green-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-text-gradient-purple {
  background: var(--sm-gradient-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-text-gradient-green-purple {
  background: var(--sm-gradient-green-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-glow {
  animation: glow 3s ease-in-out infinite;
}

.sm-glow-static {
  box-shadow: var(--sm-shadow-green);
}

.sm-float {
  animation: float 6s ease-in-out infinite;
}

.sm-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.sm-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.sm-spin {
  animation: spin 1s linear infinite;
}

.sm-border-glow {
  animation: borderGlow 3s ease-in-out infinite;
}

/* Typewriter effect for hero */
.sm-typewriter {
  overflow: hidden;
  border-right: 2px solid var(--sm-primary);
  white-space: nowrap;
  animation: typing 3.5s steps(30, end), blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blinkCaret {
  from, to { border-color: transparent; }
  50% { border-color: var(--sm-primary); }
}


/* ============================================================
   17. COOKIE CONSENT
   ============================================================ */
.sm-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--sm-z-cookie);
  background: var(--sm-bg-card);
  border-top: 1px solid var(--sm-border-subtle);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sm-cookie-banner.show {
  transform: translateY(0);
}

.sm-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--sm-container-max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.sm-cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--sm-text-body);
  min-width: 200px;
}

.sm-cookie-text a {
  color: var(--sm-primary);
  text-decoration: underline;
}

.sm-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.sm-cookie-accept {
  padding: 8px 24px;
  background: var(--sm-primary);
  color: #0a0f1c;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  transition: all var(--sm-transition);
}

.sm-cookie-accept:hover {
  background: var(--sm-primary-light);
  box-shadow: var(--sm-shadow-green);
}

.sm-cookie-decline {
  padding: 8px 24px;
  background: transparent;
  color: var(--sm-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-pill);
  cursor: pointer;
  transition: all var(--sm-transition);
}

.sm-cookie-decline:hover {
  color: var(--sm-text-white);
  border-color: var(--sm-text-muted);
}


/* ============================================================
   18. UTILITY CLASSES
   ============================================================ */

/* Text colors */
.sm-text-green { color: var(--sm-primary) !important; }
.sm-text-cyan { color: var(--sm-cyan) !important; }
.sm-text-purple { color: var(--sm-purple) !important; }
.sm-text-amber { color: var(--sm-amber) !important; }
.sm-text-red { color: var(--sm-red) !important; }
.sm-text-white { color: var(--sm-text-white) !important; }
.sm-text-muted { color: var(--sm-text-muted) !important; }
.sm-text-body { color: var(--sm-text-body) !important; }

/* Background colors */
.sm-bg-dark { background-color: var(--sm-bg-primary) !important; }
.sm-bg-secondary { background-color: var(--sm-bg-secondary) !important; }
.sm-bg-card { background-color: var(--sm-bg-card) !important; }

/* Text alignment */
.sm-text-center { text-align: center !important; }
.sm-text-left { text-align: left !important; }
.sm-text-right { text-align: right !important; }

/* Margin */
.sm-mx-auto { margin-left: auto !important; margin-right: auto !important; }
.sm-mt-0 { margin-top: 0 !important; }
.sm-mt-1 { margin-top: 8px !important; }
.sm-mt-2 { margin-top: 16px !important; }
.sm-mt-3 { margin-top: 24px !important; }
.sm-mt-4 { margin-top: 32px !important; }
.sm-mt-5 { margin-top: 48px !important; }
.sm-mt-6 { margin-top: 64px !important; }
.sm-mb-0 { margin-bottom: 0 !important; }
.sm-mb-1 { margin-bottom: 8px !important; }
.sm-mb-2 { margin-bottom: 16px !important; }
.sm-mb-3 { margin-bottom: 24px !important; }
.sm-mb-4 { margin-bottom: 32px !important; }
.sm-mb-5 { margin-bottom: 48px !important; }
.sm-mb-6 { margin-bottom: 64px !important; }
.sm-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

/* Padding */
.sm-pt-0 { padding-top: 0 !important; }
.sm-pb-0 { padding-bottom: 0 !important; }
.sm-p-0 { padding: 0 !important; }
.sm-p-1 { padding: 8px !important; }
.sm-p-2 { padding: 16px !important; }
.sm-p-3 { padding: 24px !important; }
.sm-p-4 { padding: 32px !important; }

/* Display */
.sm-d-none { display: none !important; }
.sm-d-flex { display: flex !important; }
.sm-d-grid { display: grid !important; }
.sm-d-block { display: block !important; }
.sm-d-inline { display: inline !important; }
.sm-d-inline-flex { display: inline-flex !important; }
.sm-d-inline-block { display: inline-block !important; }

/* Flex/Grid gap */
.sm-gap-1 { gap: 8px !important; }
.sm-gap-2 { gap: 16px !important; }
.sm-gap-3 { gap: 24px !important; }
.sm-gap-4 { gap: 32px !important; }

/* Alignment */
.sm-align-center { align-items: center !important; }
.sm-align-start { align-items: flex-start !important; }
.sm-align-end { align-items: flex-end !important; }
.sm-justify-center { justify-content: center !important; }
.sm-justify-between { justify-content: space-between !important; }
.sm-justify-end { justify-content: flex-end !important; }
.sm-flex-wrap { flex-wrap: wrap !important; }
.sm-flex-column { flex-direction: column !important; }

/* Sizing */
.sm-w-100 { width: 100% !important; }
.sm-h-100 { height: 100% !important; }
.sm-max-w-sm { max-width: 400px !important; }
.sm-max-w-md { max-width: 600px !important; }
.sm-max-w-lg { max-width: 800px !important; }

/* Border radius */
.sm-rounded { border-radius: var(--sm-radius-md) !important; }
.sm-rounded-lg { border-radius: var(--sm-radius-lg) !important; }
.sm-rounded-xl { border-radius: var(--sm-radius-xl) !important; }
.sm-rounded-pill { border-radius: var(--sm-radius-pill) !important; }
.sm-rounded-circle { border-radius: var(--sm-radius-circle) !important; }

/* Borders */
.sm-border { border: 1px solid var(--sm-border-subtle) !important; }
.sm-border-green { border-color: var(--sm-border-green) !important; }
.sm-border-0 { border: none !important; }

/* Overflow */
.sm-overflow-hidden { overflow: hidden !important; }
.sm-overflow-auto { overflow: auto !important; }

/* Position */
.sm-relative { position: relative !important; }
.sm-absolute { position: absolute !important; }

/* Accessibility */
.sm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Font weights */
.sm-fw-400 { font-weight: 400 !important; }
.sm-fw-500 { font-weight: 500 !important; }
.sm-fw-600 { font-weight: 600 !important; }
.sm-fw-700 { font-weight: 700 !important; }
.sm-fw-800 { font-weight: 800 !important; }
.sm-fw-900 { font-weight: 900 !important; }

/* Font sizes */
.sm-fs-sm { font-size: 0.85rem !important; }
.sm-fs-md { font-size: 1rem !important; }
.sm-fs-lg { font-size: 1.25rem !important; }
.sm-fs-xl { font-size: 1.5rem !important; }
.sm-fs-2xl { font-size: 2rem !important; }

/* Line height */
.sm-lh-tight { line-height: 1.2 !important; }
.sm-lh-normal { line-height: 1.6 !important; }
.sm-lh-loose { line-height: 1.8 !important; }

/* Opacity */
.sm-opacity-50 { opacity: 0.5 !important; }
.sm-opacity-75 { opacity: 0.75 !important; }


/* ============================================================
   19. TEMPLATE CLASS BRIDGES
   Maps HTML template class names to their styles.
   ============================================================ */

/* --- Global: Pills, Section Titles, Nav Spacer --- */
.sm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sm-pill-green {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.2);
  color: var(--sm-primary);
}

.sm-pill-cyan {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.2);
  color: var(--sm-cyan);
}

.sm-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sm-text-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sm-section-subtitle {
  font-size: 1.125rem;
  color: var(--sm-text-body);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sm-nav-spacer {
  height: 72px;
}

/* --- Hero: Float Cards, Stat Cards, CTAs, Description --- */
.sm-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sm-hero-description {
  font-size: 1.05rem;
  color: var(--sm-text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.sm-hero-description a {
  color: var(--sm-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sm-hero-description a:hover {
  color: var(--sm-primary-light);
}

.sm-hero-stat-card {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-md);
  transition: all var(--sm-transition);
}

.sm-hero-stat-card:hover {
  border-color: var(--sm-border-green);
  background: rgba(0, 255, 136, 0.03);
}

.sm-hero-stat-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--sm-primary);
  margin-bottom: 8px;
}

.sm-text-cycle-wrapper {
  display: inline-block;
  position: relative;
}

.sm-text-cycle-wrapper .sm-text-cycle {
  display: none;
  color: var(--sm-primary);
}

.sm-text-cycle-wrapper .sm-text-cycle.active {
  display: inline;
}

/* Floating cards on hero right column */
.sm-hero-float-card {
  position: absolute;
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-lg);
  padding: 20px 24px;
  min-width: 230px;
  box-shadow: var(--sm-shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--sm-transition);
}

.sm-hero-float-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sm-shadow-card-hover);
  border-color: var(--card-accent, var(--sm-primary));
}

.sm-hero-float-card-1 {
  top: 20px;
  right: 0;
  animation: float 6s ease-in-out infinite;
}

.sm-hero-float-card-2 {
  top: 160px;
  left: 0;
  animation: float 6s ease-in-out infinite 1s;
}

.sm-hero-float-card-3 {
  top: 300px;
  right: 20px;
  animation: float 6s ease-in-out infinite 2s;
}

.sm-hero-float-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sm-hero-float-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sm-text-white);
}

.sm-hero-float-pulse {
  width: 8px;
  height: 8px;
  background: var(--card-accent, var(--sm-primary));
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  margin-left: auto;
}

/* --- Trust Bar Item (HTML uses sm-trust-bar-item, not sm-trust-badge) --- */
.sm-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sm-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--sm-transition);
}

.sm-trust-bar-item:hover {
  color: var(--sm-text-body);
}

.sm-trust-bar-item i {
  font-size: 1.25rem;
  color: var(--sm-primary);
  opacity: 0.7;
}

/* --- Problem Card Internals --- */
.sm-problem-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sm-red);
  line-height: 1;
  margin-bottom: 6px;
}

.sm-problem-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sm-text-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.sm-problem-desc {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sm-problem-source {
  display: block;
  font-size: 0.75rem;
  color: var(--sm-text-muted);
  font-style: italic;
}

.sm-problem-source i {
  color: var(--sm-text-muted);
}

/* --- Specialty Card Internals --- */
.sm-specialty-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.sm-specialty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--sm-radius-lg);
  background: rgba(0, 255, 136, 0.08);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sm-specialty-card-desc {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.sm-specialty-stat-highlight {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--sm-border-subtle);
  border-bottom: 1px solid var(--sm-border-subtle);
}

.sm-specialty-stat-highlight .sm-stat-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.sm-specialty-stat-highlight .sm-stat-text {
  font-size: 0.85rem;
  color: var(--sm-text-body);
}

.sm-specialty-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sm-specialty-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: var(--sm-text-body);
  font-size: 0.88rem;
}

.sm-specialty-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sm-specialty-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* --- Process Section: Timeline & Steps (HTML class names) --- */
.sm-process-timeline {
  position: relative;
}

.sm-process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--sm-border-subtle);
  z-index: 0;
}

.sm-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--sm-radius-circle);
  background: var(--sm-bg-card);
  border: 2px solid var(--sm-border-green);
  color: var(--sm-primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
  transition: all var(--sm-transition);
}

.sm-process-step:hover .sm-process-number {
  background: rgba(0, 255, 136, 0.08);
  box-shadow: var(--sm-shadow-green);
  transform: scale(1.05);
}

.sm-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--sm-radius-circle);
  background: rgba(0, 255, 136, 0.06);
  color: var(--sm-primary);
  font-size: 1.25rem;
  margin: 0 auto 16px;
  transition: all var(--sm-transition);
}

.sm-process-step:hover .sm-process-icon {
  background: rgba(0, 255, 136, 0.12);
  box-shadow: var(--sm-shadow-green);
}

.sm-process-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 8px;
}

.sm-process-step-desc {
  font-size: 0.88rem;
  color: var(--sm-text-body);
  line-height: 1.6;
}

/* --- Stat Card Internals (HTML class names) --- */
.sm-stat-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--sm-radius-lg);
  background: rgba(0, 255, 136, 0.08);
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.sm-stat-card-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.sm-stat-card-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 10px;
}

.sm-stat-card-desc {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sm-stat-card-source {
  display: block;
  font-size: 0.75rem;
  color: var(--sm-text-muted);
  font-style: italic;
}

.sm-stat-card-source i {
  color: var(--sm-text-muted);
}

/* --- Promise Card Internals --- */
.sm-promise-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
}

.sm-promise-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--sm-radius-lg);
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.sm-promise-card-desc {
  font-size: 0.9rem;
  color: var(--sm-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Pricing Section: Badge & Subtitle (HTML class names) --- */
.sm-pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--sm-primary);
  color: #0a0f1c;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--sm-radius-pill);
  z-index: 2;
}

.sm-pricing-card.enterprise .sm-pricing-badge {
  background: var(--sm-amber);
}

.sm-pricing-subtitle {
  font-size: 0.85rem;
  color: var(--sm-text-muted);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
}

.sm-pricing-check {
  color: var(--sm-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sm-pricing-card.enterprise .sm-pricing-check {
  color: var(--sm-amber);
}

/* --- Founding Section (HTML uses sm-founding-*, CSS had sm-founders-*) --- */
.sm-founding-description {
  font-size: 1.05rem;
  color: var(--sm-text-body);
  line-height: 1.7;
}

.sm-founding-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sm-founding-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sm-border-subtle);
}

.sm-founding-benefit:last-child {
  border-bottom: none;
}

.sm-founding-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--sm-radius-lg);
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sm-founding-benefit-content {
  flex: 1;
}

.sm-founding-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 4px;
}

.sm-founding-benefit-desc {
  font-size: 0.88rem;
  color: var(--sm-text-body);
  line-height: 1.6;
  margin-bottom: 0;
}

.sm-founding-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle);
  border-radius: var(--sm-radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.sm-founding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sm-gradient-green-cyan);
}

.sm-founding-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--sm-radius-pill);
  color: var(--sm-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.sm-founding-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sm-text-white);
  margin-bottom: 20px;
}

.sm-founding-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.sm-founding-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--sm-text-body);
}

.sm-founding-card-list li i {
  color: var(--sm-cyan);
  margin-top: 2px;
  flex-shrink: 0;
}

.sm-founding-card-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--sm-radius-md);
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--sm-text-body);
  font-style: normal;
  line-height: 1.5;
}

.sm-founding-card-quote i {
  color: var(--sm-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- FAQ: Bootstrap Accordion Overrides (sm-accordion-*) --- */
.sm-accordion .sm-accordion-item {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border-subtle) !important;
  border-radius: var(--sm-radius-lg) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.sm-accordion .sm-accordion-item:hover {
  border-color: var(--sm-border-light) !important;
}

.sm-accordion .sm-accordion-button {
  background: transparent;
  color: var(--sm-text-white);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  box-shadow: none !important;
}

.sm-accordion .sm-accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--sm-primary);
}

.sm-accordion .sm-accordion-button::after {
  filter: brightness(0) invert(0.6);
}

.sm-accordion .sm-accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(65%) sepia(97%) saturate(1293%) hue-rotate(101deg) brightness(101%) contrast(104%);
}

.sm-accordion .sm-accordion-body {
  padding: 0 24px 20px;
  color: var(--sm-text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sm-accordion .accordion-collapse {
  border-top: none;
}

/* --- Contact Form --- */
.sm-contact-form .form-label,
.sm-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sm-text-white);
  margin-bottom: 8px;
}

.sm-contact-form .form-control,
.sm-contact-form .form-select,
.sm-form-control {
  background: var(--sm-bg-input);
  border: 1px solid var(--sm-border-light);
  border-radius: var(--sm-radius-md);
  color: var(--sm-text-white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: all var(--sm-transition);
}

.sm-contact-form .form-control:focus,
.sm-contact-form .form-select:focus,
.sm-form-control:focus {
  border-color: var(--sm-primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  background: var(--sm-bg-input);
  color: var(--sm-text-white);
}

.sm-contact-form .form-control::placeholder,
.sm-form-control::placeholder {
  color: var(--sm-text-muted);
}

.sm-contact-security {
  font-size: 0.8rem;
  color: var(--sm-text-muted);
}

.sm-contact-security i {
  color: var(--sm-primary);
}

.sm-contact-info-strip {
  margin-top: 48px;
}

.sm-contact-info-item {
  padding: 24px;
}

.sm-contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--sm-radius-lg);
  background: rgba(0, 255, 136, 0.08);
  color: var(--sm-primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.sm-contact-info-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sm-text-white);
  margin-bottom: 4px;
}

.sm-contact-info-value {
  font-size: 0.95rem;
  color: var(--sm-text-body);
  text-decoration: none;
  transition: color var(--sm-transition);
}

a.sm-contact-info-value:hover {
  color: var(--sm-primary);
}

/* --- Responsive additions for new classes --- */
@media (max-width: 992px) {
  .sm-section-title {
    font-size: 2rem;
  }

  .sm-hero-ctas {
    justify-content: center;
  }

  .sm-hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .sm-process-timeline::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .sm-section-title {
    font-size: 1.75rem;
  }

  .sm-hero-ctas {
    flex-direction: column;
  }

  .sm-hero-ctas .btn {
    width: 100%;
  }

  .sm-process-number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
}


/* ============================================================
   20. RESPONSIVE
   ============================================================ */

/* Large Desktop (max-width: 1200px) */
@media (max-width: 1200px) {
  .sm-container {
    padding: 0 20px;
  }

  .sm-hero-title {
    font-size: 3rem;
  }

  .sm-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sm-pricing-card.popular {
    transform: none;
  }

  .sm-pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  /* .sm-process responsive handled by Bootstrap cols */

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

  .sm-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .sm-footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  :root {
    --sm-section-padding: 80px;
  }

  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .sm-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .sm-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .sm-hero-content {
    max-width: 100%;
  }

  .sm-hero-title {
    font-size: 2.75rem;
  }

  .sm-hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .sm-hero-actions {
    justify-content: center;
  }

  .sm-hero-visual {
    min-height: 400px;
  }

  .sm-hero-cards {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Mobile nav activation */
  .sm-nav-menu {
    display: none;
  }

  .sm-hamburger {
    display: flex;
  }

  .sm-mobile-nav {
    display: block;
  }

  .sm-mobile-nav-overlay {
    display: block;
  }

  .sm-founders {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .sm-section-header {
    margin-bottom: 48px;
  }

  .sm-d-none-tablet { display: none !important; }
  .sm-d-block-tablet { display: block !important; }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --sm-section-padding: 60px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }

  .sm-hero-title {
    font-size: 2.25rem;
  }

  .sm-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .sm-hero-stat {
    padding: 16px 12px;
  }

  .sm-hero-stat-number {
    font-size: 1.35rem;
  }

  .sm-hero-visual {
    display: none;
  }

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

  .sm-grid-3 {
    grid-template-columns: 1fr;
  }

  .sm-grid-4 {
    grid-template-columns: 1fr;
  }

  .sm-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .sm-process responsive handled by Bootstrap cols */

  .sm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sm-footer-brand {
    grid-column: 1 / -1;
  }

  .sm-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sm-footer-legal {
    justify-content: center;
  }

  .sm-trust-bar-inner {
    gap: 24px;
  }

  .sm-form-grid {
    grid-template-columns: 1fr;
  }

  .sm-form-card {
    padding: 32px 24px;
  }

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

  .sm-cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .sm-section-header {
    margin-bottom: 40px;
  }

  .sm-card {
    padding: 24px;
  }

  .sm-faq-tabs {
    gap: 6px;
  }

  .sm-faq-tab {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .sm-d-none-mobile { display: none !important; }
  .sm-d-block-mobile { display: block !important; }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
  :root {
    --sm-section-padding: 48px;
  }

  body {
    font-size: 15px;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .sm-container {
    padding: 0 16px;
  }

  .sm-navbar-inner {
    padding: 0 16px;
    height: 64px;
  }

  .sm-brand {
    font-size: 1.15rem;
  }

  .sm-hero {
    padding: 100px 0 48px;
  }

  .sm-hero-title {
    font-size: 1.85rem;
  }

  .sm-hero-subtitle {
    font-size: 1rem;
  }

  .sm-hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .sm-hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sm-hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
  }

  .sm-hero-stat-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .sm-hero-actions {
    flex-direction: column;
  }

  .sm-hero-actions .sm-btn-primary,
  .sm-hero-actions .sm-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .sm-btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .sm-pricing-card {
    padding: 28px 20px;
  }

  .sm-pricing-amount {
    font-size: 2.5rem;
  }

  .sm-founders-ask {
    padding: 28px 20px;
  }

  .sm-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sm-footer-trust {
    gap: 16px;
    flex-direction: column;
  }

  .sm-trust-bar-inner {
    flex-direction: column;
    gap: 16px;
  }

  .sm-mobile-nav {
    width: 100%;
  }

  .sm-faq-question {
    padding: 16px 20px;
  }

  .sm-faq-answer-inner {
    padding: 0 20px 16px;
  }

  .sm-section-header h2 {
    font-size: 1.5rem;
  }

  .sm-card {
    padding: 20px;
  }

  .sm-stat-number {
    font-size: 2rem;
  }

  .sm-agent-card {
    padding: 20px;
  }

  .sm-form-radio-group {
    flex-direction: column;
  }

  .sm-footer-newsletter-form {
    flex-direction: column;
  }

  .sm-d-none-xs { display: none !important; }
  .sm-d-block-xs { display: block !important; }
}


/* ============================================================
   20. PRINT STYLES
   ============================================================ */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .sm-navbar,
  .sm-cookie-banner,
  .sm-footer-social,
  .sm-hamburger,
  .sm-mobile-nav,
  .sm-mobile-nav-overlay {
    display: none !important;
  }

  .sm-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .sm-section,
  .sm-section-alt {
    padding: 40px 0;
  }

  .sm-card,
  .sm-pricing-card,
  .sm-stat-card,
  .sm-agent-card {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .sm-text-gradient,
  .sm-text-gradient-purple {
    -webkit-text-fill-color: #000;
    color: #000;
  }

  .sm-btn-primary,
  .sm-btn-outline {
    border: 1px solid #000;
    background: none;
    color: #000;
  }
}


/* ============================================
   LOGO IMAGE
   ============================================ */
.sm-logo {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}

.sm-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sm-logo:hover .sm-logo-img {
  filter: drop-shadow(0 0 14px rgba(0, 255, 136, 0.5));
  transform: scale(1.05);
}

.sm-logo-text {
  display: inline;
}

.sm-logo-signal {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.sm-logo-matrix {
  color: var(--sm-primary, #00ff88);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.sm-logo-ai {
  color: var(--sm-cyan, #00d4ff);
  font-size: 0.7em;
  font-weight: 700;
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 4px;
  vertical-align: super;
}

.sm-logo:hover .sm-logo-matrix {
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

/* Footer logo */
.sm-footer-logo-img {
  height: 42px;
}

.sm-footer-logo {
  font-size: 1.1rem !important;
}

.sm-footer .sm-logo-signal,
.sm-footer .sm-logo-matrix {
  font-size: 1.1rem;
}

/* Mobile: slightly smaller logo */
@media (max-width: 768px) {
  .sm-logo-img {
    height: 36px;
  }
  .sm-footer-logo-img {
    height: 40px;
  }
}

.sm-pillars{padding:80px 0}.sm-pillar-card{background:var(--sm-bg-card,rgba(15,23,42,.6));border:1px solid var(--sm-border-subtle,rgba(255,255,255,.05));border-radius:12px;padding:2rem;text-align:center;transition:all .3s ease;height:100%}.sm-pillar-card:hover{border-color:var(--sm-border-green,rgba(0,255,136,.3));transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.3)}.sm-pillar-icon{font-size:2.5rem;margin-bottom:1rem}.sm-pillar-title{color:#fff;font-size:1.25rem;font-weight:700;margin-bottom:.75rem}.sm-pillar-desc{color:var(--sm-text-body,#94a3b8);font-size:.95rem;line-height:1.6;margin-bottom:0}.sm-pricing-card{display:flex;flex-direction:column;height:100%}.sm-pricing-features{flex:1}.sm-hero-stat-card{padding:1rem}


/* ============================================
   HERO STAT BOXES - Neon Pulse Design
   Scoped to .sm-hero-stat-card and children ONLY
   ============================================ */

@keyframes smStatNeonPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0,255,136,0.15), inset 0 0 8px rgba(0,255,136,0.03); }
    50%      { box-shadow: 0 0 24px rgba(0,255,136,0.25), inset 0 0 16px rgba(0,255,136,0.04), 0 0 50px rgba(0,255,136,0.08); }
}
@keyframes smStatShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes smStatIconFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}
@keyframes smStatGlowRing {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sm-hero-stat-card {
    position: relative;
    min-height: 200px;
    padding: 32px 20px 28px;
    text-align: center;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(10,20,40,0.95) 0%, rgba(8,12,20,0.98) 100%);
    border: 1.5px solid rgba(0,255,136,0.2);
    animation: smStatNeonPulse 3.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Shimmer line across top */
.sm-hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.7), transparent);
    background-size: 200% 100%;
    animation: smStatShimmer 3s ease-in-out infinite;
    z-index: 2;
}

/* Radial glow background */
.sm-hero-stat-card::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 120%; height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,255,136,0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.5;
    z-index: 0;
}

/* Hover */
.sm-hero-stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(0,255,136,0.5);
    animation: none;
    box-shadow: 0 0 35px rgba(0,255,136,0.2), 0 0 80px rgba(0,255,136,0.06), inset 0 0 20px rgba(0,255,136,0.04);
}
.sm-hero-stat-card:hover::after {
    opacity: 1;
}

/* Icon ring */
.sm-hero-stat-ring {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,255,136,0.06);
    border: 1.5px solid rgba(0,255,136,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    z-index: 1;
    transition: all 0.4s ease;
}
.sm-hero-stat-ring i {
    font-size: 1.5rem;
    color: #00ff88;
    filter: drop-shadow(0 0 6px rgba(0,255,136,0.3));
    animation: smStatIconFloat 3s ease-in-out infinite;
}
.sm-hero-stat-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(0,255,136,0.5);
    border-right-color: rgba(0,255,136,0.15);
    transition: all 0.8s ease;
    opacity: 0;
}
.sm-hero-stat-card:hover .sm-hero-stat-ring::after {
    opacity: 1;
    animation: smStatGlowRing 1.5s linear infinite;
}
.sm-hero-stat-card:hover .sm-hero-stat-ring {
    background: rgba(0,255,136,0.1);
    box-shadow: 0 0 20px rgba(0,255,136,0.15);
}

/* Number */
.sm-hero-stat-card .sm-hero-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0,255,136,0.35), 0 0 50px rgba(0,255,136,0.1);
    z-index: 1;
}

/* Label */
.sm-hero-stat-card .sm-hero-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .sm-hero-stat-card {
        min-height: 160px;
        padding: 24px 14px 22px;
    }
    .sm-hero-stat-card .sm-hero-stat-number {
        font-size: 2rem;
    }
    .sm-hero-stat-ring {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    .sm-hero-stat-ring i {
        font-size: 1.2rem;
    }
    .sm-hero-stat-card .sm-hero-stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}


/* ============================================
   Pricing Cards: Plasma Pulse Glow Effect
   Scoped to .sm-pricing-card ONLY
   ============================================ */
@keyframes smPricingPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0,255,136,0.05), inset 0 0 20px rgba(0,255,136,0.02);
        border-color: rgba(0,255,136,0.15);
        background: rgba(10, 15, 28, 0.95);
    }
    50% {
        box-shadow: 0 0 25px rgba(0,255,136,0.15), 0 0 50px rgba(0,255,136,0.06), inset 0 0 30px rgba(0,255,136,0.04);
        border-color: rgba(0,255,136,0.35);
        background: rgba(0, 255, 136, 0.03);
    }
}
@keyframes smPricingPulsePop {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0,255,136,0.12), inset 0 0 25px rgba(0,255,136,0.03);
    }
    50% {
        box-shadow: 0 0 35px rgba(0,255,136,0.25), 0 0 70px rgba(0,255,136,0.1), inset 0 0 40px rgba(0,255,136,0.05);
    }
}
@keyframes smPricingCorner {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.sm-pricing-card {
    position: relative;
    background: rgba(10, 15, 28, 0.95);
    border: 1.5px solid rgba(0,255,136,0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    animation: smPricingPulse 5s ease-in-out infinite;
}
.sm-pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(0,255,136,0.15), transparent 40%, transparent 60%, rgba(0,255,136,0.1));
    z-index: -1;
    animation: smPricingCorner 6s ease-in-out infinite;
    pointer-events: none;
}
.sm-pricing-card:hover {
    animation: none;
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0,255,136,0.25), 0 0 60px rgba(0,255,136,0.1), inset 0 0 30px rgba(0,255,136,0.05);
    border-color: rgba(0,255,136,0.5);
    background: rgba(0, 255, 136, 0.04);
}

.sm-pricing-card.sm-pricing-popular {
    border-color: rgba(0,255,136,0.4);
    transform: scale(1.04);
    animation: smPricingPulsePop 4s ease-in-out infinite;
    z-index: 2;
}
.sm-pricing-card.sm-pricing-popular:hover {
    animation: none;
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 0 45px rgba(0,255,136,0.3), 0 0 80px rgba(0,255,136,0.12), inset 0 0 40px rgba(0,255,136,0.06);
}

@media (max-width: 768px) {
    .sm-pricing-card.sm-pricing-popular {
        transform: none;
        animation: smPricingPulse 5s ease-in-out infinite;
    }
    .sm-pricing-card.sm-pricing-popular:hover {
        transform: translateY(-5px);
    }
}


/* ============================================
   About the Founders Section
   Scoped to .sm-about-card, .sm-about-combined ONLY
   ============================================ */
@keyframes smAboutPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0,255,136,0.05), inset 0 0 15px rgba(0,255,136,0.02);
        border-color: rgba(0,255,136,0.15);
    }
    50% {
        box-shadow: 0 0 22px rgba(0,255,136,0.12), 0 0 45px rgba(0,255,136,0.05), inset 0 0 25px rgba(0,255,136,0.03);
        border-color: rgba(0,255,136,0.3);
    }
}
@keyframes smAboutCorner {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.sm-about-card {
    position: relative;
    background: rgba(10, 15, 28, 0.95);
    border: 1.5px solid rgba(0,255,136,0.18);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: smAboutPulse 5s ease-in-out infinite;
    height: 100%;
}
.sm-about-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(0,255,136,0.12), transparent 40%, transparent 60%, rgba(0,255,136,0.08));
    z-index: -1;
    animation: smAboutCorner 6s ease-in-out infinite;
    pointer-events: none;
}
.sm-about-card:hover {
    animation: none;
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0,255,136,0.2), 0 0 50px rgba(0,255,136,0.08), inset 0 0 25px rgba(0,255,136,0.04);
    border-color: rgba(0,255,136,0.45);
    background: rgba(0, 255, 136, 0.03);
}

.sm-about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,255,136,0.08);
    border: 1.5px solid rgba(0,255,136,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #00ff88;
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.3));
}

.sm-about-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.sm-about-card-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00ff88;
    margin-bottom: 1.25rem;
}

.sm-about-card-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Combined Expertise Card */
.sm-about-combined {
    position: relative;
    background: rgba(10, 15, 28, 0.95);
    border: 1.5px solid rgba(0,255,136,0.18);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: smAboutPulse 5.5s ease-in-out infinite;
}
.sm-about-combined::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(0,255,136,0.1), transparent 35%, transparent 65%, rgba(0,255,136,0.1));
    z-index: -1;
    animation: smAboutCorner 6s ease-in-out infinite;
    pointer-events: none;
}
.sm-about-combined:hover {
    animation: none;
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0,255,136,0.18), 0 0 50px rgba(0,255,136,0.06);
    border-color: rgba(0,255,136,0.4);
    background: rgba(0, 255, 136, 0.025);
}
.sm-about-combined-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.sm-about-combined-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,255,136,0.08);
    border: 1.5px solid rgba(0,255,136,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00ff88;
    filter: drop-shadow(0 0 6px rgba(0,255,136,0.3));
    flex-shrink: 0;
}
.sm-about-combined-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.sm-about-combined-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.sm-about-combined-text strong {
    color: #00ff88;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sm-about-card {
        padding: 2rem 1.5rem;
    }
    .sm-about-combined {
        padding: 2rem 1.5rem;
    }
}


/* About Founders - LinkedIn Link */
.sm-about-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #00ff88;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.sm-about-linkedin:hover {
    color: #0a0f1c;
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
}
.sm-about-linkedin i {
    font-size: 1rem;
}


/* ============================================
   Legal Pages (Terms, Privacy)
   ============================================ */
.sm-legal-content {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}
.sm-legal-content h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,255,136,0.15);
}
.sm-legal-content h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.sm-legal-content p {
    margin-bottom: 1rem;
}
.sm-legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.sm-legal-content ul li {
    margin-bottom: 0.4rem;
}
.sm-legal-content a {
    color: #00ff88;
    text-decoration: none;
}
.sm-legal-content a:hover {
    text-decoration: underline;
}
.sm-legal-content strong {
    color: rgba(255,255,255,0.9);
}
.sm-legal-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1.25rem;
    border-left: 3px solid rgba(0,255,136,0.3);
    background: rgba(0,255,136,0.03);
    border-radius: 0 8px 8px 0;
}


/* ============================================
   Logo Permanent Green Glow
   Scoped to .sm-logo-img ONLY
   ============================================ */
@keyframes smLogoPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(0,255,136,0.3)) drop-shadow(0 0 12px rgba(0,255,136,0.1)); }
    50% { filter: drop-shadow(0 0 14px rgba(0,255,136,0.5)) drop-shadow(0 0 28px rgba(0,255,136,0.2)); }
}
.sm-logo-img {
    animation: smLogoPulse 3.5s ease-in-out infinite;
    transition: filter 0.3s ease;
}
.sm-logo-img:hover {
    animation: none;
    filter: drop-shadow(0 0 20px rgba(0,255,136,0.6)) drop-shadow(0 0 40px rgba(0,255,136,0.25));
}


/* ============================================
   John F Annotation Fixes — March 2026
   ============================================ */

/* #48: Match stat card heights */
.sm-stats .row {
    display: flex;
    flex-wrap: wrap;
}
.sm-stats .col-lg-4,
.sm-stats .col-md-6 {
    display: flex;
}
.sm-stat-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* #21: Match pricing card heights */
.sm-pricing .row {
    display: flex;
    flex-wrap: wrap;
}
.sm-pricing .col-lg-3,
.sm-pricing .col-md-6 {
    display: flex;
}
.sm-pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sm-pricing-features {
    flex: 1;
}

/* #49: Single checkmark per feature line — remove CSS pseudo-check, keep icon only */
.sm-pricing-features li::before {
    display: none !important;
    content: none !important;
}
.sm-pricing-card.enterprise .sm-pricing-features li::before {
    display: none !important;
    content: none !important;
}


/* ============================================
   DENTAL PAGE FIXES (John F annotations)
   ============================================ */

/* #2: Ensure hero subtitle/description is center-aligned on specialty pages */
.sm-hero-specialty .sm-hero-subtitle {
    text-align: center !important;
}

/* #10: Equal pricing card heights on specialty pages */
.sm-pricing-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}
.sm-pricing-grid > [class*="col-"] {
    display: flex !important;
}
.sm-pricing-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}
.sm-pricing-card .sm-pricing-features {
    flex: 1 !important;
}


/* ============================================
   COSMETIC SURGEON PAGE FIXES (John F annotations)
   ============================================ */

/* #41: Fix hero subtitle centering on specialty pages
   The p element has max-width: 520px but no auto margins,
   so it sits left-aligned within the centered column */
.sm-hero-specialty .sm-hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* #40: Reduce H1 font size on specialty hero — less overpowering vs body copy */
.sm-hero-specialty .sm-hero-title {
    font-size: 3rem !important;
}
@media (max-width: 768px) {
    .sm-hero-specialty .sm-hero-title {
        font-size: 2.2rem !important;
    }
}

/* #42: Tighten problem section title so it fits on fewer lines */
.sm-problem-specialty .sm-section-title {
    font-size: 2rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* #49: Center the last (odd) commitment item (HIPAA) in its row */
.sm-commitment-specialty .row.g-4 {
    justify-content: center !important;
}


/* ============================================
   AI VISIBILITY CARD (above pricing)
   ============================================ */
.sm-ai-visibility-card {
    background: var(--sm-bg-card, #0f1729);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.03);
}
.sm-ai-visibility-text {
    color: var(--sm-text-secondary, #94a3b8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: center;
}
.sm-ai-visibility-text:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .sm-ai-visibility-card {
        padding: 32px 24px;
    }
}


/* AI Agents page: hero subtitle in a centered card box */
.sm-hero-agents .sm-hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 640px;
    background: var(--sm-bg-card, #0f1729);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.03);
}



/* ============================================================
   MOBILE OPTIMIZATION — March 2026
   Comprehensive mobile-first improvements across all breakpoints
   ============================================================ */

/* ============================================
   0. GLOBAL MOBILE FOUNDATIONS
   ============================================ */

/* Remove tap highlight on iOS */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text overflow globally */
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Nav spacer for fixed navbar */
.sm-nav-spacer {
    height: 72px;
}

/* Ensure all buttons/links meet 44px minimum touch target */
.sm-btn-primary,
.sm-btn-outline,
.sm-btn-cyan,
.sm-btn-amber,
.sm-btn-white,
.sm-nav-cta,
.sm-mobile-nav-link,
.sm-faq-tab,
.sm-agent-filter-btn,
.accordion-button {
    min-height: 44px;
}

/* Social icons touch targets */
.sm-social-icon {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ============================================
   1. TABLET ADJUSTMENTS (max-width: 992px)
   ============================================ */
@media (max-width: 992px) {

    /* Fix 3rd pillar card staying at half-width on tablet */
    .sm-pillars .row .col-lg-4.col-md-6:last-child:nth-child(odd) {
        margin-left: auto;
        margin-right: auto;
    }

    /* CTA card in agents page */
    .sm-agents-cta-card {
        padding: 48px 32px;
    }

    /* Founding partner section */
    .sm-founding-card {
        margin-top: 24px;
    }

    /* Contact info section */
    .sm-contact-info {
        margin-top: 32px;
    }
}


/* ============================================
   2. MOBILE LANDSCAPE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* Reduce hero stat card min-height */
    .sm-hero-stat-card {
        min-height: 140px;
        padding: 20px 12px 18px;
    }
    .sm-hero-stat-card .sm-hero-stat-number {
        font-size: 1.8rem;
    }
    .sm-hero-stat-ring {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    .sm-hero-stat-ring i {
        font-size: 1.1rem;
    }
    .sm-hero-stat-card .sm-hero-stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }

    /* Specialty page hero */
    .sm-hero-specialty,
    .sm-hero-product {
        padding: 80px 0 48px;
    }

    /* Section titles — tighter on mobile */
    .sm-section-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    /* About founders */
    .sm-about-card {
        padding: 1.75rem 1.25rem;
    }
    .sm-about-card-name {
        font-size: 1.2rem;
    }
    .sm-about-card-text {
        font-size: 0.85rem;
    }
    .sm-about-combined {
        padding: 1.75rem 1.25rem;
    }
    .sm-about-combined-title {
        font-size: 1.1rem;
    }
    .sm-about-combined-text {
        font-size: 0.85rem;
    }

    /* Legal pages */
    .sm-legal-content h2 {
        font-size: 1.2rem;
    }
    .sm-legal-content h3 {
        font-size: 1rem;
    }
    .sm-legal-intro {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* Commitment card */
    .sm-commitment-card {
        padding: 28px 20px;
        border-radius: 14px;
    }
    .sm-commitment-title {
        font-size: 1.2rem;
    }

    /* Problem stat cards */
    .sm-problem-stat-card {
        padding: 20px 14px;
    }
    .sm-problem-stat-number {
        font-size: 1.6rem;
    }

    /* Solution cards */
    .sm-solution-card {
        padding: 24px 18px;
    }

    /* Market cards */
    .sm-market-card {
        padding: 18px 14px;
    }
    .sm-market-number {
        font-size: 1.4rem;
    }

    /* Contact form card */
    .sm-contact-form {
        padding: 0;
    }

    /* Founding partner */
    .sm-founding-card {
        padding: 28px 20px;
    }
    .sm-founding-description {
        font-size: 0.95rem;
    }
    .sm-founding-benefit-title {
        font-size: 1rem;
    }
    .sm-founding-benefit-desc {
        font-size: 0.85rem;
    }

    /* Cookie banner stacking */
    .sm-cookie-inner {
        padding: 16px 0;
    }
    .sm-cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Process step cards */
    .sm-process-step {
        text-align: center;
    }
    .sm-process-card {
        padding: 24px 18px;
    }

    /* Trust bar — smaller text */
    .sm-trust-bar-item,
    .sm-trust-badge {
        font-size: 0.78rem;
    }

    /* Results cards */
    .sm-results-card {
        padding: 20px 14px;
    }
    .sm-results-number {
        font-size: 1.6rem;
    }

    /* AI visibility card */
    .sm-ai-visibility-card {
        padding: 28px 20px;
    }
    .sm-ai-visibility-text {
        font-size: 0.95rem;
    }

    /* Cross-link cards */
    .sm-cross-link-card {
        padding: 14px;
        gap: 12px;
    }
    .sm-cross-link-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .sm-cross-link-name {
        font-size: 0.88rem;
    }
}


/* ============================================
   3. MOBILE PORTRAIT (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {

    /* Nav spacer height matches smaller navbar */
    .sm-nav-spacer {
        height: 64px;
    }

    /* Hero stat cards — compact horizontal layout */
    .sm-hero-stat-card {
        min-height: auto;
        padding: 16px 12px;
        flex-direction: row;
        gap: 12px;
        text-align: left;
    }
    .sm-hero-stat-card .sm-hero-stat-number {
        font-size: 1.6rem;
    }
    .sm-hero-stat-ring {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .sm-hero-stat-ring i {
        font-size: 1rem;
    }
    .sm-hero-stat-card .sm-hero-stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.6px;
    }

    /* Section titles — prevent overflow */
    .sm-section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .sm-section-subtitle {
        font-size: 0.9rem;
    }

    /* Specialty hero title */
    .sm-hero-specialty .sm-hero-title {
        font-size: 1.75rem !important;
    }

    /* Product page hero */
    .sm-hero-product {
        padding: 72px 0 36px;
    }
    .sm-hero-product .sm-hero-title {
        font-size: 1.65rem;
    }
    .sm-hero-description {
        font-size: 0.9rem;
    }

    /* Pillar cards */
    .sm-pillar-card {
        padding: 1.5rem;
    }
    .sm-pillar-icon {
        font-size: 2rem;
    }
    .sm-pillar-title {
        font-size: 1.1rem;
    }
    .sm-pillar-desc {
        font-size: 0.88rem;
    }

    /* Problem cards */
    .sm-problem-card {
        padding: 20px;
    }
    .sm-problem-stat {
        font-size: 2rem;
    }

    /* Specialty cards */
    .sm-specialty-card {
        padding: 24px 18px;
    }
    .sm-specialty-card-title {
        font-size: 1.1rem;
    }
    .sm-specialty-card-desc {
        font-size: 0.82rem;
    }

    /* Promise cards */
    .sm-promise-card {
        padding: 24px 18px;
    }

    /* Pricing — ensure popular card doesn't overflow */
    .sm-pricing-card.sm-pricing-popular {
        transform: none;
    }
    .sm-pricing-card.sm-pricing-popular:hover {
        transform: translateY(-4px);
    }
    .sm-pricing-card {
        padding: 24px 16px;
    }
    .sm-pricing-amount {
        font-size: 2.2rem;
    }
    .sm-pricing-name {
        font-size: 1.1rem;
    }
    .sm-pricing-subtitle {
        font-size: 0.82rem;
    }
    .sm-pricing-features li {
        font-size: 0.82rem;
        padding: 6px 0;
    }

    /* Founding partner */
    .sm-founding-card {
        padding: 24px 16px;
    }
    .sm-founding-description {
        font-size: 0.88rem;
    }
    .sm-founding-benefit {
        gap: 12px;
    }
    .sm-founding-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    .sm-founding-benefit-title {
        font-size: 0.95rem;
    }
    .sm-founding-benefit-desc {
        font-size: 0.82rem;
    }
    .sm-founding-card-quote {
        font-size: 0.82rem;
    }
    .sm-founders-ask {
        padding: 24px 16px;
    }

    /* About founders */
    .sm-about-card {
        padding: 1.5rem 1.15rem;
    }
    .sm-about-card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
    .sm-about-card-name {
        font-size: 1.15rem;
    }
    .sm-about-card-role {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }
    .sm-about-card-text {
        font-size: 0.82rem;
        line-height: 1.65;
    }
    .sm-about-linkedin {
        font-size: 0.78rem;
        padding: 0.3rem 0.85rem;
    }
    .sm-about-combined {
        padding: 1.5rem 1.15rem;
    }
    .sm-about-combined-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .sm-about-combined-title {
        font-size: 1.05rem;
    }
    .sm-about-combined-text {
        font-size: 0.82rem;
    }

    /* FAQ — better touch targets */
    .accordion-button.sm-accordion-button {
        padding: 14px 16px;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .accordion-body.sm-accordion-body {
        padding: 12px 16px 20px;
        font-size: 0.88rem;
    }

    /* Legal pages */
    .sm-legal-content h2 {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    .sm-legal-content h3 {
        font-size: 0.95rem;
    }
    .sm-legal-content {
        font-size: 0.88rem;
    }
    .sm-legal-intro {
        padding: 0.85rem;
        font-size: 0.88rem;
    }
    .sm-legal-section {
        padding: 16px 14px;
        border-radius: 10px;
    }
    .sm-legal-section-title {
        font-size: 1.05rem;
    }
    .sm-legal-section-body {
        font-size: 0.82rem;
    }

    /* Contact form */
    .sm-form-label {
        font-size: 0.85rem;
    }
    .sm-form-control,
    .form-control.sm-form-control {
        font-size: 16px; /* Prevent iOS zoom on focus */
        padding: 10px 14px;
    }
    .sm-contact-security small {
        font-size: 0.75rem;
    }

    /* Agent filter buttons — scroll horizontally */
    .sm-agent-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    .sm-agent-filters::-webkit-scrollbar {
        display: none;
    }
    .sm-agent-filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Agent cards */
    .sm-agent-card {
        padding: 20px 16px;
    }
    .sm-agent-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .sm-agent-card-name {
        font-size: 0.92rem;
    }
    .sm-agent-card-desc {
        font-size: 0.78rem;
    }

    /* Process cards */
    .sm-process-card {
        padding: 24px 16px;
    }

    /* CTA card agents */
    .sm-agents-cta-card {
        padding: 32px 18px;
    }

    /* Stat card overrides */
    .sm-stat-card {
        padding: 24px 16px;
    }
    .sm-stat-number {
        font-size: 1.75rem;
    }

    /* Footer CTA box */
    .sm-footer-cta-box {
        padding: 0;
    }
    .sm-footer-cta-text {
        font-size: 0.85rem;
    }

    /* Cookie banner */
    .sm-cookie-banner .container {
        padding: 0 12px;
    }
    .sm-cookie-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .sm-cookie-actions .btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    /* Hero subtitle in agents page card */
    .sm-hero-agents .sm-hero-subtitle {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    /* Problem stat cards */
    .sm-problem-stat-card {
        padding: 16px 12px;
    }
    .sm-problem-stat-number {
        font-size: 1.4rem;
    }
    .sm-problem-stat-label {
        font-size: 0.75rem;
    }

    /* Market cards */
    .sm-market-card {
        padding: 14px 12px;
    }
    .sm-market-number {
        font-size: 1.2rem;
    }
    .sm-market-label {
        font-size: 0.75rem;
    }

    /* Results cards */
    .sm-results-card {
        padding: 16px 12px;
    }
    .sm-results-number {
        font-size: 1.4rem;
    }
    .sm-results-label {
        font-size: 0.78rem;
    }

    /* Solution cards */
    .sm-solution-card {
        padding: 20px 16px;
    }
    .sm-solution-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 10px;
    }
    .sm-solution-title {
        font-size: 0.95rem;
    }
    .sm-solution-desc {
        font-size: 0.8rem;
    }

    /* HIPAA notice */
    .sm-hipaa-notice-inner {
        padding: 20px 16px;
    }
    .sm-hipaa-notice-icon {
        font-size: 1.5rem;
    }
    .sm-hipaa-notice-title {
        font-size: 0.95rem;
    }
    .sm-hipaa-notice-text {
        font-size: 0.8rem;
    }

    /* Specialty hero trust badges */
    .sm-hero-trust {
        gap: 10px;
    }
    .sm-hero-trust .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}


/* ============================================
   4. VERY SMALL PHONES (max-width: 375px)
   ============================================ */
@media (max-width: 375px) {

    .sm-container {
        padding: 0 12px;
    }

    .sm-navbar-inner {
        padding: 0 12px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.1rem; }

    .sm-hero-title {
        font-size: 1.6rem;
    }

    .sm-hero-subtitle {
        font-size: 0.92rem;
    }

    .sm-hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .sm-section-title {
        font-size: 1.25rem;
    }

    .sm-btn-lg {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    .sm-pricing-amount {
        font-size: 2rem;
    }

    .sm-hero-stat-card .sm-hero-stat-number {
        font-size: 1.4rem;
    }

    .sm-about-card-text {
        font-size: 0.78rem;
    }

    .sm-about-combined-text {
        font-size: 0.78rem;
    }

    /* Footer */
    .sm-footer-tagline {
        font-size: 0.82rem;
    }
    .sm-footer-heading {
        font-size: 0.85rem;
    }
    .sm-footer-link {
        font-size: 0.82rem;
    }
    .sm-footer-cta-text {
        font-size: 0.8rem;
    }

    /* Legal */
    .sm-legal-content {
        font-size: 0.82rem;
        line-height: 1.7;
    }
    .sm-legal-content h2 {
        font-size: 1rem;
    }

    /* Cookie banner */
    .sm-cookie-text {
        font-size: 0.75rem;
    }
}


/* ============================================
   5. LANDSCAPE ORIENTATION FIX
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .sm-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    .sm-hero-specialty,
    .sm-hero-product,
    .sm-hero-agents {
        padding: 72px 0 32px;
    }
    .sm-hero-stat-card {
        min-height: auto;
    }
}


/* ============================================
   6. iOS INPUT ZOOM PREVENTION
   ============================================ */
@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="url"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px;
    }
}


/* ============================================
   7. SAFE AREA INSETS (iPhone X+ notch)
   ============================================ */
@supports (padding: env(safe-area-inset-bottom)) {
    .sm-footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
    .sm-cookie-banner {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .sm-navbar-inner {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
    }
}
@supports (padding: env(safe-area-inset-bottom)) {
    @media (max-width: 576px) {
        .sm-navbar-inner {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }
}
