:root {
  --primary: #2563EB;
  --primary-light: #7DD3FC;
  --primary-soft: rgba(37, 99, 235, 0.18);
  --primary-wash: rgba(6, 182, 212, 0.1);
  --primary-line: rgba(37, 99, 235, 0.42);
  --highlight: #06B6D4;
  --highlight-bright: #22D3EE;
  --highlight-soft: rgba(6, 182, 212, 0.12);
  --highlight-line: rgba(6, 182, 212, 0.48);
  --whatsapp: #25D366;
  --bg: #0F172A;
  --bg-deep: #0B0F19;
  --bg-soft: #1E293B;
  --surface: #1E293B;
  --surface-strong: #1E293B;
  --surface-blue: #12304A;
  --line: rgba(148, 163, 184, 0.22);
  --line-bright: var(--highlight-line);
  --text: #F8FAFC;
  --muted: #94A3B8;
  --muted-blue: #B6C7E3;
  --quiet: #94A3B8;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  --shadow-hero-title: 0 10px 34px rgba(0, 0, 0, 0.76);
  --shadow-hero-line: 0 5px 24px rgba(0, 0, 0, 0.82);
  --shadow-hero-lead: 0 5px 24px rgba(0, 0, 0, 0.84);
  --shadow-mobile-cta: 0 18px 46px rgba(0, 0, 0, 0.5);
  --shadow-lightbox-image: 0 24px 80px rgba(0, 0, 0, 0.65);
  --space-section: clamp(64px, 7.2vw, 104px);
  --space-section-compact: clamp(52px, 6vw, 88px);
  --space-section-mobile: 52px;
  --fs-body: 19px;
  --fs-body-mobile: 17px;
  --fs-display-repair: clamp(2.95rem, 6.8vw, 5.7rem);
  --fs-display-repair-mobile: clamp(2.46rem, 11.4vw, 3.9rem);
  --fs-headline: clamp(2rem, 4.25vw, 3.75rem);
  --fs-title: clamp(1.34rem, 2vw, 1.8rem);
  --fs-label: clamp(1rem, 1.4vw, 1.16rem);
  --fs-button: 1.04rem;
  --fs-icon: 1.32rem;
  --fs-hero-line: clamp(1.2rem, 1.9vw, 1.72rem);
  --fs-hero-lead: clamp(1.08rem, 1.55vw, 1.3rem);
  --fs-body-large: 1.12rem;
  --fs-copy: 1rem;
  --fs-copy-tight: var(--fs-copy);
  --fs-micro: 0.94rem;
  --fs-caption: var(--fs-micro);
  --fs-service-title: clamp(1.36rem, 2.35vw, 1.9rem);
  --fs-service-copy: var(--fs-copy);
  --fs-price: var(--fs-copy);
  --fs-service-cost: clamp(1.32rem, 2vw, 1.62rem);
  --fs-symbol: 1.4rem;
  --fs-estimate-meta: var(--fs-micro);
  --fs-estimate-value: 1.28rem;
  --fs-google: 1.1rem;
  --fs-faq: 1.08rem;
  --fs-faq-symbol: 1.6rem;
  --fs-mobile-symbol: 1.2rem;
  --fs-lightbox-close: 1.8rem;
  --fs-lightbox-arrow: 2.4rem;
  --accent-color: var(--highlight);
  --accent-blue: var(--primary);
}

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

