@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --ink: #151515;
  --muted: #5c626b;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #e7e3dc;
  --lime: #4361f2;
  --green: #3659f0;
  --cyan: #91d8ff;
  --pink: #ff6aa2;
  --black: #0b0d0f;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ui: 220ms;
  --motion-section: 780ms;
  --warm-paper: #f7f3ed;
  --oak: #8b5e3c;
  --walnut: #4b2f1f;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

.particle-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #fbfaf7;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.intro-loader img {
  width: min(240px, 58vw);
  animation: introLogo 900ms cubic-bezier(.2,.8,.2,1) both;
}

.intro-loader span {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(67, 97, 242, 0.22);
  border-radius: 50%;
  animation: introRing 900ms ease both;
}

.intro-done .intro-loader {
  opacity: 0;
  visibility: hidden;
  display: none;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 247, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: 10px;
  font: 900 22px/1 Inter, sans-serif;
  animation: logoPulse 3.4s ease-in-out infinite;
}

.brand-mark span { animation: logoTilt 2.8s ease-in-out infinite; }

.brand strong,
h1,
h2,
h3 {
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.brand strong { display: block; font-size: 15px; }
.brand small { display: block; color: var(--muted); font-size: 12px; }

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.header-cta,
.quick-links a,
.button,
.card-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.site-nav a { padding: 0 14px; color: #30343a; }
.site-nav a:hover { background: var(--white); }
.header-cta { padding: 0 18px; color: var(--white); background: var(--black); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 69px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 76px) 44px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 80px -10% auto;
  height: 240px;
  background:
    radial-gradient(circle at 20% 40%, rgba(182, 255, 43, 0.45), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(77, 215, 255, 0.25), transparent 30%);
  filter: blur(28px);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 720px; }
.hero-copy,
.catalog-shell > *,
.contact-hero > *,
.repair-layout > * { min-width: 0; }

.hero-copy > * {
  animation: fadeLift 0.78s ease both;
}

.hero-copy > *:nth-child(2) { animation-delay: 0.06s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.30s; }
.eyebrow {
  margin: 0 0 12px;
  color: #277a20;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

h3 { margin: 0; font-size: 19px; }

.hero-text,
.page-hero p,
.service-band p,
.contact-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-live {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-live span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 12px;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: 100%;
  max-width: 680px;
  margin: 28px 0 16px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.search-bar input,
.filters input,
.filters select,
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.search-bar input {
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
}

.search-bar button,
.button.primary {
  color: var(--black);
  background: var(--lime);
  border: 2px solid var(--black);
}

.search-bar button {
  color: var(--black);
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.hero-actions,
.footer-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after,
.magnet::after,
.card-actions a::after {
  content: "";
  position: absolute;
  inset: auto;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%);
  transition: width 260ms ease, height 260ms ease;
  pointer-events: none;
}

.button:hover,
.magnet:hover,
.card-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.button:hover::after,
.magnet:hover::after,
.card-actions a:hover::after {
  width: 160px;
  height: 160px;
}

.button.secondary {
  background: var(--white);
  border-color: var(--black);
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.elegant-stage {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(67, 97, 242, 0.08), rgba(145, 216, 255, 0.16)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(39, 48, 71, 0.10);
}

.stage-top {
  margin-bottom: 12px;
  animation: none;
}

.stage-top span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-top strong {
  display: block;
  font: 900 clamp(34px, 4vw, 58px)/1 "Plus Jakarta Sans", sans-serif;
}

.stage-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  animation: rowSlide 0.72s ease both;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stage-row:nth-of-type(2) { animation-delay: 0.06s; }
.stage-row:nth-of-type(3) { animation-delay: 0.12s; }
.stage-row:nth-of-type(4) { animation-delay: 0.18s; }
.stage-row:nth-of-type(5) { animation-delay: 0.24s; }

.stage-row:hover {
  transform: translateX(6px);
  border-color: var(--lime);
  box-shadow: 0 16px 34px rgba(67, 97, 242, 0.12);
}

.stage-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--lime);
  font-weight: 900;
}

.stage-row strong {
  grid-column: 2;
  min-width: 0;
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
}

.stage-row em {
  grid-column: 2;
  min-width: 0;
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.tech-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.2), transparent 45%);
  transform: translateX(-100%);
  animation: glassSweep 5s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.rating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 280px;
  padding: 18px;
  color: var(--black);
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: 18px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.rating-card strong { display: block; font: 900 28px/1 Inter, sans-serif; }
.rating-card span { display: block; margin-top: 8px; font-weight: 700; }

.quick-links,
.section-grid,
.service-band,
.catalog-shell,
.repair-layout,
.contact-hero,
.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.quick-links {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 48px;
}

.quick-links a {
  min-width: max-content;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.section-grid { padding: 54px 0; }
.section-grid > .text-link { float: right; margin-top: -36px; font-weight: 900; text-decoration: underline; }

.product-grid,
.department-grid,
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.product-card,
.department,
.deal-card,
.category-card,
.review-card,
.split-panel,
.trade-steps article,
.filters,
.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.reveal {
  animation: riseIn 0.65s ease both;
}

.product-card { overflow: hidden; }

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  background: linear-gradient(145deg, #f8f8f4, #ecece5);
  overflow: hidden;
}

.product-photo {
  position: relative;
  z-index: 1;
  width: min(82%, 230px);
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(16px 20px 24px rgba(39, 48, 71, 0.18));
  transform: translateY(4px);
  transition: transform 220ms ease, filter 220ms ease;
}

.product-card:hover .product-photo {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(20px 26px 28px rgba(39, 48, 71, 0.22));
}

.product-photo.large {
  width: min(88%, 420px);
  height: 430px;
}

.product-art::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 90deg, transparent, rgba(182, 255, 43, 0.35), transparent, rgba(77, 215, 255, 0.28), transparent);
  animation: spinSlow 8s linear infinite;
}

.product-art span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--black);
  background: var(--lime);
  font-weight: 900;
  font-size: 12px;
}

.device-shape {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 140px;
  border: 7px solid var(--black);
  border-radius: 24px;
  background: var(--device-color);
  box-shadow: 18px 20px 0 rgba(0, 0, 0, 0.08);
}

.tablet-art .device-shape {
  width: 142px;
  height: 116px;
  border-radius: 18px;
}

.device-shape.large {
  width: 150px;
  height: 248px;
  border-radius: 36px;
}

.device-shape i,
.device-shape b {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.55);
}

.device-shape i {
  top: 13px;
  left: 50%;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.device-shape b {
  right: 9px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.accessory-shape {
  position: relative;
  z-index: 1;
  width: 130px;
  height: 92px;
  border: 7px solid var(--black);
  border-radius: 26px;
  background: var(--device-color);
  box-shadow: 16px 18px 0 rgba(0, 0, 0, 0.08);
}

.product-body { padding: 16px; }
.product-body p {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 900;
  text-transform: capitalize;
}
.product-body span { display: block; min-height: 42px; margin-top: 8px; color: var(--muted); line-height: 1.45; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
}

.price-row strong { font: 900 28px/1 Inter, sans-serif; }
.price-row del { color: var(--muted); }
.card-actions a { flex: 1; background: #f2f2ed; }
.card-actions a:first-child { background: var(--black); color: var(--white); }

.service-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 38px;
  color: var(--white);
  background: var(--black);
  border-radius: 24px;
}

.service-band .eyebrow { color: var(--lime); }
.service-band p { color: #d7d7d0; max-width: 760px; }

.department {
  min-height: 190px;
  padding: 22px;
}

.department span,
.deal-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.department strong { display: block; font: 900 24px/1.1 Inter, sans-serif; }

.page-hero {
  padding: 70px 0 26px;
}

.mobile-split {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.repair-command,
.repair-models,
.faq-section,
.three-lab {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.repair-command,
.repair-models,
.faq-section {
  padding: 62px 0;
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.repair-command-grid a {
  min-height: 214px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(241,245,255,0.92)),
    var(--white);
  box-shadow: 0 18px 46px rgba(39, 48, 71, 0.08);
  animation: fadeLift 0.72s ease both;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.repair-command-grid a:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: 0 24px 58px rgba(67, 97, 242, 0.16);
}

.repair-command-grid span {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--lime);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.repair-command-grid strong {
  display: block;
  margin-top: 28px;
  font: 900 26px/1.08 "Plus Jakarta Sans", sans-serif;
}

.repair-command-grid em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.three-lab {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
  align-items: stretch;
  padding: 32px 0 68px;
}

.three-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(145, 216, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #273047, #121827);
  overflow: hidden;
}

.three-copy .eyebrow { color: #91d8ff; }
.three-copy p:not(.eyebrow) { color: #dbe4ff; font-size: 18px; line-height: 1.6; }
.three-copy .button.secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,0.35); }

#repair-scene {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(67, 97, 242, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(241,245,255,0.84));
}

.repair-device-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.repair-device-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.repair-device-card h3 { margin-bottom: 14px; font-size: 20px; }
.repair-device-card div { display: flex; flex-wrap: wrap; gap: 8px; }
.repair-device-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 7px;
  border-radius: 8px;
  background: #f1f4ff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.repair-device-card a img {
  width: 28px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(15, 23, 42, 0.12));
}

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

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

.faq-item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 900 18px/1.2 "Plus Jakarta Sans", sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-item b {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--lime);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open p { display: block; }

.split-panel {
  min-height: 260px;
  padding: 24px;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(182, 255, 43, 0.95), rgba(255, 255, 255, 0.88)),
    var(--white);
  border: 2px solid var(--black);
  overflow: hidden;
}

.split-panel.fix {
  background:
    linear-gradient(135deg, rgba(77, 215, 255, 0.72), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.split-panel span,
.category-toggle span {
  display: block;
  margin-bottom: 16px;
  font-weight: 900;
  color: #256f21;
  text-transform: uppercase;
  font-size: 12px;
}

.split-panel h2 { font-size: clamp(28px, 6vw, 46px); }

.model-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 22px;
}

.model-picker label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.model-picker select {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

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

.category-card { overflow: hidden; }

.category-toggle {
  width: 100%;
  min-height: 112px;
  padding: 20px;
  border: 0;
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.category-toggle strong {
  font: 900 28px/1 Inter, sans-serif;
}

.model-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 16px 16px;
}

.model-list a {
  padding: 12px;
  border-radius: 12px;
  background: #f2f2ed;
  font-weight: 800;
}

.home-action-wall {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.action-grid a {
  min-height: 112px;
  display: flex;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(39, 48, 71, 0.06);
  animation: slideUp 0.7s ease both;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.action-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 18px 38px rgba(67, 97, 242, 0.15);
}

.page-hero.compact h1,
.contact-hero h1 { font-size: clamp(38px, 5vw, 68px); }
.page-hero p { max-width: 760px; }

.catalog-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 24px 0 70px;
}

.catalog-shell.single { display: block; }

.filters {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 18px;
}

.filters label,
.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.filters input,
.filters select,
.quote-form input,
.quote-form textarea {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.repair-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  padding: 28px 0 72px;
}

.repair-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.repair-list button {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font: 900 22px/1.1 Inter, sans-serif;
  text-align: left;
  cursor: pointer;
}

.repair-list button small,
.repair-list button strong {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font: 700 13px/1.35 Roboto, sans-serif;
}

.repair-list button strong { color: var(--green); font-weight: 900; }

.repair-list button:hover { outline: 3px solid var(--lime); }

.quote-form { padding: 22px; }
.quote-form h2 { margin-bottom: 18px; font-size: 30px; }
.form-note { color: var(--muted); line-height: 1.5; }

.deal-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 24px;
}

.review-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
  padding: 48px 0;
}

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

.review-card {
  padding: 18px;
}

.stars {
  color: #0f8f2f;
  font-weight: 900;
  margin-bottom: 10px;
}

.review-card p {
  color: var(--ink);
  line-height: 1.5;
}

.review-card small { color: var(--muted); }

.model-showcase {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0;
}

.showcase-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.model-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 33%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 22px;
}

