/* ==========================================================================
   FIX MY PRINTER — Premium Landing Page Design System & Mobile Responsive Styles
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Palette */
  --primary: #1a73e8;
  --primary-dark: #0d47a1;
  --primary-light: #e8f0fe;
  --primary-gradient: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
  --hero-gradient: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  
  /* Accent & Action Colors */
  --accent-orange: #ff6f00;
  --accent-orange-hover: #e65100;
  --accent-green: #00c853;
  --accent-green-hover: #00a844;
  --accent-green-light: #e8f8ed;
  --warning-yellow: #f59e0b;

  /* Neutrals */
  --text-main: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --border-focus: #93c5fd;

  /* Elevation / Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow-orange: 0 0 22px rgba(255, 111, 0, 0.4);
  --shadow-glow-green: 0 0 22px rgba(0, 200, 83, 0.4);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 78px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Inputs prevent iOS Safari zoom */
input, select, textarea {
  font-family: inherit;
  font-size: 16px !important;
}

/* --- Keyframe Animations & Micro-Interactions --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmerBtn {
  0% {
    transform: translateX(-150%) skewX(-25deg);
  }
  100% {
    transform: translateX(250%) skewX(-25deg);
  }
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 111, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
  }
}

@keyframes greenPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 200, 83, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

/* --- Scroll Reveal Classes --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: floatGentle 4s ease-in-out infinite;
}

/* --- Container & Spacing --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-padding {
  padding: 4.5rem 0;
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   BUTTONS DESIGN SYSTEM (Flex-Centered Everywhere)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  border: none;
  outline: none;
  user-select: none;
}

.btn-lg {
  padding: 0 1.85rem;
  height: 54px;
  font-size: 1.05rem;
}

.btn-md {
  padding: 0 1.4rem;
  height: 46px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0 1rem;
  height: 38px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Primary Call Button (Orange Action) */
.btn-primary-call {
  background: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: ringPulse 2.8s infinite;
}

.btn-primary-call::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-150%) skewX(-25deg);
}

.btn-primary-call:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.45);
}

.btn-primary-call:hover::after {
  animation: shimmerBtn 1.5s infinite;
}

/* Green Action Button */
.btn-primary-green {
  background: var(--accent-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-150%) skewX(-25deg);
}

.btn-primary-green:hover {
  background: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.45);
}

.btn-primary-green:hover::after {
  animation: shimmerBtn 1.5s infinite;
}

