/* ============================================================
   SOFTECHPILLAR — hardware.css
   Dedicated stylesheet for hardware.php (Ishi Enterprises)
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hw-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.hw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #25d366;
  margin-bottom: 1.8rem;
}
.hw-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 1.8s infinite;
}
.hw-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hw-hero-sub {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hw-trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hw-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gray);
}
.hw-trust-item::before { content: '✓'; color: #25d366; font-weight: 700; }

/* ── DIAGNOSTIC BOARD ─────────────────────────────────────── */
.diag-board {
  background: #060606;
  border: 1px solid rgba(123,97,255,0.18);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.diag-board::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,97,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,97,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.diag-head {
  position: relative; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.diag-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.diag-live {
  font-size: 0.62rem;
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.diag-live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 1.5s infinite;
}
.diag-chips {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.d-chip {
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid;
}
.d-chip.ok   { background: rgba(37,211,102,0.04); border-color: rgba(37,211,102,0.18); color: #25d366; }
.d-chip.warn { background: rgba(255,210,0,0.04);  border-color: rgba(255,210,0,0.18);  color: #ffd200; }
.d-chip.bad  { background: rgba(255,43,43,0.04);  border-color: rgba(255,43,43,0.18);  color: var(--red); }
.d-chip:hover { transform: scale(1.05); }
.d-chip .cn  { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.d-chip .cs  { font-size: 0.68rem; font-weight: 700; margin-top: 3px; }
.diag-bars { position: relative; z-index: 1; }
.db-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.55rem; }
.db-lbl { font-size: 0.6rem; color: var(--gray); width: 55px; flex-shrink: 0; font-family: var(--font-mono); }
.db-track { flex: 1; height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.db-fill  { height: 100%; border-radius: 2px; transition: width 1.8s cubic-bezier(0.4,0,0.2,1); }
.db-val   { font-size: 0.6rem; font-weight: 700; color: #fff; width: 32px; text-align: right; }
.diag-areas {
  position: relative; z-index: 1;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: rgba(123,97,255,0.04);
  border: 1px solid rgba(123,97,255,0.1);
  border-radius: 10px;
  font-size: 0.68rem;
  color: var(--gray);
  line-height: 1.8;
}
.diag-areas strong { color: #fff; display: block; margin-bottom: 0.2rem; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.hw-services-section { padding: 5rem 0; }
.hw-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.hw-svc-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.hw-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), #25d366);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.hw-svc-card:hover { border-color: rgba(123,97,255,0.2); transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,0.7); }
.hw-svc-card:hover::after { transform: scaleX(1); }
.hw-svc-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.hw-svc-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.hw-svc-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.2rem; }
.hw-svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.hw-svc-list li { font-size: 0.77rem; color: var(--gray); display: flex; align-items: center; gap: 0.4rem; }
.hw-svc-list li::before { content: '→'; color: var(--purple); font-size: 0.7rem; flex-shrink: 0; }

/* ── PRICING ──────────────────────────────────────────────── */
.hw-pricing { padding: 5rem 0; background: #050505; }
.hw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.hw-price-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.hw-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), #25d366);
  opacity: 0;
  transition: opacity 0.3s;
}
.hw-price-card:hover,
.hw-price-card.featured { border-color: rgba(37,211,102,0.25); transform: translateY(-5px); }
.hw-price-card:hover::before,
.hw-price-card.featured::before { opacity: 1; }
.hw-price-card.featured { background: rgba(37,211,102,0.02); }
.hw-pc-badge {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 100px;
  background: rgba(37,211,102,0.1);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.25);
  display: inline-block; margin-bottom: 1rem;
}
.hw-pc-name   { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.hw-pc-desc   { font-size: 0.75rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.6; }
.hw-pc-price  { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 0.2rem; }
.hw-pc-price small { font-size: 0.72rem; color: var(--gray); font-weight: 400; }
.hw-pc-note   { font-size: 0.68rem; color: var(--gray); margin-bottom: 1.5rem; }
.hw-pc-feats  { list-style: none; text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.hw-pc-feats li { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 0.4rem; }
.hw-pc-feats li::before { content: '✓'; color: #25d366; font-weight: 700; flex-shrink: 0; }
.hw-pc-cta {
  display: block; width: 100%;
  padding: 0.75rem; border-radius: 10px;
  text-align: center; font-size: 0.88rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  font-family: var(--font-body); cursor: pointer; border: none;
}
.hw-pc-cta.solid { background: #25d366; color: #fff; box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.hw-pc-cta.solid:hover { box-shadow: 0 0 35px rgba(37,211,102,0.5); transform: translateY(-2px); }
.hw-pc-cta.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.hw-pc-cta.ghost:hover { border-color: #25d366; color: #25d366; }

/* ── SERVICE AREAS ────────────────────────────────────────── */
.hw-areas { padding: 5rem 0; }
.areas-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 3rem;
}
.area-chip {
  padding: 0.75rem 0.5rem;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.25s;
  cursor: default;
}
.area-chip:hover {
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
  background: rgba(37,211,102,0.04);
}
.map-wrap {
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.map-wrap iframe {
  width: 100%; height: 350px; border: none;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
  display: block;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.hw-testimonials { padding: 5rem 0; background: #050505; }
.hw-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 4rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.hw-faq { padding: 5rem 0; }
.hw-faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ── BOOKING CTA ──────────────────────────────────────────── */
.hw-booking-cta {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hw-booking-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50%, rgba(37,211,102,0.08), transparent 65%);
}
.hw-hours {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hw-hour-item { text-align: center; }
.hw-hour-item strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 2px; }
.hw-hour-item span  { font-size: 0.78rem; color: var(--gray); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hw-hero-inner { grid-template-columns: 1fr; }
  .hw-services-grid { grid-template-columns: 1fr 1fr; }
  .hw-pricing-grid { grid-template-columns: 1fr; }
  .areas-chips { grid-template-columns: repeat(3, 1fr); }
  .hw-testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hw-services-grid { grid-template-columns: 1fr; }
  .areas-chips { grid-template-columns: repeat(2, 1fr); }
  .hw-trust-row { gap: 1rem; }
}