.model-slide {
  scroll-snap-align: start;
  min-height: 430px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--finish) 28%, transparent), transparent 38%),
    var(--white);
  box-shadow: 0 16px 42px rgba(39, 48, 71, 0.08);
  animation: modelEnter 0.7s ease both;
  animation-delay: var(--delay);
}

.slide-phone {
  position: relative;
  width: 132px;
  height: 226px;
  margin: 8px auto 28px;
  border: 7px solid #273047;
  border-radius: 36px;
  background: linear-gradient(150deg, var(--finish), #f9fbff);
  box-shadow: 18px 20px 0 rgba(39, 48, 71, 0.08);
  animation: modelFloat 4.8s ease-in-out infinite;
}

.slide-photo {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin: 2px auto 22px;
  filter: drop-shadow(18px 24px 26px rgba(39, 48, 71, 0.14));
  animation: modelFloat 4.8s ease-in-out infinite;
}

.slide-phone span {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(39, 48, 71, 0.65);
}

.slide-phone i,
.slide-phone b {
  position: absolute;
  display: block;
  border: 4px solid rgba(39, 48, 71, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.slide-phone i { right: 14px; bottom: 18px; width: 34px; height: 34px; }
.slide-phone b { right: 50px; bottom: 18px; width: 26px; height: 26px; }
.model-slide p { color: var(--green); font-weight: 900; margin: 0 0 8px; }
.model-slide small { color: var(--muted); font-weight: 700; }
.model-slide ul { margin: 14px 0; padding-left: 18px; color: var(--muted); line-height: 1.6; }
.model-slide strong { display: block; font: 900 28px/1 "Plus Jakarta Sans", sans-serif; }
.model-slide a { display: inline-flex; margin-top: 16px; font-weight: 900; color: var(--green); }

.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.review-summary strong { font: 900 48px/1 "Plus Jakarta Sans", sans-serif; }
.review-summary span { color: var(--green); font-weight: 900; }
.review-summary small { grid-column: 2; color: var(--muted); font-weight: 800; }

.review-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.review-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
  font-size: 12px;
}

.about-text {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.trade-steps {
  display: grid;
  gap: 14px;
}

.trade-steps article {
  padding: 24px;
}

.trade-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--black);
  font-weight: 900;
}

.trade-steps h2 { font-size: 28px; }
.trade-steps p { color: var(--muted); line-height: 1.55; }

.product-detail {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 54px 0;
}

.detail-art .product-art {
  min-height: 540px;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.detail-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.deal-card h2 { font-size: 30px; }
.deal-card p { color: var(--muted); line-height: 1.55; }

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 34px;
  align-items: start;
  padding: 76px 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.8fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #273047;
  color: var(--white);
}

.site-footer p { margin: 6px 0 0; color: #cfcfc8; }
.footer-actions a { text-decoration: underline; font-weight: 800; }
.footer-logo { width: 170px; padding: 8px; border-radius: 14px; background: var(--white); }
.footer-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--white);
  font-weight: 900;
}
.footer-nav {
  display: grid;
  gap: 10px;
}
.footer-nav strong, .footer-review strong { font-family: "Plus Jakarta Sans", sans-serif; }
.footer-nav a { color: #e8ebff; font-weight: 700; }
.footer-review {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}
.footer-review span { display: block; margin: 8px 0; color: #91d8ff; font-weight: 900; }
.empty-state { grid-column: 1 / -1; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .nav-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    font-weight: 900;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 18px;
    right: 18px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .header-cta { justify-self: end; }
  .hero,
  .catalog-shell,
  .repair-layout,
  .contact-hero,
  .review-band,
  .three-lab,
  .product-detail { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .product-grid,
  .department-grid,
  .deal-grid,
  .category-grid,
  .review-grid,
  .repair-command-grid,
  .repair-device-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-head { align-items: stretch; flex-direction: column; }
  .model-slider { grid-auto-columns: minmax(260px, 82%); }
  .model-picker { grid-template-columns: 1fr; }
  .filters { position: static; }
}

@media (max-width: 620px) {
  html,
  body { overflow-x: hidden; }
  .site-header { gap: 10px; padding-inline: 14px; }
  .brand small { display: none; }
  .header-cta { display: none; }
  .hero {
    width: 100vw;
    max-width: 100vw;
    padding-inline: 18px;
  }
  .hero-copy,
  .hero-text,
  .search-bar,
  .hero-actions {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }
  .hero-text { max-width: 31ch; }
  .search-bar { overflow: hidden; }
  h1 { font-size: 34px; overflow-wrap: anywhere; }
  .page-hero.compact h1,
  .model-showcase h2 {
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .page-hero.compact h1 { max-width: 13ch; }
  .model-showcase h2 { max-width: 14ch; }
  .page-hero.compact p { max-width: 31ch; }
  .search-bar { grid-template-columns: 1fr; border-radius: 18px; }
  .search-bar input { min-height: 46px; }
  .search-bar button { width: 100%; }
  .hero-actions .button { flex: 1 1 calc(50% - 8px); min-width: 132px; }
  .hero-media,
  .hero-media img { min-height: 340px; }
  .rating-card { position: static; max-width: none; border-radius: 0; }
  .product-grid,
  .department-grid,
  .deal-grid,
  .category-grid,
  .review-grid,
  .repair-command-grid,
  .repair-device-grid,
  .mobile-split,
  .repair-list { grid-template-columns: 1fr; }
  .service-band,
  .catalog-top { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .service-band { padding: 24px; }
  .section-grid > .text-link { float: none; display: inline-flex; margin: 16px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(182, 255, 43, 0); }
  50% { box-shadow: 0 0 0 8px rgba(182, 255, 43, 0.24); }
}

@keyframes logoTilt {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-7deg); }
}

@keyframes riseIn {
  from { opacity: 0.01; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glassSweep {
  0%, 45% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes phoneOrbit {
  0%, 100% { transform: translateY(0) rotate(9deg); }
  50% { transform: translateY(18px) rotate(-5deg); }
}

@keyframes phoneOrbitTwo {
  0%, 100% { transform: translateY(0) scale(0.82) rotate(-8deg); }
  50% { transform: translateY(-16px) scale(0.86) rotate(6deg); }
}

@keyframes ping {
  0% { opacity: 0.8; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(1.8); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(28px) translateY(18px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes modelFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@keyframes rowSlide {
  from { transform: translateX(18px); }
  to { transform: translateX(0); }
}

@keyframes modelEnter {
  from { transform: translateX(24px); }
  to { transform: translateX(0); }
}

@keyframes introLogo {
  0% { opacity: 0; transform: translateY(18px) scale(0.92); }
  55% { opacity: 1; transform: translateY(0) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes introRing {
  0% { opacity: 0; transform: scale(0.65); }
  70% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.55); }
}

@keyframes fadeLift {
  from { transform: translateY(16px); }
  to { transform: translateY(0); }
}
.floating-phone {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 126px;
  border: 5px solid var(--black);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--lime), var(--cyan));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.floating-phone i {
  position: absolute;
  inset: 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.35);
}

.floating-phone.one { top: 42px; right: 38px; animation: phoneOrbit 5.4s ease-in-out infinite; }
.floating-phone.two { left: 26px; bottom: 90px; transform: scale(0.82) rotate(-8deg); animation: phoneOrbitTwo 6s ease-in-out infinite; }

.signal-ring {
  position: absolute;
  right: 86px;
  top: 96px;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(182, 255, 43, 0.7);
  border-radius: 50%;
  animation: ping 2.2s ease-out infinite;
}

/* Refined M Cellphones theme */
body { font-family: Manrope, Arial, sans-serif; }
h1, h2, h3, .brand strong { font-family: "Plus Jakarta Sans", Manrope, Arial, sans-serif; }
h1 { line-height: 1.02; }
.eyebrow, .product-body p, .department span, .deal-card span, .split-panel span, .category-toggle span { color: var(--green); }
.brand { min-width: 150px; gap: 0; }
.brand-logo { width: 150px; height: auto; animation: logoPulse 4s ease-in-out infinite; }
.brand-mark, .brand small, .brand strong { display: none; }
.header-cta { background: var(--lime); }
.site-header { background: rgba(251, 250, 247, 0.94); }
.search-bar button, .button.primary { color: var(--white); background: var(--lime); border-color: var(--lime); }
.search-bar button { color: var(--white); }
.button.secondary { border-color: #d9d3ca; }
.hero::before {
  background:
    radial-gradient(circle at 20% 40%, rgba(67, 97, 242, 0.16), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(145, 216, 255, 0.35), transparent 30%);
}
.hero-media {
  background:
    radial-gradient(circle at 52% 45%, rgba(67, 97, 242, 0.95), rgba(67, 97, 242, 0.82) 36%, transparent 37%),
    linear-gradient(135deg, #ffffff, #f1f5ff);
}
.coded-hero { min-height: 520px; }
.coded-hero img, .floating-phone, .signal-ring { display: none; }
.tech-stage::after { background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 45%); }
.rating-card { color: var(--white); background: var(--lime); border-color: var(--lime); }
.hero-device {
  position: absolute;
  z-index: 2;
  border: 7px solid #273047;
  background: #bff3ef;
  box-shadow: 0 26px 60px rgba(39, 48, 71, 0.22);
}
.phone-device { width: 72px; height: 126px; border-radius: 22px; }
.phone-device.main {
  right: 14%;
  top: 26%;
  width: 130px;
  height: 228px;
  transform: rotate(12deg);
  animation: phoneOrbit 5.4s ease-in-out infinite;
}
.phone-device.mini {
  left: 12%;
  bottom: 18%;
  animation: phoneOrbitTwo 6s ease-in-out infinite;
}
.tablet-device {
  left: 18%;
  top: 18%;
  width: 330px;
  height: 230px;
  border-radius: 30px;
  transform: rotate(-10deg);
  animation: floatCard 5.8s ease-in-out infinite;
}
.hero-device i {
  position: absolute;
  inset: 16px;
  border-radius: 15px;
  background-image: radial-gradient(#273047 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.28;
}
.hero-device b, .hero-device span { position: absolute; display: block; background: #273047; }
.phone-device b {
  top: 14px;
  left: 50%;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
}
.tablet-device b { left: 0; right: 0; bottom: 0; height: 76px; background: #efc0b0; }
.tablet-device span {
  left: 70px;
  right: 70px;
  bottom: 22px;
  height: 32px;
  background: repeating-linear-gradient(90deg, #273047 0 18px, #bff3ef 18px 26px);
}
.orbit {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(67, 97, 242, 0.32);
  border-radius: 50%;
  animation: ping 2.8s ease-out infinite;
}
.orbit.one { right: 22%; top: 30%; width: 180px; height: 180px; }
.orbit.two { left: 16%; bottom: 18%; width: 120px; height: 120px; animation-delay: 1.2s; }
.product-art::before {
  background: conic-gradient(from 90deg, transparent, rgba(67, 97, 242, 0.2), transparent, rgba(145, 216, 255, 0.28), transparent);
}
.product-art span { color: var(--white); background: var(--lime); }
.price-row strong, .department strong, .category-toggle strong { font-family: "Plus Jakarta Sans", Manrope, Arial, sans-serif; }
.card-actions a, .card-actions button {
  flex: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.card-actions a { background: #f1f0eb; }
.card-actions a:first-child { background: #273047; color: var(--white); }
.card-actions button { background: var(--lime); color: var(--white); }
.stock-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0;
}
.option-group,
.choice-buttons {
  display: grid;
  gap: 7px;
}
.option-group > span,
.choice-buttons > span,
.filter-block > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.option-group > div,
.choice-buttons,
.filter-block {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice-buttons {
  margin-bottom: 16px;
}
.option-group button,
.choice-buttons button,
.filter-block button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.option-group button:hover,
.choice-buttons button:hover,
.filter-block button:hover {
  transform: translateY(-1px);
  border-color: var(--lime);
}
.option-group button.active,
.choice-buttons button.active,
.filter-block button.active {
  color: var(--white);
  background: var(--lime);
  border-color: var(--lime);
}
.split-panel {
  background: linear-gradient(135deg, rgba(67, 97, 242, 0.12), rgba(255, 255, 255, 0.92)), var(--white);
  border: 1px solid var(--line);
}
.split-panel.fix {
  background: linear-gradient(135deg, rgba(145, 216, 255, 0.48), rgba(255, 255, 255, 0.92)), var(--white);
}
.trade-steps span { color: var(--white); background: var(--lime); border-color: var(--lime); }
.checkout-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  padding: 28px 0 72px;
}
.checkout-list { display: grid; gap: 12px; margin-top: 20px; }
.checkout-item {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.checkout-item h3 { padding-right: 86px; }
.checkout-item p { color: var(--muted); line-height: 1.5; }
.checkout-item button {
  position: absolute;
  right: 14px;
  top: 14px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f7f3;
  font-weight: 800;
}
.full-button { width: 100%; margin-top: 10px; }
@media (max-width: 980px) {
  .checkout-layout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .brand-logo { width: 124px; }
  .coded-hero { min-height: 360px; }
  .coded-hero .rating-card {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: auto;
    max-width: none;
    border-radius: 18px;
  }
  .tablet-device { width: 245px; height: 170px; left: 13%; top: 42%; }
  .phone-device.main { width: 86px; height: 152px; right: 13%; top: 50%; }
  .phone-device.mini { left: 8%; bottom: 7%; }
  .stock-options { grid-template-columns: 1fr; }
  .stage-row {
    grid-template-columns: 38px 1fr;
    min-height: 86px;
    padding: 14px;
  }
  .stage-row span { width: 34px; height: 34px; }
  .stage-row strong { font-size: 15px; }
  .stage-row em { font-size: 12px; }
  .three-lab { min-height: auto; padding-top: 18px; }
  #repair-scene { min-height: 340px; }
  .three-copy { padding: 24px; }
  .split-panel h2,
  .three-copy h2,
  .section-kicker h2,
  .repair-command-grid strong {
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .split-panel h2,
  .three-copy h2 { font-size: 28px; }
  .split-panel h2 { max-width: 13ch; font-size: 25px; }
  .three-copy p:not(.eyebrow) { max-width: 29ch; }
  .three-copy .hero-actions .button { flex: 1 1 100%; }
  .repair-command-grid strong { font-size: 25px; }
  .repair-command,
  .repair-models,
  .faq-section { padding: 42px 0; }
}

.hero-media.elegant-stage {
  background:
    linear-gradient(135deg, rgba(67, 97, 242, 0.08), rgba(145, 216, 255, 0.16)),
    var(--white);
}

.hero-phone-theater {
  position: relative;
  min-height: 310px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(67, 97, 242, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 45%, rgba(67, 97, 242, 0.2), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(182, 255, 43, 0.26), transparent 26%),
    linear-gradient(140deg, #ffffff, #eef4ff);
}

#hero-phone-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-phone-photo {
  position: absolute;
  z-index: 2;
  width: min(38%, 190px);
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(20px 28px 26px rgba(15, 23, 42, 0.22));
  pointer-events: none;
}

.hero-phone-photo.phone-a {
  left: 8%;
  bottom: 10%;
  animation: heroFloatA 6.8s ease-in-out infinite;
}

.hero-phone-photo.phone-b {
  right: 8%;
  top: 8%;
  animation: heroFloatB 7.4s ease-in-out infinite;
}

.hero-phone-photo.phone-c {
  left: 50%;
  top: 23%;
  width: min(34%, 170px);
  transform: translateX(-50%);
  animation: heroFloatC 8.2s ease-in-out infinite;
}

.hero-orbit-ring,
.hero-signal-dot {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-orbit-ring {
  inset: 15% 20%;
  border: 2px solid rgba(67, 97, 242, 0.18);
  border-radius: 50%;
  animation: rotateSlow 12s linear infinite;
}

.hero-orbit-ring.ring-b {
  inset: 24% 9%;
  border-color: rgba(182, 255, 43, 0.32);
  animation-duration: 16s;
  animation-direction: reverse;
}

.hero-signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 10px rgba(67, 97, 242, 0.1);
  animation: dotPulse 2.8s ease-in-out infinite;
}

.hero-signal-dot.dot-a { left: 18%; top: 18%; }
.hero-signal-dot.dot-b { right: 18%; bottom: 20%; animation-delay: 0.8s; }
.hero-signal-dot.dot-c { left: 54%; bottom: 13%; animation-delay: 1.4s; }

@keyframes heroFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-9deg) scale(1); }
  50% { transform: translate3d(18px, -18px, 0) rotate(-2deg) scale(1.06); }
}

@keyframes heroFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg) scale(1); }
  50% { transform: translate3d(-16px, 20px, 0) rotate(1deg) scale(1.05); }
}

@keyframes heroFloatC {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(2deg) scale(0.98); }
  50% { transform: translateX(-50%) translateY(-20px) rotate(-5deg) scale(1.06); }
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.55; }
  50% { transform: scale(1.2); opacity: 1; }
}

.catalog-page .catalog-shell {
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 28px;
}

.catalog-page .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.catalog-page .product-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 252, 0.92)),
    var(--white);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.09);
  transform-origin: center bottom;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.catalog-page .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(67, 97, 242, 0.28);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.catalog-page .product-card > a {
  display: block;
}

.catalog-page .product-art {
  min-height: 330px;
  background:
    radial-gradient(circle at 20% 18%, rgba(182, 255, 43, 0.3), transparent 27%),
    radial-gradient(circle at 82% 24%, rgba(67, 97, 242, 0.2), transparent 30%),
    linear-gradient(145deg, #fbfbf8, #eceff7 58%, #f7f9ff);
}

.catalog-page .product-photo {
  width: min(92%, 390px);
  height: 300px;
  transform: translateY(8px) scale(1.02);
}

.catalog-page .product-card:hover .product-photo {
  transform: translateY(-6px) scale(1.07);
}

.catalog-page .product-body {
  padding: 22px;
}

.catalog-page .product-body h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}

.catalog-page .product-body > span {
  min-height: 0;
  font-size: 15px;
}

.catalog-page .price-row {
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
}

.catalog-page .price-row strong {
  font-size: 34px;
}

.option-group button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.option-group button em {
  color: inherit;
  font-style: normal;
  font-size: 11px;
  opacity: 0.72;
}

.catalog-page .card-actions a,
.catalog-page .card-actions button {
  min-height: 48px;
}

@media (max-width: 1120px) {
  .catalog-page .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-page .filters {
    position: static;
  }
}

@media (max-width: 760px) {
  .catalog-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-page .product-art {
    min-height: 300px;
  }

  .catalog-page .product-photo {
    width: min(94%, 360px);
    height: 275px;
  }

  .catalog-page .product-body {
    padding: 18px;
  }

  .catalog-page .price-row {
    flex-wrap: wrap;
  }

  .hero-phone-theater {
    min-height: 260px;
  }

.hero-phone-photo {
    height: 190px;
  }
}

.hero-media.hero-showcase {
  min-height: 640px;
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.92)),
    linear-gradient(90deg, rgba(67, 97, 242, 0.08), rgba(145, 216, 255, 0.14));
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-showcase::before {
  background-image:
    linear-gradient(rgba(39, 48, 71, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 48, 71, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 80%, transparent);
}

.hero-showcase::after {
  width: 46%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.68), transparent);
  transform: translateX(-140%);
  animation: heroGlassSweep 4.8s ease-in-out infinite;
}

.hero-showcase-top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hero-showcase-top span,
.hero-showcase-top a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-showcase-top span {
  color: #273047;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
}

.hero-showcase-top a {
  color: var(--white);
  background: var(--black);
}

.hero-device-stage {
  position: relative;
  z-index: 2;
  min-height: 380px;
  overflow: hidden;
}

.hero-showcase img {
  position: absolute;
  min-height: 0;
  object-fit: contain;
  pointer-events: none;
}

.hero-showcase .hero-main-phone {
  left: 50%;
  top: 50%;
  width: min(54%, 360px);
  height: auto;
  max-height: 390px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 34px 40px rgba(15, 23, 42, 0.26));
  animation: heroPhoneEnter 900ms cubic-bezier(.2,.8,.2,1) 180ms both, heroPhoneFloat 5.6s ease-in-out 1.1s infinite;
}

.hero-showcase .hero-side-phone {
  width: min(34%, 220px);
  height: auto;
  max-height: 300px;
  opacity: 0.86;
  filter: drop-shadow(0 24px 28px rgba(15, 23, 42, 0.18));
}

.hero-side-phone.side-one {
  left: 4%;
  bottom: 7%;
  animation: sidePhoneLeft 950ms cubic-bezier(.2,.8,.2,1) 340ms both, phoneDriftA 6.4s ease-in-out 1.2s infinite;
}

.hero-side-phone.side-two {
  right: 3%;
  top: 6%;
  animation: sidePhoneRight 950ms cubic-bezier(.2,.8,.2,1) 420ms both, phoneDriftB 7s ease-in-out 1.3s infinite;
}

.hero-device-halo {
  position: absolute;
  display: block;
  z-index: 0;
  border: 1px solid rgba(67, 97, 242, 0.16);
  border-radius: 8px;
  transform: rotate(-10deg);
}

.hero-device-halo.halo-a {
  left: 17%;
  top: 9%;
  width: 58%;
  height: 64%;
  animation: framePulse 5s ease-in-out infinite;
}

.hero-device-halo.halo-b {
  right: 10%;
  bottom: 12%;
  width: 50%;
  height: 56%;
  transform: rotate(12deg);
  border-color: rgba(145, 216, 255, 0.35);
  animation: framePulse 5.8s ease-in-out 600ms infinite;
}

.repair-scan-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 18%;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(67, 97, 242, 0.85), transparent);
  box-shadow: 0 0 18px rgba(67, 97, 242, 0.35);
  animation: scanDown 3.2s ease-in-out infinite;
}

