/* =========================================================
   PIXEL REPAIR — design system
   "The Light Studio": airy, premium, calm.
   Soft off-white base · white cards on soft shadow · one azure accent.
   ---------------------------------------------------------
   Re-skin the whole site from the tokens in :root below.
   ========================================================= */

:root {
  /* ---- colour (Pixel Group reference: clean, corporate, light) ---- */
  --ink:        #FFFFFF;   /* page background — white            */
  --ink-2:      #F7F8FB;   /* light grey alternating sections    */
  --surface:    #FFFFFF;   /* cards                              */
  --surface-2:  #F3F5F9;   /* hover / subtle tint                */
  --line:       #E6E9F0;   /* light border                       */
  --line-2:     #D6DBE6;   /* stronger border                    */

  --bone:       #0F172A;   /* primary text — slate-900 */
  --mute:       #4B5563;   /* secondary text — slate-600 */
  --dim:        #94A3B8;   /* captions — slate-400 */

  --azure:      #2563EB;   /* primary blue accent  */
  --azure-2:    #1D4ED8;   /* hover (deeper)       */
  --azure-ink:  #FFFFFF;   /* text on azure        */
  --azure-soft: #EFF4FF;   /* light blue surface (Google card) */

  --dark:       #0F1729;   /* footer + Apple button */
  --dark-2:     #1C2640;   /* dark hover            */

  --wa:         #25D366;   /* WhatsApp */
  --wa-2:       #1FB855;   /* WhatsApp hover */
  --warn:       #F59E0B;   /* gold stars / amber flags */

  /* ---- depth (subtle, border-led like the reference) ---- */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow:    0 4px 14px -4px rgba(15,23,42,0.10), 0 2px 6px -2px rgba(15,23,42,0.05);
  --shadow-lg: 0 22px 48px -20px rgba(15,23,42,0.20);

  --r:    12px;
  --r-sm: 8px;
  --r-lg: 16px;

  --maxw: 1200px;

  --f-display: 'Inter', Arial, Helvetica, sans-serif;
  --f-body:    'Inter', Arial, Helvetica, sans-serif;
  --f-mono:    'Inter', Arial, Helvetica, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.62;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; padding: 0; }
::selection { background: var(--azure); color: var(--azure-ink); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.section { padding-block: clamp(2rem, 4vw, 3.2rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.band { background: var(--ink-2); border-block: 1px solid var(--line); }

/* mono section label, e.g.  "/ WHAT WE REPAIR" */
.label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure);
  display: inline-flex; align-items: center;
}

.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); margin: 0.9rem 0 0.8rem; }
.section-head p { color: var(--mute); font-size: 1.04rem; max-width: 56ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }
.accent { color: var(--azure); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--f-body); font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em;
  padding: 0.78rem 1.3rem; border-radius: var(--r-sm);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--azure); color: #ffffff; font-weight: 600; box-shadow: 0 6px 16px -6px rgba(37,99,235,0.45); }
.btn--primary:hover { background: var(--azure-2); color: #ffffff; transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(37,99,235,0.5); }
.btn--ghost { background: transparent; border: 1px solid var(--line-2); color: var(--bone); }
.btn--ghost:hover { border-color: var(--azure); color: var(--azure); }
.btn--wa { background: var(--wa); color: #04210f; }
.btn--wa:hover { background: #2be673; transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn--lg { padding: 0.95rem 1.6rem; font-size: 1rem; }

/* ---------- utility bar ---------- */
.util-bar { border-bottom: 1px solid var(--line); background: var(--ink); }
.util-bar .wrap { display: flex; align-items: center; gap: 1.4rem; height: 36px; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--dim); text-transform: uppercase; }
.util-bar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--wa); flex: none; box-shadow: 0 0 0 3px rgba(37,211,102,0.16); }
.util-bar span.sep { margin-left: auto; }
@media (max-width: 680px) { .util-bar .hide-sm { display: none; } .util-bar span.sep { margin-left: auto; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16,24,40,0.02);
}
.nav { display: flex; align-items: center; gap: 1.2rem; height: 70px; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.03em; color: var(--bone); }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: var(--azure-soft); border: 1px solid var(--line-2); color: var(--azure);
  display: grid; place-items: center;
}
.brand__mark svg { width: 19px; height: 19px; }
.brand b { font-weight: 700; }
.brand span { color: var(--azure); font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: 0.15rem; margin-left: auto; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--mute);
  padding: 0.5rem 0.85rem; border-radius: var(--r-sm); transition: color 0.15s, background 0.15s;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a.is-active { color: var(--bone); }
.nav__cta { margin-left: 0.5rem; }
.nav__toggle { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-2); }
.nav__toggle span { display: block; width: 18px; height: 1.5px; margin: 4px auto; background: var(--bone); transition: 0.2s; }

@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.1rem;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 0.7rem clamp(1.1rem,4vw,2.2rem) 1.1rem;
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: 0.2s;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 0.8rem 0.85rem; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 0.5rem 0 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); letter-spacing: -0.035em; margin: 1.3rem 0; }
.hero p.lead { font-size: clamp(1.04rem, 1.6vw, 1.2rem); color: var(--mute); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } .hero__visual { order: -1; max-width: 420px; } }

