/* ===========================
   Guerch Homepage Specific Styles
   =========================== */

/* Hero Home */
.hero-home {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero-home__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-home__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  margin-bottom: var(--space-lg);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Product Card */
.product-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 900px;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.product-card__image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--border-card);
}

.product-card__content {
  padding: var(--space-2xl);
}

.product-card__logo {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--cyan);
  font-weight: 600;
  font-size: var(--text-lg);
  transition: gap 0.3s;
}

.product-card__link:hover {
  gap: var(--space-md);
}

/* Contact Home */
.contact-home {
  text-align: center;
}

.contact-home .cta-block {
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive - Home specific */
@media (max-width: 768px) {
  .hero-home {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
  }

  .hero-home__title {
    font-size: var(--text-3xl);
  }

  .services {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-home__title {
    font-size: var(--text-2xl);
  }

  .product-card__content {
    padding: var(--space-lg);
  }
}
