/* ==========================================================
   RecoveryMaster — Service Page CSS
   Prefix: sv- (service-specific), reuses rm- tokens from home-redesign.css
   ========================================================== */

/* ============================================================
   SERVICE HERO
   ============================================================ */
.sv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.sv-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(27,65,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,65,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.sv-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,65,255,0.12) 0%, transparent 70%);
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.sv-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,65,255,0.08);
  border: 1px solid rgba(27,65,255,0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.sv-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(27,65,255,0.6);
  animation: rm-pulse 2s ease infinite;
}
.sv-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.sv-hero h1 .sv-accent-line {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sv-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}
.sv-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.sv-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.sv-pill svg { color: var(--accent2); flex-shrink: 0; }
.sv-hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Stats card */
.sv-hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sv-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.sv-card-title {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 20px;
}
.sv-stat-row { display: flex; gap: 16px; margin-bottom: 24px; }
.sv-stat-item {
  flex: 1;
  background: var(--bg2);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.sv-stat-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  color: var(--accent);
  display: block; line-height: 1; margin-bottom: 4px;
}
.sv-stat-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.sv-trust-items { display: flex; flex-direction: column; gap: 10px; }
.sv-trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--bg2);
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
}
.sv-trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}

/* ============================================================
   SECTION COMMON (service pages)
   ============================================================ */
.sv-section {
  padding: 100px 48px;
  max-width: 1240px;
  margin: 0 auto;
}
.sv-section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-section-alt3 { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: var(--border); }

.sv-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}
.sv-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 16px;
  color: var(--text);
}
.sv-desc {
  font-size: 17px; color: var(--muted);
  max-width: 640px; font-weight: 300;
  line-height: 1.7; margin-bottom: 56px;
}

/* ============================================================
   RECOVERABLE SECTION
   ============================================================ */
.sv-recov-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-recov-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sv-recov-body p {
  font-size: 17px; color: var(--muted);
  line-height: 1.75; margin-bottom: 20px; font-weight: 300;
}
.sv-recov-body p strong { color: var(--text); font-weight: 600; }
.sv-recov-note { margin-top: 28px; font-size: 14px; color: var(--muted); font-style: italic; }
.sv-recov-note a { color: var(--accent); text-decoration: none; font-weight: 500; }
.sv-recov-note a:hover { text-decoration: underline; }

.sv-pullout {
  background: var(--surface);
  border-left: 4px solid var(--accent3);
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-md);
  position: relative;
}
.sv-pullout::before {
  content: '!';
  position: absolute; top: -14px; left: -20px;
  width: 36px; height: 36px;
  background: var(--accent3); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(220,38,38,0.32);
}
.sv-pullout-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent3); margin-bottom: 8px;
}
.sv-pullout-text {
  font-size: 17px; line-height: 1.6;
  color: var(--text); font-weight: 500;
}

/* ============================================================
   SYMPTOMS GRID
   ============================================================ */
