/* SERVISO — About, equipment, and the homepage about-teaser. */
/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: visible;
}
.about-image > svg,
.about-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
  display: block;
}
.about-float-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 2;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
}
.about-float-card:first-of-type {
  top: 10%;
  right: -10%;
  animation: floatCard 3s ease-in-out infinite;
}
.about-float-card:last-of-type {
  bottom: 10%;
  left: -10%;
  animation: floatCard 3s ease-in-out infinite;
  animation-delay: 1.5s;
}
.about-float-card svg {
  width: 22px; height: 22px;
  color: var(--primary); stroke: var(--primary);
  flex-shrink: 0;
}

.about-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.about-text > p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}
.about-features { display: grid; gap: 1rem; }
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease-smooth);
  align-items: flex-start;
}
.feature-item:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
  border-color: var(--gray-300);
}
.feature-icon-box {
  width: 48px; height: 48px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-box svg { width: 24px; height: 24px; stroke: white; }
.feature-icon { font-size: 1.75rem; flex-shrink: 0; }
.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .35rem;
}
.feature-item p { font-size: .9375rem; color: var(--gray-600); margin: 0; line-height: 1.5; }

/* ============================================================
   EQUIPMENT SECTION
   ============================================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.equipment-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .4s var(--ease-smooth);
  position: relative;
}
.equipment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-smooth);
  z-index: 1;
}
.equipment-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); border-color: rgba(30,136,229,.3); }
.equipment-card:hover::before { transform: scaleX(1); }

.equipment-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.equipment-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-smooth);
}
.equipment-card:hover .equipment-image img { transform: scale(1.05); }
.equipment-image svg {
  width: 72px; height: 72px;
  color: var(--gray-400); stroke: var(--gray-400);
}
.img-placeholder {
  width: 100%; height: 100%;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: var(--gray-400);
  font-size: .8rem;
}
.img-placeholder svg { width: 48px; height: 48px; color: var(--gray-400); }

.equipment-body { padding: 1.5rem 2rem 2rem; }
.equipment-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .625rem;
}
.equipment-desc { font-size: .9375rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; }
.equipment-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 1rem;
}
.equipment-features li {
  font-size: .875rem;
  color: var(--gray-700);
  padding: .625rem 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid var(--gray-100);
}
.equipment-features li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--primary-gradient);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   ABOUT TEASER (index homepage)
   ============================================================ */
.about-teaser-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-teaser-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gray-900);
  margin: .75rem 0 1rem;
}
.about-teaser-text > p {
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 1.0625rem;
}
.about-teaser-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.teaser-stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem 1rem;
  text-align: center;
}
.teaser-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .375rem;
}
.teaser-stat-label { color: var(--gray-600); font-size: .8125rem; font-weight: 500; }

/* ── Responsive ─────────────────────────────────────────────── */
/* Kept beside the component these rules modify, instead of in a single
 * block at the bottom of the stylesheet, separated from everything they
 * apply to. */

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-height: 380px; aspect-ratio: auto; }
  .about-float-card { display: none; }
  .about-teaser-flex { grid-template-columns: 1fr; gap: 2.5rem; }
}

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