/* ============================================
   FLEXTEEM - Complete Stylesheet
   Virtual Healthcare Staffing Solutions
   ============================================ */

/* CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --primary-navy: #1B2A4A;
  --white: #FFFFFF;
  --teal: #2AADCF;
  --light-gray: #F5F7FA;
  --warm-coral: #FF6B5A;
  --dark-text: #2D3748;
  --light-text: #718096;
  
  /* Extended Colors */
  --navy-dark: #0F1A2E;
  --navy-light: #2A3D5C;
  --teal-dark: #1E8BA8;
  --teal-light: #4FC3E0;
  --coral-dark: #E55A4A;
  --gray-border: #E2E8F0;
  --gray-bg: #EDF2F7;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-popup: 400;
  --z-toast: 500;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark-text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--teal-dark);
}

a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

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

button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-navy);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

p {
  margin-bottom: var(--space-4);
}

.text-lead {
  font-size: var(--text-lg);
  color: var(--light-text);
  line-height: 1.8;
}

.text-small {
  font-size: var(--text-sm);
  color: var(--light-text);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: 800px;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  min-height: 44px;
  min-width: 44px;
}

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

.btn-primary:hover {
  background-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-coral {
  background-color: var(--warm-coral);
  color: var(--white);
}

.btn-coral:hover {
  background-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.header-scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo span {
  color: var(--teal);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--dark-text);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-4);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--light-gray);
}

.dropdown-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
  display: block;
}

.dropdown-item-desc {
  font-size: var(--text-xs);
  color: var(--light-text);
  display: block;
  margin-top: var(--space-1);
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

.header-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: var(--z-modal);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  padding: var(--space-24) var(--space-6) var(--space-6);
  transition: right var(--transition-base);
  z-index: var(--z-modal);
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: calc(var(--z-modal) - 1);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--primary-navy);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mobile-dropdown {
  padding-left: var(--space-4);
  margin-top: var(--space-2);
  display: none;
}

.nav-mobile-dropdown.active {
  display: block;
}

.nav-mobile-dropdown a {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--light-text);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 50%, var(--teal) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-content p {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust Badges */
.trust-badges {
  background: var(--light-gray);
  padding: var(--space-8) 0;
}

.trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--light-text);
}

/* ============================================
   INDUSTRY CARDS
   ============================================ */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-border);
}

.industry-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.industry-card h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.industry-card p {
  color: var(--light-text);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.learn-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.learn-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.learn-more:hover svg {
  transform: translateX(4px);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-content {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.service-item:hover {
  background: var(--light-gray);
}

.service-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.service-item-content h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.service-item-content h4 a {
  color: var(--primary-navy);
}

.service-item-content h4 a:hover {
  color: var(--teal);
}

.service-item-content p {
  font-size: var(--text-sm);
  color: var(--light-text);
  margin: 0;
}

.services-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-highlight {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-top: var(--space-8);
  border-left: 4px solid var(--teal);
}

.services-highlight p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--light-text);
}

.services-highlight strong {
  color: var(--primary-navy);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps {
  display: grid;
  gap: var(--space-8);
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--white);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--teal);
}

.step h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.step p {
  color: var(--light-text);
  max-width: 320px;
  margin: 0 auto;
}

/* Step Connector (Desktop) */
.step-connector {
  display: none;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: var(--primary-navy);
  padding: var(--space-16) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-border);
}

.testimonial-quote {
  font-size: var(--text-lg);
  color: var(--dark-text);
  font-style: italic;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #F59E0B;
  fill: #F59E0B;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-navy);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--light-text);
}

.testimonial-note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--light-text);
  font-style: italic;
}

/* ============================================
   INSURANCE EXPERTISE
   ============================================ */

.insurance-grid {
  display: grid;
  gap: var(--space-6);
}

.insurance-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-border);
}

.insurance-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--teal);
}

.insurance-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.insurance-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.insurance-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-grid {
  display: grid;
  gap: var(--space-6);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-border);
}

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

.blog-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-6);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  color: var(--light-text);
}

.blog-category {
  background: var(--teal);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-weight: 500;
}

.blog-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--primary-navy);
}

.blog-card h3 a:hover {
  color: var(--teal);
}

.blog-excerpt {
  font-size: var(--text-sm);
  color: var(--light-text);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--primary-navy);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--light-text);
  line-height: 1.7;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--primary-navy) 100%);
  padding: var(--space-20) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding-top: var(--space-20);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer-logo span {
  color: var(--teal);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: var(--space-4);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.footer-column h4 {
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer-contact {
  margin-top: var(--space-4);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-3);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--teal);
}

.hipaa-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.hipaa-badge svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
  background: var(--light-gray);
  padding: var(--space-4) 0;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.breadcrumbs a {
  color: var(--light-text);
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.breadcrumbs-separator {
  color: var(--light-text);
}

.breadcrumbs-current {
  color: var(--primary-navy);
  font-weight: 500;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-grid {
  display: grid;
  gap: var(--space-6);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--gray-border);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
  border-color: var(--teal);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  text-align: center;
  margin-bottom: var(--space-2);
}

.pricing-for {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--light-text);
  margin-bottom: var(--space-6);
}

.pricing-price {
  text-align: center;
  margin-bottom: var(--space-6);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-4xl);
  color: var(--primary-navy);
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--light-text);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* Cost Comparison */
.cost-comparison {
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-12);
}