.hero-service-stack {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-service-stack a {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-service-stack a:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 18px 38px rgba(67, 97, 242, 0.14);
}

.hero-service-stack span {
  color: var(--lime);
  font-weight: 900;
  font-size: 12px;
}

.hero-service-stack strong {
  font: 900 17px/1.08 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.hero-service-stack em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}

.iphone-runway {
  position: relative;
  min-height: 245vh;
  padding: 42px clamp(18px, 5vw, 76px) 82px;
}

.runway-sticky {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: center;
  min-height: calc(100vh - 132px);
}

.runway-copy {
  max-width: 520px;
}

.runway-copy h2 {
  max-width: 10ch;
}

.runway-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.runway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.runway-stack {
  position: relative;
  min-height: 680px;
  perspective: 1200px;
}

.runway-model {
  --slot: 0;
  --tilt: -2deg;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--slot) * 58px);
  min-height: 315px;
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(239,244,255,0.88)),
    linear-gradient(90deg, rgba(67, 97, 242, 0.08), rgba(145, 216, 255, 0.14));
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(120px, 18px, 0) rotate(var(--tilt)) scale(0.96);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(.2,.8,.2,1), filter 420ms ease;
}

.runway-model:nth-child(1) { --slot: 0; --tilt: -3deg; z-index: 7; }
.runway-model:nth-child(2) { --slot: 1; --tilt: 2deg; z-index: 6; }
.runway-model:nth-child(3) { --slot: 2; --tilt: -1deg; z-index: 5; }
.runway-model:nth-child(4) { --slot: 3; --tilt: 2deg; z-index: 4; }
.runway-model:nth-child(5) { --slot: 4; --tilt: -2deg; z-index: 3; }
.runway-model:nth-child(6) { --slot: 5; --tilt: 1deg; z-index: 2; }
.runway-model:nth-child(7) { --slot: 6; --tilt: -1deg; z-index: 1; }

