/* Hide the little tab bar under the live preview */
.feature-tabs,
.feature-tabs-wrapper {
  display: none !important;
}

/* KPI cards: hide sparkline svgs if any */
.metric-card svg,
.metric-card canvas {
  display: none !important;
}

/* Zoomable images (applied via JS by selector) */
.se-zoomable {
  cursor: zoom-in;
  transition: transform .2s ease;
}

.se-zoomable:hover {
  transform: scale(1.01);
}

/* Lightbox */
.se-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 16, 26, .75);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.se-lightbox img {
  max-width: min(96vw, 1600px);
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.se-lightbox .se-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Contact card */
.se-contact {
  padding: 64px 0;
}

.se-contact-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(10, 16, 26, .08);
}

.se-contact-card h2 {
  font-size: 32px;
  margin: 0 0 6px;
}

.se-contact-sub {
  color: #6b7280;
  margin: 0 0 22px;
}

.se-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.se-form input,
.se-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

.se-form input:focus,
.se-form textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
}

.se-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .se-row {
    grid-template-columns: 1fr;
  }
}

.se-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.se-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
}

.se-btn-primary {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}

.se-btn-primary:hover {
  filter: brightness(.95);
}

.se-hint {
  color: #6b7280;
  margin-top: 12px;
}

.se-toast {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
