/* ===================================================================
   FREELANCEA HIRING PAGES - GLOBAL STYLESHEET
   Version: 1.0
   Usage: <link rel="stylesheet" href="../assets/css/styles.css" />
   =================================================================== */

/* ===================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   =================================================================== */
:root {
  /* Brand Colors */
  --primary: #C62E2E;
  --primary-dark: #8B1F1F;
  --primary-light: #E84A4A;
  --secondary: #1e1e1e;
  --accent: #C1E172;
  --accent-dark: #A8C95E;
  
  /* Neutral Colors */
  --background: #f8f9fa;
  --white: #ffffff;
  --snow: #fffafa;
  --text-dark: #1e1e1e;
  --text-muted: #6c757d;
  --text-light: #9ca3af;
  --border: #e0e0e0;
  --border-light: #f0f0f0;
  
  /* Status Colors */
  --success: #28a745;
  --warning: #ffc107;
  --info: #17a2b8;
  --danger: #dc3545;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 4px 15px rgba(198, 46, 46, 0.3);
  --shadow-primary-hover: 0 6px 20px rgba(198, 46, 46, 0.4);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ===================================================================
   2. GLOBAL RESET & BASE STYLES
   =================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
}

::selection {
  background-color: var(--primary);
  color: white;
}

/* ===================================================================
   3. TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

strong, b {
  font-weight: 600;
}

/* Utility Typography Classes */
.text-muted {
  color: var(--text-muted) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-white {
  color: white !important;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================================================
   4. CONTAINER & LAYOUT
   =================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1400px;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* ===================================================================
   5. BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-hover);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--snow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: var(--text-dark);
}

/* Button Sizes */
.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Icon Buttons */
.btn-icon {
  padding: 0.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* ===================================================================
   6. CARDS
   =================================================================== */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-body {
  margin-bottom: var(--spacing-md);
}

.card-footer {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border);
}

/* Card Variants */
.card-bordered {
  border: 2px solid var(--border);
  box-shadow: none;
}

.card-flat {
  box-shadow: none;
  border: 1px solid var(--border);
}

.card-elevated {
  box-shadow: var(--shadow-xl);
}

/* ===================================================================
   7. HERO SECTION
   =================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(193, 225, 114, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--snow);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
  max-width: 650px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================================================
   8. SECTIONS
   =================================================================== */
section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.section-gray {
  background-color: var(--background);
}

.section-white {
  background-color: white;
}

.section-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.section-primary h2,
.section-primary h3,
.section-primary p {
  color: white;
}

/* ===================================================================
   9. TRUST BAR / BADGES
   =================================================================== */
.trust-bar {
  background: white;
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--background);
  color: var(--text-dark);
}

.badge-primary {
  background: var(--primary);
  color: white;
}

.badge-success {
  background: var(--success);
  color: white;
}

.badge-accent {
  background: var(--accent);
  color: var(--text-dark);
}

/* ===================================================================
   10. STATS / METRICS
   =================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===================================================================
   11. PRICING TABLE
   =================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table thead {
  background: var(--primary);
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table tbody tr:hover {
  background: var(--background);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===================================================================
   12. TESTIMONIALS
   =================================================================== */
.testimonial-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ===================================================================
   13. FAQ SECTION
   =================================================================== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-base);
}

.faq-question:hover {
  background: var(--background);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer.active {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================================
   14. CTA SECTIONS
   =================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--spacing-3xl) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(193, 225, 114, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--snow);
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: var(--z-sticky);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.sticky-cta-bar .btn {
  padding: 0.75rem 2rem;
}

/* ===================================================================
   15. TAGS / CHIPS
   =================================================================== */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--background);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
  border: 1px solid var(--border);
}

.tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===================================================================
   16. BREADCRUMBS
   =================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-md) 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--border);
}

/* ===================================================================
   17. NOTIFICATION TOAST
   =================================================================== */
.notification-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: var(--z-popover);
  transform: translateX(-120%);
  transition: transform var(--transition-base);
  max-width: 400px;
}

.notification-toast.show {
  transform: translateX(0);
}

.notification-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.notification-content {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* ===================================================================
   18. SERVICE CARDS
   =================================================================== */
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.service-description {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.service-price {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: 0.75rem;
}

/* ===================================================================
   19. HOW IT WORKS
   =================================================================== */
.steps-container {
  display: grid;
  gap: var(--spacing-xl);
  position: relative;
}

.step-card {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.step-description {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================================
   20. UTILITIES
   =================================================================== */

/* Spacing Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: var(--spacing-xs) !important; }
.p-2 { padding: var(--spacing-sm) !important; }
.p-3 { padding: var(--spacing-md) !important; }
.p-4 { padding: var(--spacing-lg) !important; }
.p-5 { padding: var(--spacing-xl) !important; }
/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
/* ===================================================================
21. RESPONSIVE BREAKPOINTS
=================================================================== */
/* Tablet (768px and below) */
@media (max-width: 768px) {
:root {
--spacing-3xl: 4rem;
--spacing-2xl: 3rem;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
.hero-section {
min-height: auto;
padding: 4rem 0;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.125rem;
}
.hero-cta {
flex-direction: column;
}
.hero-cta .btn {
width: 100%;
}
.hero-stats {
gap: var(--spacing-md);
}
section {
padding: 3rem 0;
}
.grid-2,
.grid-3,
.grid-4 {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: 1fr;
}
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
padding: 0.875rem 2rem;
font-size: 0.95rem;
width: 100%;
}
.btn-lg {
padding: 1rem 2.5rem;
font-size: 1rem;
}
.card {
padding: var(--spacing-md);
}
.step-card {
flex-direction: column;
text-align: center;
}
.step-number {
margin: 0 auto;
}
.pricing-table {
font-size: 0.875rem;
}
.pricing-table th,
.pricing-table td {
padding: 0.75rem 1rem;
}
.trust-items {
gap: var(--spacing-md);
}
.trust-item {
flex-direction: column;
text-align: center;
}
.cta-buttons {
flex-direction: column;
}
.cta-buttons .btn {
width: 100%;
}
.sticky-cta-bar .container {
flex-direction: column;
text-align: center;
}
.sticky-cta-bar .btn {
width: 100%;
}
.notification-toast {
left: 1rem;
right: 1rem;
max-width: calc(100% - 2rem);
}
.testimonial-card {
padding: var(--spacing-md);
}
.faq-question {
font-size: 1rem;
padding: 1rem;
}
.faq-answer-content {
padding: 0 1rem 1rem;
}
}
/* Mobile (480px and below) */
@media (max-width: 480px) {
h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
.container {
padding: 0 1rem;
}
.hero-section {
padding: 3rem 0;
}
.hero-title {
font-size: 1.75rem;
}
.hero-subtitle {
font-size: 1rem;
}
.stat-number {
font-size: 2rem;
}
.service-icon,
.stat-icon {
font-size: 2.5rem;
}
.btn {
padding: 0.75rem 1.5rem;
}
.btn-lg {
padding: 0.875rem 2rem;
}
.step-title {
font-size: 1.125rem;
}
}
/* Desktop (1024px and above) */
@media (min-width: 1024px) {
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.hero-cta {
flex-direction: row;
}
.step-card:hover {
transform: translateX(12px);
}
}
/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
.container {
max-width: 1200px;
}
.hero-title {
font-size: 3.5rem;
}
.hero-subtitle {
font-size: 1.375rem;
}
}