/* ============================================================
   HOME PAGE STYLES
   ============================================================ */
/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Floating hero visual */
.hero-visual {
  display: none;
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  z-index: var(--z-base);
}

.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-float-card:nth-child(1) {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-float-card:nth-child(2) {
  top: 45%;
  right: 25%;
  animation-delay: -2s;
}

.hero-float-card:nth-child(3) {
  bottom: 10%;
  right: 5%;
  animation-delay: -4s;
}

.hero-float-card .float-icon {
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.hero-float-card .float-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
}

.hero-float-card .float-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* --- Why Us Section --- */
.why-us {
  background: var(--bg-secondary);
}

.why-card .icon-box {
  width: 64px;
  height: 64px;
  font-size: 24px;
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9375rem;
}

/* --- Services Preview Section --- */
.services-preview-section {
  position: relative;
}

.services-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 24px;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

.service-preview-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.service-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.08);
}

.service-preview-card .service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.service-preview-card h3 {
  margin-bottom: 12px;
}

.service-preview-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.service-preview-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: gap var(--transition-fast);
}

.service-preview-card:hover .service-link {
  gap: 10px;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0.06;
  border-radius: var(--radius-xl);
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin: 0 auto 32px;
  max-width: 500px;
}

/* --- Responsive --- */
@media (min-width: 640px) {
  .hero-stats {
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 600px;
  }

  .hero-visual {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero-visual {
    width: 540px;
    height: 540px;
    right: 0;
  }
}