/* ==========================================================================
   PRINTEREXPERT - PRINTER SUPPORT & IT SERVICES (printerexpert.site)
   Design: Clean 2-3 Color Palette (Trust Blue, Deep Navy Slate, Amber Accent)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Unified 2-3 Color Palette: Deep Slate/Navy + Trust Royal Blue + Warm Amber CTA Accent */
  --primary: #2563eb;         /* Trust Royal Blue */
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-dark: #1e3a8a;
  --secondary: #3b82f6;       /* Bright Blue Highlight */
  --accent: #f59e0b;          /* High-Contrast Phone / CTA Amber */
  --accent-hover: #d97706;
  --success: #10b981;         /* Trust Emerald Check */
  --success-bg: #ecfdf5;
  --danger: #ef4444;
  
  /* Slate & Dark Foundations */
  --navy-950: #0a0f1d;
  --navy-900: #0f172a;
  --navy-850: #131d36;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);
  --shadow-amber-glow: 0 0 25px rgba(245, 158, 11, 0.3);
  
  /* Transitions & Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition-fast: all 0.2s ease-in-out;
  --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px; /* Refined base size for professional, compact layout */
}

body {
  font-family: var(--font-body);
  color: var(--navy-800);
  background-color: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--navy-950);
  color: var(--slate-100);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-slate {
  background-color: var(--slate-100);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-amber {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.badge-success {
  background-color: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.95rem;
  }
}

.section-subtitle {
  font-size: 0.925rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--slate-400);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--navy-950);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  color: var(--navy-950);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.825rem;
}

.btn-pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & EMERGENCY HEADER
   ========================================================================== */
.top-bar {
  background-color: var(--navy-950);
  color: var(--slate-400);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-info span, .top-bar-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-300);
}

.top-bar-info a:hover {
  color: var(--secondary);
}

.top-bar-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.775rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulseDot 1.5s infinite;
}

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

/* ==========================================================================
   MAIN NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

.brand-logo-footer {
  height: 46px;
  max-width: 220px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-900) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-title span {
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-quick-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-base);
}

.phone-quick-cta:hover {
  background: #bae6fd;
  transform: translateY(-2px);
}

.phone-icon-pulse {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-900);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.2) 0%, transparent 40%),
              linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 3.75rem 0 4.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 1rem 0 1rem 0;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--slate-300);
  margin-bottom: 1.75rem;
  line-height: 1.6;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-guarantees {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--slate-300);
}

.guarantee-icon {
  color: var(--success);
  font-size: 0.95rem;
  font-weight: 700;
}

/* Simplified Hero Interactive Diagnostic Tool Card */
.hero-card {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  z-index: 2;
  position: relative;
}

.hero-card-header {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-header h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.45rem;
}

.hero-card-header p {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 0.15rem;
}

.troubleshoot-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.troubleshoot-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-md);
  color: var(--slate-300);
  font-size: 0.825rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.troubleshoot-btn svg {
  width: 17px;
  height: 17px;
  stroke: #93c5fd;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.troubleshoot-btn:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--white);
  transform: translateY(-1px);
}

.troubleshoot-btn.active {
  background: rgba(37, 99, 235, 0.28);
  border-color: #3b82f6;
  color: var(--white);
  font-weight: 600;
}

.troubleshoot-btn.active svg {
  stroke: #60a5fa;
}

.troubleshoot-result {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.diag-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.diag-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.diag-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}

.diag-eta {
  font-size: 0.7rem;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.25);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.troubleshoot-result h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.troubleshoot-result p {
  color: var(--slate-300);
  font-size: 0.825rem;
  line-height: 1.5;
}

.troubleshoot-steps {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.troubleshoot-steps li {
  font-size: 0.775rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.troubleshoot-steps li span {
  color: #38bdf8;
  font-weight: 700;
}

.troubleshoot-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
}

.troubleshoot-actions .btn {
  flex: 1;
}

/* ==========================================================================
   SUPPORTED BRANDS STRIP & DISCLAIMER
   ========================================================================== */
.brand-strip {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 2.25rem 0;
}

.brand-strip-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.brand-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.05rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-800);
  transition: var(--transition-fast);
}