.sv-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-symptom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.sv-symptom-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sv-sev-stripe { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.sv-symptom-card.sev-high .sv-sev-stripe { background: linear-gradient(90deg, var(--accent3), #ef4444); }
.sv-symptom-card.sev-medhigh .sv-sev-stripe { background: linear-gradient(90deg, #b45309, var(--accent3)); }
.sv-symptom-card.sev-med .sv-sev-stripe { background: linear-gradient(90deg, #d97706, #f59e0b); }
.sv-symptom-card.sev-low .sv-sev-stripe { background: linear-gradient(90deg, var(--accent), var(--accent2)); }

.sv-sev-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 14px; width: fit-content;
}
.sv-sev-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.sv-sev-badge.sev-high    { background: rgba(220,38,38,0.10); color: var(--accent3); }
.sv-sev-badge.sev-medhigh { background: rgba(180,83,9,0.12);  color: #b45309; }
.sv-sev-badge.sev-med     { background: rgba(217,119,6,0.12);  color: #b45309; }
.sv-sev-badge.sev-low     { background: rgba(0,16,90,0.12);    color: var(--accent2); }

.sv-symptom-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.sv-symptom-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.sv-symptom-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.sv-symptom-action {
  background: rgba(220,38,38,0.05);
  border: 1px dashed rgba(220,38,38,0.28);
  border-radius: 8px; padding: 10px 12px;
  font-size: 12px; color: #991b1b; font-weight: 500;
  margin-bottom: 14px; line-height: 1.5;
}
.sv-symptom-card.sev-low .sv-symptom-action { background: rgba(0,16,90,0.04); border-color: rgba(0,16,90,0.22); color: var(--accent2); }
.sv-symptom-link {
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.sv-symptom-link:hover { gap: 8px; }
.sv-symptoms-footer {
  margin-top: 48px; text-align: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.sv-symptoms-footer p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }
.sv-cta-pair { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PROCESS
   ============================================================ */
.sv-process-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-process-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px; margin-bottom: 48px;
}
.sv-process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 0;
}
.sv-process-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}
.sv-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800; color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(27,65,255,0.18), 0 0 0 6px rgba(27,65,255,0.05);
}
.sv-step-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.sv-step-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 240px; }

.sv-guarantee-callout {
  background: linear-gradient(135deg, rgba(27,65,255,0.06), rgba(0,16,90,0.04));
  border: 1.5px solid rgba(27,65,255,0.22);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: center;
  margin-top: 32px;
}
.sv-guarantee-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(27,65,255,0.28);
}
.sv-guarantee-text { font-size: 16px; color: var(--text); line-height: 1.6; }
.sv-guarantee-text strong { font-family: var(--font-head); font-weight: 700; color: var(--accent); }

/* ============================================================
   TURNAROUND
   ============================================================ */
.sv-turnaround-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.sv-tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.sv-tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(27,65,255,0.3); }
.sv-tier-dot {
  width: 14px; height: 14px;
  border-radius: 50%; margin-bottom: 20px;
  position: relative;
}
.sv-tier-dot::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.3;
}
.sv-tier-card.t1 .sv-tier-dot { background: var(--accent); color: var(--accent); }
.sv-tier-card.t2 .sv-tier-dot { background: #7c3aed; color: #7c3aed; }
.sv-tier-card.t3 .sv-tier-dot { background: #d97706; color: #d97706; }
.sv-tier-card.t4 .sv-tier-dot { background: var(--accent3); color: var(--accent3); }
.sv-tier-time {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 6px;
  color: var(--text);
}
.sv-tier-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px;
}
.sv-tier-card.t1 .sv-tier-label { color: var(--accent); }
.sv-tier-card.t2 .sv-tier-label { color: #7c3aed; }
.sv-tier-card.t3 .sv-tier-label { color: #d97706; }
.sv-tier-card.t4 .sv-tier-label { color: var(--accent3); }
.sv-tier-surcharge { font-size: 12px; color: var(--dim); margin-bottom: 14px; font-style: italic; }
.sv-tier-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.sv-turnaround-note {
  margin-top: 32px; padding: 18px 24px;
  background: var(--bg2); border-radius: 10px;
  border-left: 3px solid var(--accent);
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.sv-turnaround-note strong { color: var(--text); font-weight: 600; }
.sv-turnaround-note a { color: var(--accent); font-weight: 600; text-decoration: none; }
.sv-turnaround-note a:hover { text-decoration: underline; }

/* ============================================================
   WHY CHOOSE (numbered 6-grid)
   ============================================================ */
.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px; overflow: hidden;
  margin-top: 12px;
}
.sv-why-item { background: var(--surface); padding: 36px 32px; transition: background 0.2s; }
.sv-why-item:hover { background: var(--bg2); }
.sv-why-num {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 800;
  color: var(--accent); margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.sv-why-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.25; color: var(--text); }
.sv-why-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   REVIEWS (3-col with quote mark)
   ============================================================ */
.sv-reviews-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-reviews-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-reviews-header { text-align: center; margin-bottom: 56px; }
.sv-reviews-header h2 { margin-bottom: 12px; }
.sv-reviews-stars { display: flex; gap: 4px; justify-content: center; margin-top: 14px; color: #f59e0b; font-size: 20px; }
.sv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sv-review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sv-review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sv-review-card::before {
  content: '"';
  position: absolute; top: -12px; left: 24px;
  font-family: var(--font-head);
  font-size: 90px; line-height: 1;
  color: var(--accent); opacity: 0.15; font-weight: 800;
}
.sv-review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.sv-review-text  { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.sv-review-author { font-size: 14px; color: var(--muted); font-weight: 500; }
.sv-review-author strong { color: var(--text); font-weight: 700; }

/* ============================================================
   PRIVACY (5-col)
   ============================================================ */
.sv-privacy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 12px;
}
.sv-privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.sv-privacy-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sv-privacy-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(27,65,255,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sv-privacy-icon svg { width: 20px; height: 20px; }
.sv-privacy-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: var(--text); }
.sv-privacy-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.sv-privacy-badges {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}
.sv-privacy-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent2); color: #fff;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.sv-privacy-badge svg { width: 14px; height: 14px; }

/* ============================================================
   COMPONENTS (3-col)
   ============================================================ */
.sv-components-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-components-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-component-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.sv-component-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.sv-component-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-head);
  font-size: 48px; font-weight: 800;
  color: var(--bg3); line-height: 1;
}
.sv-component-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px;
  box-shadow: 0 4px 14px rgba(27,65,255,0.22);
}
.sv-component-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; color: var(--text); }
.sv-component-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; }
.sv-component-fix {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 13px; color: var(--text); line-height: 1.6;
  position: relative; z-index: 1;
}
.sv-component-fix strong { font-weight: 600; color: var(--accent); }

/* ============================================================
   DEVICES & BRANDS
   ============================================================ */
.sv-devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sv-device-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.sv-device-card:hover { border-color: rgba(27,65,255,0.4); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sv-device-icon  { font-size: 32px; margin-bottom: 12px; display: block; }
.sv-device-name  { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.sv-device-types { font-size: 12px; color: var(--muted); line-height: 1.5; }
.sv-brands-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; margin-bottom: 24px; }
.sv-brand-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 18px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 14px; color: var(--text);
  transition: border-color 0.2s, transform 0.15s;
  cursor: default;
}
.sv-brand-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ============================================================
   DON'TS (5-col)
   ============================================================ */
.sv-donts-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-donts-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-donts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 12px;
}
.sv-dont-card {
  background: rgba(220,38,38,0.04);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 12px; padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sv-dont-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.sv-dont-x {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 14px; font-size: 18px;
}
.sv-dont-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--accent3); line-height: 1.25; }
.sv-dont-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   MAIL-IN
   ============================================================ */
.sv-mailin-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-mailin-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-mailin-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.sv-mailin-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sv-mailin-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sv-mailin-step-num {
  position: absolute; top: -14px; left: 24px;
  width: 32px; height: 32px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 10px rgba(27,65,255,0.28);
}
.sv-mailin-step-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 10px; margin-top: 6px; color: var(--text); }
.sv-mailin-step-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.sv-mailin-guarantee {
  margin-top: 36px;
  background: rgba(27,65,255,0.05);
  border: 1.5px solid rgba(27,65,255,0.22);
  border-radius: 12px; padding: 20px 28px;
  font-size: 15px; color: var(--text);
  text-align: center;
}
.sv-mailin-guarantee strong { color: var(--accent); font-weight: 700; }

/* ============================================================
   AREAS SERVED
   ============================================================ */
