:root {
  --navy: #283566;
  --navy-deep: #1c2548;
  --red: #E63946;
  --red-dark: #c92a38;
  --sky: #A8B8D0;
  --white: #ffffff;
  --ink: #1a1f36;
  --muted: #5a6278;
  --fog: #f4f6fa;
  --line: #e2e7f0;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(40, 53, 102, 0.14);
  --font-display: "Montserrat", sans-serif;
  --font-body: "Outfit", sans-serif;
  --header-h: 56px;
  --stripe-h: 10px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-3d: 0 18px 40px rgba(28, 37, 72, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

main {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(40, 53, 102, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.35s var(--ease-out);
}
.brand:hover { transform: translateY(-1px); }
.brand-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 4px 10px rgba(40, 53, 102, 0.2));
  transition: transform 0.45s var(--ease-out);
  transform-style: preserve-3d;
}
.brand:hover .brand-mark {
  transform: rotateY(18deg) rotateX(-6deg) scale(1.06);
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  line-height: 1.05;
}
.brand-gadget { color: var(--navy); }
.brand-repairs { color: var(--red); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.site-nav a:not(.btn):hover::after,
.site-nav a.active:not(.btn)::after { transform: scaleX(1); }
.site-nav .nav-book {
  font-weight: 700;
  color: var(--red);
  padding: 0.4rem 0.85rem;
  border: 2px solid var(--red);
  border-radius: var(--radius);
}
.site-nav .nav-book::after { display: none !important; }
.site-nav .nav-book:hover,
.site-nav .nav-book.active {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.3s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.3s;
}
.btn-cta {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.28);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Hover styles only on real pointer devices — avoids sticky white taps on phones */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-3px) scale(1.02); }
  .btn-cta:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 16px 32px rgba(230, 57, 70, 0.36);
  }
  .btn-navy:hover { background: var(--navy-deep); }
  .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
  }
  .btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
  }
  /* Keep outline buttons readable inside navy panels */
  .contact-aside .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
  }
  .service-card:hover {
    border-color: var(--red);
    box-shadow: 0 14px 28px rgba(40, 53, 102, 0.1);
    transform: translateY(-3px);
  }
  .service-card:hover .service-card-title {
    color: var(--red);
  }
  .service-card:hover .service-card-icon {
    color: var(--red);
  }
}
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn-outline:active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.btn-outline-navy:active {
  background: var(--navy);
  color: var(--white);
}