.runway-model.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--tilt)) scale(1);
}

.runway-model.settled {
  opacity: 0.64;
  filter: saturate(0.82);
  transform: translate3d(-26px, 0, -30px) rotate(var(--tilt)) scale(0.965);
}

.runway-model.active {
  opacity: 1;
  filter: none;
  transform: translate3d(0, -10px, 38px) rotate(0deg) scale(1.025);
  z-index: 20;
}

.runway-model img {
  width: min(250px, 36vw);
  max-height: 300px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(15, 23, 42, 0.2));
}

.runway-model div {
  display: grid;
  gap: 10px;
}

.runway-model span {
  width: max-content;
  padding: 7px 9px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

.runway-model h3 {
  font-size: clamp(27px, 4vw, 54px);
  line-height: 0.96;
}

.runway-model p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.runway-card-link {
  position: absolute;
  inset: 0;
  z-index: 30;
  overflow: hidden;
  text-indent: -999px;
}

.device-hero,
.device-service-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.device-hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(34px, 6vw, 74px) 0 34px;
}

.device-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 18%, rgba(67, 97, 242, 0.18), transparent 28%),
    radial-gradient(circle at 74% 28%, rgba(145, 216, 255, 0.26), transparent 30%),
    linear-gradient(145deg, #ffffff, #f2f5ff);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.device-visual img {
  width: min(72%, 420px);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(15, 23, 42, 0.18));
  animation: heroPhoneFloat 5.6s ease-in-out infinite;
}

.device-visual span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  font-size: 12px;
}

.device-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.device-price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.device-price-strip article {
  min-height: 98px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.device-price-strip span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.device-price-strip strong {
  display: block;
  margin-top: 12px;
  font: 900 19px/1.08 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.device-service-section {
  padding: 30px 0 74px;
}

.device-service-section.compact {
  padding-top: 0;
}

.device-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

@keyframes heroGlassSweep {
  0%, 42% { transform: translateX(-140%); opacity: 0; }
  52% { opacity: 1; }
  74%, 100% { transform: translateX(230%); opacity: 0; }
}

@keyframes heroPhoneEnter {
  from { opacity: 0; transform: translate(-50%, -40%) scale(0.86); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes heroPhoneFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50% { transform: translate(-50%, -54%) rotate(2deg); }
}

@keyframes sidePhoneLeft {
  from { opacity: 0; transform: translateX(-80px) rotate(-14deg); }
  to { opacity: 0.86; transform: translateX(0) rotate(-10deg); }
}

@keyframes sidePhoneRight {
  from { opacity: 0; transform: translateX(80px) rotate(14deg); }
  to { opacity: 0.86; transform: translateX(0) rotate(9deg); }
}

@keyframes phoneDriftA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50% { transform: translate3d(12px, -12px, 0) rotate(-6deg); }
}

@keyframes phoneDriftB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(9deg); }
  50% { transform: translate3d(-12px, 14px, 0) rotate(4deg); }
}

