/* ============================================================
   SK INVISIBLE GRILLS — Homepage Styles
   ============================================================ */

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  background: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(27, 42, 74, 0.85) 40%,
    rgba(36, 59, 92, 0.75) 100%);
}

/* Floating net grid effect */
.hero-net-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 78, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 78, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: netGrid 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(200, 168, 78, 0.12);
  border: 1px solid rgba(200, 168, 78, 0.25);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(8px);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-600);
  border-radius: 50%;
  animation: goldPulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  font-size: var(--fs-5xl);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
}

.hero h1 .gold-text {
  color: var(--gold-600);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--navy-200);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(200, 168, 78, 0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--white);
  font-weight: 700;
}

/* Hero decorative elements */
.hero-deco {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-circle {
  position: absolute;
  border: 1px solid rgba(200, 168, 78, 0.12);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-deco-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-deco-circle:nth-child(2) {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  animation-delay: -2s;
  border-color: rgba(200, 168, 78, 0.08);
}

.hero-deco-circle:nth-child(3) {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  animation-delay: -4s;
  border-color: rgba(200, 168, 78, 0.05);
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: var(--space-2xl) 0;
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .hero-deco {
    display: none;
  }
}

/* ===================== TRUST HIGHLIGHTS ===================== */
.trust-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.trust-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  font-size: 1.3rem;
}

.trust-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--space-xs);
}

.trust-card-text {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================== SERVICES SHOWCASE ===================== */
.services-showcase {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

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

/* ===================== WHY CHOOSE US ===================== */
.why-section {
  padding: var(--space-4xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===================== SOLUTIONS BY SPACE ===================== */
.solutions-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===================== HOW IT WORKS ===================== */
.how-section {
  padding: var(--space-4xl) 0;
}

/* ===================== VIDEO SHOWCASE ===================== */
.video-section {
  padding: var(--space-4xl) 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 78, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 78, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

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

.video-feature {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .video-feature {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .video-feature {
    grid-column: span 1;
  }
}

.video-feature video {
  aspect-ratio: auto;
  height: 100%;
  min-height: 300px;
}
