/* Homepage Specific Styles */

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 5rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-primary) 50%, var(--victory-green) 100%);
  background-size: 200% 200%;
  opacity: 0.3;
  animation: gradient-shift 8s ease infinite;
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-stats {
    gap: 2rem;
  }
}

.stat-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(200, 157, 92, 0.5);
}

.stat-icon {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===== Problem Section ===== */
.section-header {
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-center;
  gap: 1.5rem;
  border: 2px solid transparent;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
}

.problem-icon {
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-full);
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.problem-list li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.better-way {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  animation: fade-in 0.6s ease-out;
}

.better-way .arrow {
  font-size: 2.5rem;
}

/* ===== Comparison Table ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: var(--navy);
  color: var(--white);
}

.comparison-table thead th {
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
}

.comparison-table thead th.highlight-col {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr.highlight-row {
  background: rgba(200, 157, 92, 0.05);
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
}

.criteria-cell {
  font-weight: 600;
  color: var(--navy);
}

.others-cell {
  color: var(--muted-foreground);
}

.aliff-cell {
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== Icons ===== */
.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}

/* ===== Team Section ===== */
.team-grid {
  margin-bottom: 3rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-center;
  gap: 1rem;
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.team-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.team-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
}

.team-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.team-list li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Quality Process */
.quality-process-card {
  background: linear-gradient(to bottom right, rgba(200, 157, 92, 0.1), rgba(16, 185, 129, 0.1));
  border: 2px solid rgba(200, 157, 92, 0.3);
  margin-top: 3rem;
}

.quality-gate {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border: 2px solid;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.pink-gate {
  border-color: rgba(236, 72, 153, 0.5);
  background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
}

.red-gate {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(to bottom right, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
}

.gold-gate {
  border-color: rgba(200, 157, 92, 0.5);
  background: linear-gradient(to bottom right, rgba(200, 157, 92, 0.1), rgba(212, 175, 55, 0.1));
}

.gate-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.gate-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid var(--victory-green);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.125rem;
}

/* ===== Case Studies / Social Proof ===== */
.case-study-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-study-client {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.case-study-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.case-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-weight: 600;
}

.detail-text {
  color: var(--muted-foreground);
}

.case-testimonial {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-text {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin: 0;
}

/* Upwork Credibility Card */
.upwork-card {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 4rem;
}

.upwork-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.upwork-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.upwork-quote {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.star {
  font-size: 2.5rem;
  color: var(--white);
}

/* ===== Final CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 0;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

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

.cta-urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid var(--urgency-red);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  color: var(--white);
  font-size: 1rem;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table td,
  .comparison-table th {
    padding: 1rem;
  }
  
  .aliff-cell {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .upwork-card {
    padding: 2rem 1rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
}