@keyframes framePulse {
  0%, 100% { opacity: 0.28; transform: translateY(0) rotate(-10deg); }
  50% { opacity: 0.68; transform: translateY(-8px) rotate(-6deg); }
}

@keyframes scanDown {
  0%, 100% { transform: translateY(0); opacity: 0; }
  12%, 82% { opacity: 1; }
  50% { transform: translateY(230px); }
}

@media (max-width: 980px) {
  .hero-media.hero-showcase {
    min-height: 430px;
    grid-template-rows: auto 235px auto;
    order: -1;
  }

  .hero-device-stage {
    min-height: 235px;
  }

  .hero-showcase .hero-main-phone {
    width: min(42%, 280px);
    max-height: 250px;
  }

  .hero-showcase .hero-side-phone {
    width: min(27%, 170px);
    max-height: 184px;
  }

  .hero-service-stack a {
    min-height: 96px;
  }

  .runway-sticky {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .runway-copy h2 {
    max-width: 12ch;
  }

  .iphone-runway {
    min-height: auto;
    padding-top: 38px;
  }

  .runway-stack {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .runway-model,
  .runway-model.visible,
  .runway-model.settled,
  .runway-model.active {
    position: relative;
    top: auto;
    min-height: 230px;
    opacity: 1;
    filter: none;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 700px) {
  .hero-media.hero-showcase {
    min-height: 470px;
    grid-template-rows: auto minmax(250px, 1fr) auto;
    width: calc(100vw - 36px);
  }

  .hero-showcase-top {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-device-stage {
    min-height: 260px;
  }

  .hero-main-phone {
    width: min(62%, 240px);
    max-height: 260px;
  }

  .hero-side-phone {
    width: min(32%, 128px);
    max-height: 170px;
  }

  .repair-scan-line {
    left: 5%;
    right: 5%;
  }

  .hero-service-stack a {
    min-height: 74px;
  }

  .iphone-runway {
    min-height: auto;
    padding: 36px 18px 52px;
  }

  .runway-sticky {
    position: relative;
    top: auto;
    gap: 20px;
  }

  .runway-actions .button {
    flex: 1 1 100%;
  }

  .runway-stack {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .runway-model,
  .runway-model.visible,
  .runway-model.settled,
  .runway-model.active {
    position: relative;
    top: auto;
    min-height: 176px;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .runway-model img {
    width: 104px;
    max-height: 148px;
  }

  .runway-model h3 {
    font-size: 25px;
  }
}

@media (max-width: 980px) {
  .device-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .device-visual {
    min-height: 430px;
  }

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

@media (max-width: 620px) {
  .device-visual {
    min-height: 320px;
  }

  .device-visual img {
    width: min(78%, 260px);
    max-height: 280px;
  }

  .device-price-strip,
  .device-service-grid,
  .admin-how-grid {
    grid-template-columns: 1fr;
  }
}

/* Repair flow and clearer header */
.site-header {
  grid-template-columns: auto auto minmax(0, 1fr) auto;
}

.top-contact-bar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
}

.top-contact-bar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: #273047;
  font-weight: 900;
  font-size: 14px;
}

.top-contact-bar a:first-child {
  background: var(--lime);
}

.site-nav a:hover {
  background: #efeee8;
}

.repair-hero,
.repair-detail {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.repair-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 24px;
  align-items: stretch;
  padding: 42px 0 28px;
}

.repair-hero-copy,
.repair-detail-hero > div {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 14%, rgba(67, 97, 242, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 243, 0.92));
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.repair-hero h1,
.repair-detail-hero h1 {
  max-width: 13ch;
  font-size: clamp(42px, 6vw, 76px);
}

.repair-hero p,
.repair-detail-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.storefront-card {
  position: relative;
  min-height: 420px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.storefront-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.storefront-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.storefront-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(39, 48, 71, 0.86);
  font-weight: 900;
}

.repair-top {
  margin-bottom: 14px;
}

.repair-list a,
.repair-service-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.repair-list a:hover,
.repair-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 97, 242, 0.36);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
}

.repair-list a span,
.repair-service-card span {
  font: 900 22px/1.1 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.repair-list a small,
.repair-list a strong,
.repair-service-card small,
.repair-service-card strong {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font: 700 13px/1.35 Manrope, Arial, sans-serif;
}

.repair-list a strong,
.repair-service-card strong {
  color: var(--green);
  font-weight: 900;
}

.repair-detail {
  padding: 34px 0 76px;
}

.repair-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 22px;
  align-items: stretch;
}

.repair-estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 22px;
  margin-top: 24px;
}

.repair-picker {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.repair-picker h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.repair-picker h2 + .model-button-grid,
.brand-options + h2 {
  margin-top: 24px;
}

.brand-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.brand-option {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.brand-option strong,
.brand-option span {
  display: block;
}

.brand-option strong {
  font: 900 20px/1 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.brand-option span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.brand-option:hover,
.brand-option.active {
  transform: translateY(-2px);
  border-color: var(--lime);
  background: #eef2ff;
}

.model-button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.model-button-grid button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.model-button-grid button img {
  flex: 0 0 auto;
  width: 34px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(15, 23, 42, 0.13));
}

.model-button-grid button span {
  line-height: 1.15;
}

.model-button-grid button.active {
  color: var(--white);
  border-color: var(--lime);
  background: var(--lime);
}

.model-button-grid button.active img {
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.2));
}

.model-search-label {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.model-search-label input,
.admin-card input,
.admin-card select {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.repair-estimate-card {
  align-self: start;
  position: sticky;
  top: 132px;
}

.repair-estimate-card > strong {
  display: block;
  margin: 12px 0;
  font: 900 34px/1 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.estimate-device-preview {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,244,255,0.92));
}

.estimate-device-preview img {
  width: 86px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(15, 23, 42, 0.16));
}

.estimate-device-preview span {
  color: var(--black);
  font: 900 20px/1.08 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.repair-estimate-card > p {
  color: var(--muted);
  line-height: 1.55;
}

.repair-explain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.repair-explain article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #273047;
  color: var(--white);
}

.repair-explain span {
  color: var(--lime);
  font-weight: 900;
}

.repair-explain strong {
  display: block;
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.18;
}

.admin-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 76px;
}

.admin-grid {
  display: grid;
  gap: 22px;
}

.admin-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.admin-gate {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 18%, rgba(67, 97, 242, 0.13), transparent 30%),
    var(--white);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.09);
}

.admin-gate h2 {
  font-size: clamp(32px, 5vw, 54px);
}

.admin-gate p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-gate label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.admin-gate input {
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.admin-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.admin-how-grid article,
.repairdesk-status {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
}

.admin-how-grid strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--lime);
}

.admin-how-grid span,
.repairdesk-status {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-head h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 46px);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-add,
.admin-filter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
}

.admin-add label,
.admin-filter label,
.admin-row label,
.admin-price-row label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 620px;
  overflow: auto;
  padding-right: 6px;
}

.admin-row,
.admin-price-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(110px, 0.45fr));
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-price-row {
  grid-template-columns: minmax(260px, 1fr) 180px;
}

.admin-row strong,
.admin-price-row strong {
  display: block;
  font-size: 16px;
}

.admin-row span,
.admin-price-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-status {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .admin-head {
    display: grid;
  }

  .admin-add,
  .admin-filter,
  .admin-row,
  .admin-price-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    top: 116px;
  }

  .repair-hero,
  .repair-detail-hero,
  .repair-estimate-layout {
    grid-template-columns: 1fr;
  }

  .repair-estimate-card {
    position: static;
  }

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