/* Hero — full-bleed brand composition */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - var(--header-h) - var(--stripe-h));
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  scale: 1.04;
  animation: heroReveal 1.4s var(--ease-out) both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 28, 54, 0.88) 0%, rgba(20, 28, 54, 0.62) 42%, rgba(20, 28, 54, 0.28) 72%, rgba(20, 28, 54, 0.18) 100%),
    linear-gradient(180deg, rgba(20, 28, 54, 0.18) 0%, rgba(20, 28, 54, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 8vh, 5rem) 0 clamp(2.2rem, 6vh, 3.6rem);
  animation: riseIn 0.85s var(--ease-out) both;
}
.hero-tag {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.hero-brand {
  display: grid;
  gap: 0.05em;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  letter-spacing: 0.01em;
  line-height: 0.88;
}
.hero-brand .gadget {
  color: var(--white);
  animation: brandSlide 0.9s 0.12s var(--ease-out) both;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.hero-brand .repairs {
  color: var(--red);
  animation: brandSlide 0.9s 0.24s var(--ease-out) both;
  text-shadow: 0 12px 28px rgba(230, 57, 70, 0.32);
}
.hero-lead {
  max-width: 34ch;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.5;
}
.hero-content .btn {
  padding: 0.95rem 1.55rem;
  font-size: 1.05rem;
}
.hero-content .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}
.hero-content .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

@keyframes heroReveal {
  from { opacity: 0; scale: 1.1; }
  to { opacity: 1; scale: 1.04; }
}
@keyframes logoPop {
  from { opacity: 0; scale: 0.85; rotate: y -24deg; }
  to { opacity: 1; scale: 1; rotate: y 0deg; }
}
@keyframes logoFloatY {
  0%, 100% { translate: 0 0; rotate: y 0deg; }
  50% { translate: 0 -6px; rotate: y 12deg; }
}
@keyframes brandSlide {
  from { opacity: 0; translate: -18px 12px; rotate: x 18deg; }
  to { opacity: 1; translate: 0 0; rotate: x 0deg; }
}
@keyframes riseIn {
  from { opacity: 0; translate: 0 24px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes stripeDrift {
  from { background-position: 0 0; }
  to { background-position: 72px 0; }
}

/* Diagonal stripe — sits at bottom edge of first screen */
.stripe-band {
  height: var(--stripe-h);
  flex-shrink: 0;
  background: repeating-linear-gradient(
    -55deg,
    var(--red) 0 18px,
    var(--navy) 18px 36px,
    var(--sky) 36px 54px,
    var(--white) 54px 72px
  );
  animation: stripeDrift 8s linear infinite;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.section-fog { background: var(--fog); }
.section-navy {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, #33457a);
  color: var(--white);
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--navy);
}
.section-navy .section-head h2 { color: var(--white); }
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}
.section-navy .section-head p { color: rgba(255,255,255,0.78); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}

/* Promise strip (like iBroke landing) */
.promise-section { padding-top: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.promise-item h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.promise-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.promise-item {
  padding: 0.85rem 0.2rem 0.2rem;
  border-top: 3px solid var(--red);
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.25s ease-out, box-shadow 0.35s, translate 0.35s var(--ease-out);
  will-change: transform;
}
.promise-item:nth-child(even) { border-top-color: var(--navy); }
.promise-item:hover {
  translate: 0 -4px;
  box-shadow: 0 14px 28px rgba(40, 53, 102, 0.08);
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
}

/* Device tiles — We Buy / Fix / Sell */
.buy-fix-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.buy-fix-pills span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.buy-fix-pills span:hover {
  transform: translateY(-3px) rotateX(10deg);
  box-shadow: 0 8px 18px rgba(40, 53, 102, 0.12);
}
.buy-fix-pills span:nth-child(2) {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.buy-fix-pills span:nth-child(3) {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  perspective: 1000px;
}
.device-tile {
  --rx: 0deg;
  --ry: 0deg;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.85rem;
  min-height: 128px;
  padding: 1.15rem 1.1rem;
  background: linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--red);
  text-align: left;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.2s ease-out, border-color 0.25s, box-shadow 0.35s var(--ease-out);
  will-change: transform;
}
.device-tile:nth-child(even) { border-bottom-color: var(--navy); }
.device-tile:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-3d);
}
.device-tile.static:hover { transform: none; box-shadow: none; cursor: default; }
.device-tile h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
  transform: translateZ(20px);
}
.device-ico {
  width: 36px;
  height: 36px;
  color: var(--red);
  transform: translateZ(28px);
  transition: transform 0.35s var(--ease-out);
}
.device-tile:hover .device-ico {
  transform: translateZ(36px) rotateY(-12deg) scale(1.08);
}
.device-tile:nth-child(even) .device-ico { color: var(--navy); }

/* Repair category tiles — expand on hover / focus (only one open) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  align-items: start;
  perspective: 1100px;
}
.category-tile {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: block;
  padding: 0;
  background: var(--fog);
  border-left: 4px solid var(--red);
  cursor: default;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s ease-out, translate 0.3s var(--ease-out);
  z-index: 1;
  will-change: transform;
}
.category-tile:nth-child(even) { border-left-color: var(--navy); }
.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 72px;
  padding: 1rem 1.15rem;
}
.category-tile h3 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--navy);
  font-weight: 700;
}
.category-hint {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  transition: transform 0.2s;
}
.category-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.15rem;
  margin: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
}
.category-details li {
  position: relative;
  padding: 0.35rem 0 0.35rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.category-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* Only the hovered / focused / open tile expands */
