/* ===========================================
   Cargo Credible - Bold & Industrial Theme
   Homepage Styles
   =========================================== */

/* CSS Variables */
:root {
  --forge-orange: #E84A1D;
  --ember: #C13A12;
  --steel-blue: #1E3A5F;
  --midnight-steel: #0F1D2F;
  --charcoal: #1A1A1A;
  --smoke: #F4F5F7;
  --safety-green: #22C55E;
  --highway-yellow: #FACC15;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(15, 29, 47, 0.92) 0%, rgba(30, 58, 95, 0.88) 100%),
              url("/static/images/landing-page-truck2.fa47ea99d130.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 29, 47, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 74, 29, 0.15);
  border: 1px solid rgba(232, 74, 29, 0.3);
  color: #FF8A65;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
  color: var(--forge-orange);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--forge-orange);
  opacity: 0.4;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.6s ease-out 0.15s both;
}

/* Hero Value Props List */
.hero-value-props {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 520px;
  text-align: left;
  animation: fadeInUp 0.6s ease-out 0.15s both;
}

.hero-value-props li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-value-props li svg {
  flex-shrink: 0;
  color: var(--forge-orange);
  margin-top: 2px;
}

.hero-value-props li strong {
  color: white;
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-value-props {
    padding: 0 1rem;
  }

  .hero-value-props li {
    font-size: 0.9375rem;
  }
}

/* ===========================================
   HERO SEARCH FORM - Multi-field Grid
   =========================================== */
.hero-search-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.search-field {
  display: flex;
  flex-direction: column;
}

.search-field--wide {
  /* Takes more space */
}

.search-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.search-input {
  background: white;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.search-input:focus {
  outline: none;
  border-color: var(--forge-orange);
  box-shadow: 0 0 0 3px rgba(232, 74, 29, 0.2);
}

.search-input::placeholder {
  color: #9CA3AF;
}

.search-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.search-form-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.btn-search-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: linear-gradient(135deg, var(--forge-orange) 0%, var(--ember) 100%);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 3rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 74, 29, 0.35);
}

.btn-search-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 74, 29, 0.45);
}

@media (max-width: 640px) {
  .hero-search-form {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .search-form-grid {
    grid-template-columns: 1fr;
  }

  .btn-search-primary {
    width: 100%;
  }
}

.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--forge-orange) 0%, var(--ember) 100%);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 74, 29, 0.35);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 74, 29, 0.45);
}

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

.btn-clear {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clear:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* ===========================================
   TRUST STATS BAR
   =========================================== */
.trust-stats {
  background: linear-gradient(135deg, var(--steel-blue) 0%, var(--midnight-steel) 100%);
  padding: 2.5rem 0;
  position: relative;
}

.trust-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 74, 29, 0.5), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forge-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===========================================
   HOW IT WORKS SECTION - Clean White Cards
   =========================================== */
.how-it-works {
  background: white;
  padding: 5rem 1.5rem;
  position: relative;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forge-orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 1.5rem;
  }
}

.step-card {
  background: var(--smoke);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--forge-orange);
}

