/* MECHTAL UX Builder Styles */
.mechtal-ux-hero {
  background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0a0f1d 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.mechtal-ux-container {
  max-width: 1200px;
  margin: 0 auto;
}
.mechtal-ux-badge {
  display: inline-block;
  background: #facc15;
  color: #000;
  font-weight: 900;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.mechtal-ux-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #f8fafc;
}
.mechtal-ux-highlight {
  display: block;
  color: #facc15;
}
.mechtal-ux-hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}
.mechtal-ux-btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mechtal-ux-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.mechtal-ux-btn-primary {
  background: #2563eb;
  color: #fff;
}
.mechtal-ux-btn-primary:hover {
  background: #1d4ed8;
  color: #fff;
}
.mechtal-ux-btn-yellow {
  background: #facc15;
  color: #000;
}
.mechtal-ux-btn-yellow:hover {
  background: #eab308;
  color: #000;
}
.mechtal-ux-btn-outline {
  border: 1px solid #475569;
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
}
.mechtal-ux-btn-outline:hover {
  border-color: #facc15;
  color: #facc15;
}
.mechtal-w-full {
  width: 100%;
  justify-content: center;
}

/* Calculator Card */
.mechtal-ux-calculator {
  background: #0f172a;
  color: #fff;
  padding: 60px 20px;
}
.mechtal-calc-card {
  max-width: 850px;
  margin: 40px auto 0 auto;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .mechtal-calc-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.mechtal-form-group {
  margin-bottom: 20px;
}
.mechtal-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}
.mechtal-select {
  width: 100%;
  padding: 12px;
  background: #0f172a;
  border: 1px solid #334155;
  color: #fff;
  border-radius: 8px;
}
.mechtal-range-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mechtal-range {
  flex: 1;
}
.mechtal-range-val {
  font-size: 14px;
  font-weight: 800;
  color: #facc15;
  min-width: 90px;
}
.mechtal-checkbox-list label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #cbd5e1;
  margin-bottom: 8px;
  cursor: pointer;
}
.mechtal-calc-summary {
  background: #0b1120;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mechtal-price-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
}
.mechtal-price-val {
  font-size: 36px;
  font-weight: 900;
  color: #facc15;
  margin: 4px 0 8px 0;
}
.mechtal-discount-tag {
  font-size: 11px;
  color: #4ade80;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Before / After Slider */
.mechtal-ux-before-after {
  background: #0b1120;
  color: #fff;
  padding: 60px 20px;
}
.mechtal-ba-container {
  max-width: 850px;
  margin: 32px auto 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9;
  border: 2px solid #334155;
  user-select: none;
}
.mechtal-ba-before, .mechtal-ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mechtal-ba-before img, .mechtal-ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mechtal-ba-after {
  width: 50%;
  border-right: 3px solid #facc15;
  overflow: hidden;
}
.mechtal-ba-tag {
  position: absolute;
  top: 16px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
}
.mechtal-tag-before {
  right: 16px;
  background: rgba(225, 29, 72, 0.9);
  color: #fff;
}
.mechtal-tag-after {
  left: 16px;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
}

/* CTA Banner */
.mechtal-ux-cta-banner {
  padding: 60px 20px;
  text-align: center;
}
.mechtal-theme-dark {
  background: #0a0f1d;
  color: #fff;
  border-top: 1px solid #1e293b;
}
.mechtal-theme-blue {
  background: #1e3a8a;
  color: #fff;
}
.mechtal-theme-yellow {
  background: #facc15;
  color: #000;
}
