:root {
  /* Apple Design System Tokens - Executive Restrained Monochrome */
  --apple-black: #000000;
  --apple-dark-bg: #000000;
  --apple-canvas: #0a0a0c;
  --apple-surface-card: #121215;
  --apple-surface-card-hover: #18181d;
  --apple-surface-secondary: #0d0d10;
  --apple-border: rgba(255, 255, 255, 0.08);
  --apple-border-strong: rgba(255, 255, 255, 0.16);
  --apple-border-light: rgba(255, 255, 255, 0.04);

  /* Typography Colors - High Contrast Professionalism */
  --apple-text-primary: #f5f5f7;
  --apple-text-secondary: #86868b;
  --apple-text-muted: #6e6e73;
  --apple-text-link: #2997ff;
  --apple-accent-crimson: #d92f4a;

  /* Typography Font Families */
  --font-sf: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Smooth Radii */
  --radius-button: 980px;
  --radius-card-sm: 12px;
  --radius-card-md: 18px;
  --radius-card-lg: 24px;
  --radius-card-xl: 32px;
  --radius-pill: 9999px;

  /* Apple Shadows */
  --apple-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --apple-shadow-card: 0 12px 32px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--apple-dark-bg);
}

body {
  margin: 0;
  font-family: var(--font-sf);
  background-color: var(--apple-dark-bg);
  color: var(--apple-text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.012em;
}

/* Headings with Apple Typography Proportions & Reliable Block Gradient Rendering */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sf);
  color: var(--apple-text-primary);
  margin: 0 0 0.4em;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  text-wrap: balance;
  overflow: visible;
}

