/* ===== PRODUCTS SHARED STYLES ===== */

/* MINI HERO */
.products-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 40px;
}
.products-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
}
.products-hero .section-tag {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}
.back-link:hover { color: var(--white); }

/* SECTOR BANNER */
.sector-banner {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.sector-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sector-banner.banner-pkg {
  background: linear-gradient(135deg, #1a3c6e 0%, #2a5298 100%);
}
.sector-banner.banner-agro {
  background: linear-gradient(135deg, #1a5c3a 0%, #2a8a5a 100%);
}
.sector-banner.banner-energy {
  background: linear-gradient(135deg, #6b3a1a 0%, #b86a2a 100%);
}
.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.banner-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.banner-icon i {
  font-size: 1.8rem;
  color: var(--white);
}
.banner-text .banner-label {
  display: inline-block;
  background: rgba(232,160,32,0.25);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  border: 1px solid rgba(232,160,32,0.3);
}
.banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.banner-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.banner-count {
  margin-left: auto;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 24px;
  flex-shrink: 0;
}
.banner-count .count-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.banner-count .count-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* PRODUCT GRID */
.catalog-products {
  padding: 48px 0 80px;
  background: var(--bg);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.product-tag {
  display: inline-block;
  margin-top: 14px;
  background: rgba(26,60,110,0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

/* OTHER SECTORS NAV */
.other-sectors {
  padding: 64px 0;
  background: var(--white);
}
.other-sectors .section-header {
  text-align: center;
  margin-bottom: 36px;
}
.other-sectors h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.other-sectors > .container > p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}
.sector-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.sector-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sector-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.sector-link-card .sl-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sector-link-card .sl-icon i { font-size: 1.2rem; color: var(--white); }
.sector-link-card .sl-icon.icon-pkg { background: linear-gradient(135deg, #1a3c6e, #2a5298); }
.sector-link-card .sl-icon.icon-agro { background: linear-gradient(135deg, #1a5c3a, #2a8a5a); }
.sector-link-card .sl-icon.icon-energy { background: linear-gradient(135deg, #6b3a1a, #b86a2a); }
.sector-link-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.sector-link-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.sector-link-card .sl-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: transform var(--transition);
}
.sector-link-card:hover .sl-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* LANDING PAGE */
.landing-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e4d9b 100%);
  padding: 140px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.landing-hero .container { position: relative; z-index: 1; }
.landing-hero .section-tag { color: var(--accent); }
.landing-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.landing-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.sector-cards-section {
  padding: 80px 0;
  background: var(--bg);
}
.sector-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sector-big-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.sector-big-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.sbc-banner {
  padding: 32px 28px;
  position: relative;
}
.sbc-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sbc-banner.bg-pkg { background: linear-gradient(135deg, #1a3c6e, #2a5298); }
.sbc-banner.bg-agro { background: linear-gradient(135deg, #1a5c3a, #2a8a5a); }
.sbc-banner.bg-energy { background: linear-gradient(135deg, #6b3a1a, #b86a2a); }
.sbc-banner i {
  font-size: 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  display: block;
}
.sbc-banner h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.sbc-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sbc-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.sbc-body .sbc-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.sbc-body .btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid var(--primary);
  align-self: flex-start;
}
.sbc-body .btn-service:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,60,110,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-hero .container { flex-direction: column; text-align: center; gap: 16px; }
  .banner-content { flex-direction: column; text-align: center; }
  .banner-count { margin-left: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .sector-links { grid-template-columns: 1fr; }
  .sector-cards-grid { grid-template-columns: 1fr; }
}