.sv-areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 40px;
}
.sv-areas-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 36px;
  box-shadow: var(--shadow-sm);
}
.sv-areas-card h3 {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  margin-bottom: 16px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sv-areas-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
.sv-areas-list li {
  font-size: 14px; color: var(--text);
  padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
}
.sv-areas-list li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.sv-mailin-avail {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px dashed var(--border);
  font-size: 14px; color: var(--muted); font-style: italic;
}
.sv-mailin-avail strong { color: var(--accent); font-style: normal; font-weight: 700; }

/* ============================================================
   CTA BANNER (service variant)
   ============================================================ */
.sv-cta-banner {
  background: linear-gradient(135deg, rgba(27,65,255,0.08), rgba(0,16,90,0.05));
  border: 1px solid rgba(27,65,255,0.18);
  border-radius: 20px;
  padding: 72px 64px; text-align: center;
  position: relative; overflow: hidden;
  margin: 0 48px 100px;
  box-shadow: var(--shadow-md);
}
.sv-cta-banner::before {
  content: '';
  position: absolute; inset: -100%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(27,65,255,0.09), transparent 70%);
  pointer-events: none;
}
.sv-cta-banner h2 { margin-bottom: 16px; position: relative; z-index: 1; }
.sv-cta-banner p  {
  font-size: 17px; color: var(--muted);
  margin-bottom: 36px; max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65; position: relative; z-index: 1;
}
.sv-cta-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.sv-cta-contact {
  display: flex; gap: 32px;
  justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.sv-cta-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--muted);
}
.sv-cta-contact-item a { color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.sv-cta-contact-item a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sv-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .sv-hero-card { max-width: 480px; }
  .sv-recov-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-symptoms-grid, .sv-components-grid { grid-template-columns: repeat(2,1fr); }
  .sv-why-grid { grid-template-columns: repeat(2,1fr); }
  .sv-turnaround-grid { grid-template-columns: repeat(2,1fr); }
  .sv-privacy-grid { grid-template-columns: repeat(3,1fr); }
  .sv-donts-grid { grid-template-columns: repeat(3,1fr); }
  .sv-mailin-steps { grid-template-columns: repeat(2,1fr); }
  .sv-process-steps { grid-template-columns: repeat(2,1fr); gap: 32px 16px; }
  .sv-process-steps::before { display: none; }
  .sv-reviews-grid { grid-template-columns: repeat(2,1fr); }
  .sv-areas-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sv-hero { padding: 96px 20px 56px; min-height: auto; }
  .sv-section { padding: 64px 20px; }
  .sv-recov-inner,
  .sv-process-inner,
  .sv-components-inner,
  .sv-donts-inner,
  .sv-mailin-inner,
  .sv-reviews-inner { padding: 64px 20px !important; }
  .sv-hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .sv-hero-actions .rm-btn-primary,
  .sv-hero-actions .rm-btn-ghost { justify-content: center; width: 100%; }
  .sv-cta-banner { padding: 48px 24px; margin: 0 20px 64px; }
  .sv-cta-contact { gap: 16px; flex-direction: column; align-items: center; }
  .sv-cta-actions { flex-direction: column; align-items: stretch; }
  .sv-cta-actions .rm-btn-primary { justify-content: center; width: 100%; }
  .sv-symptoms-grid, .sv-components-grid, .sv-why-grid, .sv-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sv-hero { padding: 84px 16px 48px; }
  .sv-section { padding: 56px 16px; }
  .sv-recov-inner,
  .sv-process-inner,
  .sv-components-inner,
  .sv-donts-inner,
  .sv-mailin-inner,
  .sv-reviews-inner { padding: 56px 16px !important; }
  .sv-turnaround-grid, .sv-privacy-grid, .sv-donts-grid,
  .sv-mailin-steps, .sv-devices-grid { grid-template-columns: 1fr; }
  .sv-process-steps  { grid-template-columns: 1fr; gap: 28px; }
  .sv-symptoms-grid, .sv-components-grid { grid-template-columns: 1fr; }
  .sv-cta-pair { flex-direction: column; }
  .sv-cta-pair a { width: 100%; justify-content: center; }
  .sv-cta-banner { padding: 40px 20px; margin: 0 16px 56px; border-radius: 14px; }
  .sv-hero-card { padding: 22px; }
  .sv-stat-row { gap: 10px; }
  .sv-stat-item { padding: 12px 8px; }
  .sv-stat-num { font-size: 22px; }
  .sv-trust-item { font-size: 13px; padding: 10px 12px; }
  .sv-hero-pills { gap: 6px; }
  .sv-pill { padding: 6px 11px; font-size: 12px; }
  .sv-pullout { padding: 22px 24px; }
  .sv-guarantee-callout { flex-direction: column; gap: 14px; }
  .sv-areas-card { padding: 24px; }
  .sv-why-grid { grid-template-columns: 1fr; }
  .sv-why-item { padding: 28px 24px; }
  .sv-reviews-grid { grid-template-columns: 1fr; }
  .sv-review-card { padding: 24px; }
}

/* ============================================================
   SSD SERVICE PAGE — UNIQUE SECTIONS
   Prefix: ssd- inside sv- namespace
   ============================================================ */

/* ── Diagnostic Wizard ─────────────────────────────────────── */
.sv-diag-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-diag-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.sv-diag-left {
  padding: 72px 56px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.sv-diag-right {
  padding: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
}

.sv-wizard { width: 100%; max-width: 480px; }
.sv-wizard-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.sv-wizard-dot {
  height: 3px; flex: 1;
  background: var(--border); border-radius: 2px;
  transition: background 0.3s;
}
.sv-wizard-dot.active { background: var(--accent); }
.sv-wizard-dot.done   { background: var(--accent2); }
.sv-wizard-step { display: none; }
.sv-wizard-step.active { display: block; }
.sv-wizard-q   { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; color: var(--text); }
.sv-wizard-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.sv-wizard-options { display: flex; flex-direction: column; gap: 10px; }
.sv-wizard-opt {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: left; width: 100%;
  color: var(--text); font-family: var(--font-body);
}
.sv-wizard-opt:hover {
  border-color: var(--accent);
  background: rgba(27,65,255,0.06);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.sv-wizard-opt-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.sv-wizard-opt-text strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.sv-wizard-opt-text span  { font-size: 13px; color: var(--muted); }

.sv-wizard-result {
  background: var(--bg3);
  border: 1.5px solid var(--accent);
  border-radius: 12px; padding: 24px;
  position: relative; overflow: hidden;
}
.sv-wizard-result::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.sv-result-urgency {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.sv-urgency-high { background: rgba(220,38,38,0.10); color: var(--accent3); }
.sv-urgency-med  { background: rgba(217,119,6,0.12);  color: #b45309; }
.sv-urgency-low  { background: rgba(0,16,90,0.12);    color: var(--accent2); }
.sv-result-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.sv-result-body  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.sv-result-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sv-result-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff; font-weight: 700;
  font-size: 14px; padding: 10px 20px; border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(27,65,255,0.22);
}
.sv-result-cta:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }
.sv-result-restart {
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
  padding: 10px 16px; border-radius: 6px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s; font-family: var(--font-body);
}
.sv-result-restart:hover { border-color: var(--text); color: var(--text); }

/* ── Failure Types (with rate bar) ────────────────────────── */
.sv-failures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-failure-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.sv-failure-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sv-failure-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.sv-failure-card:hover::after { opacity: 1; }
.sv-failure-icon  { font-size: 28px; margin-bottom: 16px; display: block; }
.sv-failure-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.sv-failure-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.sv-failure-rate  { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.sv-failure-rate span:first-child { font-size: 12px; color: var(--muted); white-space: nowrap; }
.sv-failure-rate span:last-child  { color: var(--accent2); white-space: nowrap; }
.sv-rate-bar  { height: 4px; background: var(--bg2); border-radius: 2px; flex: 1; overflow: hidden; }
.sv-rate-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 2px; transition: width 1s ease; }

/* ── 5-step process ────────────────────────────────────────── */
.sv-process-steps5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
  margin-top: 60px;
}
.sv-process-steps5::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(10% + 16px); right: calc(10% + 16px); height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 0;
}

