/* ============================================
   MentionPulse - Static Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
  --background: #ffffff;
  --foreground: #141414;
  --secondary: #f7f7f7;
  --secondary-foreground: #141414;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --border: #e6e6e6;
  --radius: 0.75rem;
  
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  padding: 1rem 0;
  background-color: transparent;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--foreground);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: 700;
  font-size: 1.125rem;
  transition: transform 0.2s;
}

.navbar-brand:hover .logo-icon {
  transform: scale(1.05);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.navbar .nav-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.2s;
}

.navbar .nav-link:hover {
  color: var(--foreground);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--foreground);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar .nav-link:hover::after {
  transform: scaleX(1);
}

/* ============================================
   Badge Premium
   ============================================ */
.badge-premium {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.badge-light {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  padding: 9rem 0 5rem;
  background-color: var(--background);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 9rem 0 7rem;
  }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, #f2f2f2 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, #f5f5f5 0%, transparent 50%);
  pointer-events: none;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.trust-avatars {
  display: flex;
  margin-left: -0.25rem;
}

.trust-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.25rem;
}

.trust-avatar i {
  font-size: 0.75rem;
  color: var(--foreground);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #141414 0%, #404040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-input-group {
    flex-direction: row;
  }
}

.hero-input-group .form-control {
  height: 56px;
  padding: 0 1.25rem;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--background);
}

.hero-input-group .form-control:focus {
  border-color: var(--foreground);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.hero-input-group .btn {
  height: 56px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.2s;
}

.hero-input-group .btn:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-lg);
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 4rem;
}

.hero-trust-indicators span {
  display: flex;
  align-items: center;
}

.featured-in {
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.featured-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.featured-logos span {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.25);
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .featured-logos span {
    font-size: 1.5rem;
  }
}

.featured-logos span:hover {
  color: rgba(0, 0, 0, 0.4);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
  padding: 5rem 0;
  background-color: rgba(247, 247, 247, 0.5);
}

@media (min-width: 768px) {
  .features-section {
    padding: 5rem 0;
  }
}

.feature-card {
  padding: 2rem 2.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--background);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .how-it-works-section {
    padding: 5rem 0;
  }
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 40px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background-color: var(--border);
  z-index: 0;
}

.step-item {
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--foreground);
  color: var(--background);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.step-arrow {
  position: absolute;
  top: 40px;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  z-index: 20;
  background-color: var(--background);
  padding: 0 0.5rem;
}

.step-arrow i {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.col-md-4:last-child .step-arrow {
  display: none !important;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
  padding: 5rem 0;
  background-color: var(--foreground);
  color: var(--background);
}

@media (min-width: 768px) {
  .why-choose-section {
    padding: 5rem 0;
  }
}

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--background);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}

@media (min-width: 768px) {
  .why-title {
    font-size: 3rem;
  }
}

.why-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.benefit-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check i {
  font-size: 0.875rem;
  color: var(--foreground);
}

.benefits-list span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem 2.5rem;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--background);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .stat-value {
    font-size: 4rem;
  }
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.stat-sublabel {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  padding: 5rem 0;
  background-color: rgba(247, 247, 247, 0.5);
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 5rem 0;
  }
}

.company-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-bottom: 4rem;
}

.company-logos span {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.25);
  transition: color 0.2s;
}

.company-logos span:hover {
  color: rgba(0, 0, 0, 0.4);
}

.testimonial-card {
  padding: 2rem 2.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow-xl);
}

.quote-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quote-icon i {
  font-size: 1.5rem;
  color: var(--muted-foreground);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars i {
  font-size: 1.25rem;
  color: var(--foreground);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: 700;
  font-size: 0.875rem;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 5rem 0;
  }
}

.pricing-card {
  min-height: 632px;
  padding: 2rem 2.5rem;
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: var(--shadow-xl);
}