.category-tile:hover,
.category-tile:focus-within,
.category-tile.is-open {
  background: var(--white);
  box-shadow: var(--shadow-3d);
  z-index: 5;
  translate: 0 -4px;
}
.category-tile:hover .category-details,
.category-tile:focus-within .category-details,
.category-tile.is-open .category-details {
  max-height: 280px;
  opacity: 1;
  padding: 0 1.15rem 1rem;
}
.category-tile:hover .category-hint,
.category-tile:focus-within .category-hint,
.category-tile.is-open .category-hint {
  transform: rotate(45deg);
}

.services-cta {
  margin-top: 2.2rem;
  text-align: center;
}
.services-cta p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.warranty-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.warranty-block h2 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
.warranty-block p { color: rgba(255,255,255,0.8); max-width: 54ch; }
.warranty-note { font-size: 0.85rem; opacity: 0.7; }

/* Service tiles — interaction containers, not decorative cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.service-tile {
  --rx: 0deg;
  --ry: 0deg;
  display: block;
  padding: 1.6rem 1.3rem;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.2s ease-out, box-shadow 0.3s, border-color 0.25s;
  will-change: transform;
}
.service-tile:nth-child(2) { border-left-color: var(--navy); }
.service-tile:nth-child(4) { border-left-color: var(--navy); }
.service-tile:hover {
  box-shadow: var(--shadow-3d);
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1rem;
  color: var(--navy);
}
.service-tile h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.service-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-item h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.why-item p {
  margin: 0;
  color: rgba(255,255,255,0.75);
}
.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.7rem;
}

/* Split / about preview */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--navy), var(--sky));
}
.split-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
}
.split-copy p { color: var(--muted); }

/* Issue chips */
.issue-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.8rem;
}
.issue-chip {
  padding: 0.45rem 0.85rem;
  background: var(--fog);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
}

/* CTA band */
/* CTA band — solid navy, no photo gradient */
.cta-band {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  border-top: 4px solid var(--red);
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.55rem;
  color: var(--white);
}
.cta-band p {
  margin: 0 auto 1.4rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
}
.cta-band .btn-group { justify-content: center; }

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  animation: riseIn 0.7s var(--ease-out) both;
}
.page-hero.has-photo {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  scale: 1.06;
  animation: heroReveal 1.4s var(--ease-out) both;
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,37,72,0.95), rgba(40,53,102,0.75));
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.4rem;
}
.page-hero p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
.form-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--line);
  padding: 1.8rem;
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  box-shadow: 0 12px 32px rgba(40, 53, 102, 0.06);
  transition: transform 0.25s ease-out, box-shadow 0.35s;
  will-change: transform;
}
.form-panel:hover { box-shadow: var(--shadow-3d); }
.form-panel h2 {
  color: var(--navy);
  font-size: 1.5rem;
}
.contact-aside {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(230, 57, 70, 0.25), transparent 50%),
    var(--navy);
  color: var(--white);
  padding: 1.8rem;
  min-width: 0;
  overflow-wrap: anywhere;
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  box-shadow: 0 16px 40px rgba(28, 37, 72, 0.28);
  transition: transform 0.25s ease-out;
  will-change: transform;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(40, 53, 102, 0.12);
}
.form-group .errorlist {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}
.contact-aside h3 {
  margin-bottom: 1rem;
}
.contact-aside li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.88);
}
.contact-aside a:not(.btn):hover { color: var(--white); text-decoration: underline; }
.contact-aside .btn {
  max-width: 100%;
  box-sizing: border-box;
}
.contact-aside .btn-outline {
  color: var(--white);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
}

.icon-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.icon-dot.red { background: var(--red); }
.icon-dot.navy { background: var(--sky); }

/* Flash */
.flash-wrap {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 16px;
  z-index: 200;
  display: grid;
  gap: 0.5rem;
  width: min(360px, calc(100% - 32px));
}
.flash {
  padding: 0.9rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow);
  animation: riseIn 0.35s ease both;
}
.flash-success { border-left-color: #2d6a4f; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}
.footer-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -55deg,
    var(--red) 0 14px,
    var(--navy) 14px 28px,
    var(--sky) 28px 42px
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-brand .brand-gadget { color: var(--white); }
.tagline {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0.8rem 0;
}
.tagline::after {
  content: "";
}
.footer-blurb { margin: 0; max-width: 34ch; font-size: 0.95rem; }
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.78);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-links li,
.footer-contact li { margin-bottom: 0.55rem; }
.footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}
.footer-address {
  font-style: normal;
  margin: 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-seo-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0; }