body.home-page {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 10%, rgba(6, 182, 212, 0.18), transparent 30%),
    linear-gradient(180deg, #0D1B2E 0%, var(--bg-deep) 100%) fixed;
  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;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.site-icon {
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.home-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.home-page a {
  color: inherit;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  margin: 0;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.home-page h1 {
  max-width: 920px;
  font-size: var(--fs-display-repair);
  text-shadow: var(--shadow-hero-title);
}

.home-page h2 {
  max-width: 850px;
  font-size: var(--fs-headline);
}

.home-page h3 {
  font-size: var(--fs-title);
}

.home-page p {
  color: var(--muted);
}

body.home-page.nav-open,
body.home-page.lightbox-open {
  overflow: hidden;
}

.home-page .container {
  width: min(100% - 36px, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 0;
}

.home-section {
  padding: var(--space-section) 0;
  background: var(--bg);
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.home-section[id] {
  scroll-margin-top: 112px;
}

.home-section:nth-of-type(even) {
  background: var(--bg-deep);
}

.services-section,
.proof-work-section,
.gaming-section,
.faq-section {
  padding-block: var(--space-section-compact);
}

.home-page .section-label,
.home-page .hero-kicker {
  margin-bottom: 13px;
  color: var(--primary-light);
  font-size: var(--fs-label);
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.home-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 15px 24px;
  font-size: var(--fs-button);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.home-btn iconify-icon,
.home-btn .site-icon {
  font-size: var(--fs-icon);
}

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

.home-page .home-btn-primary {
  background: var(--whatsapp);
  color: var(--bg-deep);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.2);
}

.home-page .home-btn-primary:hover,
.home-page .home-btn-primary:focus-visible {
  background: var(--whatsapp);
  color: var(--bg-deep);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.3);
}

.home-btn-secondary {
  border-color: rgba(148, 163, 184, 0.32);
  background: rgba(11, 15, 25, 0.82);
  color: var(--text);
}

.home-btn-secondary:hover,
.home-btn-secondary:focus-visible {
  border-color: var(--primary-line);
  color: var(--primary-light);
}

.full-width {
  width: 100%;
}

.home-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #0D1B2E 0%, var(--bg-deep) 100%);
}

.hero-video-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .home-hero-mobile-art {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero.hero-video-running .hero-video-stage {
  opacity: 1;
}

.home-hero.hero-video-ending .hero-video-stage {
  opacity: 0;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.04) contrast(1.04) brightness(0.86);
  transform: scale(1.025);
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-layer.is-visible {
  opacity: 1;
}

@media (min-width: 681px) {
  .home-hero {
    background: url("../images/banner-home.webp") center / cover no-repeat;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(11, 15, 25, 0.7)),
    linear-gradient(90deg, rgba(11, 15, 25, 0.92), rgba(13, 27, 46, 0.62) 46%, rgba(6, 182, 212, 0.1) 76%, rgba(11, 15, 25, 0.36));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 5.6vw, 68px);
  align-items: center;
  padding-top: clamp(104px, 9vw, 112px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.hero-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.home-page .hero-line {
  color: var(--text);
  max-width: 760px;
  font-size: var(--fs-hero-line);
  font-weight: 800;
  line-height: 1.18;
  text-shadow: var(--shadow-hero-line);
}

.home-page .hero-lead {
  max-width: 760px;
  color: var(--text);
  font-size: var(--fs-hero-lead);
  line-height: 1.48;
  text-shadow: var(--shadow-hero-lead);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 780px;
  border-top: 1px solid var(--primary-line);
  padding-top: 16px;
  color: var(--text);
  font-size: var(--fs-copy);
  font-weight: 800;
}

.hero-proof span,
.hero-proof a {
  position: relative;
}

.hero-proof span:not(:last-child)::after,
.hero-proof a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-light);
}

.hero-proof a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration-color: var(--highlight);
  text-underline-offset: 5px;
}

.hero-actions,
.refurb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-note {
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(18, 48, 74, 0.72));
  backdrop-filter: blur(14px);
  margin: 10px 0;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.hero-note span {
  display: block;
  color: var(--highlight-bright);
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-note ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  font-size: var(--fs-copy-tight);
  line-height: 1.42;
}

.brand-strip {
  background:
    linear-gradient(90deg, var(--primary-wash), rgba(6, 182, 212, 0.05)),
    var(--bg);
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-block: 20px;
}

.brand-strip-inner p {
  color: var(--muted-blue);
  font-size: var(--fs-copy);
  line-height: 1.35;
  font-weight: 800;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
}

.brand-grid img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  opacity: 0.74;
  filter: grayscale(1);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.brand-grid img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.video-proof-section {
  padding: clamp(34px, 5vw, 64px) 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.98), rgba(15, 23, 42, 0.96)),
    var(--bg);
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}