/* Secondary Button */
.btn-secondary {
  background: #ffffff;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Top Urgency & Live Status Bar --- */
.top-bar {
  background: #091e42;
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  line-height: 1;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  animation: greenPulse 2s infinite;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #94a3b8;
}

.top-bar-phone {
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.top-bar-phone:hover {
  color: var(--accent-orange);
}

/* --- Sticky Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

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

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

.logo-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

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

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

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

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

.btn-header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.925rem;
  padding: 0 1.25rem;
  height: 44px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-header-call:hover {
  background: var(--accent-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 200, 83, 0.35);
}

.btn-header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 1.15rem;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26, 115, 232, 0.25);
  line-height: 1;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-header-book:hover {
  background: #dbeafe;
  color: var(--primary);
}

/* --- Hero Section --- */
.hero-section {
  background: var(--hero-gradient);
  position: relative;
  padding: 3.5rem 0 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-glow-orb-1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.15) 0%, rgba(26, 115, 232, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: floatGentle 6s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-glow-orb-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, rgba(0, 200, 83, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: floatGentle 8s ease-in-out infinite alternate-reverse;
  z-index: 1;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 2px 6px rgba(26, 115, 232, 0.08);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.hero-title .highlight-price {
  color: var(--primary);
  background: linear-gradient(120deg, rgba(26, 115, 232, 0.12) 0%, rgba(26, 115, 232, 0) 100%);
  padding: 0 0.2rem;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-guarantee-note strong {
  color: var(--text-main);
}

/* Hero Right Side / Quote Card */
.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  position: relative;
}

.hero-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-green);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.hero-card-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

.hero-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

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

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

/* --- Trust Proof Bar --- */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

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

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

.trust-icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text-primary {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-text-secondary {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --- Supported Brands Cloud --- */
.brands-section {
  padding: 2.5rem 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-header {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.925rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

/* --- Problem / Frustration Section --- */
.problem-section {
  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: #fff5f5;
  border: 1.5px solid #fed7d7;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

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

.problem-icon-box {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #991b1b;
}

.problem-card-desc {
  font-size: 0.925rem;
  color: #7f1d1d;
  line-height: 1.5;
}

.problem-cta-bar {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.problem-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.problem-cta-text p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* --- Solution & Services Section --- */
.solution-section {
  background: var(--bg-light);
}

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

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.service-badge-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(255, 111, 0, 0.3);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

.check-icon {
  color: var(--accent-green);
  min-width: 18px;
  margin-top: 2px;
}

.service-price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
}

.price-small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* --- How It Works --- */
.how-it-works-section {
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-bottom: 3.5rem;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #93c5fd, #93c5fd 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 5px solid #ffffff;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.25);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 320px;
}

.how-cta-banner {
  text-align: center;
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.how-cta-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* --- Pricing Section --- */
.pricing-section {
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pricing-plan-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--text-main);
}

.guarantee-box {
  background: var(--accent-green-light);
  border: 1.5px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.guarantee-badge-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.25);
}

.guarantee-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 0.2rem;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: #047857;
}

/* --- Trust Signals & Customer Reviews --- */
.trust-signals-section {
  background: #ffffff;
}

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

.stat-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.stat-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin: 0 auto 0.75rem auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 700;
}

/* --- Consumer Alert & Scam Awareness Section --- */
.scam-alert-section {
  background: #fffbeb;
  border-top: 1px solid #fef3c7;
  border-bottom: 1px solid #fef3c7;
  position: relative;
}

.scam-badge-alert {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.scam-box-container {
  background: #ffffff;
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  position: relative;
}

.scam-grid-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.scam-column-danger {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.scam-column-danger h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #991b1b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.scam-column-safe {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.scam-column-safe h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.scam-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.925rem;
}

.scam-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.scam-icon-cross {
  color: #dc2626;
  min-width: 20px;
  margin-top: 2px;
  font-weight: 900;
}

.scam-icon-shield {
  color: var(--accent-green);
  min-width: 20px;
  margin-top: 2px;
}

.scam-bottom-action {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.scam-bottom-text h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.scam-bottom-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* --- Comparison Table --- */
.comparison-section {
  background: var(--bg-light);
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  border: 1px solid var(--border-light);
  margin-bottom: 2.5rem;
  position: relative;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  background: #f1f5f9;
  color: var(--text-main);
}

.comparison-table th.col-highlight,
.comparison-table td.col-highlight {
  background: #f0fdf4;
  border-left: 2px solid var(--accent-green);
  border-right: 2px solid var(--accent-green);
  font-weight: 700;
  color: #14532d;
}

.comparison-table th.col-highlight {
  background: #dcfce7;
  color: #166534;
  border-top: 3px solid var(--accent-green);
  font-size: 1.15rem;
}

.badge-tag-winner {
  display: inline-block;
  background: var(--accent-green);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.4rem;
  vertical-align: middle;
}

.status-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-green);
  font-weight: 700;
}

.status-cross {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #dc2626;
  font-weight: 600;
}

/* --- FAQ Accordion --- */
.faq-section {
  background: #ffffff;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-cta-box h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

/* --- Final CTA Section --- */
.final-cta-section {
  background: linear-gradient(135deg, #091e42 0%, #0d47a1 50%, #1a73e8 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.final-cta-note {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* --- Footer --- */
.footer {
  background: #0b1329;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-compliance-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.775rem;
  color: #cbd5e1;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

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

.footer-disclaimer {
  max-width: 700px;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

/* --- Mobile Floating Sticky CTA Bar --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.14);
  z-index: 999;
  border-top: 1px solid var(--border-light);
}

.mobile-sticky-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.btn-mobile-call {
  flex: 1.2;
  background: var(--accent-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  height: 48px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
  text-decoration: none;
  line-height: 1;
}

.btn-mobile-book {
  flex: 0.8;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26, 115, 232, 0.3);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- Modal Styles --- */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 66, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999999 !important;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}

.modal-backdrop.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(0) !important;
  z-index: 10000000 !important;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) !important;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  z-index: 50;
  pointer-events: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
  transform: scale(1.05);
}

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

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

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

.modal-success-state {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-green-light);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

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

.legal-modal-content h3 {
  color: var(--text-main);
  margin: 1.25rem 0 0.5rem 0;
  font-size: 1.05rem;
}

/* --- Floating Live Setup Specialist Toast (Every 10s) --- */
.live-toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.live-toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-avatar-box {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.toast-pulse-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-green);
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.toast-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.toast-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.toast-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.toast-message {
  font-size: 0.775rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.toast-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: underline;
  margin-top: 0.15rem;
  transition: color var(--transition-fast);
}

.toast-action-btn:hover {
  color: var(--accent-orange);
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
  margin-left: -0.25rem;
  align-self: flex-start;
  font-size: 1rem;
  line-height: 1;
  transition: color var(--transition-fast);
}

.toast-close-btn:hover {
  color: var(--text-main);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES (Mobile & Tablet)
   ========================================================================== */

/* --- Tablet / Medium Devices (max-width: 968px) --- */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-card.featured {
    transform: none;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Small Tablets & Large Phones (max-width: 900px) --- */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .trust-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .steps-grid::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .scam-grid-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .scam-bottom-action {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* --- Mobile Devices (max-width: 768px) --- */
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .top-bar-hours {
    display: none;
  }
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  .hero-section {
    padding: 2.5rem 0 3.5rem 0;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-card {
    padding: 1.5rem 1.25rem;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .problem-cta-bar {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.75rem 1.25rem;
  }
  .problem-cta-bar .btn {
    width: 100%;
  }
  .how-cta-banner {
    padding: 2rem 1.25rem;
  }
  .how-cta-banner .btn {
    width: 100%;
  }
  .scam-box-container {
    padding: 1.5rem 1.25rem;
  }
  .scam-column-danger,
  .scam-column-safe {
    padding: 1.25rem;
  }
  .scam-bottom-action .btn {
    width: 100%;
  }
  .final-cta-section {
    padding: 3.5rem 0;
  }
  .final-cta-title {
    font-size: 2.1rem;
  }
  .final-cta-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-buttons .btn {
    width: 100%;
  }
  .faq-cta-box .btn {
    width: 100%;
  }
  .mobile-sticky-cta {
    display: block;
  }
  .live-toast-notification {
    bottom: 82px; /* Position above bottom floating bar */
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 0.75rem 1rem;
  }
  .modal-card {
    padding: 1.75rem 1.25rem;
    max-height: 85vh;
  }
}

/* --- Small Mobile Phones (max-width: 540px) --- */
@media (max-width: 540px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-items-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .stat-card {
    padding: 1.25rem 0.75rem;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .stat-label {
    font-size: 0.775rem;
  }
  .btn-header-book {
    display: none;
  }
  .btn-header-call {
    font-size: 0.85rem;
    padding: 0 0.85rem;
    height: 40px;
  }
  .logo-brand {
    font-size: 1.1rem;
  }
  .logo-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .pricing-amount {
    font-size: 2.5rem;
  }
  .pricing-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   BLOG & KNOWLEDGE BASE HUB STYLES
   ========================================================================== */
.blog-hero {
  background: var(--hero-gradient);
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.blog-search-bar-wrap {
  max-width: 580px;
  margin: 1.75rem auto 0 auto;
  position: relative;
}

.blog-search-input {
  width: 100%;
  padding: 0.95rem 1.25rem 0.95rem 3rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  background: #ffffff;
  font-size: 1rem !important;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

.blog-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.blog-filter-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 3rem 0;
}

.filter-pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.25);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  cursor: pointer;
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.blog-card-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.blog-card-readtime {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-date {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Article Reader Modal */
.blog-modal-article {
  max-width: 780px;
}

.blog-article-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.blog-article-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.blog-article-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.blog-article-body {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.75;
}

.blog-article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 1.75rem 0 0.75rem 0;
}

.blog-article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 1.5rem 0 0.5rem 0;
}

.blog-article-body p {
  margin-bottom: 1.1rem;
  color: var(--text-secondary);
}

.blog-article-body ol,
.blog-article-body ul {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--text-secondary);
}

.blog-article-body li {
  margin-bottom: 0.65rem;
}

.blog-article-body code {
  background: #f1f5f9;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: var(--primary-dark);
}

.blog-cta-box {
  background: var(--hero-gradient);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  margin: 2rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.blog-cta-box h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.blog-cta-box p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

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

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-article-title {
    font-size: 1.45rem;
  }
}