/* Floating call */
.floating-call {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.3s var(--ease-out), background 0.2s, box-shadow 0.3s;
  animation: waBob 3.2s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}
.floating-call:hover {
  transform: scale(1.1) translateY(-4px);
  background: #1ebe57;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* Services detail */
.repair-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.repair-block {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--red);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.repair-block:nth-child(even) { border-top-color: var(--navy); }
.repair-block-media {
  display: grid;
  place-items: center;
  padding: 0.85rem;
  background: linear-gradient(160deg, #eef1f6 0%, #e4e9f2 100%);
  border-bottom: 1px solid var(--line);
}
.repair-block-media img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.repair-block-body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.repair-block h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}
.repair-block ul {
  margin-top: 0.75rem;
}
.repair-block li {
  padding: 0.4rem 0 0.4rem 1rem;
  position: relative;
  color: var(--muted);
}
.repair-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.find-us-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 1.5rem;
  align-items: stretch;
}
.find-us-copy h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}
.find-us-copy p {
  color: var(--muted);
  margin: 0 0 0.85rem;
}
.find-us-address {
  font-weight: 600;
  color: var(--navy) !important;
  margin-bottom: 1.2rem !important;
}
.find-us-map {
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  min-height: 320px;
  overflow: hidden;
  background: var(--fog);
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  box-shadow: 0 14px 36px rgba(40, 53, 102, 0.1);
  transition: transform 0.25s ease-out, box-shadow 0.35s;
  will-change: transform;
}
.find-us-map:hover { box-shadow: var(--shadow-3d); }

/* Reviews — compact & quiet */
.reviews-section {
  padding: 2.2rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.review-item {
  --rx: 0deg;
  --ry: 0deg;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  background: #fafbfc;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.2s ease-out, box-shadow 0.3s, translate 0.3s;
  will-change: transform;
}
.review-item:hover {
  translate: 0 -3px;
  box-shadow: 0 12px 28px rgba(40, 53, 102, 0.1);
}
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 0.9rem;
}
.reviews-head > :first-child {
  min-width: 0;
  flex: 1 1 auto;
}
.reviews-head h2 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--navy);
}
.reviews-head .eyebrow { margin-bottom: 0.25rem; }
.btn-sm {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  min-height: 44px;
}
.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
}
.reviews-avg {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.reviews-avg strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}
.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.review-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.review-item-top strong {
  color: var(--navy);
  font-size: 0.9rem;
}
.review-item .stars {
  font-size: 0.85rem;
  color: #c9a227;
}
.review-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-empty {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.review-form-details {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}
.review-form-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}
.review-form-details summary::-webkit-details-marker { display: none; }
.review-form-details summary::after {
  content: " +";
  color: var(--red);
}
.review-form-details[open] summary::after { content: " −"; }
.review-form-details .review-form {
  margin-top: 0.85rem;
  max-width: 560px;
}
.stars {
  color: #c9a227;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  line-height: 1;
}