/* animated hero scene */
.hero-art { position: relative; width: 100%; max-width: 440px; margin-inline: auto; }
.hero-art svg { width: 100%; height: auto; display: block; overflow: visible; }
@media (prefers-reduced-motion: no-preference) {
  .ha-phone { animation: haFloat 6s ease-in-out infinite; }
  .ha-ring { animation: haPulse 3.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
  .ha-ring--2 { animation-delay: 1.7s; }
  .ha-float { animation: haFloat 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .ha-float--2 { animation: haFloat 6.4s ease-in-out infinite; animation-delay: 0.5s; }
  .ha-float--3 { animation: haFloat 4.6s ease-in-out infinite; animation-delay: 1.1s; }
  .ha-twinkle { animation: haTwinkle 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .ha-dot { animation: haBlink 1.4s ease-in-out infinite; }
  .ha-dot--2 { animation-delay: 0.2s; }
  .ha-dot--3 { animation-delay: 0.4s; }
}
@keyframes haFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes haPulse { 0% { transform: scale(0.55); opacity: 0.5; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes haTwinkle { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@keyframes haBlink { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

/* trust strip (honest, mono) */
.trust-strip { border-block: 1px solid var(--line); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 2.6rem; padding-block: 1.1rem; font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.trust-strip .ts { display: inline-flex; align-items: center; gap: 0.6ch; }
.trust-strip .ts svg { width: 14px; height: 14px; color: var(--azure); }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(0.9rem, 1.6vw, 1.2rem); }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); }
@media (max-width: 920px) { .grid--4 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(2,1fr); } .grid--2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid--4, .grid--3 { grid-template-columns: 1fr; } }

/* ---------- rate card (services as a real price sheet) ---------- */
.ratecard { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.ratecard__row {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 1rem;
  padding: 1.05rem 1.3rem; border-top: 1px solid var(--line); transition: background 0.15s;
}
.ratecard__row:first-child { border-top: none; }
.ratecard__row:hover { background: var(--surface-2); }
.ratecard__ic { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--azure); }
.ratecard__ic svg { width: 20px; height: 20px; }
.ratecard__name { font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; }
.ratecard__name small { display: block; font-weight: 400; color: var(--dim); font-size: 0.84rem; letter-spacing: 0; }
.ratecard__price { font-family: var(--f-mono); font-size: 0.95rem; color: var(--bone); white-space: nowrap; }
.ratecard__price em { color: var(--dim); font-style: normal; font-size: 0.72rem; display: block; text-align: right; }
.ratecard__foot { padding: 0.9rem 1.3rem; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--dim); text-transform: uppercase; }

/* ---------- generic card ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; transition: border-color 0.18s, background 0.18s, transform 0.18s; }
.card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-3px); }
.card__ic { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--azure); margin-bottom: 1.1rem; }
.card__ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.card p { color: var(--mute); font-size: 0.93rem; }

/* commitments list */
.commit { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.commit__row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); }
.commit__row:first-child { border-top: none; }
.commit__n { font-family: var(--f-mono); font-size: 0.8rem; color: var(--azure); padding-top: 0.15rem; }
.commit__row h4 { font-size: 1.02rem; margin-bottom: 0.2rem; font-family: var(--f-body); font-weight: 700; letter-spacing: -0.01em; }
.commit__row p { color: var(--mute); font-size: 0.92rem; }

/* ---------- brand focus ---------- */
.focus-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color 0.18s, transform 0.18s; }
.focus-card:hover { border-color: var(--azure); transform: translateY(-3px); }
.focus-card__logo { width: 50px; height: 50px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; flex: none; color: var(--bone); }
.focus-card__logo svg { width: 26px; height: 26px; }
.focus-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.focus-card p { color: var(--mute); font-size: 0.94rem; }
.focus-card .range { font-family: var(--f-mono); font-size: 0.74rem; color: var(--dim); letter-spacing: 0.04em; margin-top: 0.5rem; display: block; }

/* ---------- toggles / chips ---------- */
.toggle-row { display: inline-flex; gap: 0.25rem; padding: 0.3rem; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--surface); flex-wrap: wrap; }
.toggle-row button { font-family: var(--f-body); font-weight: 600; font-size: 0.9rem; padding: 0.55rem 1.1rem; border-radius: 6px; color: var(--mute); transition: 0.15s; }
.toggle-row button.is-active { background: var(--azure); color: var(--azure-ink); }
.chip-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { font-family: var(--f-mono); padding: 0.5rem 0.9rem; border-radius: 6px; border: 1px solid var(--line-2); background: var(--surface); color: var(--mute); font-size: 0.82rem; letter-spacing: 0.02em; transition: 0.14s; }
.chip:hover { border-color: var(--azure); color: var(--bone); }
.chip.is-active { background: var(--azure-soft); border-color: var(--azure); color: var(--bone); }

/* ---------- estimator ---------- */
.estimator { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }
@media (max-width: 940px) { .estimator { grid-template-columns: 1fr; } }
.step { margin-bottom: 2rem; }
.step__head { display: flex; align-items: baseline; gap: 0.7rem; }
.step__n { font-family: var(--f-mono); font-size: 0.8rem; color: var(--azure); border: 1px solid var(--line-2); border-radius: 5px; padding: 0.1rem 0.5rem; }
.step__head h3 { font-size: 1.12rem; font-family: var(--f-body); font-weight: 700; letter-spacing: -0.01em; }
.step .hint { color: var(--dim); font-size: 0.86rem; margin: 0.3rem 0 1rem; }

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
@media (max-width: 560px) { .service-list { grid-template-columns: 1fr; } }
.service-opt { display: flex; align-items: center; gap: 0.85rem; cursor: pointer; padding: 0.85rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface); transition: 0.15s; }
.service-opt:hover { border-color: var(--line-2); background: var(--surface-2); }
.service-opt input { position: absolute; opacity: 0; pointer-events: none; }
.service-opt .box { width: 20px; height: 20px; border-radius: 5px; border: 1.5px solid var(--line-2); flex: none; display: grid; place-items: center; transition: 0.15s; }
.service-opt .box svg { width: 12px; height: 12px; color: var(--azure-ink); opacity: 0; transform: scale(0.6); transition: 0.15s; }
.service-opt input:checked ~ .box { background: var(--azure); border-color: var(--azure); }
.service-opt input:checked ~ .box svg { opacity: 1; transform: none; }
.service-opt:has(input:checked) { border-color: var(--azure); background: var(--azure-soft); }
.service-opt .svc-name { font-weight: 600; font-size: 0.93rem; letter-spacing: -0.01em; }
.service-opt .svc-meta { display: flex; flex-direction: column; }
.service-opt .svc-meta small { color: var(--dim); font-size: 0.76rem; }
.service-opt .svc-price { margin-left: auto; color: var(--mute); font-size: 0.82rem; font-family: var(--f-mono); white-space: nowrap; }

