/* MICROWAVE PAGE STYLES */

/* ===== MW HERO – Dark Purple Card Stack ===== */
.mw-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1A0533 0%, #311B92 40%, #4527A0 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-top: 70px;
}

.mw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(98, 0, 234, 0.2) 0%, transparent 60%);
}

.mw-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.mw-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease both;
}

.mw-hero-left h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s 0.1s ease both;
}

.mw-hero-left h1 span { color: #CE93D8; }

.mw-hero-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
  animation: fadeInUp 0.5s 0.2s ease both;
}

.mw-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; animation: fadeInUp 0.5s 0.3s ease both; }

.mw-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.5s 0.4s ease both;
}

.mw-stat { text-align: center; }
.mw-stat-val { display: block; font-size: 1.5rem; font-weight: 900; color: white; font-family: var(--font-heading); }
.mw-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* MW Visual */
.mw-hero-right { animation: slideInRight 0.8s 0.3s ease both; }

.mw-card-stack { display: flex; flex-direction: column; gap: 16px; }

.mw-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.mw-display {
  background: #0D0020;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid rgba(98,0,234,0.4);
}

.mw-time { font-size: 2.5rem; font-weight: 900; color: #CE93D8; font-family: monospace; }
.mw-mode { font-size: 0.75rem; color: rgba(206,147,216,0.6); margin-bottom: 12px; letter-spacing: 2px; }
.mw-temp-row { display: flex; align-items: center; justify-content: center; gap: 20px; }
.mw-temp-row span { font-size: 1rem; font-weight: 700; color: white; }

.mw-power-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dot.active { background: #7C4DFF; box-shadow: 0 0 8px rgba(124,77,255,0.8); }

.mw-status-items { display: flex; flex-direction: column; gap: 10px; }
.mw-si { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; display: flex; align-items: center; gap: 10px; }

.mw-card-types { display: flex; gap: 10px; flex-wrap: wrap; }
.mw-type-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.mw-type-tag.active-t { background: rgba(124,77,255,0.4); border-color: #7C4DFF; color: white; }

/* ===== MW PROBLEMS ===== */
.mw-problems { background: var(--off-white); }

.mw-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.mw-prob-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.mw-prob-card:hover {
  border-bottom-color: #7C4DFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mw-prob-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.mw-prob-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; color: #21446E; }
.mw-prob-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

.mw-cta-strip {
  background: linear-gradient(135deg, #4527A0, #7C4DFF);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.mw-cta-strip p { font-size: 1rem; font-weight: 600; color: white; }

/* ===== MW SERVICE TYPES ===== */
.mw-service-types { background: var(--white); }

.mw-service-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.mw-service-accordion { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }

.mw-acc-item { border: 1px solid var(--mid-gray); border-radius: var(--radius-md); overflow: hidden; }
.mw-acc-item.open { border-color: #7C4DFF; }

.mw-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 12px;
}

.mw-acc-item.open .mw-acc-header { color: #7C4DFF; background: rgba(124,77,255,0.04); }
.acc-icon { font-size: 1.2rem; font-weight: 700; }

.mw-acc-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.mw-acc-item.open .mw-acc-body { display: block; animation: fadeInUp 0.3s ease; }

/* MW CTA Card */
.mw-cta-card {
  background: linear-gradient(160deg, #1A0533, #4527A0);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 90px;
}

.mw-cta-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.mw-cta-card h3 { color: white; font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.mw-cta-card p { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }

.mw-cta-price { margin-bottom: 24px; }
.mw-price-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.mw-price-val { font-size: 2rem; font-weight: 900; color: #CE93D8; font-family: var(--font-heading); }

.mw-guarantees { margin-top: 16px; }
.guar-item { font-size: 0.82rem; color: rgba(255,255,255,0.7); padding: 5px 0; text-align: left; }

/* ===== FAQ ===== */
.mw-faq { background: var(--off-white); }

.mw-faq-list {
  max-width: 700px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item { border: 1px solid var(--mid-gray); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: var(--font-primary);
  transition: var(--transition);
}
.faq-question:hover { color: #7C4DFF; }
.faq-icon { font-size: 1.2rem; font-weight: 700; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 0.875rem; color: var(--text-light); line-height: 1.8; }
.faq-answer.show { display: block; animation: fadeInUp 0.3s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mw-hero-container { grid-template-columns: 1fr; }
  .mw-hero-right { display: none; }
  .mw-problems-grid { grid-template-columns: repeat(2, 1fr); }
  .mw-service-layout { grid-template-columns: 1fr; }
  .mw-cta-card { position: static; }
}

@media (max-width: 768px) {
  .mw-problems-grid { grid-template-columns: 1fr 1fr; }
  .mw-cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .mw-problems-grid { grid-template-columns: 1fr; }
}
