:root {
  --primary-color: #4f46e5;       /* Indigo 600 */
  --primary-hover: #4338ca;       /* Indigo 700 */
  --primary-light: #e0e7ff;       /* Indigo 100 */
  --text-main: #0f172a;           /* Slate 900 */
  --text-muted: #475569;          /* Slate 600 */
  --bg-main: #f8fafc;             /* Slate 50 */
  --bg-card: #ffffff;
  --border-color: #e2e8f0;        /* Slate 200 */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Force Light Mode & Prevent dark-theme inherits */
html, body {
  background-color: var(--bg-main) !important;
  color: var(--text-main) !important;
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Selection Highlight */
::selection {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

/* Global Typography overrides */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Premium Sticky Navbar Styling */
.custom-navbar {
  background-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  text-decoration: none;
}

.brand-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.6);
}

.docs-label {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1rem;
}

.nav-link-custom {
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--primary-color) !important;
  background-color: var(--primary-light);
}

/* Ecosystem dropdown */
.dropdown-menu-custom {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  background-color: #ffffff;
  min-width: 200px;
}

.dropdown-menu-2col {
  display: none; /* hidden by default, shown by Bootstrap */
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 340px;
}

.dropdown-menu-2col.show {
  display: grid !important;
}

@media (max-width: 991.98px) {
  .dropdown-menu-2col.show {
    grid-template-columns: 1fr !important;
    min-width: 100%;
  }
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  padding: 9px 12px;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item-custom:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.dropdown-item-custom i {
  color: var(--primary-color);
  opacity: 0.75;
}

.dropdown-item-custom:hover i {
  opacity: 1;
}


/* Hero Badges & Accent Gradients */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Premium Modern Buttons */
.btn-indigo {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 24px;
  border: 1px solid var(--primary-color);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.15);
}

.btn-indigo:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.btn-light-custom {
  background-color: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 24px;
  transition: all 0.2s ease;
}