/* ── TRIM / NAND visualizer ────────────────────────────────── */
.sv-trim-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-trim-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.sv-trim-body p {
  font-size: 17px; color: var(--muted);
  line-height: 1.75; margin-bottom: 24px; font-weight: 300;
}
.sv-trim-body p:last-of-type { margin-bottom: 32px; }
.sv-trim-alert {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.22);
  border-radius: 10px; padding: 16px 20px;
  font-size: 14px; color: #991b1b;
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 20px;
}
.sv-trim-alert-icon { font-size: 20px; flex-shrink: 0; }
.sv-trim-note { font-size: 14px; color: var(--muted); font-style: italic; }

.sv-trim-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
}
.sv-trim-visual-title {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 24px;
}
.sv-nand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px; margin-bottom: 20px;
}
.sv-nand-cell { aspect-ratio: 1; border-radius: 4px; transition: background 0.4s; }
.sv-nand-cell.live    { background: rgba(27,65,255,0.75); }
.sv-nand-cell.deleted { background: rgba(220,38,38,0.55); }
.sv-nand-cell.trimmed { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.2); }
.sv-nand-cell.empty   { background: var(--bg3); border: 1px solid var(--border); }

.sv-nand-legend { display: flex; gap: 16px; flex-wrap: wrap; }
.sv-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.sv-legend-dot  { width: 10px; height: 10px; border-radius: 2px; }

.sv-trim-controls { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.sv-trim-status { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.sv-trim-btn {
  background: var(--accent); color: #fff; font-weight: 700;
  font-size: 13px; padding: 8px 16px; border-radius: 6px;
  border: none; cursor: pointer; font-family: var(--font-body);
  box-shadow: 0 2px 6px rgba(27,65,255,0.22);
  transition: background 0.2s;
}
.sv-trim-btn:hover { background: var(--accent-hover); }
.sv-trim-btn-reset {
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
  padding: 8px 14px; border-radius: 6px;
  cursor: pointer; font-family: var(--font-body);
  margin-left: 8px; transition: border-color 0.2s, color 0.2s;
}
.sv-trim-btn-reset:hover { border-color: var(--text); color: var(--text); }

/* ── Why Choose 2×3 emoji grid ─────────────────────────────── */
.sv-why-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px; overflow: hidden;
}
.sv-why-item-em { background: var(--surface); padding: 40px; transition: background 0.2s; }
.sv-why-item-em:hover { background: var(--bg2); }
.sv-why-em-icon  { font-size: 28px; margin-bottom: 16px; display: block; }
.sv-why-em-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.sv-why-em-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── DIY Guide ─────────────────────────────────────────────── */
.sv-diy-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-diy-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-diy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sv-diy-card { border-radius: 14px; padding: 32px; }
.sv-diy-card.safe   { background: rgba(0,16,90,0.05);  border: 1px solid rgba(0,16,90,0.22); }
.sv-diy-card.danger { background: rgba(220,38,38,0.04); border: 1px solid rgba(220,38,38,0.2); }
.sv-diy-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.sv-diy-header-icon  { font-size: 24px; }
.sv-diy-header-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.sv-diy-card.safe   .sv-diy-header-title { color: var(--accent2); }
.sv-diy-card.danger .sv-diy-header-title { color: var(--accent3); }
.sv-diy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sv-diy-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.6; color: var(--text);
}
.sv-diy-list li::before {
  content: '✓'; flex-shrink: 0;
  font-size: 13px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.sv-diy-card.safe   .sv-diy-list li::before { background: rgba(0,16,90,0.14); color: var(--accent2); }
.sv-diy-card.danger .sv-diy-list li::before { content: '✕'; background: rgba(220,38,38,0.12); color: var(--accent3); }

/* ── SSD responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sv-diag-grid         { grid-template-columns: 1fr; }
  .sv-diag-left         { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 32px; }
  .sv-diag-right        { padding: 40px 32px; }
  .sv-failures-grid     { grid-template-columns: repeat(2,1fr); }
  .sv-process-steps5    { grid-template-columns: repeat(3,1fr); gap: 32px 16px; }
  .sv-process-steps5::before { display: none; }
  .sv-trim-inner        { grid-template-columns: 1fr; gap: 40px; }
  .sv-why-grid-2col     { grid-template-columns: 1fr; }
  .sv-diy-grid          { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sv-diag-left  { padding: 48px 20px; }
  .sv-diag-right { padding: 32px 20px; }
  .sv-trim-inner { padding: 64px 20px !important; }
  .sv-diy-inner  { padding: 64px 20px !important; }
  .sv-failures-grid { grid-template-columns: 1fr; }
  .sv-why-item-em   { padding: 28px 24px; }
  .sv-diy-card      { padding: 24px; }
  .sv-result-actions { flex-direction: column; align-items: stretch; }
  .sv-result-cta, .sv-result-restart { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .sv-nand-grid         { grid-template-columns: repeat(6,1fr); }
  .sv-trim-visual       { padding: 22px; }
  .sv-process-steps5    { grid-template-columns: 1fr; gap: 28px; }
  .sv-wizard-q          { font-size: 19px; }
  .sv-wizard-opt        { padding: 14px; }
  .sv-wizard-opt-text strong { font-size: 14px; }
  .sv-trim-inner        { padding: 56px 16px !important; }
  .sv-diy-inner         { padding: 56px 16px !important; }
}

/* ============================================================
   LOCATION PAGE — Blog Cards + Location List
   Prefix: lp-
   ============================================================ */

/* ── Location hero sub-nav crumb ───────────────────────────── */
.lp-loc-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); font-weight: 500;
  margin-bottom: 22px;
}
.lp-loc-crumb svg { color: var(--accent); flex-shrink: 0; }
.lp-loc-crumb a   { color: var(--muted); text-decoration: none; }
.lp-loc-crumb a:hover { color: var(--accent); }
.lp-loc-crumb span { color: var(--accent); font-weight: 600; }