@media (max-width: 620px) {
  .top-contact-bar {
    justify-content: stretch;
  }

  .top-contact-bar a {
    flex: 1 1 100%;
  }

  .site-nav {
    top: 156px;
    grid-template-columns: 1fr;
  }

  .site-nav.open {
    grid-template-columns: 1fr;
  }

  .repair-hero,
  .repair-detail {
    width: min(100% - 28px, 1180px);
  }

  .repair-hero-copy,
  .repair-detail-hero > div,
  .repair-picker,
  .quote-form {
    padding: 18px;
  }

  .repair-hero h1,
  .repair-detail-hero h1 {
    max-width: 12ch;
    font-size: 36px;
  }

  .storefront-card,
  .storefront-card img {
    min-height: 270px;
  }

  .brand-options,
  .repair-explain {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   M CELLPHONES · LUXURY HERO (Apple-inspired, namespaced .mc-)
   ════════════════════════════════════════════════════════════ */
:root{
  --mc-ink:#0b0b0f; --mc-ink-2:#3a3a42; --mc-muted:#6e6e76;
  --mc-bg:#f5f5f7; --mc-card:#ffffff; --mc-line:rgba(0,0,0,.08);
  --mc-blue:#0071e3; --mc-blue-2:#0a84ff;
  --mc-shadow:0 30px 80px -30px rgba(15,23,42,.35);
}
.mc-hero{ position:relative; overflow:hidden; padding:clamp(40px,8vh,110px) clamp(20px,5vw,80px) clamp(48px,9vh,120px);
  background:radial-gradient(120% 90% at 80% 0%, #ffffff 0%, #f5f5f7 48%, #ececed 100%); }
.mc-hero-glow{ position:absolute; inset:-20% -10% auto -10%; height:70%; pointer-events:none;
  background:radial-gradient(60% 60% at 30% 20%, rgba(0,113,227,.16), transparent 70%),
            radial-gradient(50% 50% at 85% 10%, rgba(120,90,255,.12), transparent 70%);
  filter:blur(10px); }
.mc-hero-inner{ position:relative; z-index:2; max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(24px,4vw,64px); align-items:center; }
.mc-eyebrow{ font:700 13px/1 Inter,system-ui,sans-serif; letter-spacing:.16em; text-transform:uppercase;
  color:var(--mc-blue); margin:0 0 18px; }
.mc-hero-title{ font:800 clamp(38px,6.2vw,76px)/1.02 Inter,system-ui,sans-serif; letter-spacing:-.03em;
  color:var(--mc-ink); margin:0 0 20px; }
.mc-hero-title span{ background:linear-gradient(90deg,var(--mc-blue),#5e5ce6); -webkit-background-clip:text; background-clip:text; color:transparent; }
.mc-hero-sub{ font:400 clamp(16px,1.5vw,20px)/1.55 Inter,system-ui,sans-serif; color:var(--mc-ink-2);
  max-width:540px; margin:0 0 28px; }
.mc-hero-search{ display:flex; gap:8px; max-width:520px; margin:0 0 22px;
  background:var(--mc-card); border:1px solid var(--mc-line); border-radius:999px; padding:6px 6px 6px 18px;
  box-shadow:0 10px 30px -18px rgba(15,23,42,.4); }
.mc-hero-search input{ flex:1; border:0; outline:0; background:transparent; font:500 16px Inter,sans-serif; color:var(--mc-ink); }
.mc-hero-search button{ border:0; cursor:pointer; border-radius:999px; padding:11px 22px; font:600 15px Inter,sans-serif;
  color:#fff; background:var(--mc-ink); transition:transform .15s, background .15s; }
.mc-hero-search button:hover{ background:#000; transform:translateY(-1px); }
.mc-hero-cta{ display:flex; flex-wrap:wrap; gap:12px; margin:0 0 26px; }
.mc-btn{ display:inline-flex; align-items:center; justify-content:center; border-radius:999px;
  padding:14px 26px; font:600 15px Inter,sans-serif; text-decoration:none; letter-spacing:-.01em;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease; }
.mc-btn-primary{ background:var(--mc-blue); color:#fff; box-shadow:0 12px 28px -12px rgba(0,113,227,.7); }
.mc-btn-primary:hover{ background:var(--mc-blue-2); transform:translateY(-2px); box-shadow:0 18px 36px -14px rgba(0,113,227,.7); }
.mc-btn-ghost{ background:rgba(0,0,0,.04); color:var(--mc-ink); border:1px solid var(--mc-line); }
.mc-btn-ghost:hover{ background:rgba(0,0,0,.07); transform:translateY(-2px); }
.mc-btn-call{ background:var(--mc-ink); color:#fff; }
.mc-btn-call:hover{ background:#000; transform:translateY(-2px); }
.mc-hero-trust{ display:flex; flex-wrap:wrap; gap:8px 22px; color:var(--mc-muted); font:500 14px Inter,sans-serif; }
.mc-hero-trust strong{ color:var(--mc-ink); }
.mc-hero-trust span{ display:inline-flex; align-items:center; gap:6px; }
.mc-hero-trust span+span::before{ content:"·"; margin-right:18px; color:rgba(0,0,0,.25); }

/* ── stage + fan ── */
.mc-hero-stage{ position:relative; perspective:1300px; min-height:520px;
  display:flex; align-items:center; justify-content:center; transition:opacity .3s ease; }
.mc-fan{ position:relative; width:min(520px,82vw); height:520px; transform-style:preserve-3d; will-change:transform;
  transform:rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translate3d(var(--px,0px),var(--scrollY,0px),0) scale(var(--spread,1));
  transition:transform .25s cubic-bezier(.22,.61,.36,1); }
.mc-fan-phone{ position:absolute; left:50%; top:50%; width:230px; height:auto;
  transform:translate(-50%,-50%) scale(.95); transform-origin:50% 60%;
  filter:drop-shadow(0 26px 40px rgba(15,23,42,.34));
  transition:transform 1.15s cubic-bezier(.22,.61,.36,1), opacity .9s ease, filter .9s ease;
  -webkit-user-drag:none; user-select:none; }
.mc-fan-phone[data-i="2"]{ z-index:5; } .mc-fan-phone[data-i="1"],.mc-fan-phone[data-i="3"]{ z-index:4; }
.mc-fan-phone[data-i="0"],.mc-fan-phone[data-i="4"]{ z-index:3; }
/* fanned-out positions */
.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="2"]{ transform:translate(-50%,-50%) translateY(-6px) rotate(0deg) scale(1); }
.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="1"]{ transform:translate(-50%,-50%) translateX(-78px) translateY(10px) rotate(-11deg) scale(.95); }
.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="3"]{ transform:translate(-50%,-50%) translateX(78px) translateY(10px) rotate(11deg) scale(.95); }
.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="0"]{ transform:translate(-50%,-50%) translateX(-150px) translateY(34px) rotate(-21deg) scale(.87); filter:drop-shadow(0 18px 30px rgba(15,23,42,.3)) blur(.5px); opacity:.94; }
.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="4"]{ transform:translate(-50%,-50%) translateX(150px) translateY(34px) rotate(21deg) scale(.87); filter:drop-shadow(0 18px 30px rgba(15,23,42,.3)) blur(.5px); opacity:.94; }
.mc-fan-fallback{ display:none; }

/* ── responsive ── */
@media (max-width:880px){
  .mc-hero-inner{ grid-template-columns:1fr; text-align:center; }
  .mc-hero-sub{ margin-left:auto; margin-right:auto; }
  .mc-hero-search{ margin-left:auto; margin-right:auto; }
  .mc-hero-cta,.mc-hero-trust{ justify-content:center; }
  .mc-hero-stage{ min-height:380px; order:-1; }
  .mc-fan{ height:380px; width:min(420px,90vw); }
  .mc-fan-phone{ width:180px; }
  /* simpler fan on mobile: hide the outermost phones */
  .mc-fan-phone[data-i="0"],.mc-fan-phone[data-i="4"]{ display:none; }
  .mc-fan[data-state="fanned"] .mc-fan-phone[data-i="1"]{ transform:translate(-50%,-50%) translateX(-54px) translateY(8px) rotate(-9deg) scale(.95); }
  .mc-fan[data-state="fanned"] .mc-fan-phone[data-i="3"]{ transform:translate(-50%,-50%) translateX(54px) translateY(8px) rotate(9deg) scale(.95); }
}

/* ── reduced motion: no fan/tilt motion, show a clean static lineup ── */
@media (prefers-reduced-motion: reduce){
  .mc-fan{ transition:none !important; transform:none !important; }
  .mc-fan-phone{ transition:none !important; }
}

/* ============================================================
   Task pass: full-bleed hero fan, shared search, and scroll stories
   ============================================================ */
.site-header {
  grid-template-columns: auto minmax(190px, 320px) minmax(0, 1fr);
}

.site-header .header-cta {
  display: none;
}

.site-nav {
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  white-space: nowrap;
}

.product-card {
  border-radius: 10px;
  background: #fff;
}

.product-art {
  min-height: 240px;
  height: 240px;
  padding: 22px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(139, 94, 60, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--warm-paper) 100%);
}

.product-art::before {
  inset: 16px;
  border-radius: 9px;
  background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.84), rgba(247, 243, 237, 0.08) 64%);
  animation: none;
}

.product-photo {
  width: min(86%, 250px);
  height: 190px;
  max-height: 190px;
  object-fit: contain;
  object-position: center;
  margin: auto;
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(0 24px 26px rgba(15, 23, 42, 0.16));
  transition: transform var(--motion-ui) var(--motion-ease), filter var(--motion-ui) ease;
}

.product-card:hover .product-photo {
  transform: translate3d(0, -5px, 0) scale(1.025);
  filter: drop-shadow(0 28px 30px rgba(15, 23, 42, 0.2));
}

.catalog-page .product-card {
  border-radius: 10px;
  transition: transform 300ms var(--motion-ease), box-shadow 300ms ease, border-color 300ms ease;
}

.catalog-page .product-art {
  min-height: 330px;
  height: 330px;
  padding: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(139, 94, 60, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--warm-paper) 100%);
}

.catalog-page .product-photo {
  width: min(88%, 330px);
  height: 260px;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
  margin: auto;
  transform: translate3d(0, 0, 0);
}

.catalog-page .product-card:hover .product-photo {
  transform: translate3d(0, -6px, 0) scale(1.025);
}

.product-body {
  display: grid;
  align-content: start;
}

.product-body h3 {
  line-height: 1.05;
}

.card-actions a,
.card-actions button {
  transition: transform var(--motion-ui) var(--motion-ease), background var(--motion-ui) ease, border-color var(--motion-ui) ease;
}

.mc-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%, 560px);
  min-height: 48px;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.mc-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #0b0d0f;
  background: transparent;
  font: 800 14px/1 Manrope, Inter, Arial, sans-serif;
}

.mc-search input::placeholder {
  color: rgba(11, 13, 15, 0.54);
}

.mc-search button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #0b0d0f;
  cursor: pointer;
  font: 900 13px/1 Manrope, Inter, Arial, sans-serif;
  transition: transform var(--motion-ui) var(--motion-ease), opacity var(--motion-ui) ease;
}

.mc-search button:hover {
  transform: translateY(-1px);
}