.pricing-layout,
.refurb-layout,
.work-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5.5vw, 76px);
  align-items: start;
}

.pricing-copy > p,
.refurb-copy > p,
.work-layout > div > p,
.google-proof > p,
.final-cta p,
.estimator-panel > p {
  max-width: 720px;
  font-size: var(--fs-body-large);
}

.service-stack {
  display: grid;
  border-top: 1px solid var(--primary-line);
}

.service-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  color: var(--text);
}

.service-line span {
  display: grid;
  gap: 7px;
}

.service-line strong {
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: var(--fs-service-title);
  line-height: 1.08;
}

.service-line h3 {
  margin: 0;
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: var(--fs-service-title);
  font-weight: 700;
  line-height: 1.08;
}

.service-line small {
  max-width: 70ch;
  color: var(--muted);
  font-size: var(--fs-service-copy);
  line-height: 1.45;
}

.service-line b {
  color: var(--accent-color);
  font-size: var(--fs-service-cost);
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.work-showcase-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(6, 182, 212, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.7), rgba(15, 23, 42, 0.98)),
    var(--bg);
}

.work-showcase-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.work-showcase-copy {
  display: grid;
  gap: 18px;
}

.work-showcase-copy > p {
  max-width: 620px;
  color: var(--muted-blue);
  font-size: var(--fs-body-large);
}

.work-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.work-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 15vw, 220px);
  gap: 14px;
}

.showcase-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  grid-column: span 3;
  border: 0;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  padding: 0;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.showcase-photo-large {
  grid-row: span 2;
}

.showcase-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 17, 0.9));
  pointer-events: none;
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.showcase-photo span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: var(--text);
  font-size: var(--fs-micro);
  font-weight: 900;
  line-height: 1.22;
  text-align: left;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.showcase-photo:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.showcase-photo:focus-visible {
  outline: 3px solid rgba(6, 182, 212, 0.72);
  outline-offset: 4px;
}

.work-video-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  border-top: 1px solid var(--primary-line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(6, 182, 212, 0.06)),
    rgba(30, 41, 59, 0.42);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.work-video-copy {
  display: grid;
  gap: 12px;
}

.work-video-copy .section-label {
  margin-bottom: 0;
}

.work-video-copy h2,
.work-video-copy h3 {
  max-width: 640px;
  font-size: clamp(1.58rem, 3vw, 2.5rem);
}

.work-video-copy p:not(.section-label) {
  max-width: 650px;
  color: var(--muted-blue);
  font-size: var(--fs-body-large);
}

.work-video-poster {
  position: relative;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--bg-deep);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.work-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.02), rgba(11, 15, 25, 0.68)),
    radial-gradient(circle at 50% 46%, rgba(37, 211, 102, 0.22), transparent 34%);
  pointer-events: none;
}

.work-video-panel iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.work-video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.work-video-poster:hover img,
.work-video-poster:focus-visible img {
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.035);
}

.work-video-poster:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.72);
  outline-offset: 4px;
}

.work-video-poster strong {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 900;
  text-align: left;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.video-play-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.28);
  transform: translate(-50%, -50%);
}

.video-play-mark::before {
  content: "";
  width: 20px;
  height: 26px;
  margin-left: 5px;
  background: var(--bg-deep);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.work-video-panel.is-loaded {
  grid-template-columns: 1fr;
}

.work-video-frame {
  position: relative;
  display: grid;
  width: 100%;
}

.work-video-panel iframe {
  min-height: min(62vw, 620px);
  border: 0;
  border-radius: 8px;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}

.work-video-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg-deep);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: var(--fs-copy);
  font-weight: 900;
  line-height: 1;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.work-video-close span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
}

.work-video-close:hover,
.work-video-close:focus-visible {
  border-color: var(--whatsapp);
  color: var(--whatsapp);
  outline: none;
  transform: translateY(-2px);
}

.work-video-close:focus-visible {
  outline: 3px solid var(--whatsapp);
  outline-offset: 3px;
}