/* ── Blog section ───────────────────────────────────────────── */
.lp-blog-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-blog-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.lp-blog-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }

.lp-blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
}
.lp-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(27,65,255,0.3); color: inherit; }

.lp-blog-thumb {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.lp-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.lp-blog-card:hover .lp-blog-thumb img { transform: scale(1.04); }
.lp-blog-thumb-placeholder { font-size: 48px; opacity: 0.3; }

.lp-blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.lp-blog-meta {
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.lp-blog-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  line-height: 1.3; color: var(--text); margin-bottom: 12px;
}
.lp-blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.lp-blog-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
.lp-blog-read-more {
  font-size: 13px; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none; transition: gap 0.2s;
}
.lp-blog-card:hover .lp-blog-read-more { gap: 9px; }
.lp-blog-footer { text-align: center; margin-top: 48px; }

/* ── Other Locations grid ───────────────────────────────────── */
.lp-locations-wrap { padding: 80px 48px; max-width: 1240px; margin: 0 auto; }
.lp-locations-intro { max-width: 640px; margin-bottom: 40px; }
.lp-locations-intro p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-top: 8px; }
.lp-locations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.lp-location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.lp-location-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--text); }
.lp-location-card::before {
  content: '';
  display: block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  opacity: 0.5; margin-bottom: 4px;
  transition: opacity 0.2s;
}
.lp-location-card:hover::before { opacity: 1; }
.lp-location-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; line-height: 1.3; }
.lp-location-sub  { font-size: 12px; color: var(--muted); }
.lp-location-arrow { font-size: 13px; color: var(--accent); opacity: 0; transition: opacity 0.2s; margin-top: 4px; }
.lp-location-card:hover .lp-location-arrow { opacity: 1; }

/* ── Location responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-locations-grid { grid-template-columns: repeat(3,1fr); }
  .lp-blog-grid      { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .lp-blog-inner      { padding: 64px 20px; }
  .lp-locations-wrap  { padding: 64px 20px; }
  .lp-locations-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .lp-blog-inner     { padding: 56px 16px; }
  .lp-locations-wrap { padding: 56px 16px; }
  .lp-blog-grid      { grid-template-columns: 1fr; }
  .lp-locations-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEW INTERACTIVE SECTIONS — 15 service pages
   ============================================================ */