p, li, span, .bento-subtitle, .apple-faq-trigger {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

/* Apple Pro Signature Brand Gradients - Robust block-level rendering */
h1, h2, .gradient-title {
  background: linear-gradient(135deg, #ffffff 15%, #ff7b90 55%, #e11d48 85%, #be123c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  width: 100%;
  padding-bottom: 0.08em;
}

/* Hero Headline with Full Child Span Inheritance */
.hero-headline {
  background: linear-gradient(135deg, #ffffff 10%, #ff8598 45%, #e11d48 80%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  width: 100%;
  padding-bottom: 0.1em;
}

.hero-headline span,
.hero-headline .nowrap-desktop {
  background: inherit !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline;
}

h2 span,
h2 .nowrap-desktop {
  background: inherit !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline;
}

.gradient-accent-blue {
  background: linear-gradient(135deg, #ffffff 20%, #60a5fa 60%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent-purple {
  background: linear-gradient(135deg, #ffffff 20%, #c084fc 60%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent-emerald {
  background: linear-gradient(135deg, #ffffff 20%, #34d399 60%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.022em;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1.2em;
}

p.body-lead {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--apple-text-secondary);
  letter-spacing: -0.015em;
}

p.body-standard {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--apple-text-secondary);
  letter-spacing: -0.01em;
}

/* Utility to prevent awkward line breaks on desktop */
.nowrap-desktop {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nowrap-desktop {
    white-space: normal;
  }
}

/* Links */
a {
  color: var(--apple-text-link);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.82;
}

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

/* Apple Category Eyebrow Kicker - Minimal & Crisp */
.kicker {
  display: inline-block;
  font-family: var(--font-sf);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1a6;
  margin-bottom: 12px;
}

/* Apple-Style Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sf);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 10px 22px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  font-weight: 500;
}

.btn-primary:hover {
  background: #e5e5ea;
  color: #000000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

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

.btn-lg {
  padding: 14px 30px;
  font-size: 1.02rem;
  font-weight: 500;
}

/* Apple Pill Badges - Restrained Monochrome */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: #d1d1d6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-crimson {
  background: rgba(217, 47, 74, 0.12);
  color: #ff6b84;
  border-color: rgba(217, 47, 74, 0.25);
}

/* Minimal Topbar - Redesigned Headline */
.topbar {
  background: rgba(14, 14, 18, 0.9);
  color: #86868b;
  font-size: 0.74rem;
  padding: 7px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: -0.005em;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1d1d6;
  font-weight: 450;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 8px #30d158;
}

/* Apple Frosted Glass Navigation */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: #d1d1d6;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 6px;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 28px;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
  font-size: 1rem;
}

/* Apple Keynote Hero Stage */
.hero-epic {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 90px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 65%),
              #000000;
  text-align: center;
}

.hero-wrap-apple {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-headline {
  margin: 0 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #b0b0b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions-center {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0 32px;
}

.hero-trust-bar-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Apple Bento Cards & Layout */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-darker {
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Apple-Style Segmented Control */
.segmented-control {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.segment-btn {
  background: transparent;
  border: none;
  color: #86868b;
  font-family: var(--font-sf);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 9px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.segment-btn:hover {
  color: #ffffff;
}

.segment-btn.active {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Apple Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--apple-surface-card);
  border: 1px solid var(--apple-border);
  border-radius: var(--radius-card-lg);
  padding: 32px 28px;
  transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  background: var(--apple-surface-card-hover);
  border-color: var(--apple-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--apple-shadow-card);
}

.bento-num {
  font-family: var(--font-sf);
  font-size: 3.2rem;
  font-weight: 700;
  color: #f5f5f7;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.bento-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 6px;
}

.bento-subtitle {
  font-size: 0.88rem;
  color: var(--apple-text-secondary);
  line-height: 1.5;
}

/* Apple Split Feature Showcase */
.apple-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Premium Apple Executive Portrait Card */
.apple-ceo-card {
  position: relative;
  border-radius: var(--radius-card-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0f0f13;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.apple-ceo-img-frame {
  width: 100%;
  background: #141418;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.apple-ceo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  filter: contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-ceo-card:hover img {
  transform: scale(1.02);
}

.apple-ceo-caption {
  position: static;
  background: #121216;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.apple-ceo-caption b {
  font-size: 1.12rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
}

.apple-ceo-caption span {
  font-size: 0.85rem;
  color: #a1a1a6;
  display: block;
}

/* Apple Feature Checklist */
.apple-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.apple-check-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card-sm);
  font-size: 0.95rem;
  color: #d1d1d6;
  line-height: 1.5;
}

.apple-check-icon {
  color: #a1a1a6;
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Apple Minimal FAQ Accordion */
.apple-faq-stack {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.apple-faq-item {
  background: var(--apple-surface-card);
  border: 1px solid var(--apple-border);
  border-radius: var(--radius-card-md);
  overflow: hidden;
  transition: all 0.22s ease;
}

.apple-faq-item:hover {
  border-color: var(--apple-border-strong);
}

.apple-faq-item.open {
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--apple-surface-card-hover);
}

.apple-faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-sf);
  font-size: 1.08rem;
  font-weight: 500;
  color: #f5f5f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.apple-faq-trigger:hover {
  color: #ffffff;
}

.apple-faq-icon {
  font-size: 0.85rem;
  color: var(--apple-text-secondary);
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-faq-item.open .apple-faq-icon {
  transform: rotate(180deg);
  color: #ffffff;
}

.apple-faq-content {
  display: none;
  padding: 0 26px 24px;
  font-size: 0.98rem;
  color: var(--apple-text-secondary);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.apple-faq-item.open .apple-faq-content {
  display: block;
}

/* Sub-page Apple Hero Header */
.page-header-banner {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 24px 56px;
  text-align: left;
}

.breadcrumb-nav {
  font-size: 0.82rem;
  color: var(--apple-text-secondary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-nav a {
  color: #a1a1a6;
}

.subnav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.subnav-tab {
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: #d1d1d6;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.subnav-tab:hover,
.subnav-tab.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Apple Minimal Data Table */
.data-table-wrap {
  background: var(--apple-surface-card);
  border: 1px solid var(--apple-border);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
}

.data-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.2fr;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

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

.data-row.header {
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--apple-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-stat-num {
  font-family: var(--font-sf);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
}

/* Apple Footer */
footer {
  background: #000000;
  color: #86868b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 24px 40px;
  font-size: 0.82rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-columns h4 {
  color: #f5f5f7;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-columns ul a {
  color: #86868b;
  font-size: 0.88rem;
  transition: color 0.18s ease;
}

.footer-columns ul a:hover {
  color: #f5f5f7;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #6e6e73;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .apple-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  #menu-btn {
    display: block;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .topbar {
    display: none;
  }
}

/* Apple Keynote Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(22, 22, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.back-to-top-btn:hover {
  background: rgba(36, 36, 44, 0.9);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(0) scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65), 0 0 20px rgba(225, 29, 72, 0.25);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* CRITICAL MOBILE HEADER & HAMBURGER FIX */
@media (max-width: 768px) {
  #site-header {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    display: block !important;
  }
  .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 18px !important;
    position: relative !important;
    z-index: 10001 !important;
  }
  .brand-wrap {
    display: flex !important;
    align-items: center !important;
  }
  .brand-logo-img {
    height: 32px !important;
    width: auto !important;
  }
  .nav-links, .nav-actions .btn {
    display: none !important;
  }
  .nav-actions {
    display: flex !important;
    align-items: center !important;
  }
  #menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    cursor: pointer !important;
    z-index: 10002 !important;
  }
  #mobile-menu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10, 10, 14, 0.98) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 16px 20px 24px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8) !important;
    z-index: 9999 !important;
  }
  #mobile-menu.open {
    display: flex !important;
    flex-direction: column !important;
  }
  #mobile-menu a {
    display: block !important;
    padding: 14px 12px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #f5f5f7 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    text-decoration: none !important;
  }
  #mobile-menu a:last-child {
    border-bottom: none !important;
  }

  /* SALES & BENTO MOBILE RESPONSIVE STACKING (FIXED ORDER) */
  .apple-showcase-grid,
  .hero-actions-center,
  .bento-grid,
  .footer-columns {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .bento-card, .data-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
  }
  .data-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 14px 16px !important;
  }
  .btn-lg, .btn-primary, .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
