/* ========================================
   Aarush Eco Tech - Additional Styles
   ======================================== */

/* ===== FAQ Page ===== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-detail {
  background: #fff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.faq-item-detail:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item-detail h3 {
  color: var(--brand-dark);
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-item-detail p {
  margin-bottom: 16px;
}

.faq-item-detail ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.faq-item-detail li {
  margin-bottom: 8px;
}

.faq-item-detail strong {
  color: var(--brand-orange);
}

@media (max-width: 768px) {
  .faq-item-detail {
    padding: 24px;
  }
  
  .faq-item-detail h3 {
    font-size: 18px;
  }
}

/* /* ========================================
   TRUST STRIP - LARGER LOGOS
   ======================================== */

.trust-strip {
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-strip .container {
  text-align: center;
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-logos {
    gap: 2.5rem;
  }
  
  .trust-logos img {
    height: 60px;
    max-width: 140px;
  }
}

/* ========================================
   SECTION SPACING FIX - UNIFORM
   ======================================== */

/* Standard section spacing */
.section {
  padding: 5rem 0;
}

/* Alternating backgrounds */
.section.light {
  background: #f8fafc;
}

/* Remove extra spacing inconsistencies */
.section + .section {
  margin-top: 0;
}

/* Proof section specific */
.proof-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 0;
}

.proof-section .section-title {
  color: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1f3a4d 0%, #2a4a5e 100%);
  padding: 5rem 0;
  color: white;
}

.cta-section h2,
.cta-section p {
  color: white;
}

/* Consistent spacing for all sections */
.section:first-of-type {
  padding-top: 4rem;
}

.section:last-of-type {
  padding-bottom: 5rem;
}

/* ===== Social Proof / Testimonials ===== */
.social-proof {
  text-align: center;
}

.testimonial {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px;
  background: #fff;
  border-left: 4px solid var(--brand-orange);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
  font-size: 19px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
}

.cta-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.cta-subtext {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 24px;
}

/* ===== Case Studies ===== */
.case-study {
  padding: 64px 24px;
}

.case-study-header {
  margin-bottom: 48px;
}

.case-study-tag {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.case-study-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 8px;
}

.case-study-solution,
.case-study-results,
.case-study-details {
  margin: 48px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.result-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.result-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.result-detail {
  font-size: 14px;
  color: var(--text-muted);
}

.case-study-quote {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-orange);
  padding: 32px;
  margin: 48px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.case-study-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
}

.case-study-details ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.case-study-details li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.case-study-details li:last-child {
  border-bottom: none;
}

/* Pattern Cards */
.pattern-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}

.pattern-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pattern-card h3 {
  color: var(--brand-orange);
  margin-bottom: 12px;
}

/* ===== Contact Page ===== */
.contact-form-wrapper,
.contact-info-wrapper {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-method {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.contact-method:last-of-type {
  border-bottom: none;
}

.contact-method h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-method p {
  margin-bottom: 4px;
}

.contact-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.contact-cta {
  background: var(--brand-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}

.contact-cta h3 {
  margin-bottom: 12px;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.faq-item {
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  margin: 0;
}

/* ===== About Page ===== */
.team-grid {
  margin-top: 32px;
}

.team-member {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--brand-light);
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 14px;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-orange);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  position: absolute;
  left: -40px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand-orange);
}

.timeline-year::after {
  content: attr(data-year);
  position: absolute;
  left: 30px;
  top: -8px;
  font-weight: 700;
  color: var(--brand-orange);
  white-space: nowrap;
  font-size: 18px;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  margin: 0;
}

/* Value Cards */
.value-card {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}

.value-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  color: var(--brand-orange);
  margin-bottom: 12px;
}

/* ===== Legal Pages ===== */
.legal-content {
  background: #fff;
}

.legal-container {
  max-width: 900px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-container h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.legal-container h2:first-of-type {
  margin-top: 32px;
  border-top: none;
}

.legal-container h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.legal-container ul,
.legal-container ol {
  margin-left: 32px;
  margin-bottom: 24px;
}

.legal-container li {
  margin-bottom: 12px;
}

.legal-container strong {
  color: var(--text-dark);
}

.legal-container a {
  text-decoration: underline;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-logos {
    gap: 24px;
  }
  
  .trust-logos img {
    height: 36px;
  }
  
  .testimonial {
    padding: 24px;
  }
  
  .testimonial-quote {
    font-size: 17px;
  }
  
  .cta-options {
    flex-direction: column;
    align-items: stretch;
  }
  
  .case-study {
    padding: 48px 16px;
  }
  
  .result-number {
    font-size: 36px;
  }
  
  .case-study-quote {
    padding: 24px;
    font-size: 16px;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 24px;
  }
  
  .timeline {
    padding-left: 32px;
  }
  
  .timeline-year::after {
    font-size: 16px;
  }
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
  
  .show-mobile {
    display: block;
  }
}
/* ===== NEW CONVERSION STYLES ===== */

.hero-section {
  padding: 80px 24px 60px;
}

.hero-section .container {
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-large {
  font-size: 18px;
  padding: 16px 40px;
  box-shadow: 0 4px 14px rgba(242, 140, 40, 0.3);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-text {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.industry-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s;
}

.industry-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.proof-section {
  background: var(--brand-light);
}

.proof-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.proof-list {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
}

.proof-list li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
}

.proof-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
}
/* /* ========================================
   PROFESSIONAL HERO WITH BACKGROUND IMAGE
   ======================================== */

.hero-section {
  position: relative;
  min-height: 650px;
  max-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Background Image Container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Premium Gradient Overlay - More Sophisticated */
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    110deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(30, 41, 59, 0.88) 35%,
    rgba(51, 65, 85, 0.75) 65%,
    rgba(71, 85, 105, 0.60) 100%
  );
  z-index: 1;
}