.summary { position: sticky; top: 88px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 1.5rem; }
.summary h3 { font-size: 1.1rem; font-family: var(--f-body); font-weight: 700; }
.summary__sub { color: var(--dim); font-size: 0.84rem; margin-bottom: 1.1rem; }
.selected-model-tag { display: flex; align-items: center; gap: 0.5rem; font-family: var(--f-mono); font-size: 0.8rem; color: var(--azure); background: var(--azure-soft); border: 1px solid var(--line); padding: 0.5rem 0.7rem; border-radius: var(--r-sm); margin-bottom: 1rem; }
.selected-model-tag svg { width: 15px; height: 15px; flex: none; }
.summary__line { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.summary__line span:first-child { color: var(--mute); }
.summary__line span:last-child { font-family: var(--f-mono); color: var(--bone); }
.summary__empty { color: var(--dim); font-size: 0.88rem; padding: 0.8rem 0; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin: 1.2rem 0; }
.summary__total small { color: var(--dim); font-size: 0.78rem; font-family: var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.summary__total b { font-family: var(--f-mono); font-size: 1.7rem; font-weight: 600; color: var(--bone); }
.summary .est-note { font-size: 0.74rem; color: var(--dim); margin-top: 0.9rem; text-align: center; }

/* ---------- product catalogue ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-bottom: 2rem; }
.filter-bar .label { margin-right: 0.2rem; }
.product-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: 0.18s; }
.product-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.product-card__media { aspect-ratio: 4/3; position: relative; background: var(--ink-2); display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.product-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.product-card__media .ph { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; color: var(--dim); }
.product-card__media .ph svg { width: 34px; height: 34px; opacity: 0.5; }
.product-card__media .ph span { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card__tag { position: absolute; top: 0.7rem; left: 0.7rem; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.55rem; border-radius: 5px; background: var(--surface); border: 1px solid var(--line-2); color: var(--azure); box-shadow: var(--shadow-sm); }
.product-card__body { padding: 1.05rem 1.15rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.product-card__model { font-family: var(--f-mono); font-size: 0.68rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
.product-card__body h3 { font-size: 0.98rem; margin: 0.3rem 0 0.6rem; font-family: var(--f-body); font-weight: 700; letter-spacing: -0.01em; }
.product-card__price { font-family: var(--f-mono); font-weight: 600; font-size: 1.12rem; color: var(--bone); margin-top: auto; }
.product-card__price small { font-size: 0.74rem; color: var(--dim); font-weight: 400; text-decoration: line-through; margin-left: 0.4rem; }
.product-card__actions { display: flex; gap: 0.5rem; margin-top: 0.9rem; }
.product-card__actions .btn { padding: 0.55rem 0.8rem; font-size: 0.82rem; flex: 1; }
.hidden { display: none !important; }

/* ---------- product detail ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
@media (max-width: 880px) { .pd { grid-template-columns: 1fr; } }
.pd__gallery { position: sticky; top: 90px; }
.pd__main { aspect-ratio: 1; border-radius: var(--r); border: 1px solid var(--line); background: var(--ink-2); display: grid; place-items: center; margin-bottom: 0.8rem; }
.pd__main .ph { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--dim); }
.pd__main .ph svg { width: 56px; height: 56px; opacity: 0.5; }
.pd__main .ph span { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.55rem; }
.pd__thumbs div { aspect-ratio: 1; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface); display: grid; place-items: center; color: var(--dim); }
.pd__thumbs div svg { width: 20px; height: 20px; opacity: 0.4; }
.pd__info h1 { font-size: clamp(1.7rem,4vw,2.4rem); margin: 0.7rem 0 0.5rem; letter-spacing: -0.025em; }
.pd__price { display: flex; align-items: baseline; gap: 0.7rem; margin: 1rem 0; }
.pd__price b { font-family: var(--f-mono); font-size: 1.8rem; font-weight: 600; }
.pd__price s { color: var(--dim); font-family: var(--f-mono); }
.pd__price .save { font-family: var(--f-mono); font-size: 0.74rem; color: var(--wa); border: 1px solid rgba(37,211,102,0.3); padding: 0.2rem 0.5rem; border-radius: 5px; }
.pd__rating { display: flex; align-items: center; gap: 0.5rem; color: var(--mute); font-size: 0.86rem; }
.stars { color: var(--warn); letter-spacing: 0.1em; }
.pd__list { margin: 1.4rem 0; display: grid; gap: 0.6rem; }
.pd__list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--mute); font-size: 0.92rem; }
.pd__list li svg { width: 17px; height: 17px; color: var(--azure); flex: none; margin-top: 0.2rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-sm); overflow: hidden; }
.qty button { width: 40px; height: 42px; font-size: 1.2rem; color: var(--mute); }
.qty button:hover { color: var(--bone); background: var(--surface-2); }
.qty input { width: 44px; text-align: center; background: transparent; border: none; color: var(--bone); font-family: var(--f-mono); }
.pd__buy { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin: 1.4rem 0; }
.pd__meta { border-top: 1px solid var(--line); margin-top: 1.5rem; padding-top: 1.2rem; display: grid; gap: 0.55rem; font-size: 0.88rem; color: var(--mute); }
.pd__meta div { display: flex; gap: 0.6rem; }
.pd__meta b { color: var(--bone); font-weight: 600; min-width: 110px; }

/* ---------- CTA band ---------- */
.cta { border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(2.2rem,5vw,3.6rem); background: var(--surface); position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 180%; background: radial-gradient(circle at center, var(--azure-soft), transparent 60%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(1.7rem,4vw,2.6rem); margin-bottom: 0.7rem; max-width: 18ch; }
.cta p { color: var(--mute); max-width: 50ch; margin-bottom: 1.8rem; }
.cta .hero__actions { margin-top: 0; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); }
.field input, .field select, .field textarea { background: var(--ink-2); border: 1px solid var(--line-2); color: var(--bone); padding: 0.8rem 1rem; border-radius: var(--r-sm); transition: border-color 0.15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--azure); }
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- page hero ---------- */
.page-hero { position: relative; padding-block: clamp(2.8rem,6vw,4.2rem) clamp(1.4rem,3vw,2.2rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.1rem,5vw,3.3rem); margin: 0.9rem 0 0.7rem; letter-spacing: -0.03em; }
.page-hero p { color: var(--mute); max-width: 58ch; font-size: 1.05rem; }
.breadcrumb { font-family: var(--f-mono); font-size: 0.74rem; color: var(--dim); letter-spacing: 0.04em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--azure); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--f-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); margin-bottom: 1.1rem; font-weight: 500; }
.site-footer ul { display: grid; gap: 0.55rem; }
.site-footer a { color: var(--mute); font-size: 0.92rem; transition: color 0.15s; }
.site-footer a:hover { color: var(--bone); }
.footer-about p { color: var(--mute); font-size: 0.92rem; margin: 1rem 0; max-width: 30ch; }
.footer-contact li { color: var(--mute); font-size: 0.9rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--azure); flex: none; margin-top: 0.2rem; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; color: var(--dim); font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.03em; }
.ph-flag { color: var(--warn); }

/* ---------- floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 54px; height: 54px; border-radius: 14px; background: var(--wa); display: grid; place-items: center; box-shadow: 0 10px 30px -10px rgba(37,211,102,0.5); transition: transform 0.16s; }
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; color: #04210f; }

/* ---------- a11y / motion ---------- */
:focus-visible { outline: 2px solid var(--azure); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- services as cards (What we repair) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.4vw, 1rem); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .svc-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.8rem;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .svc-grid::-webkit-scrollbar { display: none; }
  .svc-grid > * { flex: 0 0 82%; scroll-snap-align: start; }
}
.svc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem; display: flex; flex-direction: column; transition: border-color 0.18s, background 0.18s, transform 0.18s; }
.svc-card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-3px); }
.svc-card__ic { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--azure); margin-bottom: 1rem; }
.svc-card__ic svg { width: 21px; height: 21px; }
.svc-card h3 { font-size: 1.02rem; font-family: var(--f-body); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.svc-card p { color: var(--mute); font-size: 0.88rem; margin-bottom: 1.1rem; }
.svc-card__price { margin-top: auto; font-family: var(--f-mono); font-size: 0.92rem; color: var(--bone); border-top: 1px solid var(--line); padding-top: 0.85rem; }
.svc-card__price em { color: var(--dim); font-style: normal; font-size: 0.78rem; }
.svc-foot { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); margin-top: 1.4rem; }

/* ---------- brand focus (vertical cards + device chips) ---------- */
.focus-card { display: block; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); transition: border-color 0.18s, transform 0.18s; }
.focus-card--link { cursor: pointer; }
.focus-card--link:hover { border-color: var(--azure); transform: translateY(-3px); }
.focus-card__top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.focus-card__logo { width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; flex: none; color: var(--bone); background: var(--ink-2); }
.focus-card__logo svg { width: 26px; height: 26px; }
.focus-card h3 { font-size: 1.5rem; }
.focus-card p { color: var(--mute); font-size: 0.94rem; margin-bottom: 1.2rem; }
.focus-card__cta { font-family: var(--f-body); font-weight: 600; font-size: 0.92rem; color: var(--azure); }
.dev-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.dev-chip { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.03em; padding: 0.42rem 0.75rem; border-radius: 6px; border: 1px solid var(--line-2); background: var(--ink-2); color: var(--mute); }
.dev-chip b { color: var(--azure); font-weight: 500; }
a.dev-chip { cursor: pointer; transition: border-color 0.14s, color 0.14s, background 0.14s; }
a.dev-chip:hover { border-color: var(--azure); color: var(--bone); background: var(--surface-2); }

/* ---------- product carousel (home) ---------- */
.carousel { position: relative; }
.carousel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.carousel__nav { display: flex; gap: 0.5rem; }
.carousel__btn { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r-sm); display: grid; place-items: center; color: var(--bone); background: var(--surface); transition: 0.15s; }
.carousel__btn:hover { border-color: var(--azure); color: var(--azure); }
.carousel__btn svg { width: 18px; height: 18px; }
.carousel__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.4rem; scrollbar-width: none; -ms-overflow-style: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { flex: 0 0 calc((100% - 3rem) / 4); scroll-snap-align: start; }
@media (max-width: 1024px) { .carousel__track > * { flex-basis: calc((100% - 2rem) / 3); } }
@media (max-width: 760px)  { .carousel__track > * { flex-basis: calc((100% - 1rem) / 2); } }
@media (max-width: 520px)  { .carousel__track > * { flex-basis: 82%; } }