.step-number {
  display: none;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon colors - brand accents */
.step-card:nth-child(1) .step-icon {
  background: rgba(232, 74, 29, 0.1);
}
.step-card:nth-child(1) .step-icon svg {
  color: var(--forge-orange);
}

.step-card:nth-child(2) .step-icon {
  background: rgba(30, 58, 95, 0.1);
}
.step-card:nth-child(2) .step-icon svg {
  color: var(--steel-blue);
}

.step-card:nth-child(3) .step-icon {
  background: rgba(232, 74, 29, 0.1);
}
.step-card:nth-child(3) .step-icon svg {
  color: var(--forge-orange);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.step-description {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
  text-align: center;
}

/* ===========================================
   DATA PREVIEW SECTION - Light Background
   =========================================== */
.data-preview {
  background: var(--smoke);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.data-preview .section-title {
  color: var(--charcoal);
}

.data-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

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

.sample-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #E5E7EB;
}

.sample-card-header {
  background: linear-gradient(135deg, var(--steel-blue) 0%, var(--midnight-steel) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.authority-badge {
  background: var(--safety-green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.sample-card-body {
  padding: 1.5rem;
}

.data-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E5E7EB;
}

.data-row:last-child {
  border-bottom: none;
}

.data-label {
  font-size: 0.875rem;
  color: #6B7280;
}

.data-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.data-features {
  color: var(--charcoal);
}

.data-features h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #4B5563;
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--forge-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================================
   SECTION UTILITIES
   =========================================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forge-orange);
  text-decoration: none;
  transition: color 0.2s;
}

.section-link:hover {
  color: var(--ember);
}

/* ===========================================
   TOP RATED COMPANIES SECTION
   =========================================== */
.top-companies {
  background: var(--smoke);
  padding: 4rem 0;
}

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

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

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

.company-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--forge-orange);
}

.company-card-header {
  margin-bottom: 0.75rem;
}

.company-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.company-card-type {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--steel-blue);
  background: rgba(30, 58, 95, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.company-card-details {
  flex: 1;
  margin-bottom: 1rem;
}

.company-card-location {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
}

.company-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-card-rating .stars {
  display: flex;
  gap: 2px;
}

.company-card-rating .star {
  width: 16px;
  height: 16px;
}

.company-card-rating .star.filled {
  color: var(--highway-yellow);
}

.company-card-rating .star.empty {
  color: #D1D5DB;
}

.company-card-rating .rating-count {
  font-size: 0.8125rem;
  color: #9CA3AF;
}

.company-card-footer {
  padding-top: 0.75rem;
  border-top: 1px solid #E5E7EB;
}

.company-card-dot {
  font-size: 0.8125rem;
  color: #6B7280;
  font-family: monospace;
}

/* ===========================================
   RECENT REVIEWS SECTION
   =========================================== */
.recent-reviews {
  background: white;
  padding: 4rem 0;
}

.review-count-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: white;
  background: var(--steel-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--smoke);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(232, 74, 29, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating .star {
  width: 18px;
  height: 18px;
}

.star-rating .star.filled {
  color: var(--highway-yellow);
}

.star-rating .star.empty {
  color: #D1D5DB;
}

.review-date {
  font-size: 0.8125rem;
  color: #9CA3AF;
}

.review-company-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.review-company-name:hover {
  color: var(--forge-orange);
}

.review-company-dot {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.review-comment {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.reviewer-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--steel-blue);
}

.reviewer-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--safety-green);
  letter-spacing: 0.02em;
}

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--smoke);
  border-radius: 12px;
}

.reviews-empty svg {
  color: #D1D5DB;
  margin-bottom: 1rem;
}

.reviews-empty h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem 0;
}

.reviews-empty p {
  color: #6B7280;
  margin: 0 0 1.5rem 0;
}

.btn-secondary {
  display: inline-block;
  background: var(--steel-blue);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--midnight-steel);
}

/* ===========================================
   MISSION SECTION - Light with Accent Border
   =========================================== */
.mission-section {
  position: relative;
  background: white;
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 1px solid #E5E7EB;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--smoke);
  border-radius: 16px;
  border-left: 4px solid var(--forge-orange);
}

.mission-section .section-eyebrow {
  color: var(--forge-orange);
}

.mission-section .section-title {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.8;
}

/* ===========================================
   CTA BANNER - Dark Industrial with Orange Accents
   =========================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A2A2A 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle orange accent line at top */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--forge-orange), transparent);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--forge-orange) 0%, var(--ember) 100%);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 74, 29, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 74, 29, 0.5);
}

.btn-cta-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-down {
  animation: fadeInDown 0.6s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.screen-center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================
   HOVER & INTERACTIVE ANIMATIONS
   =========================================== */

/* Stats counter animation */
.stat-item .stat-number {
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

/* Feature list item hover */
.feature-list li {
  transition: transform 0.2s ease, padding-left 0.2s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
  padding-left: 0.5rem;
}

/* CTA button pulse on idle */
.btn-cta-primary {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(232, 74, 29, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(232, 74, 29, 0.6);
  }
}

/* Review card hover */
.review-card {
  transition: all 0.3s ease;
}
