/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.fade-section {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════ */
.products {
  padding: 80px 24px 100px;
  background: var(--bg);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.products-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 11.5px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.12em;
  text-align: center; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; line-height: 1.2;
  text-align: center;
}
.section-desc {
  font-size: 15.5px; color: var(--text-muted);
  line-height: 1.7; text-align: center;
  max-width: 460px; margin: 14px auto 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 1px 3px rgba(30,30,30,0.04), 0 4px 12px rgba(30,30,30,0.03);
}
.product-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-logo {
  height: 28px; width: auto;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left;
}
.product-logo-text {
  margin-bottom: 20px;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
}
.product-logo-text span { color: var(--orange); }
.product-icon-fallback {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.product-icon-fallback svg {
  width: 20px; height: 20px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.product-name {
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.product-tag {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 2px 8px; border-radius: 4px;
  background: var(--orange-soft); color: var(--orange);
}
.product-tag.soon {
  background: rgba(107,114,128,0.08); color: var(--text-muted);
}
.product-desc {
  font-size: 14.5px; color: var(--text-muted);
  line-height: 1.7; flex: 1;
  margin-bottom: 20px;
}
.product-link {
  font-size: 13px; font-weight: 500;
  color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.product-link svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.product-card:hover .product-link { color: var(--text-body); }
.product-card:hover .product-link svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   EXPERTISES BAND
   ═══════════════════════════════════════════ */
.expertises {
  padding: 64px 24px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.expertises-inner { max-width: var(--max-w); margin: 0 auto; }
.expertises-header { text-align: center; margin-bottom: 40px; }
.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.expertise-item { text-align: center; }
.expertise-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.expertise-icon svg {
  width: 18px; height: 18px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.expertise-item h3 {
  font-size: 15px; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.expertise-item p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ABOUT BAND — Dark
   ═══════════════════════════════════════════ */
.about {
  padding: 64px 24px;
  background: var(--ink);
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
}
.about-text h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.3;
  margin-bottom: 12px;
}
.about-text p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 420px;
}
.about-stats { display: flex; gap: 48px; flex-shrink: 0; }
.about-stat { text-align: center; }
.about-stat-num {
  font-size: 34px; font-weight: 800;
  color: #fff; letter-spacing: -0.04em;
}
.about-stat-label {
  font-size: 11.5px; color: rgba(255,255,255,0.35);
  margin-top: 2px; font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-final {
  padding: 72px 24px;
  text-align: center;
  background: var(--bg);
  content-visibility: auto;
  contain-intrinsic-size: auto 250px;
}
.cta-final-inner { max-width: 480px; margin: 0 auto; }
.cta-final h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.cta-final p {
  font-size: 15.5px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 28px;
}
.cta-final-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 7px;
  background: var(--orange); color: #fff;
  font-size: 15px; font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 2px 8px var(--orange-glow);
}
.cta-final-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--orange-glow);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 22px; width: auto; opacity: 0.35; }
.footer-brand span { font-size: 12px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px; color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-body); }

/* ═══════════════════════════════════════════
   CONTACT MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,30,30,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 420px;
  padding: 36px 32px;
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all 0.2s;
}
.modal-close:hover { background: var(--bg-warm); color: var(--text); }
.modal-close svg {
  width: 16px; height: 16px; stroke: currentColor;
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.modal h3 {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.modal-desc {
  font-size: 13.5px; color: var(--text-muted);
  margin-bottom: 28px; line-height: 1.6;
}
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all 0.2s;
}
.contact-item:hover {
  border-color: var(--border);
  background: var(--bg-warm);
}
.contact-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 17px; height: 17px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.contact-label {
  font-size: 10.5px; color: var(--text-dim);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-value {
  font-size: 14px; font-weight: 600; color: var(--text);
}

/* ═══════════════════════════════════════════
   MENTIONS LEGALES MODAL
   ═══════════════════════════════════════════ */
.legal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,30,30,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.legal-overlay.active { display: flex; }
.legal-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 560px;
  max-height: 80vh; overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
.legal-panel h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.legal-panel h4 {
  font-size: 13.5px; font-weight: 700;
  color: var(--text); margin: 20px 0 6px;
}
.legal-panel p {
  font-size: 13px; color: var(--text-body);
  line-height: 1.7; margin-bottom: 6px;
}
.legal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all 0.2s;
}
.legal-close:hover { background: var(--bg-warm); color: var(--text); }
.legal-close svg {
  width: 16px; height: 16px; stroke: currentColor;
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .products { padding: 64px 20px 72px; }
  .products-grid { grid-template-columns: 1fr; }
  .expertises-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-inner { flex-direction: column; text-align: center; gap: 28px; }
  .about-text p { margin: 0 auto; }
  .about-stats { gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .about-stats { flex-direction: row; gap: 24px; }
  .about-stat-num { font-size: 28px; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