.brand-pill:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  margin-top: 1.25rem;
  font-size: 0.775rem;
  color: #92400e;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.disclaimer-box svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d97706;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-section {
  background: var(--navy-900);
  color: var(--white);
  padding: 2.75rem 0;
  position: relative;
}

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

.stat-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number span {
  color: #60a5fa;
}

.stat-label {
  font-size: 0.825rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.service-icon-wrapper {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-base);
}

.service-icon-wrapper svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.feature-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--slate-500);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.55;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 1.25rem;
  border-top: 1px dashed var(--slate-200);
  padding-top: 0.85rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}

.service-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   HOW IT WORKS / PROCESS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-step {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.process-step:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-badge {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.step-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.825rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE US & TRUST
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.feature-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.825rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.trust-banner-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-banner-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.trust-banner-card p {
  color: var(--slate-300);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   PRICING TABLES
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.plan-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-500);
}

.price-subtext {
  font-size: 0.775rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.plan-features {
  border-top: 1px solid var(--slate-200);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--navy-800);
  margin-bottom: 0.6rem;
}

.plan-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--slate-100);
  padding-top: 0.85rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.author-meta h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
}

.author-meta p {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* ==========================================================================
   BLOG / KNOWLEDGE BASE
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

.blog-banner {
  height: 150px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 1.25rem;
  position: relative;
}

.blog-banner-icon {
  font-size: 2.2rem;
  opacity: 0.85;
}

.blog-content {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-title a {
  color: var(--navy-900);
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-summary {
  font-size: 0.825rem;
  color: var(--slate-500);
  margin-bottom: 1rem;
  line-height: 1.55;
  flex-grow: 1;
}

/* ==========================================================================
   CALL-TO-ACTION / EMERGENCY BANNER
   ========================================================================== */
.cta-banner {
  background: var(--navy-900);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text {
  max-width: 600px;
}

.cta-text h2 {
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: var(--slate-300);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

/* ==========================================================================
   CONTACT FORM & INFO SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--slate-400);
  font-size: 0.825rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 1.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-content h5 {
  color: var(--slate-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.info-content a, .info-content span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--navy-900);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.25rem;
  color: var(--slate-600);
  font-size: 0.85rem;
  line-height: 1.55;
}

.faq-item.active .faq-answer {
  padding-bottom: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--navy-950);
  color: var(--slate-400);
  padding: 4rem 0 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}

.footer-brand p {
  font-size: 0.825rem;
  margin: 0.85rem 0 1.25rem 0;
  line-height: 1.55;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.825rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.825rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-info svg {
  color: #60a5fa;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-info a {
  color: var(--slate-300);
}

.footer-contact-info a:hover {
  color: var(--white);
}

.footer-disclaimer-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.775rem;
  line-height: 1.55;
  color: var(--slate-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--slate-300);
}

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

/* ==========================================================================
   FLOATING EMERGENCY QUICK-CALL WIDGET
   ========================================================================== */
.floating-call-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
  transition: var(--transition-base);
  animation: floatWidget 3s ease-in-out infinite;
}

.floating-call-widget:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 25px rgba(217, 119, 6, 0.5);
  color: var(--navy-950);
}

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

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 1rem;
}

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

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 550px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: var(--transition-base);
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--slate-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}

.toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--navy-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--success);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1100;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-base);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   PAGE HERO (FOR INNER PAGES)
   ========================================================================== */