/* ---------- spare-parts brand sections ---------- */
.brand-section + .brand-section { margin-top: clamp(2.6rem, 5vw, 4rem); }
.brand-section__head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.4rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.brand-section__logo { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--bone); background: var(--surface); flex: none; }
.brand-section__logo svg { width: 23px; height: 23px; }
.brand-section__head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.brand-section__head p { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--dim); margin-top: 0.2rem; }

/* ---------- product detail gallery images ---------- */
.pd__main img { width: 100%; height: 100%; object-fit: contain; padding: clamp(14px, 5%, 34px); border-radius: inherit; }
.pd__thumbs .pd-thumb { cursor: pointer; overflow: hidden; padding: 0; transition: border-color 0.15s; }
.pd__thumbs .pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.pd__thumbs .pd-thumb.is-active { border-color: var(--azure); }

/* ---------- split CTA + WhatsApp chat mockup ---------- */
.cta--split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 820px) { .cta--split { grid-template-columns: 1fr; } }
.cta__text h2 { margin-bottom: 0.7rem; }
.cta__text p { color: var(--mute); max-width: 46ch; margin-bottom: 1.8rem; }
.cta__chat { justify-self: end; width: 100%; max-width: 360px; }
@media (max-width: 820px) { .cta__chat { justify-self: center; } }
.chat { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.chat__head { display: flex; align-items: center; gap: 0.65rem; padding: 0.8rem 1rem; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.chat__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--azure-soft); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--azure); flex: none; }
.chat__avatar svg { width: 19px; height: 19px; }
.chat__who b { font-size: 0.92rem; display: block; line-height: 1.2; }
.chat__who > span { font-family: var(--f-mono); font-size: 0.66rem; color: #1a8a47; display: inline-flex; align-items: center; gap: 0.4ch; }
.chat__who > span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }
.chat__body { padding: 1rem; display: flex; flex-direction: column; gap: 0.55rem; background: #ECEFF2; }
.bubble { max-width: 82%; padding: 0.55rem 0.8rem; border-radius: 13px; font-size: 0.85rem; line-height: 1.45; box-shadow: 0 1px 1px rgba(16,24,40,0.08); }
.bubble--in { background: #ffffff; border-bottom-left-radius: 4px; align-self: flex-start; color: var(--bone); }
.bubble--out { background: #D9FDD3; border-bottom-right-radius: 4px; align-self: flex-end; color: #0c2e16; }
.bubble--typing { align-self: flex-start; display: flex; gap: 4px; padding: 0.7rem 0.85rem; background: #ffffff; border-radius: 13px; border-bottom-left-radius: 4px; box-shadow: 0 1px 1px rgba(16,24,40,0.08); }
.bubble--typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); }
@media (prefers-reduced-motion: no-preference) {
  .bubble--typing span { animation: chatDot 1.2s ease-in-out infinite; }
  .bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
  .bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
}
@keyframes chatDot { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* ---------- map ---------- */
.map-wrap { border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.map-embed { width: 100%; height: clamp(300px, 42vw, 460px); border: 0; display: block; }

/* ---------- brand logos ---------- */
.focus-card__logo img.logo-img,
.brand-section__logo img.logo-img { width: 100%; height: 100%; object-fit: contain; padding: 8px; display: block; }

/* ---------- responsive column helpers ---------- */
.cols-asym { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }
@media (max-width: 820px) { .cols-2 { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .cols-asym { grid-template-columns: 1fr; } }

/* ---------- mobile polish ---------- */
@media (max-width: 600px) {
  .section { padding-block: clamp(1.7rem, 6vw, 2.5rem); }
  .hero { padding-block: 1.8rem 1.4rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero p.lead { font-size: 1rem; }
  .section-head h2, .cta h2, .page-hero h1 { font-size: clamp(1.55rem, 7vw, 2.05rem); }
  .hero__actions { gap: 0.6rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero-art { max-width: 290px; }
  .trust-strip .wrap { gap: 0.5rem 1.4rem; font-size: 0.68rem; }
  .util-bar .wrap { gap: 0.8rem; font-size: 0.62rem; }
  .nav { height: 60px; }
  .site-header { }
  .cta { padding: 1.6rem; }
  .summary { position: static; }
  .pd__gallery, .pd__main { position: static; top: auto; }
  .map-embed { height: 320px; }
  .commit__row, .ratecard__row { padding: 1rem 1.05rem; }
  .focus-card { padding: 1.4rem; }
  .section-head { margin-bottom: 1.6rem; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 1.85rem; }
  .brand { font-size: 1.08rem; }
  .toggle-row { width: 100%; }
  .toggle-row button { flex: 1; }
}


/* ---------- card grids: horizontal swipe on mobile ---------- */
@media (max-width: 600px) {
  .cards-scroll {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.9rem;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cards-scroll::-webkit-scrollbar { display: none; }
  .cards-scroll > * { flex: 0 0 80%; scroll-snap-align: start; }
}

/* hero diagnostics OK pill */
@media (prefers-reduced-motion: no-preference) {
  .ha-okpill { animation: okPulse 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
}
@keyframes okPulse { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }

/* hero banner image */
.hero-art--img { max-width: 560px; }
.hero-banner-img { width: 100%; height: auto; display: block; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
@media (max-width: 600px) { .hero-art--img { max-width: 440px; } }

/* back button (inner pages, top-left) */
.back-btn { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--f-body); font-size: 0.85rem; font-weight: 500; color: var(--mute); border: 1px solid var(--line-2); background: var(--surface); border-radius: 999px; padding: 0.42rem 0.95rem; margin-bottom: 1rem; cursor: pointer; transition: color 0.15s, border-color 0.15s, background 0.15s; }
.back-btn:hover { color: var(--bone); border-color: var(--azure); background: var(--surface-2); }
.back-btn svg { width: 15px; height: 15px; }

/* ensure the nav CTA button text stays white (nav link colour was overriding it) */
.nav__links a.nav__cta { color: #ffffff; font-weight: 600; }
.nav__links a.nav__cta:hover { color: #ffffff; }
.map-wrap { position: relative; }

/* empty catalogue state */
.grid-empty { grid-column: 1 / -1; flex: 1 1 100%; text-align: center; color: var(--mute); padding: 2.5rem 1rem; font-size: 0.95rem; }
.grid-empty a { color: var(--azure); font-weight: 600; }

/* ---------- stock badges ---------- */
.product-card__media { position: relative; }
.stock-badge { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.26rem 0.55rem; border-radius: 999px; border: 1px solid; }
.stock-badge--in  { color: var(--wa);   border-color: rgba(37,211,102,0.40); background: rgba(37,211,102,0.12); }
.stock-badge--low { color: var(--warn); border-color: rgba(231,180,90,0.45); background: rgba(231,180,90,0.16); }
.stock-badge--oos { color: var(--mute); border-color: var(--line-2); background: rgba(18,26,40,0.06); }
.product-card.is-oos .product-card__media img { opacity: 0.5; filter: grayscale(0.35); }

/* ---------- nav search ---------- */
.nav__search { display: flex; align-items: center; gap: 0.45rem; background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 0.4rem 0.85rem; }
.nav__search svg { width: 15px; height: 15px; color: var(--dim); flex: none; }
.nav__search input { background: transparent; border: 0; color: var(--bone); font-family: var(--f-body); font-size: 0.88rem; width: 150px; outline: none; }
.nav__search input::placeholder { color: var(--dim); }
.nav__search:focus-within { border-color: var(--azure); }

/* ---------- search hero (search.html) ---------- */
.search-hero { display: flex; align-items: center; gap: 0.6rem; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 0.55rem 0.55rem 0.55rem 1rem; max-width: 620px; margin-top: 1.2rem; }
.search-hero svg { width: 20px; height: 20px; color: var(--dim); flex: none; }
.search-hero input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--bone); font-family: var(--f-body); font-size: 1rem; outline: none; }
.search-hero input::placeholder { color: var(--dim); }
.search-hero:focus-within { border-color: var(--azure); }
.search-hero .btn { flex: none; }

/* ---------- model filter bar ---------- */
.filter-bar { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.filter-bar label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); }
.filter-bar select { background: var(--surface); border: 1px solid var(--line-2); color: var(--bone); border-radius: var(--r-sm); padding: 0.55rem 0.9rem; font-family: var(--f-body); font-size: 0.92rem; min-width: 210px; cursor: pointer; }
.filter-bar select:focus { border-color: var(--azure); outline: none; }

@media (max-width: 760px) {
  .nav__search { width: 100%; }
  .nav__search input { width: 100%; }
}
@media (max-width: 560px) {
  .search-hero { flex-wrap: wrap; padding: 0.7rem; }
  .search-hero input { flex: 1 1 100%; }
  .search-hero .btn { margin-left: auto; }
  .filter-bar select { flex: 1; min-width: 0; }
}

/* ---------- search suggestions dropdown ---------- */
.search-suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--r-sm); box-shadow: var(--shadow-lg); z-index: 70; overflow: hidden; display: none; }
.search-suggest.show { display: block; }
.nav__search .search-suggest { left: auto; right: 0; min-width: 330px; max-width: 86vw; }
.ss-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); }
.ss-item:hover { background: var(--surface); }
.ss-thumb { width: 42px; height: 42px; border-radius: 7px; background: var(--ink-2); border: 1px solid var(--line); overflow: hidden; flex: none; display: grid; place-items: center; }
.ss-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.ss-info { flex: 1; min-width: 0; }
.ss-info b { display: block; font-size: 0.88rem; font-weight: 600; color: var(--bone); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-info span { font-family: var(--f-mono); font-size: 0.7rem; color: var(--dim); }
.ss-stock { font-family: var(--f-mono); font-size: 0.58rem; padding: 0.16rem 0.45rem; border-radius: 999px; border: 1px solid; flex: none; white-space: nowrap; }
.ss-stock--in  { color: var(--wa);   border-color: rgba(37,211,102,0.4); }
.ss-stock--low { color: var(--warn); border-color: rgba(231,180,90,0.45); }
.ss-stock--oos { color: var(--mute); border-color: var(--line-2); }
.ss-all { display: block; width: 100%; text-align: left; padding: 0.65rem 0.8rem; font-family: var(--f-body); font-size: 0.82rem; font-weight: 600; color: var(--azure); background: var(--ink-2); border: 0; cursor: pointer; }
.ss-all:hover { background: var(--surface); }
.ss-empty { padding: 0.75rem 0.8rem; color: var(--dim); font-size: 0.85rem; }

/* ---------- pagination ---------- */
.pager { display: flex; justify-content: center; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-top: 2rem; }
.pager:empty { display: none; }
.pg-btn, .pg-num { min-width: 38px; height: 38px; padding: 0 0.7rem; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--surface); color: var(--bone); font-family: var(--f-body); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: 0.14s; }
.pg-btn:hover:not(:disabled), .pg-num:hover { border-color: var(--azure); color: var(--azure-2); }
.pg-num.is-active { background: var(--azure); border-color: var(--azure); color: #fff; }
.pg-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pg-dots { color: var(--dim); padding: 0 0.2rem; }

/* ---------- spare-parts grids: 2 per row on mobile ---------- */
@media (max-width: 600px) {
  #grid-pixel, #grid-iphone, #search-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  #grid-pixel .product-card__body,
  #grid-iphone .product-card__body,
  #search-grid .product-card__body { padding: 0.7rem 0.8rem 0.85rem; }
  #grid-pixel .product-card h3,
  #grid-iphone .product-card h3,
  #search-grid .product-card h3 { font-size: 0.9rem; line-height: 1.25; }
  #grid-pixel .product-card__model,
  #grid-iphone .product-card__model,
  #search-grid .product-card__model { font-size: 0.62rem; }
  #grid-pixel .product-card__actions,
  #grid-iphone .product-card__actions,
  #search-grid .product-card__actions { flex-direction: column; gap: 0.4rem; }
  #grid-pixel .product-card__tag,
  #grid-iphone .product-card__tag,
  #search-grid .product-card__tag,
  #grid-pixel .stock-badge,
  #grid-iphone .stock-badge,
  #search-grid .stock-badge { font-size: 0.56rem; padding: 0.2rem 0.4rem; }
}

/* ---------- focus-card phone images (homepage showcase only) ---------- */
.focus-card--showcase { display: flex; align-items: center; gap: 1.3rem; overflow: hidden; }
.focus-card--showcase .focus-card__body { flex: 1 1 auto; min-width: 0; }
.focus-card__phone { flex: 0 0 auto; width: clamp(100px, 27%, 156px); height: auto; max-height: 230px; object-fit: contain; object-position: center; pointer-events: none; user-select: none; filter: drop-shadow(0 16px 26px rgba(16,24,40,0.22)); }
@media (max-width: 560px) {
  .focus-card--showcase { gap: 0.9rem; padding: 1.3rem; }
  .focus-card__phone { width: clamp(80px, 26%, 118px); max-height: 180px; }
}

/* =========================================================
   LIGHT THEME — depth pass
   Light surfaces read as premium through soft shadow + lift,
   not heavy borders. Added after the base rules so these win.
   ========================================================= */
.card            { box-shadow: var(--shadow); }
.card:hover      { box-shadow: var(--shadow-lg); }
.svc-card        { box-shadow: var(--shadow-sm); }
.svc-card:hover  { box-shadow: var(--shadow); }
.focus-card      { box-shadow: var(--shadow-sm); }
.focus-card--link:hover { box-shadow: var(--shadow); }
.product-card    { box-shadow: var(--shadow-sm); }
.product-card:hover { box-shadow: var(--shadow); }
.summary         { box-shadow: var(--shadow); }
.ratecard        { box-shadow: var(--shadow-sm); }
.cta             { box-shadow: var(--shadow); }
.map-wrap        { box-shadow: var(--shadow-sm); }
.commit          { box-shadow: var(--shadow-sm); }
.carousel__btn   { box-shadow: var(--shadow-sm); }
.brand-section__logo { box-shadow: var(--shadow-sm); }
.btn--ghost      { background: var(--surface); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { background: var(--surface); }

/* mobile menu panel needs a real shadow when it drops over content */
@media (max-width: 880px) {
  .nav__links { box-shadow: var(--shadow-lg); }
}

/* selection + focus tuned for light */
::selection { background: rgba(37,99,235,0.16); color: var(--bone); }

/* =========================================================
   PIXEL GROUP REFERENCE LAYOUT
   Clean corporate repair-center structure. Appended last so
   these rules win. Reuses Inter; conventional, not flashy.
   ========================================================= */

/* brand monogram + tagline */
.brand { align-items: center; }
.brand__badge { width: 42px; height: 42px; border-radius: 11px; background: var(--azure); color: #fff; font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em; display: grid; place-items: center; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.04; }
.brand__text b { font-size: 1.16rem; font-weight: 800; color: var(--bone); letter-spacing: -0.02em; }
.brand__text b span { color: var(--azure); }
.brand__text small { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-top: 1px; }

/* header polish */
.site-header { background: #fff; }
.nav__cta.btn--wa { color: #fff; }
.btn--wa { color: #fff; }
.btn--wa:hover { background: var(--wa-2); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--dark-2); transform: translateY(-1px); }

/* section heads (centered, blue underline) */
.rg-secthead { text-align: center; max-width: 640px; margin: 0 auto clamp(1.1rem, 2.4vw, 1.7rem); }
.rg-secthead h2 { font-size: clamp(1.5rem, 3.4vw, 2.05rem); font-weight: 800; letter-spacing: -0.02em; }
.rg-secthead h2::after { content: ""; display: block; width: 56px; height: 3px; background: var(--azure); border-radius: 2px; margin: 0.75rem auto 0; }
.rg-secthead p { color: var(--mute); margin-top: 0.7rem; font-size: 1rem; }

/* ---------- hero with flanking phones ---------- */
.rg-hero { padding-block: clamp(1.3rem, 3vw, 2.3rem); border-bottom: 1px solid var(--line); background:
  radial-gradient(120% 90% at 50% -10%, #F4F8FF 0%, #FFFFFF 60%); }
.rg-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,2.05fr) minmax(0,1fr); grid-template-areas: "l b r" "l c r"; align-items: center; gap: 0.2rem clamp(0.4rem, 2vw, 1.6rem); }
.rg-hero__badge { grid-area: b; display: flex; justify-content: center; margin-bottom: 0.5rem; }
.rg-hero__phone { display: flex; align-items: center; }
.rg-hero__phone--l { grid-area: l; justify-content: flex-start; }
.rg-hero__phone--r { grid-area: r; justify-content: flex-end; }
.rg-hero__phone img { width: 100%; height: auto; max-height: 440px; object-fit: contain; filter: drop-shadow(0 24px 38px rgba(15,23,42,0.18)); }
.rg-hero__center { grid-area: c; text-align: center; max-width: 640px; margin-inline: auto; }
.rg-hero__center h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin: 1rem 0 0.9rem; }
.rg-hero__center h1 .g { color: var(--azure); }
.rg-hero__sub { color: var(--mute); font-size: clamp(1rem, 1.4vw, 1.1rem); max-width: 30em; margin: 0 auto; }

.rg-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: 0.42rem 0.95rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--mute); box-shadow: var(--shadow-sm); }
.rg-badge img { width: 16px; height: 16px; }

.rg-trustrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.6rem; margin: 1.4rem 0 1.6rem; }
.rg-trustrow span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 600; color: var(--mute); }
.rg-trustrow svg { width: 18px; height: 18px; color: var(--azure); }
.rg-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }

@media (max-width: 980px) {
  .rg-hero__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); grid-template-areas: "b b" "l r" "c c"; gap: 0.5rem 1rem; }
  .rg-hero__badge { margin-bottom: 0.2rem; }
  .rg-hero__center { max-width: 100%; }
  .rg-hero__phone--l { justify-content: center; }
  .rg-hero__phone--r { justify-content: center; }
  .rg-hero__phone img { max-height: 230px; }
}
@media (max-width: 560px) {
  .rg-hero__phone img { max-height: 188px; }
  .rg-hero__cta .btn { flex: 1 1 100%; }
}

/* ---------- dual brand cards ---------- */
.rg-brands { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 900px) {
  .rg-brands { gap: 1rem; }
}
.rg-brandcard { position: relative; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 2.5vw, 2rem); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; align-items: center; box-shadow: var(--shadow-sm); overflow: hidden; }
.rg-brandcard--google { background: var(--azure-soft); border-color: #D7E3FF; }
.rg-brandcard__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.4rem; }
.rg-brandcard__logo { width: 46px; height: 46px; flex: none; display: grid; place-items: center; }
.rg-brandcard__logo img { width: 100%; height: 100%; object-fit: contain; }
.rg-brandcard__head h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.rg-brandcard__head span { display: block; font-size: 0.8rem; color: var(--mute); font-weight: 500; }
.rg-checklist { display: grid; gap: 0.55rem; margin: 1rem 0 1.4rem; }
.rg-checklist li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--bone); font-weight: 500; }
.rg-checklist svg { width: 18px; height: 18px; color: var(--azure); flex: none; }
.rg-brandcard__img { display: flex; align-items: center; justify-content: center; }
.rg-brandcard__img img { width: 100%; height: auto; max-height: 215px; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(15,23,42,0.16)); }
@media (max-width: 900px) {
  .rg-brandcard { grid-template-columns: 1fr; text-align: left; }
  .rg-brandcard__img { order: -1; margin-bottom: 0.5rem; }
  .rg-brandcard__img img { max-height: 170px; }
}
@media (max-width: 560px) {
  .rg-brands { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 0.8rem; padding-bottom: 0.5rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .rg-brands::-webkit-scrollbar { display: none; }
  .rg-brands > * { flex: 0 0 86%; scroll-snap-align: center; }
  .rg-brandcard { padding: clamp(1.05rem, 3.5vw, 1.4rem); }
  .rg-brandcard__img { margin-bottom: 0.3rem; }
  .rg-brandcard__img img { max-height: 138px; }
  .rg-brandcard__head h3 { font-size: 1.15rem; }
  .rg-brandcard__head span { font-size: 0.78rem; }
  .rg-checklist { margin: 0.65rem 0 0.85rem; gap: 0.5rem; }
  .rg-checklist li { font-size: 0.88rem; }
  .rg-brandcard .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
}

/* ---------- service tiles ---------- */
.rg-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.7rem, 1.4vw, 1rem); }
@media (max-width: 900px) { .rg-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .rg-tiles { grid-template-columns: repeat(2, 1fr); } }
.rg-tile { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 1.25rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; box-shadow: var(--shadow-sm); transition: transform 0.16s, border-color 0.16s, box-shadow 0.16s; }
.rg-tile:hover { border-color: var(--azure); transform: translateY(-3px); box-shadow: var(--shadow); }
.rg-tile__ic { width: 44px; height: 44px; display: grid; place-items: center; color: var(--bone); }
.rg-tile__ic svg { width: 30px; height: 30px; }
.rg-tile h3 { font-size: 0.93rem; font-weight: 600; color: var(--bone); line-height: 1.3; }