/* Subtle Pattern Overlay for Depth */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

/* Hero Content - Optimized Layout */
.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 50px;
  max-width: 1400px;
}

.hero-section .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* Content Styling */
.hero-section .hero-content {
  color: white;
  max-width: 720px;
}

/* Premium Badge */
.hero-section .hero-label {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.hero-section .hero-label::before {
  content: 'âœ¦';
  font-size: 1rem;
  color: #60a5fa;
}

/* Headline - More Impact */
.hero-section .hero-headline {
  color: white;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Subheadline - Better Hierarchy */
.hero-section .hero-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  max-width: 650px;
}

.hero-section .hero-subheadline strong {
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Stats - Premium Design */
.hero-section .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-section .stat {
  text-align: center;
  position: relative;
}

.hero-section .stat::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-section .stat:last-child::after {
  display: none;
}

.hero-section .stat-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.hero-section .stat-label {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* CTA Section - Professional */
.hero-section .hero-cta {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Primary Button - Premium Style */
.hero-section .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 
    0 4px 20px rgba(245, 158, 11, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-section .btn-primary:hover::before {
  left: 100%;
}

.hero-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(245, 158, 11, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.hero-section .btn-primary::after {
  content: 'â†’';
  transition: transform 0.3s;
}

.hero-section .btn-primary:hover::after {
  transform: translateX(4px);
}

/* Caption Text */
.hero-section .cta-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hide image section in background mode */
.hero-section.hero-background-style .hero-image {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 600px;
    max-height: 70vh;
  }
  
  .hero-section .hero-stats {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-section .container {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-section .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .hero-section .stat::after {
    display: none;
  }

  .hero-section .stat-number {
    font-size: 2.5rem;
  }

  .hero-section .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .hero-section .cta-subtext {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-headline {
    font-size: 2.25rem;
  }

  .hero-section .hero-subheadline {
    font-size: 1.0625rem;
  }

  .hero-section .hero-label {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

/* Hero Content - Optimized Layout */
.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 50px;
  max-width: 1400px;
}

.hero-section .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* Content Styling */
.hero-section .hero-content {
  color: white;
  max-width: 720px;
}

/* Premium Badge */
.hero-section .hero-label {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.hero-section .hero-label::before {
  content: 'âœ¦';
  font-size: 1rem;
  color: #60a5fa;
}

/* Headline - More Impact */
.hero-section .hero-headline {
  color: white;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Subheadline - Better Hierarchy */
.hero-section .hero-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  max-width: 650px;
}

.hero-section .hero-subheadline strong {
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Stats - Premium Design */
.hero-section .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-section .stat {
  text-align: center;
  position: relative;
}

.hero-section .stat::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-section .stat:last-child::after {
  display: none;
}

.hero-section .stat-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.hero-section .stat-label {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* CTA Section - Professional */
.hero-section .hero-cta {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Primary Button - Premium Style */
.hero-section .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 
    0 4px 20px rgba(245, 158, 11, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-section .btn-primary:hover::before {
  left: 100%;
}

.hero-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(245, 158, 11, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.hero-section .btn-primary::after {
  content: 'â†’';
  transition: transform 0.3s;
}

.hero-section .btn-primary:hover::after {
  transform: translateX(4px);
}

/* Caption Text */
.hero-section .cta-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hide image section in background mode */
.hero-section.hero-background-style .hero-image {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 600px;
    max-height: 70vh;
  }
  
  .hero-section .hero-stats {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 550px;
    max-height: 65vh;
  }

  .hero-section .container {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-section .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .hero-section .stat::after {
    display: none;
  }

  .hero-section .stat-number {
    font-size: 2.5rem;
  }

  .hero-section .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .hero-section .cta-subtext {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-headline {
    font-size: 2.25rem;
  }

  .hero-section .hero-subheadline {
    font-size: 1.0625rem;
  }

  .hero-section .hero-label {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}