.page-hero {
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.2) 0%, transparent 50%),
              linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 4rem 0 4.5rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--slate-300);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--slate-300);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-guarantees {
    justify-content: center;
  }

  .hero-card {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
  
  .process-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 3.5rem 0 4.5rem 0;
  }

  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    z-index: 99;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-cta .phone-quick-cta {
    display: none;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-card {
    padding: 1.4rem 1.15rem;
    border-radius: var(--radius-lg);
  }

  .troubleshoot-options {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .troubleshoot-btn {
    padding: 0.6rem 0.65rem;
    font-size: 0.775rem;
    white-space: normal;
  }

  .troubleshoot-actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .troubleshoot-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-grid, .process-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-call-widget span {
    display: none;
  }
  
  .floating-call-widget {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 2.5rem 0 3.25rem 0;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-card {
    padding: 1.25rem 0.85rem;
  }

  .troubleshoot-options {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .troubleshoot-btn {
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
    justify-content: flex-start;
  }

  .troubleshoot-result {
    padding: 1rem 0.85rem;
  }

  .hero-guarantees {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .brand-logos-grid {
    gap: 0.6rem;
  }

  .brand-pill {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
  }

  .modal-box {
    padding: 1.75rem 1.25rem;
  }

  .contact-form-card {
    padding: 1.5rem 1rem;
  }
}

/* ==========================================================================
   DEDICATED LANDING PAGE (PRINTERHELP) STYLES
   High-converting components, live status bars, error search & mobile bar
   ========================================================================== */

.top-urgency-bar {
  background: #090d16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-urgency-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.live-beacon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseBeacon 1.8s infinite;
}

@keyframes pulseBeacon {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-urgency-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-urgency-link {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-urgency-link:hover {
  text-decoration: underline;
}

.agent-status-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin-top: 1.25rem;
}

.agent-avatars {
  display: flex;
  margin-right: -0.25rem;
}

.agent-avatar-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #0f172a;
  background: #2563eb;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.4rem;
}

.agent-avatar-img:first-child {
  margin-left: 0;
}

.agent-status-text {
  font-size: 0.76rem;
  color: #cbd5e1;
}

.agent-status-text strong {
  color: #38bdf8;
}

/* Header Rating Badge */
.header-rating-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--slate-600);
}

@media (max-width: 900px) {
  .header-rating-badge {
    display: none !important;
  }
}

/* Quick Error Search Bar / Rapid Problem Resolver Console */
.quick-search-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  margin-bottom: 2.25rem;
  transition: all 0.2s ease;
}

.quick-search-wrapper:hover {
  box-shadow: 0 14px 36px -4px rgba(37, 99, 235, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.quick-search-box {
  position: relative;
  margin-bottom: 1rem;
}

.quick-search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3.1rem;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--navy-900);
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
}

.quick-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.quick-search-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.quick-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
}

.quick-tag-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.quick-tag-label {
  font-size: 0.775rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.35rem;
}

.quick-tag-pill {
  font-size: 0.775rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.quick-tag-pill:hover, .quick-tag-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

/* Resolver Card Enhancements */
.resolver-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.65rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.resolver-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.resolver-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: #eff6ff;
  color: var(--primary);
  margin-bottom: 0.85rem;
  width: fit-content;
}

.resolver-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.resolver-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.resolver-card-desc {
  font-size: 0.835rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.resolver-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.resolver-card-list li {
  font-size: 0.8rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}

.resolver-card-list li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.resolver-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Trust Pillar Grid */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.trust-pillar-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.trust-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem auto;
}

.trust-pillar-card h4 {
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.trust-pillar-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Executive Chat CTA Button Styling */
.btn-chat {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 4px 12px rgba(2, 132, 199, 0.35);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-chat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-chat:hover::before {
  left: 100%;
}

.btn-chat:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 6px 18px rgba(2, 132, 199, 0.5);
}

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

.btn-chat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-chat-live-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
  animation: pulseBeacon 2s infinite ease-in-out;
  flex-shrink: 0;
}

/* Sticky Mobile Floating Call Bar - Completely Removed as requested */
.sticky-mobile-bar {
  display: none !important;
}

@media (max-width: 900px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-cta {
    gap: 0.35rem;
  }
  .nav-cta .btn-sm {
    padding: 0.42rem 0.65rem;
    font-size: 0.775rem;
  }
  .top-urgency-bar {
    justify-content: center;
    text-align: center;
  }
  .top-urgency-right {
    display: none;
  }
  .sticky-mobile-bar {
    display: none !important;
  }
  .floating-call-widget {
    display: none !important;
  }
  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   EFFORTLESS RESOLUTION MODERN UI UPGRADE
   ========================================================================== */
.effortless-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.effortless-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.85rem 1.4rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.effortless-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.15);
}

.effortless-step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.effortless-step-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.effortless-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.effortless-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.effortless-step-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .effortless-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .effortless-flow-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LEGAL PAGES (TERMS & PRIVACY POLICY)
   ========================================================================== */