.pricing-card-highlighted {
  background-color: var(--foreground);
  border-color: var(--foreground);
  box-shadow: var(--shadow-2xl);
  transform: scale(1.02);
  z-index: 10;
}

@media (min-width: 992px) {
  .pricing-card-highlighted {
    transform: scale(1.05);
  }
}

.most-popular-badge {
  border: 1px solid #bbbbbb;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-card:not(.pricing-card-highlighted) .plan-name {
  color: var(--foreground);
}

.pricing-card-highlighted .plan-name {
  color: var(--background);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.pricing-card:not(.pricing-card-highlighted) .plan-price {
  color: var(--foreground);
}

.pricing-card-highlighted .plan-price {
  color: var(--background);
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card:not(.pricing-card-highlighted) .plan-price span {
  color: var(--muted-foreground);
}

.pricing-card-highlighted .plan-price span {
  color: rgba(255, 255, 255, 0.6);
}

.plan-description {
  font-size: 0.875rem;
}

.pricing-card:not(.pricing-card-highlighted) .plan-description {
  color: var(--muted-foreground);
}

.pricing-card-highlighted .plan-description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card:not(.pricing-card-highlighted) .check-icon {
  background-color: rgba(0, 0, 0, 0.1);
}

.pricing-card-highlighted .check-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.check-icon i {
  font-size: 0.75rem;
}

.pricing-card:not(.pricing-card-highlighted) .check-icon i {
  color: var(--foreground);
}

.pricing-card-highlighted .check-icon i {
  color: var(--background);
}

.pricing-features span {
  font-size: 0.875rem;
}

.pricing-card:not(.pricing-card-highlighted) .pricing-features span {
  color: var(--foreground);
}

.pricing-card-highlighted .pricing-features span {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card .btn {
  padding: 10px;
  font-weight: 600;
  transition: all 0.2s;
}

.pricing-card .btn:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-lg);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 3rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background-color: rgba(247, 247, 247, 0.5);
}

.cta-card {
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: var(--foreground);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem 3rem;
  }
}

@media (min-width: 992px) {
  .cta-card {
    padding: 5rem 4rem;
  }
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 50% 50%, white 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--background);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-subtitle {
    font-size: 1.25rem;
  }
}

.cta-section .btn-light {
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
}

.cta-section .btn-light:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-xl);
}

.cta-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-trust-indicators span {
  display: flex;
  align-items: center;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
  background-color: var(--foreground);
  color: var(--background);
  /* padding-top: 4rem; */
}

.footer-brand {
  text-decoration: none;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--background);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--background);
  letter-spacing: -0.025em;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--background);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--background);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--background);
}

/* ============================================
   Utility Classes
   ============================================ */
.rounded-3 {
  border-radius: 12px !important;
}

.rounded-pill {
  border-radius: 9999px !important;
}
@media (max-width: 768px) {
  .input-group>.form-control{
    width: 100%;
    max-width: 100%;
  }
}


.ai-logos-wrapper {
    width: 100%;
  }

  .ai-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .logo-item {
    flex: 1 1 120px;
    text-align: center;
  }

  .logo-item img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
  }

.page-card-pct{
	background: #f5f5f5;
}

@media (max-width: 767px) {
    .navbar {
        background: #fff ;
    }
}

.text-orange{
	color: #c65114 !important;
}

.bg-orange-main .trust-avatar{
   background-color: rgb(196 81 21 / 46%)  !important;
}

.step-number {
    background-color: #c65114 !important;
}

.feature-card:hover {
    border-color: rgb(182 78 25 / 40%) !important;
    box-shadow: var(--shadow-xl);
}

.benefit-check {
    background-color: #b84e18;
}

.benefit-check i {
    color: #ffffff !important;
}

.testimonial-card:hover {
    border-color:  rgb(182 78 25 / 40%) !important;
}

.stars i {
    color: #c65114;
}

.author-avatar {
    background-color: #c65114;
}
