/* ==========================================================================
   AyeTech Service Pages — inherits design system from styles.css
   ========================================================================== */

:root {
  --black: #0a0a0b;
  --white: #fafafa;
  --gray-1: #6b6b73;
  --gray-2: #d4d4d8;
  --gray-3: #f4f4f5;
  --brand: #f06449;
  --brand-hover: #e8523a;
  --brand-text: #b5402c;
  --brand-text-hover: #922215;
  --brand-light: rgba(240, 100, 73, 0.08);
  --brand-glow: rgba(240, 100, 73, 0.25);
  --accent: #f06449;
  --accent-2: #ff8a73;
  --text-primary: var(--black);
  --text-secondary: var(--gray-1);
  --text-muted: #6b6b73;
  --bg: var(--white);
  --bg-section: var(--gray-3);
  --border-color: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease);
  --transition-fast: 0.15s var(--ease);
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 64px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: var(--header-height);
}

/* ==========================================================================
   Header (shared with main site)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--header-height);
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
}

.navbar { width: 100%; height: var(--header-height); display: flex; align-items: center; }

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 1.5rem;
}

/* Focus indicators */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .btn:focus-visible, .nav-link:focus-visible { outline: 2px solid #f06449; outline-offset: 2px; }

.navbar-logo { display: flex; align-items: center; text-decoration: none; height: var(--header-height); }
.logo-wrapper { display: flex; align-items: center; height: var(--header-height); }
.logo-wrapper img { height: 48px; width: auto; display: block; object-fit: contain; }

.navbar-links { display: flex; align-items: center; gap: 0; list-style: none; }

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  transition: color var(--transition-fast), background var(--transition-fast);
  display: block;
  opacity: 0.8;
}

.nav-link:hover { opacity: 1; background: rgba(0, 0, 0, 0.04); }

.client-portal-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 980px;
  font-weight: 500;
  font-size: 0.8125rem;
  background: var(--black);
  color: white;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  margin-left: 0.5rem;
}

.client-portal-btn:hover { background: var(--brand); box-shadow: 0 2px 10px rgba(240, 100, 73, 0.3); }
.client-portal-btn svg { display: none; }

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  color: var(--text-primary);
  height: 40px;
  width: 40px;
  border-radius: 8px;
  z-index: 10000;
}

.mobile-menu-toggle svg { width: 20px; height: 20px; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: var(--bg-section);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-1);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: 980px;
  font-weight: 400;
  font-size: 1.0625rem;
  transition: background var(--transition-fast);
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--brand-hover);
  color: white;
}

.hero-cta svg { width: 18px; height: 18px; }