.pricing-copy {
  display: grid;
  gap: 20px;
}

.pricing-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--primary-line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--primary-wash), rgba(6, 182, 212, 0.04));
  border-radius: 8px;
  padding: 20px clamp(16px, 3vw, 26px);
  color: var(--text);
}

.pricing-formula strong {
  font-size: var(--fs-button);
  line-height: 1.22;
}

.pricing-formula span {
  color: var(--accent-color);
  font-size: var(--fs-symbol);
  font-weight: 800;
}

.price-list {
  display: grid;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

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

.price-list span {
  color: var(--muted);
}

.price-list strong {
  color: var(--text);
  white-space: nowrap;
}

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

.tier-block {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.58);
  padding: clamp(18px, 2.4vw, 24px);
}

.tier-block h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", system-ui, sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.05;
}

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

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

.tier-block span {
  color: var(--muted);
  font-size: var(--fs-caption);
}

.tier-block strong {
  color: var(--highlight);
  font-size: var(--fs-button);
  white-space: nowrap;
}

.service-care-note,
.gpu-risk-note {
  display: grid;
  gap: 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(125, 211, 252, 0.22);
  padding: clamp(18px, 2.4vw, 24px);
}

.service-care-note {
  margin-top: 16px;
}

.service-care-note strong,
.gpu-risk-note strong {
  color: var(--text);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.24;
}

.service-care-note p,
.gpu-risk-note p {
  color: var(--muted-blue);
  line-height: 1.52;
}

.estimator-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--primary-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(30, 41, 59, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 36px);
}

.estimator-control {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.estimator-control select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 5px;
  background: var(--bg-deep);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
}

.estimator-control select:focus {
  border-color: var(--line-bright);
  box-shadow: 0 0 0 0.18rem rgba(6, 182, 212, 0.18);
  outline: none;
}

.estimate-output {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.estimate-output div {
  display: grid;
  gap: 3px;
}

.estimate-output span {
  color: var(--muted-blue);
  font-size: var(--fs-estimate-meta);
  font-weight: 800;
}

.estimate-output strong {
  color: var(--text);
  font-size: var(--fs-estimate-value);
}

.estimate-output p {
  grid-column: 1 / -1;
}

.refurb-section {
  background:
    radial-gradient(circle at 84% 28%, rgba(6, 182, 212, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(6, 182, 212, 0.08)),
    var(--bg-deep);
}

.refurb-layout {
  align-items: center;
}

.refurb-copy {
  display: grid;
  gap: 18px;
}

.refurb-image {
  margin: 0;
}

.refurb-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gpu-service-section {
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.98), rgba(13, 27, 46, 0.98)),
    var(--bg-deep);
}

.gpu-service-section .section-heading {
  max-width: 860px;
}

.thermal-brand-proof {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  margin-top: 28px;
  border-top: 1px solid var(--primary-line);
  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.54);
  padding: clamp(18px, 3vw, 26px);
}

.thermal-brand-proof img {
  width: clamp(160px, 22vw, 236px);
  max-height: 74px;
  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.08rem, 1.5vw, 1.28rem);
  font-weight: 900;
  line-height: 1.24;
}

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

.gpu-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.gpu-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 8px;
  background: var(--surface-blue);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.gallery-image-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  padding: 0;
  font: inherit;
}

.gallery-image-button:focus-visible {
  outline: 3px solid rgba(6, 182, 212, 0.72);
  outline-offset: -3px;
}

.gpu-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gpu-gallery figure:hover img,
.gallery-image-button:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.gpu-gallery figcaption {
  min-height: 76px;
  display: flex;
  align-items: center;
  color: var(--text);
  padding: 15px;
  font-size: var(--fs-micro);
  font-weight: 800;
  line-height: 1.25;
}

.gpu-service-cta {
  margin-top: 28px;
}

.gpu-risk-note {
  margin-top: 18px;
}

.refurb-image figcaption {
  color: var(--muted-blue);
  font-size: var(--fs-caption);
  margin-top: 11px;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 25px;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
}

.work-layout {
  align-items: center;
}

.gallery-trigger {
  margin-top: 24px;
}