.cost-comparison h3 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.comparison-grid {
  display: grid;
  gap: var(--space-6);
}

.comparison-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.comparison-item.in-house {
  border-left: 4px solid var(--warm-coral);
}

.comparison-item.flexteem {
  border-left: 4px solid var(--teal);
}

.comparison-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.comparison-cost {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.comparison-desc {
  font-size: var(--text-sm);
  color: var(--light-text);
}

.comparison-savings {
  text-align: center;
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-lg);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 173, 207, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--light-text);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-checkbox label {
  font-size: var(--text-sm);
  color: var(--light-text);
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--teal);
  text-decoration: underline;
}

.form-error {
  color: var(--warm-coral);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  gap: var(--space-12);
}

.contact-info h3 {
  margin-bottom: var(--space-4);
}

.contact-info > p {
  color: var(--light-text);
  margin-bottom: var(--space-6);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.contact-method-content h4 {
  font-size: var(--text-sm);
  color: var(--light-text);
  margin-bottom: var(--space-1);
}

.contact-method-content a,
.contact-method-content p {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-navy);
  margin: 0;
}

.calendly-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  border: 2px dashed var(--gray-border);
}

.calendly-placeholder h4 {
  margin-bottom: var(--space-3);
}

.calendly-placeholder p {
  color: var(--light-text);
  font-size: var(--text-sm);
}

/* ============================================
   BLOG POST
   ============================================ */

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: var(--space-8);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
}

.blog-post-date {
  font-size: var(--text-sm);
  color: var(--light-text);
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.blog-post-tag {
  background: var(--light-gray);
  color: var(--light-text);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
}

.blog-post-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

.blog-post-image img {
  width: 100%;
  height: auto;
}

.blog-post-content {
  font-size: var(--text-lg);
  line-height: 1.8;
}

.blog-post-content h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.blog-post-content h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.blog-post-content p {
  margin-bottom: var(--space-5);
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.blog-post-content ul {
  list-style: disc;
}

.blog-post-content ol {
  list-style: decimal;
}

.blog-post-content li {
  margin-bottom: var(--space-2);
}

.blog-post-content strong {
  color: var(--primary-navy);
}

.blog-post-content a {
  color: var(--teal);
  text-decoration: underline;
}

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-border);
}

.social-share-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
}

.social-share-buttons {
  display: flex;
  gap: var(--space-2);
}

.social-share-btn {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-share-btn:hover {
  background: var(--teal);
}

.social-share-btn svg {
  width: 18px;
  height: 18px;
  color: var(--light-text);
}

.social-share-btn:hover svg {
  color: var(--white);
}

/* Related Articles */
.related-articles {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--gray-border);
}

.related-articles h3 {
  margin-bottom: var(--space-6);
}

/* Blog CTA Box */
.blog-cta {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-10);
  border-left: 4px solid var(--teal);
}

.blog-cta h4 {
  margin-bottom: var(--space-3);
}

.blog-cta p {
  color: var(--light-text);
  margin-bottom: var(--space-5);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.legal-content h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.legal-content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

.legal-notice {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
  border-left: 4px solid var(--teal);
}

.legal-notice p {
  margin: 0;
  font-weight: 500;
}

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-12);
}

.error-content {
  max-width: 500px;
}

.error-code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(6rem, 15vw, 10rem);
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.error-content h1 {
  margin-bottom: var(--space-4);
}

.error-content p {
  color: var(--light-text);
  margin-bottom: var(--space-8);
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.error-search {
  max-width: 400px;
  margin: 0 auto;
}

.error-search input {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  z-index: var(--z-sticky);
}

.sticky-mobile-cta.active {
  display: flex;
}

.sticky-mobile-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
}

.sticky-mobile-phone svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.sticky-mobile-cta .btn {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */

.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-popup);
}

.exit-popup.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.exit-popup.active .exit-popup-content {
  transform: translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.exit-popup-close:hover {
  background: var(--gray-border);
}

.exit-popup-close svg {
  width: 16px;
  height: 16px;
  color: var(--dark-text);
}

.exit-popup h3 {
  margin-bottom: var(--space-3);
  padding-right: var(--space-8);
}

.exit-popup p {
  color: var(--light-text);
  margin-bottom: var(--space-6);
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.exit-popup-form input {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
}

.exit-popup-form input:focus {
  outline: none;
  border-color: var(--teal);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .header-actions {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .step-connector {
    display: block;
    position: absolute;
    top: 32px;
    left: calc(100% + 20px);
    width: calc(100% - 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
  }
  
  .step:last-child .step-connector {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insurance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-content {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* Mobile Specific */
@media (max-width: 767px) {
  .section {
    padding: var(--space-12) 0;
  }
  
  .hero {
    min-height: auto;
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
  }
  
  .hero-content h1 {
    font-size: var(--text-3xl);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .sticky-mobile-cta {
    display: flex;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .page-header {
    padding: calc(80px + var(--space-10)) 0 var(--space-10);
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .exit-popup {
    display: none !important;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .sticky-mobile-cta,
  .back-to-top,
  .exit-popup,
  .cta-section {
    display: none !important;
  }
  
  body {
    padding: 0;
  }
  
  .section {
    padding: var(--space-6) 0;
    page-break-inside: avoid;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-navy: #000000;
    --dark-text: #000000;
    --light-text: #333333;
    --teal: #0066CC;
  }
}

/* Focus Visible Polyfill */
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}