/* ---------- why choose ---------- */
.rg-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(174px, 1fr)); gap: clamp(0.8rem, 1.6vw, 1.2rem); }
.rg-whyitem { display: flex; gap: 0.85rem; align-items: flex-start; }
.rg-whyitem__ic { width: 42px; height: 42px; border-radius: 11px; background: var(--azure-soft); color: var(--azure); display: grid; place-items: center; flex: none; }
.rg-whyitem__ic svg { width: 22px; height: 22px; }
.rg-whyitem h3 { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.15rem; }
.rg-whyitem p { font-size: 0.83rem; color: var(--mute); line-height: 1.5; }

/* ---------- 3 steps ---------- */
.rg-steps { display: flex; align-items: stretch; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }
.rg-step { flex: 1 1 240px; max-width: 340px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 1.5rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--shadow-sm); position: relative; }
.rg-step__n { position: absolute; top: -13px; left: 1.3rem; width: 27px; height: 27px; border-radius: 50%; background: var(--azure); color: #fff; font-size: 0.8rem; font-weight: 700; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.rg-step__ic { width: 44px; height: 44px; flex: none; color: var(--bone); display: grid; place-items: center; }
.rg-step__ic svg { width: 30px; height: 30px; }
.rg-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.rg-step p { font-size: 0.85rem; color: var(--mute); line-height: 1.5; }
.rg-step__arrow { align-self: center; color: var(--dim); flex: none; }
.rg-step__arrow svg { width: 26px; height: 26px; }
@media (max-width: 860px) { .rg-step__arrow { display: none; } .rg-step { flex-basis: 100%; max-width: 460px; } }

/* ---------- reviews ---------- */
.rg-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 1.8vw, 1.2rem); }
@media (max-width: 900px) { .rg-reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.rg-review { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 1.6rem; box-shadow: var(--shadow-sm); }
.rg-review__stars { color: var(--warn); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.7rem; }
.rg-review p { color: var(--mute); font-size: 0.94rem; line-height: 1.6; margin-bottom: 1.3rem; }
.rg-review__by { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; }
.rg-review__person { display: flex; align-items: center; gap: 0.65rem; }
.rg-review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--azure-soft); color: var(--azure); display: grid; place-items: center; font-weight: 700; font-size: 0.92rem; flex: none; }
.rg-review__person b { display: block; font-size: 0.9rem; font-weight: 700; }
.rg-review__person span { font-size: 0.78rem; color: var(--dim); }
.rg-review__g { width: 24px; height: 24px; flex: none; }