.comparison-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--highlight-line);
  border-radius: 8px;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
  --reveal: 52%;
}

.comparison-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 3px;
  background: var(--accent-color);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.52);
  pointer-events: none;
}

.comparison-images {
  position: relative;
  aspect-ratio: 4 / 3;
}

.comparison-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  background: rgba(11, 15, 25, 0.82);
  color: var(--text);
  padding: 5px 10px;
  font-size: var(--fs-micro);
  font-weight: 800;
}

.comparison-label-before {
  left: 14px;
}

.comparison-label-after {
  right: 14px;
}

.game-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.game-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  background: var(--surface-blue);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.game-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.game-gallery figure:hover img {
  opacity: 0.88;
  transform: scale(1.025);
}

.game-gallery figcaption {
  color: var(--text);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.22;
  padding: 18px 20px 20px;
}

.google-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 182, 212, 0.16), transparent 32%),
    var(--bg-deep);
}

.home-page .google-proof {
  display: grid;
  gap: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(30, 41, 59, 0.88) 48%, rgba(6, 182, 212, 0.08)),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(34px, 6vw, 72px);
}

.review-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr) auto;
  gap: 20px;
  align-items: center;
}

.google-logo-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: var(--fs-google);
  font-weight: 800;
}

.google-g {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.elfsight-review-shell {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(11, 15, 25, 0.5);
  padding: clamp(16px, 2.4vw, 24px);
  min-height: clamp(360px, 42vw, 520px);
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.elfsight-review-shell.is-loaded {
  min-height: 0;
}

.review-widget-fallback {
  min-height: clamp(300px, 34vw, 420px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(6, 182, 212, 0.08)),
    rgba(15, 23, 42, 0.74);
  padding: clamp(22px, 4vw, 42px);
}

.review-widget-fallback strong {
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.review-widget-fallback p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.review-widget-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-widget-load {
  cursor: pointer;
}

.elfsight-review-shell.is-loaded .review-widget-fallback {
  display: none;
}

.elfsight-review-shell noscript a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-weight: 800;
  text-underline-offset: 5px;
}

.local-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--primary-line);
  border-radius: 8px;
  background: var(--line);
}

.local-proof-list span {
  display: flex;
  min-height: 62px;
  align-items: center;
  background: var(--bg-deep);
  color: var(--text);
  padding: 14px 16px;
  font-weight: 800;
  line-height: 1.25;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--primary-line);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(30, 41, 59, 0.94)),
    var(--surface);
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  color: var(--text);
  font-size: var(--fs-faq);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-color);
  font-size: var(--fs-faq-symbol);
  line-height: 1;
}

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

.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  transition: grid-template-rows 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:not([open]) .faq-panel {
  grid-template-rows: 0fr;
}

.faq-panel p {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px 20px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(6, 182, 212, 0.12)),
    var(--bg-deep);
}

.final-cta-inner {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.home-page .mobile-whatsapp-bar {
  position: fixed;
  z-index: 1200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  background: var(--whatsapp);
  color: var(--bg-deep);
  font-size: var(--fs-price);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-mobile-cta);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 22px));
  transition: transform 220ms ease, opacity 220ms ease;
}

body.home-page.nav-open .mobile-whatsapp-bar,
body.home-page.lightbox-open .mobile-whatsapp-bar {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 22px));
}

.mobile-whatsapp-bar iconify-icon,
.mobile-whatsapp-bar .site-icon {
  font-size: var(--fs-icon);
}

.lightbox {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 15, 25, 0.94);
  padding: 16px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86svh;
  width: min(100%, 1100px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lightbox-image);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  font-size: var(--fs-lightbox-close);
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 58px;
  transform: translateY(-50%);
  font-size: var(--fs-lightbox-arrow);
  line-height: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

