/* Extracted from business/equipments/index.php */

:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #eef6fb;
  --text: #102a43;
  --muted: #556270;
  --accent: #0d6efd;
  --accent-strong: #1645a1;
}

body {
  background: var(--bg);
  color: var(--text);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(20,184,166,0.18), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #eaf6ff 55%, #e6faf7 100%);
  border-radius: 32px;
  padding: 3.5rem 2.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid rgba(13,110,253,0.08);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  background: rgba(15,118,110,0.1);
  color: #0f766e;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 1.08;
  color: #102a43;
}

.hero p {
  max-width: 650px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #556270;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions .btn {
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stats-grid div {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(13,110,253,0.08);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  color: #102a43;
}

.stats-grid strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.device-card {
  position: relative;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(15,118,110,0.12);
  border-radius: 30px;
  padding: 1.6rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px);
}

.device-label {
  font-size: 0.9rem;
  color: #556270;
  margin-bottom: 1rem;
}

.device-value {
  font-size: 2.7rem;
  font-weight: 700;
  color: #0f766e;
}

.device-circle {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(16,42,67,0.07);
}

.feature-item h4 {
  margin-top: 0;
  color: var(--accent-strong);
}

.feature-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.scroll-section {
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.scroll-container {
  overflow: hidden;
  margin: 0 -1rem;
}

.scroll-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 1rem 1.5rem;
  animation: autoScroll 35s linear infinite;
}

.scroll-track:hover {
  animation-play-state: paused;
}

@keyframes autoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scroll-card {
  min-width: 260px;
  flex: 0 0 auto;
  background: var(--surface);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 20px 50px rgba(16,42,67,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(16,42,67,0.14);
}

.card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(13,110,253,0.08);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.grid-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card-block {
  background: var(--surface);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 18px 45px rgba(16,42,67,0.08);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.category-card {
  display: block;
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--surface-soft);
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(13,110,253,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(16,42,67,0.1);
}

.highlight-block h2,
.product-section h2 {
  margin-top: 0;
}

.highlight-block ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.highlight-block li {
  margin-bottom: 0.85rem;
  padding-left: 1.35rem;
  position: relative;
}

.highlight-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.product-section {
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(16,42,67,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(16,42,67,0.12);
}

.product-card strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: #0f766e;
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #0f766e;
  color: #0f766e;
}

@media (max-width: 980px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .hero {
    padding: 2.5rem 1.2rem;
  }

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

  .scroll-track {
    animation: none;
  }
}
