/* Landing /flexi-figurky – hero, trust pásik a hlavička gridu.
   Grid samotný (products-grid, product-card, modály) preberá štýly
   z produkty.css + styles.css, aby karty vyzerali identicky s katalógom. */

.flexi-hero {
  padding: 48px 20px 32px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

.flexi-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.flexi-hero-text {
  text-align: center;
  max-width: 640px;
}

.flexi-hero-eyebrow {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.flexi-hero-text h1 {
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.flexi-hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 20px;
}

.flexi-hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0 0 24px;
}

.flexi-hero-price strong {
  color: var(--accent);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
}

.flexi-hero-price .flexi-price-note {
  opacity: 0.7;
}

.flexi-hero .hero-buttons {
  justify-content: center;
}

.flexi-hero-image {
  width: 100%;
  max-width: 640px;
}

.flexi-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .flexi-hero {
    padding: 72px 32px 48px;
  }

  .flexi-hero-inner {
    flex-direction: row;
    gap: 48px;
  }

  .flexi-hero-text {
    flex: 1 1 50%;
    text-align: left;
  }

  .flexi-hero-price,
  .flexi-hero .hero-buttons {
    justify-content: flex-start;
  }

  .flexi-hero-image {
    flex: 1 1 50%;
  }
}

/* Trust pásik – 4 krátke benefity, na mobile 2×2 mriežka */
.flexi-trust {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
}

.flexi-trust ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.flexi-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.flexi-trust svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--accent);
}

@media (min-width: 768px) {
  .flexi-trust ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flexi-trust li {
    justify-content: center;
  }
}

/* Hlavička sekcie s gridom */
.flexi-grid-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.flexi-grid-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 8px;
}

.flexi-grid-header p {
  opacity: 0.75;
  margin: 0;
}

.flexi-all-link {
  text-align: center;
  margin: 2rem 0 0;
}