/* ---------- help / contact band ---------- */
.rg-help { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.4rem); }
@media (max-width: 900px) { .rg-help { grid-template-columns: 1fr; } }
.rg-helpcard { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; padding: clamp(1.2rem, 2.2vw, 1.6rem); box-shadow: var(--shadow-sm); }
.rg-helpcard h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.rg-helpcard__addr { color: var(--mute); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.rg-helpcard__addr b { color: var(--bone); }
.rg-helpcard .map-wrap { margin-bottom: 1rem; }
.rg-helpcard .map-embed { height: 200px; }
.rg-contactline { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--mute); font-size: 0.95rem; margin-bottom: 0.95rem; }
.rg-contactline svg { width: 19px; height: 19px; color: var(--azure); flex: none; margin-top: 2px; }
.rg-contactline b { color: var(--bone); font-weight: 600; }
.rg-helpcard .btn--wa { margin-top: 0.4rem; }

/* ---------- dark footer ---------- */
.rg-footer { background: var(--dark); color: #AEB8C9; padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.4rem; margin-top: 0; }
.rg-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 2rem; }
@media (max-width: 880px) { .rg-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.4rem; } }
@media (max-width: 520px) { .rg-footer__grid { grid-template-columns: 1fr; } }
.rg-footer .brand__text b { color: #fff; }
.rg-footer .brand__text b span { color: #6FA2FF; }
.rg-footer .brand__badge { background: var(--azure); }
.rg-footer__about p { color: #8C97A9; font-size: 0.9rem; line-height: 1.6; margin: 1rem 0 1.2rem; max-width: 34ch; }
.rg-footer h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 1rem; }
.rg-footer ul { display: grid; gap: 0.6rem; }
.rg-footer a { color: #93A0B4; font-size: 0.9rem; transition: color 0.15s; }
.rg-footer a:hover { color: #fff; }
.rg-news p { color: #8C97A9; font-size: 0.88rem; margin-bottom: 0.8rem; }
.rg-news__form { display: flex; gap: 0.5rem; }
.rg-news__form input { flex: 1; min-width: 0; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: #fff; border-radius: var(--r-sm); padding: 0.6rem 0.8rem; font-size: 0.88rem; }
.rg-news__form input::placeholder { color: #7B8699; }
.rg-news__form input:focus { outline: none; border-color: var(--azure); }
.rg-news__form button { flex: none; }
.rg-social { display: flex; gap: 0.55rem; margin-top: 1.2rem; }
.rg-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #C6CFDC; transition: background 0.15s, color 0.15s; }
.rg-social a:hover { background: var(--azure); color: #fff; }
.rg-social svg { width: 18px; height: 18px; }
.rg-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.2rem; padding-top: 1.4rem; text-align: center; font-size: 0.82rem; color: #6E7A8E; }

/* keep floating WhatsApp + nav search consistent on light */
.nav__search input { color: var(--bone); }

/* =========================================================
   HORIZONTAL SCROLLERS (services / why / reviews)
   Swipe on touch, arrow buttons on desktop.
   ========================================================= */
.rg-scroller { position: relative; }
.rg-scroller__track {
  display: flex; gap: clamp(0.7rem, 1.4vw, 1rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 0.7rem; scrollbar-width: none; -ms-overflow-style: none;
}
.rg-scroller__track::-webkit-scrollbar { display: none; }
.rg-scroller__track > * { scroll-snap-align: start; flex: 0 0 auto; }
.rg-track--tiles   > * { flex-basis: clamp(180px, 23vw, 232px); }
.rg-track--why     > * { flex-basis: clamp(220px, 27vw, 264px); }
.rg-track--reviews > * { flex-basis: clamp(280px, 80vw, 360px); }
@media (min-width: 760px) { .rg-track--reviews > * { flex-basis: clamp(300px, 30vw, 360px); } }

.rg-scroller__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line-2); box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--bone); z-index: 4; cursor: pointer;
  transition: border-color 0.15s, color 0.15s, opacity 0.2s, background 0.15s;
}
.rg-scroller__btn:hover { border-color: var(--azure); color: var(--azure); }
.rg-scroller__btn svg { width: 19px; height: 19px; }
.rg-scroller__btn--prev { left: -10px; }
.rg-scroller__btn--next { right: -10px; }
.rg-scroller__btn[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 760px) { .rg-scroller__btn { display: none; } }

/* why-items get a light card look inside the scroller so columns read cleanly */
.rg-scroller__track { align-items: stretch; }
.rg-track--why .rg-whyitem { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem; box-shadow: var(--shadow-sm); }
.rg-track--why .rg-whyitem p { margin-top: 0.1rem; }

/* help card: contact info beside a compact chat */
.rg-help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.4rem); align-items: start; }
@media (max-width: 560px) { .rg-help-grid { grid-template-columns: 1fr; } }
.rg-help-chat .chat { margin: 0; }
.rg-help-chat .chat__head { padding: 0.55rem 0.75rem; gap: 0.5rem; }
.rg-help-chat .chat__avatar { width: 30px; height: 30px; }
.rg-help-chat .chat__avatar svg { width: 16px; height: 16px; }
.rg-help-chat .chat__who b { font-size: 0.82rem; }
.rg-help-chat .chat__body { padding: 0.75rem; gap: 0.4rem; }
.rg-help-chat .bubble { font-size: 0.76rem; padding: 0.45rem 0.65rem; max-width: 88%; }

/* =========================================================
   ROUND 4 — wider sections, trust marquee, brand carousel,
   footer accordion (mobile)
   ========================================================= */

/* wider feature sections */
.wrap--wide { max-width: 1340px; }

/* hero trust marquee (auto-scrolling badges) */
.rg-trustrow { overflow: hidden; margin: 1.3rem 0 1.5rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.rg-trustrow__track { display: flex; gap: 1.8rem; width: max-content; animation: trustMarquee 22s linear infinite; }
.rg-trustrow:hover .rg-trustrow__track { animation-play-state: paused; }
.rg-trustrow span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 600; color: var(--mute); white-space: nowrap; }
.rg-trustrow svg { width: 18px; height: 18px; color: var(--azure); flex: none; }
@keyframes trustMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .rg-trustrow { overflow-x: auto; scrollbar-width: none; }
  .rg-trustrow::-webkit-scrollbar { display: none; }
  .rg-trustrow__track { animation: none; }
}

/* brand carousel arrows + dots (mobile only) */
.rg-brandcarousel { position: relative; }
.rg-brandcarousel__btn { display: none; }
.rg-dots { display: none; }
.rg-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); border: none; cursor: pointer; padding: 0; transition: background 0.2s, width 0.2s; }
.rg-dot.is-active { background: var(--azure); width: 22px; border-radius: 5px; }
/* brand cards stack vertically on mobile — carousel arrows & dots stay hidden */

/* footer: collapsible Quick Links / Our Services on mobile */
@media (max-width: 560px) {
  .rg-footcol--collapsible > h4 { cursor: pointer; display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .rg-footcol--collapsible > h4::after { content: ""; width: 9px; height: 9px; border-right: 2px solid #93A0B4; border-bottom: 2px solid #93A0B4; transform: rotate(45deg); transition: transform 0.2s; margin-bottom: 3px; }
  .rg-footcol--collapsible.open > h4::after { transform: rotate(-135deg); margin-bottom: -3px; }
  .rg-footcol--collapsible > ul { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; gap: 0; }
  .rg-footcol--collapsible.open > ul { max-height: 340px; padding-top: 0.9rem; gap: 0.6rem; }
}

/* fix: prevent the marquee's max-content track from widening the hero column */
.rg-hero__grid > * { min-width: 0; }
.rg-hero__center { min-width: 0; }
.rg-trustrow { min-width: 0; max-width: 100%; }

/* continuous infinite marquee (services / why) — CSS animation, same as the trust badges */
.rg-scroller[data-autoscroll] { overflow: hidden; padding: 8px 0; }
.rg-scroller[data-autoscroll] .rg-scroller__btn { display: none !important; }
.rg-scroller[data-autoscroll] .rg-scroller__track {
  overflow: visible;
  width: max-content;
  max-width: none;
  flex-wrap: nowrap;
  scroll-snap-type: none;
  padding-left: 0; padding-right: 0;
  animation: rgMarquee 34s linear infinite;
  will-change: transform;
}
.rg-scroller[data-autoscroll]:hover .rg-scroller__track { animation-play-state: paused; }
@keyframes rgMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .rg-scroller[data-autoscroll] { overflow-x: auto; }
  .rg-scroller[data-autoscroll] .rg-scroller__track { animation: none; width: auto; }
}

/* heading-only why cards: center icon with the title */
.rg-track--why .rg-whyitem { align-items: center; }
.rg-track--why .rg-whyitem h3 { margin-bottom: 0; }

/* compact the Repair Services + Why Choose marquee sections */
#services.section, #why.section { padding-block: clamp(1.3rem, 2.8vw, 2rem); }
#services .rg-secthead, #why .rg-secthead { margin-bottom: clamp(0.7rem, 1.8vw, 1.05rem); }
.rg-tile { padding: 0.8rem 0.8rem; gap: 0.4rem; }
.rg-tile__ic { width: 36px; height: 36px; }
.rg-tile__ic svg { width: 26px; height: 26px; }
.rg-track--why .rg-whyitem { padding: 0.85rem 1rem; }
.rg-whyitem__ic { width: 36px; height: 36px; }
.rg-whyitem__ic svg { width: 20px; height: 20px; }
.rg-scroller[data-autoscroll] { padding: 6px 0; }

/* live Google reviews card / fallback */
#google-reviews { display: block; }
.gr-card { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(1.5rem, 4vw, 2.4rem); }
.gr-card__brand { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.gr-card__brand img { width: 40px; height: 40px; flex: none; object-fit: contain; }
.gr-card__brand b { display: block; font-size: 1.1rem; color: var(--bone); }
.gr-card__brand span { color: var(--mute); font-size: 0.92rem; }
.gr-card__cta { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.gr-card__cta .btn svg { margin-right: 0.4rem; vertical-align: -3px; }
@media (max-width: 520px) {
  .gr-card__brand { flex-direction: column; text-align: center; }
  .gr-card__cta .btn { flex: 1 1 100%; }
}

/* ===== compact hero: badge + header + brand cards + small inline buttons ===== */
.rg-hero--compact { padding-block: clamp(1.3rem, 4vw, 2.6rem); }
.rg-hero__head { text-align: center; max-width: 900px; margin: 0 auto clamp(1.2rem, 3vw, 1.7rem); }
.rg-hero__head .rg-badge { margin: 0 auto 1rem; }
.rg-hero__head h1 { margin: 0; white-space: nowrap; font-size: clamp(1.15rem, 5.2vw, 2.9rem); }
.rg-brands--hero { margin-bottom: clamp(1.2rem, 3vw, 1.7rem); }
.rg-hero__cta--inline { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: nowrap; }
.rg-hero__cta--inline .btn { flex: 0 1 auto; padding: 0.72rem 1.3rem; font-size: 0.95rem; white-space: nowrap; }
.btn-short { display: none; }
@media (max-width: 560px) {
  .rg-hero__cta--inline { gap: 0.6rem; }
  .rg-hero__cta--inline .btn { flex: 1 1 0; min-width: 0; padding: 0.78rem 0.5rem; font-size: 0.92rem; }
  .rg-hero__cta--inline .btn svg { width: 17px; height: 17px; }
  .btn-full { display: none; }
  .btn-short { display: inline; }
}

/* ===== heading font (Sora) + headline sizing ===== */
h1, h2, .rg-secthead h2 { font-family: 'Sora', 'Inter', system-ui, -apple-system, sans-serif; letter-spacing: -0.02em; }
.rg-hero__head h1 { font-family: 'Sora', 'Inter', sans-serif; font-weight: 800; font-size: clamp(0.95rem, 4.7vw, 2.8rem); letter-spacing: -0.01em; }
@media (max-width: 345px) { .rg-hero__head h1 { white-space: normal; } }

/* bigger, attractive hero heading + restore azure accent on key words */
.rg-hero__head h1 { white-space: normal; text-wrap: balance; font-size: clamp(1.7rem, 7.2vw, 3rem); line-height: 1.14; }
.rg-hero__head h1 .g { color: var(--azure); }

/* custom logo image */
.brand__logo { height: 50px; width: auto; max-width: 240px; object-fit: contain; flex: none; display: block; }
.rg-footer .brand__logo { height: 54px; max-width: 250px; }
@media (max-width: 560px) { .brand__logo { height: 42px; max-width: 190px; } .rg-footer .brand__logo { height: 48px; } }