@media (max-width: 991px) {
  .home-page .container {
    width: min(100% - 28px, 1180px);
  }

  .home-hero {
    min-height: auto;
  }

  .hero-inner,
  .pricing-layout,
  .refurb-layout,
  .work-showcase-layout,
  .work-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    gap: 36px;
    padding-top: 124px;
    padding-bottom: 52px;
  }

  .hero-note {
    max-width: none;
    padding: 22px;
  }

  .hero-note ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-left: 0;
    list-style: none;
    counter-reset: hero-step;
  }

  .hero-note li {
    position: relative;
    padding-left: 28px;
  }

  .hero-note li::before {
    content: counter(hero-step) ".";
    counter-increment: hero-step;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-showcase-grid {
    grid-auto-rows: clamp(145px, 22vw, 230px);
  }

  .work-video-panel {
    grid-template-columns: 1fr;
  }

  .game-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

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

  .review-heading {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  body.home-page {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    font-size: var(--fs-body-mobile);
  }

  .home-page .container {
    width: min(100% - 24px, 1180px);
  }

  .home-page h1 {
    font-size: clamp(2.08rem, 9vw, 3.1rem);
    line-height: 1.06;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.68);
  }

  .home-section {
    padding-block: var(--space-section-mobile);
  }

  .home-section[id] {
    scroll-margin-top: 88px;
  }

  .home-hero {
    background: linear-gradient(180deg, #0D1B2E 0%, var(--bg-deep) 100%);
  }

  .home-page .home-hero-mobile-art {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: min(16svh, 140px);
    object-fit: cover;
    object-position: 62% center;
  }

  .hero-video-stage {
    display: none;
  }

  .hero-inner {
    gap: 22px;
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-note {
    display: none;
  }

  .hero-actions,
  .refurb-actions,
  .work-showcase-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .brand-grid img {
    height: 34px;
  }

  .service-line,
  .price-list div {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .service-line {
    padding-block: 24px;
  }

  .service-line b,
  .price-list strong {
    white-space: normal;
  }

  .pricing-formula {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .tier-summary {
    grid-template-columns: 1fr;
  }

  .pricing-formula span {
    display: block;
    width: 28px;
    color: var(--highlight);
    font-size: var(--fs-mobile-symbol);
    line-height: 1;
  }

  .estimate-output {
    grid-template-columns: 1fr;
  }

  .local-proof-list {
    grid-template-columns: 1fr;
  }

  .work-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(158px, 44vw, 230px);
    gap: 12px;
  }

  .showcase-photo,
  .showcase-photo-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .showcase-photo-large {
    grid-column: 1 / -1;
  }

  .showcase-photo span {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .work-video-panel {
    padding: 20px;
  }

  .work-video-poster {
    min-height: 0;
  }

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

  .thermal-brand-proof img {
    width: min(70vw, 224px);
  }

  .gpu-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    margin-right: -12px;
    padding-right: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .gpu-gallery figure {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .elfsight-review-shell {
    padding: 12px;
    min-height: 360px;
  }

  .review-widget-fallback {
    min-height: 310px;
  }

  .comparison-images {
    aspect-ratio: 1 / 1;
  }

  .refurb-image img {
    aspect-ratio: 16 / 10;
  }

  .game-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    margin-right: -12px;
    padding-right: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .game-gallery figure {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  body.home-page .mobile-whatsapp-bar {
    display: flex;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .home-page.floating-quote-visible .mobile-whatsapp-bar {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
  }
}

@media (max-width: 360px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof {
    gap: 8px 14px;
  }
}

@media (max-width: 991px) and (max-height: 520px) and (orientation: landscape) {
  .home-page h1 {
    max-width: 760px;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
  }

  .home-page .hero-line {
    max-width: 720px;
    font-size: var(--fs-body-large);
  }

  .home-page .hero-lead {
    max-width: 760px;
    font-size: var(--fs-copy);
    line-height: 1.36;
  }

  .hero-inner {
    gap: 14px;
    padding-top: 78px;
    padding-bottom: 28px;
  }

  .hero-copy {
    gap: 10px;
  }

  .hero-actions {
    margin-top: 2px;
  }

  .home-btn {
    min-height: 48px;
    padding: 12px 18px;
  }

  .hero-note {
    display: none;
  }

  .brand-strip-inner {
    padding-block: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-stage {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