.btn-light-custom:hover {
  background-color: var(--bg-main);
  color: var(--primary-color);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* Terminal Simulation Components */
.terminal-window {
  background-color: #0f172a; 
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid #334155;
}

.terminal-titlebar {
  background-color: #1e293b;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #334155;
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.td-red { background-color: #ef4444; }
.td-yellow { background-color: #eab308; }
.td-green { background-color: #22c55e; }

.terminal-title-text {
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
}

.terminal-btn-run {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.terminal-btn-run:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.terminal-screen-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #cbd5e1;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
}

.terminal-prompt-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #1e293b;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #334155;
  margin-bottom: 15px;
}

.terminal-prompt {
  color: #38bdf8;
  user-select: none;
}

.terminal-cmd {
  color: #f1f5f9;
  word-break: break-all;
}

.btn-terminal-copy {
  background: none;
  border: none;
  color: #94a3b8;
  transition: color 0.15s;
}

.btn-terminal-copy:hover {
  color: #f8fafc;
}

.terminal-log-output {
  color: #a7f3d0; 
  white-space: pre-line;
  line-height: 1.6;
}

/* Trust/Metrics Grid Badge */
.metrics-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

.metric-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.05rem;
}

.metric-badge i {
  font-size: 1.4rem;
  color: var(--primary-color);
}

/* Modular Services Ecosystem Section */
.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-title-wrap h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.ecosystem-container {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-cards-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

.service-cards-column::-webkit-scrollbar {
  width: 6px;
}
.service-cards-column::-webkit-scrollbar-track {
  background: var(--bg-main);
  border-radius: 8px;
}
.service-cards-column::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}

.service-item-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.service-item-card:hover {
  transform: translateX(4px);
  border-color: #cbd5e1;
}

.service-item-card.active-service {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.service-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.active-service .service-icon-box {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.status-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a; 
  background-color: #dcfce7; 
  padding: 2px 8px;
  border-radius: 50px;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.service-item-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.service-item-card p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.active-service .service-footer-meta {
  color: var(--primary-color);
}

/* Right Details Display Widget */
.details-widget-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.widget-meta-table {
  margin: 1.5rem 0;
  border-top: 1px solid var(--border-color);
}

.widget-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.widget-meta-key {
  font-weight: 600;
  color: var(--text-muted);
}

.widget-meta-val {
  font-weight: 500;
  color: var(--text-main);
}

.widget-meta-val.port-highlight {
  font-family: var(--font-mono);
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 6px;
}

.feature-check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-check-list i {
  color: #10b981; 
  font-size: 1.1rem;
}

/* Core Features Grid Cards */
.feature-card-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  border-color: #cbd5e1;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Comparison Matrix Table */
.comparison-container {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.comparison-table th {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-weight: 700;
  padding: 16px;
}

.comparison-table td {
  padding: 16px;
  vertical-align: middle;
  color: var(--text-muted);
}

.comp-vector {
  font-weight: 600;
  color: var(--text-main);
}

.mulvox-cell {
  background-color: rgba(245, 243, 255, 0.4);
}

.badge-check-mulvox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  background-color: var(--primary-light);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-legacy-cpanel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d97706; 
  background-color: #fef3c7; 
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Bootstrap Accordion Custom Overrides */
.accordion-custom .accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background-color: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  padding: 18px 24px;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: var(--bg-main);
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

.accordion-custom .accordion-body {
  padding: 20px 24px;
  color: var(--text-muted);
  line-height: 1.6;
  background-color: #ffffff;
}

/* Standalone Inner Content Page */
.standalone-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 4rem;
}

.standalone-icon-span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--text-main);
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1050;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer styling */
footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

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

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

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links-list a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   PREMIUM POST CONTENT & TYPOGRAPHY SYSTEM
   ========================================================================== */

.post-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  margin-bottom: 4rem;
  transition: box-shadow 0.3s ease;
}

.post-content-card:hover {
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.prose {
  font-family: var(--font-sans);
  color: #334155; /* Slate 700 */
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Headings with Left Accents & Sleek Styling */
.prose h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 1rem;
}

.prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), #3b82f6);
  border-radius: 2px;
}

.prose h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.prose p {
  margin-bottom: 1.5rem;
  color: #475569;
}

/* Styled Blockquotes */
.prose blockquote {
  background-color: var(--bg-main);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #334155;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}

.prose blockquote p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Custom List Styles */
.prose ul, .prose ol {
  margin-left: 0;
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}

.prose li {
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.prose ul li {
  list-style-type: none;
  position: relative;
}

.prose ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.25rem;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
  position: absolute;
  top: -2px;
}

/* Premium Code Block Highlight */
.prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background-color: #f1f5f9;
  color: #ef4444; /* red accent */
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.prose pre {
  background-color: #0f172a; /* JetBlack dark theme */
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.prose pre code {
  background: none;
  color: #f1f5f9;
  padding: 0;
  border: none;
  font-size: 0.95rem;
}

/* Responsive Image Lift and Outline */
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  margin: 2.5rem 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prose img:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

/* Links Decoration */
.prose a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(79, 70, 229, 0.15);
  transition: all 0.2s ease;
}

.prose a:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-hover);
  background-color: rgba(79, 70, 229, 0.05);
  border-radius: 4px 4px 0 0;
}

/* Callout Utility Blocks */
.prose .callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid transparent;
}

