:root {
  --bg: #0F172A;
  --bg-deep: #0B0F19;
  --surface: #1E293B;
  --surface-soft: rgba(30, 41, 59, 0.72);
  --primary: #2563EB;
  --highlight: #06B6D4;
  --whatsapp: #25D366;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --line: rgba(148, 163, 184, 0.22);
  --line-bright: rgba(6, 182, 212, 0.42);
  --shadow-panel: 0 24px 64px rgba(0, 0, 0, 0.38);
  --container: min(100% - 36px, 1180px);
  --section: clamp(68px, 8.5vw, 116px);
  --fs-body: clamp(1.04rem, 1.1vw, 1.18rem);
  --fs-caption: 0.96rem;
  --fs-title: clamp(1.65rem, 2.6vw, 2.32rem);
  --fs-headline: clamp(2.35rem, 5.2vw, 4.55rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body.service-page {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 99, 235, 0.16), transparent 28rem),
    linear-gradient(180deg, #0B0F19 0%, #0F172A 38%, #0B0F19 100%);
  color: var(--text);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.62;
}

a {
  color: inherit;
}

p {
  color: var(--muted);
}

img {
  max-width: 100%;
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-icon-fill {
  fill: currentColor;
  stroke: none;
}

.repair-container {
  width: var(--container);
  margin-inline: auto;
}

.repair-hero {
  position: relative;
  min-height: clamp(720px, 92vh, 920px);
  display: flex;
  align-items: center;
  padding: 132px 0 78px;
  background-image: url("../images/banner-home.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.repair-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.82) 48%, rgba(11, 15, 25, 0.42) 100%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.28), rgba(11, 15, 25, 0.92));
}

.repair-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
}

.page-kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--highlight);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 900;
}

.repair-hero h1,
.section-head h2,
.final-cta h2,
.media-grid h2 {
  margin: 0;
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: var(--fs-headline);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.repair-hero h1 {
  max-width: 900px;
  font-size: clamp(2.95rem, 6.25vw, 5.85rem);
}

.hero-line {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--text);
  font-size: clamp(1.18rem, 1.7vw, 1.46rem);
  font-weight: 900;
  line-height: 1.28;
}

.hero-copy {
  max-width: 700px;
  margin: 14px 0 0;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
}

.hero-actions,
.final-cta .page-btn {
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  padding: 15px 24px;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.page-btn-whatsapp {
  border: 1px solid var(--whatsapp);
  background: var(--whatsapp);
  color: var(--bg-deep);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.22);
}

.page-btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(11, 15, 25, 0.78);
  color: var(--text);
}

.page-btn:hover,
.page-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.page-btn-whatsapp:hover,
.page-btn-whatsapp:focus-visible {
  background: #32e577;
  color: #07110b;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.3);
}

.page-btn-secondary:hover,
.page-btn-secondary:focus-visible {
  border-color: var(--highlight);
  color: var(--text);
}

.repair-hero-panel {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(14px);
  padding: clamp(22px, 4vw, 34px);
}

.repair-hero-panel div,
.price-list div,
.steps-list div {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.repair-hero-panel div:first-child,
.price-list div:first-child,
.steps-list div:first-child {
  padding-top: 0;
}

.repair-hero-panel div:last-child,
.price-list div:last-child,
.steps-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.repair-hero-panel span,
.price-list span {
  color: var(--muted);
}

.repair-hero-panel strong,
.price-list strong {
  color: var(--highlight);
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  font-weight: 900;
  text-align: right;
}

.section {
  padding: var(--section) 0;
}

.section-deep {
  background: rgba(11, 15, 25, 0.72);
  border-block: 1px solid rgba(148, 163, 184, 0.13);
}

.section-head {
  max-width: 760px;
}

.section-head p:not(.section-label),
.media-grid p,
.final-cta p {
  max-width: 720px;
  margin: 18px 0 0;
}

.section-head-wide {
  max-width: 930px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.symptom-grid a {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(30, 41, 59, 0.72);
  padding: clamp(22px, 3vw, 30px);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.symptom-grid a:hover,
.symptom-grid a:focus-visible {
  background: rgba(37, 99, 235, 0.2);
  outline: none;
}

.symptom-grid span,
.service-row strong,
.steps-list strong {
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: clamp(1.38rem, 2vw, 1.78rem);
  font-weight: 700;
  line-height: 1.08;
}

.symptom-grid small,
.service-row small,
.steps-list p,
.faq-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.52;
}

.pricing-grid,
.faq-grid,
.two-column,
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.pricing-panel {
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-panel);
  padding: clamp(24px, 4vw, 36px);
}

.formula-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.formula-row span,
.formula-row strong {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(11, 15, 25, 0.56);
  padding: 14px 16px;
  color: var(--text);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 900;
  text-align: center;
}

.formula-row strong {
  background: var(--primary);
}

.formula-row b {
  color: var(--highlight);
  font-size: 1.5rem;
  text-align: center;
}

.service-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.service-tiers-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(6, 182, 212, 0.13), transparent 30%),
    rgba(15, 23, 42, 0.72);
}