/* ==========================================================================
   Main Content
   ========================================================================== */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section {
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-1);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-category {
  font-size: 0.8125rem;
  color: var(--brand-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-description, .service-desc {
  color: var(--gray-1);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================================
   Feature Cards (simple icon + title + description layout)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.feature-desc {
  color: var(--gray-1);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Pricing Section (single card layout)
   ========================================================================== */
.pricing-section {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.9375rem;
  color: var(--gray-1);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: 980px;
  font-weight: 400;
  font-size: 1.0625rem;
  transition: background var(--transition-fast);
}

.pricing-cta:hover {
  background: var(--brand-hover);
  color: white;
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.pricing-card.popular {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 980px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.plan-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.plan-price-unit {
  font-size: 0.9375rem;
  color: var(--gray-1);
  font-weight: 400;
}

.plan-description {
  color: var(--gray-1);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.plan-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 980px;
  font-weight: 400;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-hover);
  color: white;
}

.btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   CTA Sections
   ========================================================================== */
.cta-section {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.0625rem;
  color: var(--gray-1);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   Stats
   ========================================================================== */
.support-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}

.stat-label {
  color: var(--gray-1);
  font-weight: 400;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0;
}

.process-step {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.process-number {
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 auto 1.25rem auto;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-desc {
  color: var(--gray-1);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   Essential 8
   ========================================================================== */
.essential8-section {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 3rem 0;
}

.essential8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.essential8-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.essential8-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.essential8-number {
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 600;
  flex-shrink: 0;
}

.essential8-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ==========================================================================
   Discovery Section
   ========================================================================== */
.discovery-section {
  background: #000;
  padding: 5rem 2rem;
  text-align: center;
}

.discovery-container {
  max-width: 640px;
  margin: 0 auto;
}

.discovery-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.discovery-subtitle {
  font-size: 1.0625rem;
  color: #a1a1a6;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.discovery-btn {
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 980px;
  font-size: 1.0625rem;
  font-weight: 400;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  text-decoration: none;
}

.discovery-btn:hover {
  background: var(--brand-hover);
  color: white;
}

/* ==========================================================================
   Inline Form
   ========================================================================== */
.inline-form-section {
  background: #000;
  padding: 5rem 2rem;
}

.inline-form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.inline-form-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.inline-form-subtitle {
  color: #a1a1a6;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-size: 1.0625rem;
}

.inline-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: left;
}

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

.inline-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.inline-contact-form .form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1a6;
}

.inline-contact-form .form-group input,
.inline-contact-form .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font);
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.inline-contact-form .form-group input::placeholder,
.inline-contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.inline-contact-form .form-group input:focus,
.inline-contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(240, 100, 73, 0.2);
}

.inline-contact-form .form-submit-btn,
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 980px;
  font-size: 1.0625rem;
  font-weight: 400;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.inline-contact-form .form-submit-btn:hover,
.form-submit-btn:hover {
  background: var(--brand-hover);
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 95vw;
  padding: 2.5rem;
  position: relative;
  animation: modalIn 0.25s var(--ease);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-section);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.125rem;
  color: var(--gray-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.modal-close:hover { background: var(--border-color); }

@keyframes modalIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0a0a0b;
  color: #a1a1aa;
  border-top: none;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #71717a;
  margin-top: 0.5rem;
}

.footer-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #e4e4e7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: #71717a; text-decoration: none; font-size: 0.8125rem; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: #e4e4e7; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.8125rem; margin-bottom: 0.875rem; line-height: 1.5; color: #71717a; }
.footer-contact-item svg { width: 14px; height: 14px; color: #52525b; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #71717a; text-decoration: none; transition: color 0.2s var(--ease); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #52525b;
}

.footer-bottom a { color: #52525b; text-decoration: none; transition: color 0.2s var(--ease); }
.footer-bottom a:hover { color: #a1a1aa; }
.footer-legal-links { display: flex; gap: 1.25rem; }

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
  filter: brightness(10);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  padding: 0.875rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8125rem;
  color: var(--gray-1);
}

.breadcrumbs a { color: var(--gray-1); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-text); }
.breadcrumbs .breadcrumb-sep { margin: 0 0.5rem; color: var(--gray-2); }
.breadcrumbs .breadcrumb-current { color: var(--text-primary); font-weight: 500; }

/* ==========================================================================
   Mobile CTA Bar
   ========================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(251, 251, 253, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.625rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-cta-inner { display: flex; gap: 0.5rem; max-width: 480px; margin: 0 auto; }

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 0.75rem;
  border-radius: 980px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font);
}

.mobile-cta-call { background: var(--bg-section); color: var(--text-primary); }
.mobile-cta-contact { background: var(--brand); color: white; }
.mobile-cta-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Table responsive wrapper */
.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table table {
  min-width: 500px;
}

@media (max-width: 768px) {
  :root { --header-height: 56px; }

  body { padding-bottom: 64px; }

  .mobile-cta-bar { display: block; }
  .mobile-menu-toggle { display: flex; }

  .navbar-container { padding: 0 1rem; }
  .logo-wrapper img { height: 40px; }

  .navbar-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(251, 251, 253, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 9998;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
  }

  .navbar-links.mobile-menu-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link, .navbar-links .client-portal-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0;
    opacity: 1;
  }

  .navbar-links .client-portal-btn {
    background: transparent;
    color: var(--brand-text);
    margin: 0;
    border-radius: 0;
  }

  .hero-section { padding: 3rem 1.5rem; }
  .main-content { padding: 3rem 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .essential8-grid { grid-template-columns: 1fr; }

  .essential8-section { padding: 2rem 1.5rem; }
  .cta-section { padding: 3rem 1.5rem; }
  .discovery-section { padding: 4rem 1.5rem; }
  .inline-form-section { padding: 4rem 1.5rem; }
  .inline-contact-form .form-row { grid-template-columns: 1fr; }

  .site-footer { padding-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.5rem 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; padding: 2rem 1rem; }
  .hero-section { padding: 2.5rem 1rem; }
  .main-content { padding: 2rem 1rem; }
  .cta-section { padding: 2rem 1rem; }
  .essential8-section { padding: 1.5rem 1rem; }
}