.legal-hero {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 3.5rem 0 3.5rem 0;
  text-align: center;
}

.legal-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.legal-hero-subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
}

.legal-content-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  padding: 2.75rem 3rem;
  margin-top: -2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 1.25rem 0 0.5rem 0;
}

.legal-section p, .legal-section li {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section ul li {
  margin-bottom: 0.45rem;
}

.legal-highlight-box {
  background: #eff6ff;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.legal-highlight-box p {
  color: var(--navy-900);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .legal-content-card {
    padding: 1.75rem 1.25rem;
  }
  .legal-hero-title {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   CREATIVE & USER-FRIENDLY LANDING PAGE ENHANCEMENTS
   ========================================================================== */

/* Scenarios Grid */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.scenario-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.scenario-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.scenario-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scenario-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
  margin: 0;
}

.scenario-desc {
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.scenario-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--primary);
  background: #f0fdf4;
  color: #166534;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  border: 1px solid #bbf7d0;
  align-self: flex-start;
}

/* Why Printers Fail Truth Cards */
.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.truth-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.truth-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.truth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.truth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: #eff6ff;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.truth-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.truth-pain {
  font-size: 0.875rem;
  color: #b91c1c;
  background: #fef2f2;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.truth-fix {
  font-size: 0.875rem;
  color: #15803d;
  background: #f0fdf4;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  line-height: 1.45;
}

.truth-fix strong, .truth-pain strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

/* Guarantee Ribbon */
.guarantee-ribbon {
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px -10px rgba(11, 19, 41, 0.25);
}

.guarantee-ribbon-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.guarantee-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.guarantee-ribbon-text h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.guarantee-ribbon-text p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .scenarios-grid, .truth-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-ribbon {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .guarantee-ribbon-left {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   PRINTER HELP DESK LANDING PAGE (Simple, Informative & PPC Optimized)
   ========================================================================== */

.helpdesk-hero {
  background: linear-gradient(135deg, #0b1329 0%, #172554 60%, #1e3a8a 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.helpdesk-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.helpdesk-hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.helpdesk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #93c5fd;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.helpdesk-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.helpdesk-hero-subheadline {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.helpdesk-hero-p {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.helpdesk-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.helpdesk-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #94a3b8;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 650px;
  margin: 0 auto;
}

.helpdesk-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* 10 Helpdesk Issues Grid */
.helpdesk-issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .helpdesk-issues-grid {
    grid-template-columns: 1fr;
  }
}

.helpdesk-issue-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.helpdesk-issue-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.08);
}

.helpdesk-issue-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.helpdesk-issue-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
}

/* Mid CTA Box */
.helpdesk-mid-cta {
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.helpdesk-mid-cta h3 {
  font-size: 1.35rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.helpdesk-mid-cta p {
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}

/* 2-Column Support Showcase */
.helpdesk-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .helpdesk-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.helpdesk-showcase-box {
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -10px rgba(11, 19, 41, 0.25);
}

.helpdesk-showcase-box h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.helpdesk-showcase-box p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* 5 Symptom Cards */
.helpdesk-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .helpdesk-symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .helpdesk-symptoms-grid {
    grid-template-columns: 1fr;
  }
}

.helpdesk-symptom-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.helpdesk-symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  border-color: var(--primary-light);
}

.helpdesk-symptom-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0.75rem 0 0.5rem;
}

.helpdesk-symptom-card p {
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.helpdesk-symptom-action {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.helpdesk-symptom-action:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Why Contact Us Checklist */
.helpdesk-why-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.helpdesk-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  margin: 2rem 0;
}

@media (max-width: 650px) {
  .helpdesk-checklist-grid {
    grid-template-columns: 1fr;
  }
}

.helpdesk-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}

.helpdesk-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 4 Steps Flow */
.helpdesk-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .helpdesk-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .helpdesk-steps-grid {
    grid-template-columns: 1fr;
  }
}

.helpdesk-step-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.35rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  position: relative;
  text-align: center;
}

.helpdesk-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.helpdesk-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.helpdesk-step-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}