.prose .callout-info {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.prose .callout-warning {
  background-color: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

/* ==========================================================================
   COMPETITOR COMPARISON LANDING PAGES STYLES
   ========================================================================== */

/* Shared Landing Page Hero & Layout */
.alt-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 1.5rem;
  border-radius: 24px;
}

/* Page-specific radial glows */
.cpanel-alternative-page .alt-hero {
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.08) 0%, transparent 60%);
}
.litespeed-alternative-page .alt-hero {
  background: radial-gradient(circle at top, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}
.aapanel-alternative-page .alt-hero {
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.alt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cpanel-alternative-page .alt-badge {
  background-color: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.2);
}
.litespeed-alternative-page .alt-badge {
  background-color: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.aapanel-alternative-page .alt-badge {
  background-color: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.alt-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.alt-subtitle {
  font-size: 1.2rem;
  color: #475569;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.alt-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-alt {
  color: white !important;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cpanel-alternative-page .btn-primary-alt {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}
.cpanel-alternative-page .btn-primary-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.litespeed-alternative-page .btn-primary-alt {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}
.litespeed-alternative-page .btn-primary-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.aapanel-alternative-page .btn-primary-alt {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}
.aapanel-alternative-page .btn-primary-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary-alt {
  background: #ffffff;
  color: #0f172a !important;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-secondary-alt:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Pain & Difference Cards */
.pain-grid, .diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.pain-card, .diff-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.25rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pain-card:hover, .diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.pain-icon-wrapper, .diff-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pain-card.solution .pain-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.aapanel-alternative-page .diff-icon-wrapper {
  background-color: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.pain-title, .diff-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.pain-text, .diff-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Comparison Tables */
.comparison-section, .benchmark-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  margin-bottom: 5rem;
}

.section-heading-alt {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading-alt h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.section-heading-alt p {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.comp-table-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.comp-table th {
  background-color: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

.comp-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.95rem;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table .feature-name {
  font-weight: 600;
  color: #0f172a;
  width: 30%;
}

.comp-table .cpanel-column {
  color: #ea580c;
  font-weight: 500;
  background: rgba(234, 88, 12, 0.01);
  width: 35%;
}
.comp-table .mulvox-column {
  color: #2563eb;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.02);
  width: 35%;
}

.comp-table .litespeed-column {
  color: #e11d48;
  font-weight: 500;
  background: rgba(225, 29, 72, 0.01);
  width: 35%;
}
.comp-table .aero-column {
  color: #0891b2;
  font-weight: 600;
  background: rgba(6, 182, 212, 0.02);
  width: 35%;
}

.comp-table .aapanel-column {
  color: #d97706;
  font-weight: 500;
  background: rgba(217, 119, 6, 0.01);
  width: 35%;
}

.comparison-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}
.comparison-feature-badge.win {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-weight: 600;
}
.comparison-feature-badge.lose {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Benchmark specific graphics */
.bench-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bench-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.bench-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.bench-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.bench-val span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.bench-bar-container {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.bench-bar {
  height: 100%;
  border-radius: 999px;
}

.bench-bar.mulvox {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  width: 100%;
}
.bench-bar.litespeed {
  background: #e11d48;
  width: 68%;
}
.bench-bar.nginx {
  background: #16a34a;
  width: 45%;
}

.bench-bar.ram-mulvox {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  width: 10%;
}
.bench-bar.ram-litespeed {
  background: #e11d48;
  width: 60%;
}
.bench-bar.ram-nginx {
  background: #16a34a;
  width: 40%;
}

.bench-meta {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
}

/* Features grid details */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.feat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
}
.feat-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(6, 182, 212, 0.08);
  color: #06b6d4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.feat-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.feat-text {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Migration boxes */
.migration-section {
  margin-bottom: 5rem;
}
.migration-card {
  background: #0b0f19;
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 3.5rem;
  color: #f1f5f9;
  position: relative;
  overflow: hidden;
}
.migration-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.migration-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.migration-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}
.migration-content p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.migration-code-box {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
}
.migration-code-box pre {
  margin: 0;
  color: #38bdf8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  overflow-x: auto;
}

@media (max-width: 992px) {
  .migration-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .alt-title {
    font-size: 2.25rem;
  }
  .comparison-section, .benchmark-section {
    padding: 2rem 1.25rem;
  }
  .migration-card {
    padding: 2rem 1.5rem;
  }
  .comp-table th, .comp-table td {
    padding: 1rem;
  }
}