/* ── Cost Calculator (Enterprise) ─────────────────────────── */
.sv-calc-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-calc-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: center;
}
.sv-calc-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-calc-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: var(--shadow-md); }
.sv-calc-panel-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 28px; }
.sv-calc-row { margin-bottom: 28px; }
.sv-calc-label { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; display: flex; justify-content: space-between; }
.sv-calc-label span { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--accent); }
.sv-calc-slider { width: 100%; height: 4px; border-radius: 2px; appearance: none; background: var(--bg2); outline: none; cursor: pointer; }
.sv-calc-slider::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 2px 8px rgba(27,65,255,0.36); cursor: pointer; }
.sv-calc-result { background: linear-gradient(135deg, rgba(220,38,38,0.08), rgba(220,38,38,0.04)); border: 1.5px solid rgba(220,38,38,0.28); border-radius: 12px; padding: 24px 28px; margin-top: 8px; }
.sv-calc-result-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent3); margin-bottom: 8px; }
.sv-calc-cost { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent3); line-height: 1; margin-bottom: 4px; }
.sv-calc-note { font-size: 13px; color: #991b1b; line-height: 1.5; }
.sv-calc-cta { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Phone Layer Explorer ──────────────────────────────────── */
.sv-layer-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-layer-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center;
}
.sv-layer-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-phone-explorer { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sv-phone-explorer-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px; }
.sv-phone-layers { display: flex; flex-direction: column; gap: 8px; }
.sv-phone-layer {
  background: var(--bg3); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 14px 18px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex; align-items: center; gap: 14px;
}
.sv-phone-layer:hover, .sv-phone-layer.active { border-color: var(--accent); background: rgba(27,65,255,0.06); transform: translateX(4px); }
.sv-phone-layer.nand-layer { border-color: rgba(0,16,90,0.35); background: rgba(0,16,90,0.06); }
.sv-phone-layer.nand-layer:hover, .sv-phone-layer.nand-layer.active { border-color: var(--accent2); background: rgba(0,16,90,0.1); }
.sv-layer-icon { font-size: 20px; flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: var(--bg2); display: flex; align-items: center; justify-content: center; }
.sv-layer-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.sv-layer-status { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.sv-layer-status.safe   { color: var(--accent2); }
.sv-layer-status.risky  { color: #d97706; }
.sv-layer-status.danger { color: var(--accent3); }
.sv-layer-tooltip {
  margin-top: 8px; padding: 12px 16px;
  background: var(--bg2); border-radius: 8px;
  font-size: 13px; color: var(--text); line-height: 1.6;
  border-left: 3px solid var(--accent);
  display: none;
}
.sv-phone-layer.active .sv-layer-tooltip { display: block; }

/* ── SD Hex Visualizer ─────────────────────────────────────── */
.sv-hex-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-hex-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start;
}
.sv-hex-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-hex-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sv-hex-select { width: 100%; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--text); font-family: var(--font-body); margin-bottom: 20px; cursor: pointer; }
.sv-hex-display { font-family: 'Courier New', monospace; font-size: 11px; color: var(--muted); background: var(--bg3); border-radius: 8px; padding: 14px; line-height: 1.8; overflow-x: auto; white-space: nowrap; margin-bottom: 16px; }
.sv-hex-display .hex-corrupt { color: var(--accent3); font-weight: 700; }
.sv-hex-display .hex-recover { color: #16a34a; font-weight: 600; }
.sv-hex-display .hex-free    { color: var(--dim); }
.sv-hex-explanation { padding: 14px 18px; background: var(--bg2); border-radius: 8px; font-size: 14px; color: var(--text); line-height: 1.65; border-left: 3px solid var(--accent); margin-bottom: 16px; }
.sv-recover-bar { background: var(--bg2); border-radius: 8px; padding: 14px 16px; }
.sv-recover-bar-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; display: flex; justify-content: space-between; }
.sv-recover-bar-label span { color: var(--accent2); font-size: 14px; }
.sv-recover-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.sv-recover-fill  { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 3px; transition: width 0.6s ease; }

/* ── USB Anatomy Diagram ───────────────────────────────────── */
.sv-usb-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-usb-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center;
}
.sv-usb-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-usb-diagram { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sv-usb-diagram-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px; }
.sv-usb-parts { display: flex; flex-direction: column; gap: 8px; }
.sv-usb-part {
  background: var(--bg3); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 14px 18px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.sv-usb-part:hover, .sv-usb-part.active { border-color: var(--accent); background: rgba(27,65,255,0.05); transform: translateX(3px); }
.sv-usb-part.nand { border-color: rgba(0,16,90,0.35); background: rgba(0,16,90,0.05); }
.sv-usb-part.nand:hover, .sv-usb-part.nand.active { border-color: var(--accent2); background: rgba(0,16,90,0.1); }
.sv-usb-part-header { display: flex; align-items: center; gap: 10px; }
.sv-usb-part-icon { font-size: 18px; }
.sv-usb-part-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); }
.sv-usb-part-fail { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-left: auto; }
.sv-usb-part.nand .sv-usb-part-fail { color: #16a34a; }
.sv-usb-tooltip { font-size: 13px; color: var(--text); line-height: 1.6; padding: 10px 0 2px; display: none; }
.sv-usb-part.active .sv-usb-tooltip { display: block; }

/* ── FS Corruption Visualizer ──────────────────────────────── */
.sv-fsv-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-fsv-inner { max-width: 1240px; margin: 0 auto; padding: 100px 48px; }
.sv-fsv-body { max-width: 640px; margin-bottom: 48px; }
.sv-fsv-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-weight: 300; }
.sv-fsv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sv-fsv-pane { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.sv-fsv-pane-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 20px; }
.sv-fsv-diagram { min-height: 200px; position: relative; }
.sv-fsv-mft { background: var(--bg2); border: 2px solid var(--accent); border-radius: 8px; padding: 10px 14px; text-align: center; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.sv-fsv-mft.corrupt { border-color: var(--accent3); color: var(--accent3); background: rgba(220,38,38,0.06); position: relative; }
.sv-fsv-mft.corrupt::after { content: '✕ CORRUPTED'; position: absolute; top: -8px; right: -8px; background: var(--accent3); color: #fff; font-size: 9px; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.1em; }
.sv-fsv-nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sv-fsv-node { background: var(--bg3); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px; text-align: center; font-size: 12px; font-weight: 600; transition: border-color 0.3s, background 0.3s; }
.sv-fsv-node.active { border-color: var(--accent2); color: var(--accent2); background: rgba(0,16,90,0.06); }
.sv-fsv-node.grey   { border-color: var(--border); color: var(--dim); background: var(--bg3); }
.sv-fsv-node.green  { border-color: #16a34a; color: #16a34a; background: rgba(22,163,74,0.06); }
.sv-fsv-line { height: 1px; background: var(--accent); margin: 0 auto 12px; width: 60%; transition: background 0.3s; }
.sv-fsv-line.broken { background: var(--accent3); background: repeating-linear-gradient(90deg, var(--accent3) 0, var(--accent3) 6px, transparent 6px, transparent 12px); }
.sv-fsv-blocks { margin-top: 16px; }
.sv-fsv-blocks-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.sv-fsv-blocks-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.sv-fsv-block { aspect-ratio: 1; border-radius: 3px; background: rgba(27,65,255,0.65); }
.sv-fsv-block.grey  { background: var(--bg2); border: 1px solid var(--border); }
.sv-fsv-controls { text-align: center; margin-top: 28px; }
.sv-fsv-toggle-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.sv-fsv-toggle { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s; font-family: var(--font-body); }
.sv-fsv-toggle:hover, .sv-fsv-toggle.active { border-color: var(--accent); color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-fsv-btn { background: var(--accent); color: #fff; border: none; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font-body); box-shadow: 0 2px 8px rgba(27,65,255,0.22); transition: background 0.2s; }
.sv-fsv-btn:hover { background: var(--accent-hover); }
.sv-fsv-note { font-size: 13px; color: var(--muted); margin-top: 16px; font-style: italic; }

/* ── RAID Parity Visualizer ────────────────────────────────── */
.sv-raid-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-raid-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 540px; gap: 80px; align-items: start;
}
.sv-raid-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-raid-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sv-raid-panel-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 20px; }
.sv-raid-level-select { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sv-raid-level-btn { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.sv-raid-level-btn:hover, .sv-raid-level-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-raid-drives { display: flex; gap: 10px; margin-bottom: 16px; justify-content: center; flex-wrap: wrap; }
.sv-raid-drive { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sv-raid-drive-body { width: 64px; border-radius: 8px; padding: 8px 6px; min-height: 120px; display: flex; flex-direction: column; gap: 4px; background: var(--bg2); border: 1.5px solid var(--border); transition: border-color 0.3s; }
.sv-raid-drive.failed .sv-raid-drive-body { border-color: var(--accent3); background: rgba(220,38,38,0.06); }
.sv-raid-block { height: 14px; border-radius: 3px; background: rgba(27,65,255,0.6); transition: background 0.4s; font-size: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); font-weight: 700; }
.sv-raid-block.parity { background: rgba(0,16,90,0.5); }
.sv-raid-block.failed { background: rgba(220,38,38,0.4); }
.sv-raid-block.recover { background: rgba(22,163,74,0.6); }
.sv-raid-drive-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.sv-raid-drive.failed .sv-raid-drive-label { color: var(--accent3); }
.sv-raid-status { font-size: 13px; color: var(--muted); background: var(--bg2); border-radius: 8px; padding: 10px 14px; margin-bottom: 12px; line-height: 1.5; }
.sv-raid-btn { background: var(--accent); color: #fff; border: none; padding: 9px 20px; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-body); box-shadow: 0 2px 6px rgba(27,65,255,0.22); transition: background 0.2s; margin-right: 8px; }
.sv-raid-btn-reset { background: none; border: 1px solid var(--border); color: var(--muted); font-size: 12px; padding: 9px 16px; border-radius: 7px; cursor: pointer; font-family: var(--font-body); transition: border-color 0.2s, color 0.2s; }

/* ── Boot Problem Identifier (PC) ─────────────────────────── */
.sv-boot-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
/* Reuses .sv-diag-grid/.sv-wizard pattern — no new CSS needed */

/* ── Repair vs Recovery Tool (iPhone/Android) ─────────────── */
.sv-rr-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-rr-inner { max-width: 900px; margin: 0 auto; padding: 100px 48px; }
.sv-rr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.sv-rr-option {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px 18px;
  cursor: pointer; text-align: center; transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.sv-rr-option:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sv-rr-option-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.sv-rr-option-label { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }
.sv-rr-result {
  margin-top: 32px; padding: 28px 32px; border-radius: 14px;
  display: none; border: 1.5px solid var(--border);
  background: var(--surface);
}
.sv-rr-result.visible { display: block; }
.sv-rr-result.repair-result { border-color: var(--accent2); background: rgba(0,16,90,0.04); }
.sv-rr-result.recovery-result { border-color: var(--accent3); background: rgba(220,38,38,0.04); }
.sv-rr-result-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.sv-rr-result.repair-result   .sv-rr-result-type { color: var(--accent2); }
.sv-rr-result.recovery-result .sv-rr-result-type { color: var(--accent3); }
.sv-rr-result-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.sv-rr-result-body  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.sv-rr-result-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Cost Estimator (Laptop Repair) ───────────────────────── */
.sv-est-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-est-inner { max-width: 860px; margin: 0 auto; padding: 100px 48px; }
.sv-est-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.sv-est-group label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: block; margin-bottom: 8px; }
.sv-est-select { width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 15px; color: var(--text); font-family: var(--font-body); cursor: pointer; appearance: none; transition: border-color 0.2s; }
.sv-est-select:focus { outline: none; border-color: var(--accent); }
.sv-est-result { margin-top: 28px; background: var(--surface); border: 1.5px solid var(--accent); border-radius: 14px; padding: 28px 32px; display: none; }
.sv-est-result.visible { display: block; }
.sv-est-result-range { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.sv-est-result-time  { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 16px; }
.sv-est-result-includes { font-size: 14px; color: var(--text); line-height: 1.7; }
.sv-est-disclaimer { font-size: 12px; color: var(--dim); font-style: italic; margin-top: 12px; }

/* ── MacBook Timeline ──────────────────────────────────────── */
.sv-timeline-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-timeline-inner { max-width: 1000px; margin: 0 auto; padding: 100px 48px; }
.sv-timeline-track { display: flex; gap: 0; margin-top: 48px; overflow-x: auto; padding-bottom: 8px; }
.sv-timeline-point { flex: 1; min-width: 140px; display: flex; flex-direction: column; align-items: center; position: relative; }
.sv-timeline-point::before { content: ''; position: absolute; top: 20px; left: 50%; right: -50%; height: 3px; z-index: 0; }
.sv-timeline-point:last-child::before { display: none; }
.sv-timeline-point.t-safe::before { background: #16a34a; }
.sv-timeline-point.t-warn::before { background: #d97706; }
.sv-timeline-point.t-danger::before { background: var(--accent3); }
.sv-timeline-dot { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 1; margin-bottom: 14px; flex-shrink: 0; position: relative; }
.sv-timeline-point.t-safe   .sv-timeline-dot { background: rgba(22,163,74,0.15); border: 2px solid #16a34a; }
.sv-timeline-point.t-warn   .sv-timeline-dot { background: rgba(217,119,6,0.15); border: 2px solid #d97706; }
.sv-timeline-point.t-danger .sv-timeline-dot { background: rgba(220,38,38,0.15); border: 2px solid var(--accent3); }
.sv-timeline-time  { font-family: var(--font-head); font-size: 13px; font-weight: 800; margin-bottom: 4px; text-align: center; }
.sv-timeline-event { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.4; padding: 0 8px; }
.sv-timeline-note { margin-top: 36px; padding: 20px 28px; background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.22); border-radius: 10px; font-size: 15px; color: #991b1b; line-height: 1.6; }

/* ── Corrosion Simulator (Water Damage) ───────────────────── */
.sv-corr-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-corr-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 500px; gap: 80px; align-items: center;
}
.sv-corr-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-corr-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sv-corr-panel-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px; }
.sv-corr-device-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sv-corr-device-btn { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 14px; font-size: 12px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.sv-corr-device-btn:hover, .sv-corr-device-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-corr-slider-row { margin-bottom: 20px; }
.sv-corr-slider-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; display: flex; justify-content: space-between; }
.sv-corr-slider-label span { font-family: var(--font-head); font-weight: 800; color: var(--accent3); }
.sv-corr-board { position: relative; border-radius: 10px; background: #1a2540; border: 1px solid rgba(255,255,255,0.1); padding: 20px; margin-bottom: 16px; min-height: 180px; }
.sv-corr-component { position: absolute; border-radius: 5px; font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; text-align: center; transition: background 0.5s, border-color 0.5s; border: 1px solid rgba(255,255,255,0.15); }
.sv-corr-component.safe   { background: rgba(27,65,255,0.5); }
.sv-corr-component.warn   { background: rgba(217,119,6,0.6); border-color: #d97706; }
.sv-corr-component.danger { background: rgba(220,38,38,0.65); border-color: var(--accent3); }
.sv-corr-component.gone   { background: rgba(220,38,38,0.15); border-color: rgba(220,38,38,0.3); color: rgba(255,255,255,0.3); }
.sv-corr-status-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sv-corr-status-item { background: var(--bg2); border-radius: 8px; padding: 10px 14px; }
.sv-corr-status-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
.sv-corr-status-value { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.sv-corr-status-value.safe   { color: #16a34a; }
.sv-corr-status-value.warn   { color: #d97706; }
.sv-corr-status-value.danger { color: var(--accent3); }

/* ── Micro-Soldering Zoom (Logic Board) ───────────────────── */
.sv-zoom-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-zoom-inner {
  max-width: 1240px; margin: 0 auto; padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start;
}
.sv-zoom-body p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.sv-zoom-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sv-zoom-levels { display: flex; gap: 8px; margin-bottom: 20px; }
.sv-zoom-btn { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 7px; padding: 7px 14px; font-size: 12px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.sv-zoom-btn:hover, .sv-zoom-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-zoom-view { background: #0d1117; border-radius: 10px; min-height: 180px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.sv-zoom-view-inner { padding: 20px; position: relative; }
.sv-zoom-level-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); position: absolute; top: 10px; right: 14px; }
.sv-zoom-info { padding: 14px 18px; background: var(--bg2); border-radius: 8px; font-size: 14px; color: var(--text); line-height: 1.6; border-left: 3px solid var(--accent); margin-bottom: 16px; }
.sv-zoom-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sv-zoom-compare-card { border-radius: 10px; padding: 16px; font-size: 13px; line-height: 1.6; }
.sv-zoom-compare-card.other { background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2); color: #991b1b; }
.sv-zoom-compare-card.us    { background: rgba(0,16,90,0.06); border: 1px solid rgba(0,16,90,0.22); color: var(--accent2); }
.sv-zoom-compare-card strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }

/* ── Boot Error Decoder (OS Repair) ───────────────────────── */
.sv-berd-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-berd-inner { max-width: 900px; margin: 0 auto; padding: 100px 48px; }
.sv-berd-os-row { display: flex; gap: 10px; margin: 32px 0 20px; flex-wrap: wrap; }
.sv-berd-os-btn { background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 20px; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.sv-berd-os-btn:hover, .sv-berd-os-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-berd-select { width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 15px; color: var(--text); font-family: var(--font-body); cursor: pointer; margin-bottom: 20px; appearance: none; display: none; transition: border-color 0.2s; }
.sv-berd-select.visible { display: block; }
.sv-berd-terminal {
  background: #0d1117; border-radius: 10px; padding: 24px 28px;
  font-family: 'Courier New', monospace; font-size: 14px; min-height: 180px;
  border: 1px solid rgba(255,255,255,0.06);
}
.sv-berd-terminal .t-dim    { color: rgba(255,255,255,0.25); }
.sv-berd-terminal .t-code   { color: #f59e0b; font-weight: 700; }
.sv-berd-terminal .t-label  { color: #60a5fa; }
.sv-berd-terminal .t-ok     { color: #4ade80; }
.sv-berd-terminal .t-error  { color: #f87171; }
.sv-berd-terminal .t-plain  { color: rgba(255,255,255,0.75); }
.sv-berd-result { margin-top: 20px; background: var(--surface); border: 1.5px solid var(--accent); border-radius: 12px; padding: 24px 28px; display: none; }
.sv-berd-result.visible { display: block; }
.sv-berd-result-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sv-berd-result-body  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.sv-berd-result-risk  { font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.sv-berd-result-risk.low  { background: rgba(0,16,90,0.1); color: var(--accent2); }
.sv-berd-result-risk.med  { background: rgba(217,119,6,0.1); color: #b45309; }
.sv-berd-result-risk.high { background: rgba(220,38,38,0.1); color: var(--accent3); }

/* ── Console Symptom Matcher ──────────────────────────────── */
.sv-csm-wrap { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sv-csm-inner { max-width: 900px; margin: 0 auto; padding: 100px 48px; }
.sv-csm-brand-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 32px 0 24px; }
.sv-csm-brand { background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 20px; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.sv-csm-brand:hover, .sv-csm-brand.active { border-color: var(--accent); color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-csm-symptoms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; display: none; }
.sv-csm-symptoms.visible { display: grid; }
.sv-csm-symptom { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 10px; padding: 14px 18px; cursor: pointer; transition: all 0.2s; }
.sv-csm-symptom:hover, .sv-csm-symptom.active { border-color: var(--accent); background: rgba(27,65,255,0.06); }
.sv-csm-symptom-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.sv-csm-symptom-sub  { font-size: 12px; color: var(--muted); }
.sv-csm-result { margin-top: 24px; background: var(--surface); border: 1.5px solid var(--accent); border-radius: 14px; padding: 28px 32px; display: none; }
.sv-csm-result.visible { display: block; }
.sv-csm-result-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sv-csm-result-body  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.sv-csm-save-data { font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 8px; background: rgba(0,16,90,0.06); border: 1px solid rgba(0,16,90,0.2); color: var(--accent2); margin-bottom: 20px; }

/* ── New page responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .sv-calc-inner, .sv-layer-inner, .sv-hex-inner, .sv-usb-inner,
  .sv-raid-inner, .sv-corr-inner, .sv-zoom-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-fsv-grid { grid-template-columns: 1fr; }
  .sv-rr-grid  { grid-template-columns: repeat(2, 1fr); }
  .sv-est-selects { grid-template-columns: 1fr; }
  .sv-csm-symptoms { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sv-calc-inner,.sv-layer-inner,.sv-hex-inner,.sv-usb-inner,.sv-fsv-inner,
  .sv-raid-inner,.sv-corr-inner,.sv-zoom-inner,.sv-berd-inner,.sv-csm-inner,
  .sv-rr-inner,.sv-est-inner,.sv-timeline-inner { padding: 64px 20px !important; }
  .sv-timeline-track { gap: 0; }
  .sv-timeline-point { min-width: 110px; }
}
@media (max-width: 600px) {
  .sv-calc-inner,.sv-layer-inner,.sv-hex-inner,.sv-usb-inner,.sv-fsv-inner,
  .sv-raid-inner,.sv-corr-inner,.sv-zoom-inner,.sv-berd-inner,.sv-csm-inner,
  .sv-rr-inner,.sv-est-inner,.sv-timeline-inner { padding: 56px 16px !important; }
  .sv-rr-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-zoom-compare { grid-template-columns: 1fr; }
  .sv-corr-status-rows { grid-template-columns: 1fr; }
  .sv-raid-drives { gap: 6px; }
  .sv-raid-drive-body { width: 50px; }
  .sv-timeline-track { gap: 0; overflow-x: auto; }
  .sv-timeline-point { min-width: 100px; }
}