.tier-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.tier-group {
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-panel);
  padding: clamp(24px, 4vw, 34px);
}

.tier-group h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.32rem);
  line-height: 1.06;
}

.tier-group p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.tier-group div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.tier-group div:last-child {
  padding-bottom: 0;
}

.tier-group span {
  color: var(--muted);
}

.tier-group strong {
  color: var(--highlight);
  font-size: clamp(1.16rem, 1.8vw, 1.45rem);
  font-weight: 900;
  white-space: nowrap;
}

.service-care-note {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(11, 15, 25, 0.62);
  padding: clamp(20px, 3vw, 28px);
}

.service-care-note strong {
  color: var(--text);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  font-weight: 900;
  line-height: 1.25;
}

.service-care-note p,
.media-note {
  color: var(--muted-blue);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, auto);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 36px) 0;
  text-decoration: none;
}

.service-row:hover,
.service-row:focus-visible {
  outline: none;
}

.service-row:hover strong,
.service-row:focus-visible strong {
  color: var(--highlight);
}

.service-text {
  display: grid;
  gap: 10px;
}

.service-row b {
  color: var(--whatsapp);
  font-size: clamp(1.22rem, 2.2vw, 1.68rem);
  font-weight: 900;
  text-align: right;
}

.media-section {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.86)),
    url("../images/pc-diagnosis-setup.webp") center / cover;
}

.gpu-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gpu-gallery figure {
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
}

.gpu-gallery figure:first-child {
  grid-column: span 6;
}

.gpu-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gpu-gallery figcaption {
  padding: 13px 15px 15px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.media-note {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.55;
}

.thermal-brand-proof {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 26px);
  margin: 20px 0 22px;
  border-top: 1px solid rgba(37, 99, 235, 0.38);
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(232, 68, 26, 0.12), rgba(37, 99, 235, 0.08)),
    rgba(30, 41, 59, 0.58);
  padding: clamp(18px, 3vw, 24px);
}

.thermal-brand-proof img {
  width: clamp(156px, 21vw, 220px);
  max-height: 70px;
  object-fit: contain;
  flex: 0 0 auto;
}

.thermal-brand-proof div {
  display: grid;
  gap: 5px;
}

.thermal-brand-proof strong {
  color: var(--text);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  font-weight: 900;
  line-height: 1.24;
}

.thermal-brand-proof span {
  color: var(--muted-blue);
  line-height: 1.45;
}

.steps-list {
  border-radius: 8px;
  background: var(--surface-soft);
  padding: clamp(24px, 4vw, 34px);
}

.steps-list div {
  display: block;
}

.steps-list p {
  margin: 8px 0 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--highlight);
  font-size: 1.55rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding: clamp(58px, 8vw, 96px) 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(6, 182, 212, 0.12));
  border-top: 1px solid rgba(6, 182, 212, 0.28);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.mobile-quote-bar {
  display: none;
}

@media (max-width: 991px) {
  .repair-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .repair-hero-grid,
  .pricing-grid,
  .faq-grid,
  .two-column,
  .media-grid,
  .tier-board {
    grid-template-columns: 1fr;
  }

  .repair-hero-panel {
    max-width: 620px;
  }

  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formula-row {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 22px;
  }

  .formula-row span,
  .formula-row strong {
    min-height: 52px;
    padding: 11px 14px;
  }

  .thermal-brand-proof {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  html {
    scroll-behavior: auto;
  }

  body.service-page {
    font-size: 1rem;
    padding-bottom: 86px;
  }

  .mobile-quote-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 1040;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    background: var(--whatsapp);
    color: var(--bg-deep);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
    font-size: 1.02rem;
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.service-page.mobile-quote-visible .mobile-quote-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .repair-hero {
    padding: 104px 0 58px;
    background-image: url("../images/banner-home-mobile.webp");
    background-position: 58% center;
  }

  .repair-hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 15, 25, 0.78), rgba(11, 15, 25, 0.94)),
      linear-gradient(90deg, rgba(11, 15, 25, 0.92), rgba(11, 15, 25, 0.48));
  }

  .repair-hero h1 {
    font-size: clamp(2.58rem, 14.5vw, 3.8rem);
  }

  .hero-actions,
  .page-btn {
    width: 100%;
  }

  .hero-actions .page-btn-whatsapp {
    display: none;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .symptom-grid a {
    min-height: 150px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row b {
    text-align: left;
  }

  .price-list div,
  .repair-hero-panel div,
  .tier-group div {
    display: grid;
    gap: 6px;
  }

  .price-list strong,
  .repair-hero-panel strong,
  .tier-group strong {
    text-align: left;
  }

  .gpu-gallery {
    grid-template-columns: 1fr;
  }

  .gpu-gallery figure,
  .gpu-gallery figure:first-child {
    grid-column: auto;
  }
}