/* ——— Landing: trust cards ——— */
.trust-cards {
  background: var(--fog);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.trust-card {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1.15rem 1rem;
  background: var(--white);
  border: 1px solid rgba(40, 53, 102, 0.06);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(28, 37, 72, 0.06);
}
.trust-card-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  color: var(--navy);
}
.trust-card-icon svg {
  width: 2.55rem;
  height: 2.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-card-icon .accent {
  stroke: var(--red);
}
.trust-card-icon .accent-fill {
  fill: var(--red);
  stroke: none;
}
.trust-card-icon .check {
  stroke: var(--navy);
  stroke-width: 2.2;
}
.trust-card h3 {
  margin: 0.1rem 0 0.35rem;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.2;
}
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .trust-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .trust-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Brand logo marquee ——— */
.brand-marquee-section {
  padding: 2rem 0 2.2rem;
  background: var(--fog);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.brand-marquee-label {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: brandMarquee 38s linear infinite;
}
.brand-marquee-set {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}
.brand-marquee-set img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(40, 53, 102, 0.12);
}
.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}
@keyframes brandMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Landing: intro band ——— */
.intro-band {
  padding-top: clamp(2.8rem, 6vw, 4.5rem);
}
.intro-band-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.intro-band-copy h2 {
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  color: var(--navy);
}
.intro-band-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 0 0 1.4rem;
}
.intro-band-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 22px 50px rgba(28, 37, 72, 0.18);
}
.intro-band-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--navy), var(--sky));
}
.intro-band-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* ——— Landing: technician expertise ——— */
.expertise-band {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.expertise-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.55fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.expertise-media {
  height: clamp(420px, 51vw, 590px);
  overflow: hidden;
  border-radius: 5rem 5rem 5rem 1.25rem;
  box-shadow: 0 22px 50px rgba(28, 37, 72, 0.14);
}
.expertise-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.expertise-copy h2 {
  max-width: 19ch;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
}
.expertise-lead {
  max-width: 66ch;
  margin: 0 0 clamp(1.8rem, 4vw, 2.7rem);
  color: var(--muted);
  font-size: 1.04rem;
}
.expertise-list {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.expertise-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.expertise-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(230, 57, 70, 0.32);
  border-radius: 50%;
}
.expertise-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.expertise-item h3 {
  margin: 0 0 0.3rem;
  color: var(--navy);
  font-size: 1.18rem;
}
.expertise-item p {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .expertise-media {
    height: min(105vw, 500px);
    border-radius: 3rem 3rem 3rem 0.9rem;
  }
  .expertise-copy h2 {
    max-width: 22ch;
  }
}

/* ——— Landing: device categories ——— */
.device-categories-head h2 {
  color: var(--red);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}
.device-categories-head p {
  max-width: 48ch;
  margin-inline: auto;
}
.device-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 2.5rem);
  max-width: 920px;
  margin: 0.5rem auto 0;
}
.device-category {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease;
}
.device-category:hover,
.device-category:focus-visible {
  transform: translateY(-3px);
}
.device-category-icon {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  color: var(--navy);
}
.device-category-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.device-category-icon .accent {
  stroke: var(--red);
}
.device-category-icon .accent-fill {
  fill: var(--red);
  stroke: none;
}
.device-category-label {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-align: center;
}
.device-category:hover .device-category-label,
.device-category:focus-visible .device-category-label {
  color: var(--red);
}

@media (max-width: 820px) {
  .device-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }
}

@media (max-width: 420px) {
  .device-categories {
    grid-template-columns: 1fr;
  }
}

/* Keep device-rail for services page */
.device-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}
.device-rail li {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.device-rail li:nth-child(3n) { border-right: 0; }
.device-rail a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.05rem;
  min-height: 84px;
  height: auto;
  background: transparent;
  border: 0;
  border-bottom: 0;
  overflow: visible;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  transition: background 0.25s, color 0.25s, padding-left 0.3s var(--ease-out);
}
.device-rail li:nth-child(even) a {
  border-bottom-color: transparent;
}
.device-rail a:hover {
  background: var(--white);
  color: var(--red);
  transform: none;
  box-shadow: none;
  border-color: transparent;
  padding-left: 1.25rem;
}
.device-rail img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
  background: #eef1f6;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out);
}
.device-rail a:hover img {
  transform: scale(1.06);
}
.device-rail-label {
  display: block;
  padding: 0;
  border-top: 0;
  min-width: 0;
}

/* ——— Landing: repair service cards ——— */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-width: 0;
  padding: 1.25rem 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-align: center;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.service-card-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 0.85rem;
  color: var(--navy);
}
.service-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-title {
  display: block;
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  line-height: 1.3;
}
.service-card-meta {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ——— Landing: process steps ——— */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}
.process-steps li {
  position: relative;
  padding-top: 0.5rem;
}
.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: calc(2.4rem + 0.5rem);
  right: -0.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--sky));
  opacity: 0.55;
}
.process-num {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.process-steps h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28ch;
}