.mc-search:focus-within {
  border-color: rgba(67, 97, 242, 0.5);
  box-shadow: 0 0 0 4px rgba(67, 97, 242, 0.12), 0 18px 46px rgba(15, 23, 42, 0.12);
}

.mc-search-header {
  justify-self: stretch;
  width: 100%;
  min-height: 42px;
  padding: 5px 5px 5px 15px;
  box-shadow: none;
}

.mc-search-header button {
  min-height: 32px;
  padding-inline: 14px;
}

.mc-search-filter,
.mc-search-panel {
  width: 100%;
  margin-bottom: 14px;
}

.mc-search-panel {
  max-width: 760px;
  margin: 0 auto 22px;
}

.mc-hero {
  position: relative;
  min-height: calc(100svh - 96px);
  padding: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 46%, rgba(139, 94, 60, 0.24), rgba(8, 10, 14, 0.34) 34%, rgba(8, 10, 14, 0.78) 68%),
    linear-gradient(180deg, #111419 0%, #050608 100%);
}

.mc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 53%, rgba(0, 0, 0, 0.04) 0 22%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.14) 46%, rgba(0, 0, 0, 0.66));
}

.mc-hero-glow {
  inset: 0;
  height: auto;
  opacity: 0.62;
  background:
    radial-gradient(circle at 22% 18%, rgba(139, 94, 60, 0.34), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(255, 222, 181, 0.20), transparent 34%);
  filter: blur(24px);
}

.mc-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: visible;
  perspective: 1400px;
  pointer-events: none;
  transform: translate3d(0, var(--stage-y, 0px), 0);
  will-change: transform;
}

.mc-hero-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 69%;
  width: min(760px, 84vw);
  height: 88px;
  background: radial-gradient(ellipse at center, rgba(255, 222, 181, 0.24), rgba(0, 0, 0, 0.28) 42%, transparent 72%);
  filter: blur(14px);
  transform: translate3d(-50%, 0, 0) scaleX(var(--fan-scale, 1));
  opacity: 0.88;
}

.mc-hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  max-width: min(1180px, calc(100% - 36px));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: 0;
}

.mc-hero-copy {
  min-height: inherit;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
}

.mc-hero-top {
  align-self: start;
  max-width: 790px;
  padding-top: clamp(38px, 9vh, 98px);
}

.mc-hero-bottom {
  align-self: end;
  max-width: 860px;
  padding-bottom: clamp(34px, 8vh, 86px);
}

.mc-hero-top > *,
.mc-search-hero,
.mc-hero-cta a,
.mc-hero-trust span {
  animation: mcHeroIn 760ms var(--motion-ease) both;
}

.mc-hero-title { animation-delay: 80ms; }
.mc-hero-sub { animation-delay: 150ms; }
.mc-search-hero { animation-delay: 230ms; }
.mc-hero-cta a:nth-child(1) { animation-delay: 310ms; }
.mc-hero-cta a:nth-child(2) { animation-delay: 380ms; }
.mc-hero-cta a:nth-child(3) { animation-delay: 450ms; }
.mc-hero-trust span:nth-child(1) { animation-delay: 540ms; }
.mc-hero-trust span:nth-child(2) { animation-delay: 590ms; }
.mc-hero-trust span:nth-child(3) { animation-delay: 640ms; }

.mc-hero-title {
  max-width: 14.4ch;
  color: #fff;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
  font-size: clamp(44px, 7.6vw, 88px);
}

.mc-hero-title span {
  color: #dfe7ff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.mc-hero-sub {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.44);
}

.mc-search-hero {
  max-width: 640px;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.9);
}

.mc-hero-cta {
  margin-bottom: 20px;
}

.mc-btn {
  min-height: 52px;
  padding-inline: 28px;
}

.mc-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.mc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mc-btn-call {
  color: #0b0d0f;
  background: #fff;
}

.mc-hero-trust {
  color: rgba(255, 255, 255, 0.72);
}

.mc-hero-trust strong {
  color: #fff;
}

.mc-hero-trust span + span::before {
  color: rgba(255, 255, 255, 0.32);
}

.mc-fan {
  width: min(880px, 92vw);
  height: min(760px, 76vh);
  transform:
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translate3d(var(--px, 0px), calc(var(--py, 0px) + var(--fan-y, 0px)), 0)
    scale(var(--fan-scale, 1));
  transition: transform 280ms var(--motion-ease);
}

.mc-fan-phone {
  width: clamp(220px, 23vw, 330px);
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.46));
  transition: transform 1180ms var(--motion-ease), opacity 820ms ease, filter 820ms ease;
}

.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="2"] {
  transform: translate(-50%, -50%) translate3d(0, calc(-12px - var(--front-pop, 0px)), 96px) rotate(0deg) scale(1.08);
}

.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="1"] {
  transform: translate(-50%, -50%) translate3d(calc(-150px - var(--inner-drift, 0px)), 8px, 44px) rotate(-11deg) scale(0.98);
}

.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="3"] {
  transform: translate(-50%, -50%) translate3d(calc(150px + var(--inner-drift, 0px)), 8px, 44px) rotate(11deg) scale(0.98);
}

.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="0"] {
  transform: translate(-50%, -50%) translate3d(calc(-292px - var(--outer-drift, 0px)), 48px, -30px) rotate(-23deg) scale(0.9);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.36)) blur(var(--back-blur, 0.4px));
  opacity: 0.88;
}

.mc-fan[data-state="fanned"] .mc-fan-phone[data-i="4"] {
  transform: translate(-50%, -50%) translate3d(calc(292px + var(--outer-drift, 0px)), 48px, -30px) rotate(23deg) scale(0.9);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.36)) blur(var(--back-blur, 0.4px));
  opacity: 0.88;
}

.mc-reveal {
  opacity: 0.01;
  filter: blur(10px);
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition:
    opacity var(--motion-section) ease var(--reveal-delay, 0ms),
    filter var(--motion-section) ease var(--reveal-delay, 0ms),
    transform var(--motion-section) var(--motion-ease) var(--reveal-delay, 0ms);
}

