/* Hero Section */
.hero-section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 0 clamp(60px, 6vw, 80px);
  background: var(--bg-dark);
  text-align: center;
}

.hero-shapes { display: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-shape-1 {
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: rgba(37, 99, 235, 0.4);
}
.hero-shape-2 {
  bottom: -10%; left: -10%;
  width: 600px; height: 600px;
  background: rgba(124, 58, 237, 0.3);
}
.hero-shape-3 {
  top: 40%; right: 20%;
  width: 300px; height: 300px;
  background: rgba(6, 182, 212, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.85vw, 0.875rem);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Stats Bar ───────────────────────────────────── */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: clamp(48px, 5vw, 80px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
}

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

.stat-number {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 6px;
}

.stat-label {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.7rem, 0.8vw, 0.875rem);
}

/* ── Services Cards ──────────────────────────────── */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: clamp(44px, 4vw, 60px);
  height: clamp(44px, 4vw, 60px);
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: clamp(0.85rem, 0.95vw, 1rem);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}

.service-link i { transition: transform var(--transition-fast); }
.service-link:hover i { transform: translateX(5px); }

/* ── Why Choose Us ───────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.feature-item { display: flex; gap: 16px; }

.feature-icon {
  flex-shrink: 0;
  width: clamp(40px, 3.5vw, 50px);
  height: clamp(40px, 3.5vw, 50px);
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(16px, 1.5vw, 20px);
}

.feature-content h4 {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  margin-bottom: 6px;
}

/* ── CTA Section ─────────────────────────────────── */
.cta-section {
  position: relative;
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--bg-surface);
  text-align: center;
}

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

.cta-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-section { min-height: 80vh; padding-top: 100px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
}

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