/* ——— Landing: why choose ——— */
.why-choose {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, #334575 100%);
  color: var(--white);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}
.why-choose-copy h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
}
.why-choose-copy p {
  max-width: 42ch;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--fog);
  color: var(--navy-deep);
  border-color: var(--fog);
}
.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.why-choose-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.15rem;
  background: var(--white);
  border-radius: 1rem;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(12, 18, 40, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.why-choose-card:hover,
.why-choose-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(12, 18, 40, 0.24);
}
.why-choose-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}
.why-choose-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-choose-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}
.why-choose-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-copy h2 {
    max-width: 20ch;
  }
}

@media (max-width: 520px) {
  .why-choose-cards {
    grid-template-columns: 1fr;
  }
}

/* ——— Landing: FAQ ——— */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 0.55rem;
}
.faq-item {
  background: var(--fog);
  border-top: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item[open] {
  background: var(--white);
  border-top-color: var(--red);
  box-shadow: 0 10px 28px rgba(40, 53, 102, 0.08);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 56ch;
}

/* ——— Shared content blocks (Crowborough-style density, Gadget UI) ——— */
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.prep-card {
  padding: 1.35rem 1.25rem;
  background: var(--fog);
  border-top: 3px solid var(--red);
}
.prep-card:nth-child(even) { border-top-color: var(--navy); }
.prep-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.trust-inline {
  max-width: 720px;
  margin-top: -0.5rem;
}
.extras-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
.extras-layout h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}
.extras-layout > div > p {
  color: var(--muted);
  max-width: 48ch;
}
.extras-notes {
  display: grid;
  gap: 0.85rem;
}
.note-card {
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  box-shadow: 0 10px 28px rgba(40, 53, 102, 0.06);
}
.note-card:nth-child(even) { border-left-color: var(--navy); }
.note-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.note-card p {
  color: var(--muted);
  margin: 0 0 0.95rem;
  font-size: 0.95rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-item {
  padding: 1.25rem 1.15rem;
  background: var(--white);
  border-top: 3px solid var(--red);
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-top-color: var(--red);
}
.feature-item:nth-child(even) { border-top-color: var(--navy); }
.feature-item h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.find-us-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: -0.35rem 0 1.1rem;
}
.services-cta .btn-group {
  justify-content: center;
}
.services-cta .btn-outline-navy {
  margin-left: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .container {
    width: min(1120px, calc(100% - 1.6rem));
  }
  .hero {
    min-height: min(78svh, 640px);
    align-items: center;
  }
  .hero-content {
    width: min(1120px, calc(100% - 1.6rem));
    padding: 2rem 0 2.2rem;
  }
  .hero-brand {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }
  .hero-lead {
    font-size: clamp(1.02rem, 3.8vw, 1.2rem);
    margin-bottom: 1.2rem;
  }
  .hero-content .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 28, 54, 0.35) 0%, rgba(20, 28, 54, 0.78) 55%, rgba(20, 28, 54, 0.9) 100%),
      linear-gradient(90deg, rgba(20, 28, 54, 0.55), rgba(20, 28, 54, 0.28));
  }
  .service-grid,
  .device-grid,
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-list { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .split,
  .form-layout,
  .footer-grid,
  .repair-matrix,
  .find-us-grid,
  .intro-band-grid,
  .why-choose-grid,
  .faq-layout,
  .prep-grid,
  .extras-layout { grid-template-columns: 1fr; }
  .feature-grid,
  .feature-grid-3 { grid-template-columns: 1fr 1fr; }
  .device-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .device-rail li:nth-child(3n) { border-right: 1px solid var(--line); }
  .device-rail li:nth-child(2n) { border-right: 0; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .process-steps li:not(:last-child)::after {
    display: none;
  }
  .intro-band-media,
  .intro-band-media img {
    min-height: 240px;
  }
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
  .split-media,
  .split-media img {
    min-height: 240px;
  }
  .form-panel,
  .contact-aside {
    padding: 1.35rem;
  }
  .reviews-head {
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-actions {
    width: 100%;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .reviews-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .flash-wrap {
    right: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.2rem calc(1.4rem + env(safe-area-inset-bottom, 0px));
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(40, 53, 102, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 99;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 0.95rem 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav .nav-book {
    margin-top: 0.8rem;
    justify-content: center;
    border-bottom: 2px solid var(--red);
    min-height: 48px;
  }
  .brand-text {
    font-size: 0.72rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .service-grid,
  .device-grid,
  .promise-grid,
  .category-grid,
  .reviews-list,
  .device-rail { grid-template-columns: 1fr; }
  .device-rail li,
  .device-rail li:nth-child(3n),
  .device-rail li:nth-child(2n) {
    border-right: 0;
  }
  .device-rail img {
    width: 52px;
    height: 52px;
  }
  .feature-grid,
  .feature-grid-3,
  .prep-grid { grid-template-columns: 1fr; }
  .brand-marquee-set img {
    width: 48px;
    height: 48px;
  }
  .brand-marquee-set {
    gap: 0.85rem;
    padding-right: 0.85rem;
  }
  .faq-item summary {
    font-size: 0.95rem;
    padding: 0.95rem 1rem;
  }
  .hero {
    min-height: min(72svh, 560px);
  }
  .hero-tag {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn {
    width: 100%;
  }
  .warranty-block {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .warranty-block .btn {
    width: 100%;
  }
  .form-panel .btn,
  .review-form .btn,
  .contact-aside .btn {
    width: 100%;
  }
  .reviews-head {
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .category-head {
    min-height: 64px;
    padding: 1rem;
  }
  .category-tile {
    -webkit-tap-highlight-color: transparent;
  }
  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .find-us-map,
  .map-embed {
    min-height: 260px;
  }
  .page-hero.has-photo {
    min-height: 220px;
  }
  .section {
    padding: clamp(2.5rem, 8vw, 3.5rem) 0;
  }
  .footer-grid {
    gap: 1.5rem;
    padding: 2.2rem 0 1.5rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 1.2rem);
  }
  .promise-grid,
  .device-grid {
    gap: 0.7rem;
  }
  .device-tile {
    min-height: 112px;
    padding: 1rem;
  }
  .form-panel,
  .contact-aside {
    padding: 1.1rem;
  }
}

/* ——— 3D motion / scroll reveal ——— */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  translate: 0 0;
}
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.46s; }

.tilt-3d {
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  will-change: transform;
}

.split-media {
  transform-style: preserve-3d;
  box-shadow: 0 20px 50px rgba(28, 37, 72, 0.18);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.split-media:hover {
  transform: rotateY(-4deg) rotateX(2deg) scale(1.01);
  box-shadow: var(--shadow-3d);
}

.repair-block {
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.2s ease-out, box-shadow 0.35s, translate 0.3s;
  will-change: transform;
}
.repair-block:hover {
  translate: 0 -4px;
  box-shadow: var(--shadow-3d);
}

.warranty-block {
  transform-style: preserve-3d;
}
.section-navy {
  position: relative;
  overflow: hidden;
}
.section-navy::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -80px;
  right: -40px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.18);
  animation: floatOrb 11s ease-in-out infinite;
  pointer-events: none;
}

@keyframes waBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@keyframes floatOrb {
  0%, 100% { translate: 0 0; scale: 1; }
  50% { translate: -24px 18px; scale: 1.12; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .brand-marquee-track {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .brand-marquee-set:last-child { display: none; }
  .brand-marquee-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 0.75rem;
  }
  .reveal {
    opacity: 1 !important;
    translate: none !important;
  }
  .device-tile,
  .category-tile,
  .promise-item,
  .service-tile,
  .form-panel,
  .contact-aside,
  .review-item,
  .find-us-map,
  .repair-block {
    transform: none !important;
  }
  .stripe-band { animation: none !important; }
  .floating-call { animation: none !important; }
}