.mc-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.mc-crack-story,
.mc-product-story,
.mc-command-map {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.mc-crack-story {
  min-height: 245vh;
}

.mc-story-sticky {
  position: sticky;
  top: 108px;
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(280px, 0.72fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(18px, 4vw, 46px);
}

.mc-story-copy h2,
.mc-product-sticky h2,
.mc-command-map h2 {
  max-width: 12ch;
  font-size: clamp(36px, 5.8vw, 72px);
  line-height: 0.96;
}

.mc-story-copy p:not(.eyebrow),
.mc-product-sticky small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.mc-crack-phone {
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.mc-crack-phone svg {
  width: min(290px, 74vw);
  filter: drop-shadow(0 35px 45px rgba(15, 23, 42, 0.2));
  transform: rotateY(var(--phone-ry, -12deg)) rotateX(4deg) translateY(var(--phone-y, 0px));
  transition: transform 320ms var(--motion-ease);
}

.mc-phone-body {
  fill: #0b0d0f;
}

.mc-phone-screen {
  fill: url(#mcScreenGlow);
  opacity: var(--screen-opacity, 0.45);
}

.mc-crack-lines path,
.mc-clean-shine path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-crack-lines path {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4;
  opacity: var(--crack-opacity, 1);
  transform: translateY(var(--crack-y, 0px));
  transform-origin: center;
}

.mc-clean-shine path {
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 10;
  opacity: var(--shine-opacity, 0);
  stroke-dasharray: 270;
  stroke-dashoffset: var(--shine-offset, 270);
}

.mc-test-dot {
  fill: #fff;
  opacity: var(--test-opacity, 0);
  transform: scale(var(--test-scale, 0.35));
  transform-origin: center;
}

.mc-crack-steps {
  display: grid;
  gap: 10px;
}

.mc-crack-step {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0.58;
  transform: translate3d(10px, 0, 0) scale(0.99);
  transition: transform 320ms var(--motion-ease), opacity 320ms ease, border-color 320ms ease;
}

.mc-crack-step.active,
.mc-crack-step.complete {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  border-color: rgba(67, 97, 242, 0.36);
}

.mc-crack-step span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.mc-crack-step strong {
  display: block;
  font: 900 19px/1.08 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.mc-crack-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.mc-product-story {
  min-height: 140vh;
}

.mc-product-sticky {
  position: sticky;
  top: 118px;
  min-height: calc(100vh - 138px);
  display: grid;
  align-content: center;
  gap: 26px;
}

.mc-product-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mc-product-path a {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(67, 97, 242, 0.14), transparent 34%),
    linear-gradient(180deg, #fff, #f6f7fb);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
  transition: transform 320ms var(--motion-ease), box-shadow 320ms ease;
}

.mc-product-path a:nth-child(2) {
  transform: translateY(36px);
}

.mc-product-path a:nth-child(3) {
  transform: translateY(72px);
}

.mc-product-path a:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
}

.mc-product-path span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: #0b0d0f;
  font-weight: 900;
}

.mc-product-path strong {
  font: 900 clamp(26px, 3.2vw, 42px)/0.98 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.mc-command-map {
  overflow: hidden;
}

.mc-map-wrap {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.mc-map-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mc-map-line path {
  fill: none;
  stroke: rgba(67, 97, 242, 0.7);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1160;
  stroke-dashoffset: 1160;
  transition: stroke-dashoffset 1400ms var(--motion-ease);
}

.mc-command-map.map-live .mc-map-line path {
  stroke-dashoffset: 0;
}

.mc-map-wrap a {
  position: relative;
  z-index: 1;
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 260ms var(--motion-ease);
}

.mc-map-wrap a:nth-of-type(even) {
  transform: translateY(34px);
}

.mc-map-wrap a:hover {
  transform: translateY(-6px);
}

.mc-map-wrap span {
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.mc-map-wrap strong {
  font: 900 20px/1.05 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

@keyframes mcHeroIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 18px, 0) scale(0.992);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.quick-links {
  background: var(--warm-paper);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.quick-links a {
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform var(--motion-ui) var(--motion-ease), box-shadow var(--motion-ui) ease, background var(--motion-ui) ease;
}

.quick-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.10);
}

.mc-story-actions {
  margin-top: 22px;
}

.home-estimate,
.phone-store-section,
.home-category-picker,
.visit-trade-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.home-estimate {
  display: grid;
  gap: 24px;
  padding: clamp(48px, 7vw, 86px) 0;
}

.home-estimate .section-kicker {
  max-width: 760px;
}

.home-estimate-app {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.estimate-panel,
.estimate-result {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 237, 0.92)),
    radial-gradient(circle at 18% 16%, rgba(139, 94, 60, 0.12), transparent 34%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}

.estimate-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.estimate-step {
  display: grid;
  gap: 10px;
}

.estimate-step > span,
.estimate-step label,
.estimate-result span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.estimate-brand-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 8px;
}

.home-brand-option,
.estimate-step select {
  min-height: 52px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font: 900 13px/1 Manrope, Inter, Arial, sans-serif;
}

.home-brand-option {
  padding: 0 14px;
  cursor: pointer;
  transition: transform var(--motion-ui) var(--motion-ease), border-color var(--motion-ui) ease, background var(--motion-ui) ease;
}

.home-brand-option:hover,
.home-brand-option.active {
  transform: translateY(-2px);
  border-color: rgba(67, 97, 242, 0.5);
  background: #0b0d0f;
  color: #fff;
}

.estimate-step select {
  width: 100%;
  padding: 0 16px;
  outline: 0;
}

.estimate-result {
  display: grid;
  grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
}

.estimate-result img {
  width: min(100%, 165px);
  height: 220px;
  object-fit: contain;
  object-position: center;
  justify-self: center;
  filter: drop-shadow(0 22px 24px rgba(15, 23, 42, 0.18));
}

.estimate-result strong {
  display: block;
  margin: 8px 0;
  font: 900 clamp(28px, 4vw, 48px)/0.95 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
  color: var(--black);
}

.estimate-result p,
.estimate-result small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.estimate-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.phone-store-section {
  padding: clamp(46px, 7vw, 92px) 0;
}

.store-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.store-lanes a,
.visit-trade-band a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 148px;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 12%, rgba(67, 97, 242, 0.14), transparent 34%),
    linear-gradient(180deg, #fff, #f6f3ed);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  transition: transform 320ms var(--motion-ease), box-shadow 320ms ease;
}

.store-lanes a::before,
.visit-trade-band a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-110%);
  transition: transform 720ms var(--motion-ease);
}

.store-lanes a:hover,
.visit-trade-band a:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.store-lanes a:hover::before,
.visit-trade-band a:hover::before {
  transform: translateX(110%);
}

.store-lanes span,
.visit-trade-band span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-lanes strong,
.visit-trade-band strong {
  font: 900 clamp(20px, 2vw, 28px)/1.04 "Plus Jakarta Sans", Manrope, Arial, sans-serif;
}

.featured-grid .product-card {
  min-height: 100%;
}

.featured-grid .product-art {
  min-height: 300px;
}

.featured-grid .product-photo {
  width: min(92%, 350px);
  height: 285px;
  max-height: 285px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.product-specs span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 23, 42, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.product-card .card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card .card-actions a,
.product-card .card-actions button {
  min-height: 44px;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.premium-trust {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.premium-trust .review-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.home-category-picker {
  padding: clamp(48px, 7vw, 86px) 0;
}

.category-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition: transform 280ms var(--motion-ease), box-shadow 280ms ease, border-color 280ms ease;
}

.category-card:hover,
.category-card.open {
  transform: translateY(-3px);
  border-color: rgba(67, 97, 242, 0.28);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
}

.category-toggle {
  position: relative;
  display: grid;
  gap: 8px;
  border-radius: 8px 8px 0 0;
}

.category-toggle::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0b0d0f;
  font-weight: 900;
  transition: transform 240ms var(--motion-ease);
}

.category-card.open .category-toggle::after {
  content: "-";
  transform: rotate(180deg);
}

.category-toggle strong {
  max-width: calc(100% - 42px);
}

.model-list[hidden] {
  display: none;
}

.model-list a {
  transition: transform var(--motion-ui) var(--motion-ease), background var(--motion-ui) ease, color var(--motion-ui) ease;
}

.model-list a:hover {
  transform: translateX(4px);
  background: #0b0d0f;
  color: #fff;
}

.compact-category-grid .category-toggle {
  min-height: 96px;
}

.compact-category-grid .category-toggle strong {
  font-size: 22px;
}

.visit-trade-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 clamp(46px, 6vw, 86px);
}

.visit-trade-band a {
  min-height: 220px;
}

.visit-trade-band small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto minmax(190px, 1fr) auto;
  }

  .mc-search-header {
    max-width: none;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .mc-story-sticky {
    grid-template-columns: 1fr;
    position: relative;
    top: auto;
  }

  .mc-crack-story,
  .mc-product-story {
    min-height: auto;
  }

  .mc-product-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .home-estimate-app,
  .review-band,
  .visit-trade-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 880px) {
  .mc-hero {
    min-height: calc(100svh - 118px);
  }

  .mc-hero-inner {
    min-height: calc(100svh - 118px);
  }

  .mc-hero-copy {
    text-align: left;
  }

  .mc-hero-title {
    font-size: clamp(42px, 13vw, 68px);
  }

  .mc-hero-stage {
    align-items: center;
  }

  .mc-fan {
    width: min(720px, 112vw);
    height: min(620px, 65vh);
  }

  .mc-fan-phone {
    width: clamp(210px, 44vw, 280px);
  }

  .mc-fan-phone[data-i="0"],
  .mc-fan-phone[data-i="4"] {
    display: block;
  }

  .mc-fan[data-state="fanned"] .mc-fan-phone[data-i="1"] {
    transform: translate(-50%, -50%) translate3d(calc(-98px - var(--inner-drift, 0px)), 10px, 38px) rotate(-10deg) scale(0.96);
  }

  .mc-fan[data-state="fanned"] .mc-fan-phone[data-i="3"] {
    transform: translate(-50%, -50%) translate3d(calc(98px + var(--inner-drift, 0px)), 10px, 38px) rotate(10deg) scale(0.96);
  }

  .mc-fan[data-state="fanned"] .mc-fan-phone[data-i="0"] {
    transform: translate(-50%, -50%) translate3d(calc(-184px - var(--outer-drift, 0px)), 46px, -24px) rotate(-22deg) scale(0.86);
  }

  .mc-fan[data-state="fanned"] .mc-fan-phone[data-i="4"] {
    transform: translate(-50%, -50%) translate3d(calc(184px + var(--outer-drift, 0px)), 46px, -24px) rotate(22deg) scale(0.86);
  }

  .mc-product-path,
  .mc-map-wrap,
  .store-lanes {
    grid-template-columns: 1fr;
  }

  .mc-product-path a,
  .mc-product-path a:nth-child(2),
  .mc-product-path a:nth-child(3),
  .mc-map-wrap a:nth-of-type(even) {
    min-height: 170px;
    transform: none;
  }

  .mc-map-line {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .mc-search-header {
    grid-column: 1 / -1;
    order: 4;
  }

  .site-nav.open {
    top: 208px;
  }

  .mc-search {
    min-height: 46px;
    padding-left: 14px;
  }

  .mc-search button {
    padding-inline: 13px;
  }

  .mc-hero,
  .mc-hero-inner {
    min-height: calc(100svh - 246px);
  }

  .mc-hero-top {
    padding-top: 22px;
  }

  .mc-hero-bottom {
    padding-bottom: 18px;
  }

  .mc-hero-title {
    font-size: clamp(34px, 10.8vw, 52px);
    max-width: 12.8ch;
    margin-bottom: 12px;
  }

  .mc-hero-sub {
    font-size: 14px;
    line-height: 1.42;
    max-width: 330px;
    margin-bottom: 12px;
  }

  .mc-search-hero {
    min-height: 44px;
    margin-bottom: 10px;
  }

  .mc-btn {
    min-height: 46px;
  }

  .mc-hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .mc-hero-trust {
    display: grid;
    gap: 8px;
  }

  .mc-hero-trust span + span::before {
    content: none;
  }

  .mc-crack-story,
  .mc-product-story,
  .mc-command-map,
  .home-estimate,
  .phone-store-section,
  .home-category-picker,
  .visit-trade-band {
    width: min(100% - 28px, 1180px);
  }

  .home-estimate-app,
  .estimate-result {
    grid-template-columns: 1fr;
  }

  .estimate-result img {
    height: 185px;
  }

  .product-card .card-actions {
    grid-template-columns: 1fr;
  }

  .featured-grid .product-art {
    min-height: 265px;
  }

  .featured-grid .product-photo {
    height: 250px;
  }

  .review-band {
    width: min(100% - 28px, 1180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-hero-stage,
  .mc-fan,
  .mc-fan-phone,
  .mc-crack-phone svg,
  .mc-crack-lines path,
  .mc-clean-shine path,
  .mc-test-dot,
  .mc-reveal,
  .mc-map-line path {
    transition: none !important;
    animation: none !important;
  }

  .mc-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .mc-map-line path {
    stroke-dashoffset: 0;
  }
}
