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

:root {
  --nav-height: 68px;
  --bg: #0a0a0f;
  --surface: rgba(255 255 255 / 0.04);
  --border: rgba(255 255 255 / 0.08);
  --text-primary: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-warm: #d97706;
  --radius: 10px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  min-height: 100vh;
}

/* ── Navbar ─────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  /* Frosted glass */
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 4px 32px rgba(0 0 0 / 0.4);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.navbar__logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #f4f4f5 30%, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Links */
.navbar__links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  inset-inline: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--accent-hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar__link:hover {
  color: var(--text-primary);
  background: var(--surface);
}

.navbar__link:hover::after {
  transform: scaleX(1);
}

/* CTA button */
.navbar__actions {
  flex-shrink: 0;
  margin-left: auto;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  box-shadow: 0 0 0 1px rgba(99 102 241 / 0.4), 0 4px 14px rgba(99 102 241 / 0.35);
  transition: box-shadow 0.25s ease, transform 0.15s ease, filter 0.25s ease;
}

.navbar__cta:hover {
  box-shadow: 0 0 0 1px rgba(99 102 241 / 0.7), 0 6px 20px rgba(99 102 241 / 0.5);
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.navbar__cta:active {
  transform: translateY(0);
}

.navbar__cta-arrow {
  transition: transform 0.2s ease;
}

.navbar__cta:hover .navbar__cta-arrow {
  transform: translateX(3px);
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}

.navbar__toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Compact desktop ────────────────────────────────── */

@media (max-width: 960px) and (min-width: 769px) {
  .navbar__inner {
    gap: 16px;
    padding: 0 16px;
  }
  .navbar__link {
    padding: 8px 8px;
    font-size: 13px;
  }
  .navbar__cta {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ── Mobile ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .navbar {
    height: auto;
  }

  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    position: absolute;
    top: calc((var(--nav-height) - 36px) / 2);
    right: 16px;
    margin-left: 0;
  }

  .navbar__inner {
    position: relative;
    flex-wrap: wrap;
    height: auto;
    padding: 0 calc(36px + 24px) 0 16px;
    min-height: var(--nav-height);
    align-items: center;
  }

  /* Dropdown panel */
  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
    padding: 20px 0 16px;
  }

  .navbar__links.open,
  .navbar__actions.open {
    display: flex;
  }

  .navbar__actions.open {
    width: 100%;
    padding-bottom: 16px;
  }

  .navbar__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Hero ────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 1fr auto;
  row-gap: clamp(2rem, 4vh, 3rem);
  justify-content: center;
  align-items: center;
  /* top padding offsets the fixed navbar so content centers in the visible area */
  padding: var(--nav-height) clamp(1.5rem, 8vw, 8rem) clamp(2rem, 5vh, 4rem) clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__subtext {
  justify-self: start;
  text-align: left;
  color: var(--text-muted);
  line-height: 2;
}

.hero__subtext a {
  color: inherit;
}

.hero__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero__cards {
  position: relative;
  flex-shrink: 0;
  width: calc(clamp(40px, 12vw, 180px) * 1.75);
}

.hero__card {
  position: absolute;
  width: calc(clamp(40px, 12vw, 180px) * 0.80);
  aspect-ratio: 9 / 16;
  border-radius: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hero__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card:first-child {
  top: 0;
  left: 0;
}

.hero__card:last-child {
  bottom: 0;
  right: 0;
}

.hero h1 {
  font-size: clamp(40px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  padding-bottom: 0.15em;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive: Hero ────────────────────────────────── */

/* Intermediate: tighten gap before layout stacks */
@media (max-width: 860px) {
  .hero__inner {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    grid-template-rows: auto auto auto;
    align-content: center;
    row-gap: clamp(1.75rem, 3.5vh, 2.5rem);
  }

  .hero__inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero h1 {
    text-align: center;
    font-size: clamp(52px, 16vw, 80px);
  }

  .hero__subtext {
    justify-self: center;
    text-align: center;
    line-height: 1.65;
  }

  .hero__cards {
    --cs: clamp(80px, 14vh, 120px);
    width: calc(var(--cs) * 1.75);
    height: calc(var(--cs) * 0.8 * 16 / 9 * 1.45);
  }

  .hero__card {
    width: calc(var(--cs) * 0.8);
  }
}

/* ── Hero Stats Badge ─────────────────────────────────── */

.hero__badge {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3.5rem);
  right: max(1.5rem, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10, 10, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(165, 180, 252, 0.18);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation:
    hero-badge-enter 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both,
    hero-badge-float 5s ease-in-out 1.4s infinite;
  z-index: 2;
  white-space: nowrap;
}

@keyframes hero-badge-enter {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes hero-badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero__badge-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0 1rem;
}

.hero__badge-section:first-child {
  padding-left: 0;
}

.hero__badge-section:last-child {
  padding-right: 0;
}

.hero__badge-vdivider {
  width: 1px;
  height: 2rem;
  background: var(--border);
  flex-shrink: 0;
}

.hero__badge-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__badge-star-icons {
  color: #f97316;
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: 1;
}

.hero__badge-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero__badge-platform {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero__badge-stat-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.hero__badge-accent {
  color: var(--accent);
}

.hero__badge-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1;
}

/* Responsive: badge — tablet */
@media (max-width: 860px) {
  .hero__badge {
    bottom: clamp(1.5rem, 4vh, 2.5rem);
    padding: 0.55rem 1rem;
  }

  .hero__badge-section {
    padding: 0 0.75rem;
  }
}

/* Responsive: badge — mobile (in-flow, centered below subtext) */
@media (max-width: 640px) {
  .hero__badge {
    position: relative;
    bottom: auto;
    right: auto;
    justify-self: center;
    margin-top: 1.25rem;
    animation: hero-badge-enter 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
  }
}

/* ── Pricing Page ────────────────────────────────────── */

.navbar__link--active {
  color: var(--text-primary);
}

.pricing-page {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 64px) 24px 80px;
}

.pricing-page__inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.pricing-page__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Pricing search ──────────────────────────────────── */

.pf-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.pf-search {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.pf-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.pf-search__input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pf-search__input::placeholder {
  color: var(--text-muted);
}

.pf-search__input:focus {
  border-color: rgba(99 102 241 / 0.5);
  box-shadow: 0 0 0 3px rgba(99 102 241 / 0.15);
}

.pf-search__input::-webkit-search-cancel-button { display: none; }

.pf-search__clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.pf-search__clear:hover { color: var(--text-primary); }

.pf-search__clear svg {
  width: 14px;
  height: 14px;
}

/* ── Filter rows ─────────────────────────────────────── */

.pf-row {
  margin-bottom: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pf-row::-webkit-scrollbar { display: none; }

.pf-row--secondary {
  margin-bottom: 28px;
}

/* Brand tabs wrapper — constrains visible width with scroll + fade cue */

/* Fade pseudo-elements and arrows live on the wrapper so they stay fixed while tabs scroll */
.pf-brand-tabs-wrap {
  position: relative;
}

.pf-brand-tabs-wrap::before,
.pf-brand-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.pf-brand-tabs-wrap::before {
  left: 0;
  background: linear-gradient(to left, transparent, rgba(10, 10, 15, 0.72));
}

.pf-brand-tabs-wrap::after {
  right: 0;
  background: linear-gradient(to right, transparent, rgba(10, 10, 15, 0.72));
}

/* Fades triggered by class on the row (arrows are siblings of the wrapper) */
.pf-row--brands.show-left-fade  .pf-brand-tabs-wrap::before { opacity: 1; }
.pf-row--brands.show-right-fade .pf-brand-tabs-wrap::after  { opacity: 1; }

/* Scroll arrows — hidden on mobile, flex items on desktop */
.pf-brand-arrow {
  display: none;
}

/* Desktop: constrain to ~4 tabs wide; move scroll + overflow to #pricing-brand-tabs */
@media (min-width: 641px) {
  .pf-row--brands {
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .pf-brand-arrow {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-family: var(--font);
    opacity: 0;
    pointer-events: none;
    transition: background 0.2s, color 0.2s, opacity 0.25s;
  }

  .pf-brand-arrow:hover {
    background: rgba(255, 255, 255, 0.13);
    color: var(--text-primary);
  }

  .pf-row--brands.show-left-fade  .pf-brand-arrow--left,
  .pf-row--brands.show-right-fade .pf-brand-arrow--right {
    opacity: 1;
    pointer-events: auto;
  }

  .pf-brand-tabs-wrap {
    max-width: 460px;
    width: 100%;
  }

  /* Override .pf-tabs width: max-content so the element is bounded by the wrapper.
     With a fixed width, overflow-x: auto on this flex container actually scrolls. */
  #pricing-brand-tabs {
    width: 100%;
    min-width: 0;
    justify-content: flex-start; /* center + overflow clips left side — use start instead */
    overflow-x: auto;
    scrollbar-width: none;
  }

  #pricing-brand-tabs::-webkit-scrollbar { display: none; }
}

.pf-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}

.pf-tabs--secondary {
  gap: 6px;
}

.pf-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pf-tab:hover {
  color: var(--text-primary);
  background: rgba(255 255 255 / 0.07);
}

.pf-tab--active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(99 102 241 / 0.4), 0 4px 14px rgba(99 102 241 / 0.3);
}

.pf-tab--secondary {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
}

.pf-tab--secondary.pf-tab--active {
  background: rgba(99 102 241 / 0.18);
  color: #93c5fd;
  border-color: rgba(99 102 241 / 0.4);
  box-shadow: none;
}

/* ── Results table ───────────────────────────────────── */

.pricing-results {
  border-radius: var(--radius);
  overflow-x: auto;
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-table thead {
  background: rgba(255 255 255 / 0.04);
}

.pricing-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pricing-table__price-col {
  text-align: right;
  width: 155px;
}

.pricing-table__notes-col {
  width: 180px;
}

.pricing-table__note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.75;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(255 255 255 / 0.03);
}

.pricing-table td {
  padding: 13px 18px;
  vertical-align: middle;
  color: var(--text-primary);
  line-height: 1.4;
}

.pricing-table__device {
  font-weight: 600;
  color: var(--text-muted);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  border-right: 1px solid var(--border);
  width: 220px;
  min-width: 90px;
}

.pricing-table__device--search {
  width: 180px;
}

.pricing-table__brand {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  width: 100px;
}

.pricing-table__price {
  text-align: right;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.pricing-warranty-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(22, 163, 74, 0.07);
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-warranty-callout .pricing-warranty-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 1px;
}

.pricing-warranty-callout strong {
  color: #16a34a;
  font-weight: 600;
}


.pricing-table__price-dual {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  white-space: nowrap;
  background: none;
  -webkit-text-fill-color: initial;
}

.pricing-table__price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.pricing-table__price-tier {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  background: none;
  opacity: 0.7;
}

.pricing-table__price-amount {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Skeleton ────────────────────────────────────────── */

.pricing-table--skeleton {
  animation: pulse 1.6s ease-in-out infinite;
  pointer-events: none;
}

.sk-line {
  display: inline-block;
  height: 13px;
  border-radius: 6px;
  background: rgba(255 255 255 / 0.08);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Empty / error ───────────────────────────────────── */

.pricing-empty,
.pricing-error {
  padding: 56px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

.pricing-error { color: #f87171; }

/* ── Show more ───────────────────────────────────────── */

.pricing-show-more {
  display: flex;
  justify-content: center;
  padding: 20px 0 8px;
}

.pricing-show-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1.5px solid rgba(255 255 255 / 0.18);
  border-radius: 8px;
  background: rgba(255 255 255 / 0.05);
  color: #c4c4cc;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pricing-show-more__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.pricing-show-more__arrow {
  font-size: 13px;
  line-height: 1;
}

/* ── Disclaimer ──────────────────────────────────────── */

.pricing-disclaimer {
  margin-top: 24px;
  margin-bottom: 64px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FAQ Page ────────────────────────────────────────── */

.faq-page {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 64px) 24px 80px;
}

.faq-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.faq-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.faq-page__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-page__contact-link,
.faq-inline-link {
  color: var(--accent-hover);
  text-decoration: none;
  border-bottom: 1px solid rgba(129 140 248 / 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.faq-page__contact-link:hover,
.faq-inline-link:hover {
  color: #fff;
  border-color: rgba(255 255 255 / 0.5);
}

/* ── FAQ category filter ─────────────────────────────── */

.faq-filter-row {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 32px;
}

.faq-filter-row::-webkit-scrollbar { display: none; }

.faq-filters {
  display: flex;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}

.faq-filter {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.faq-filter:hover {
  color: var(--text-primary);
  background: rgba(255 255 255 / 0.07);
}

.faq-filter--active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(99 102 241 / 0.4), 0 4px 14px rgba(99 102 241 / 0.3);
}

/* ── FAQ accordion ───────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 64px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:has(.faq-item__trigger[aria-expanded="true"]) {
  border-color: rgba(99 102 241 / 0.35);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-item__trigger:hover {
  color: #fff;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--accent-hover);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__body p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ bottom CTA ──────────────────────────────────── */

.faq-cta {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.08), rgba(139 92 246 / 0.06));
  padding: 48px 40px;
  text-align: center;
}

.faq-cta__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 10px;
}

.faq-cta__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-cta__body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.faq-cta__btn {
  display: inline-flex;
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 640px) {
  .pricing-page {
    padding-inline: 16px;
  }

  .pf-tabs {
    justify-content: flex-start;
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table__device {
    width: auto;
    min-width: 130px;
  }

  .pricing-table__notes-col {
    width: 80px;
    min-width: 60px;
  }

  .pricing-table__note {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    cursor: pointer;
  }

  .pricing-table__note--expanded {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 11px 12px;
  }
}

/* ── Services Preview (Homepage) ────────────────────── */

.services-preview {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.services-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-preview__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.services-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.services-preview__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.services-preview__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.svc-card:hover {
  border-color: rgba(99 102 241 / 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0 0 0 / 0.3);
  background: rgba(99 102 241 / 0.06);
}

.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.svc-card__icon svg {
  width: 20px;
  height: 20px;
}

.svc-card__name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.svc-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.services-preview__cta {
  display: flex;
  justify-content: center;
}

/* ── Services Full Page ──────────────────────────────── */

.svc-page {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 64px) 24px 80px;
}

.svc-page__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.svc-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.svc-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.svc-page__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.svc-full-card {
  display: flex;
  gap: 22px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.svc-full-card:hover {
  border-color: rgba(99 102 241 / 0.35);
  box-shadow: 0 8px 32px rgba(0 0 0 / 0.25);
}

.svc-full-card__icon-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
  padding: 12px;
}

.svc-full-card__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.svc-full-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.svc-full-card__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.svc-full-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-full-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-full-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.svc-full-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.svc-full-card__link {
  display: inline-flex;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
  border-bottom: 1px solid rgba(129 140 248 / 0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.svc-full-card__link:hover {
  color: #fff;
  border-color: rgba(255 255 255 / 0.5);
}

/* ── Local SEO Section ───────────────────────────────── */

.svc-local {
  margin-bottom: 72px;
  padding: 56px 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(99 102 241 / 0.04);
}

.svc-local__header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-local__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.svc-local__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.svc-local__groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.svc-local__group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.svc-local__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-local__links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.svc-local__links a:hover {
  color: var(--accent-hover);
}

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

@media (max-width: 560px) {
  .svc-local {
    padding: 36px 24px;
  }
  .svc-local__groups {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── Local SEO Landing Pages ─────────────────────────── */

.lseo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -16px 0 56px;
}

.lseo-trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
}

.lseo-trust__item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

.lseo-prose {
  margin-bottom: 48px;
}

.lseo-prose p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lseo-prose p:last-child { margin-bottom: 0; }

.lseo-section {
  margin-bottom: 52px;
}

.lseo-section__heading {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.lseo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lseo-grid__item {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.2s;
}

.lseo-grid__item:hover {
  border-color: rgba(99 102 241 / 0.35);
}

.lseo-grid__item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.lseo-grid__item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lseo-faq__item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.lseo-faq__item:first-child {
  border-top: 1px solid var(--border);
}

.lseo-faq__q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 9px;
}

.lseo-faq__a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.lseo-location {
  display: flex;
  gap: 32px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.lseo-location__col {
  flex: 1;
  min-width: 160px;
}

.lseo-location__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.lseo-location__address {
  font-size: 15px;
  color: var(--text-primary);
  font-style: normal;
  line-height: 1.8;
}

.lseo-location__hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lseo-location__hours-list li {
  font-size: 14px;
  color: var(--text-muted);
}

.lseo-location__phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-hover);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.lseo-location__phone:hover { color: #fff; }

.lseo-location__dir {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255 255 255 / 0.15);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.lseo-location__dir:hover { color: var(--text-primary); }

.lseo-related {
  margin-bottom: 52px;
}

.lseo-related__heading {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.lseo-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.lseo-related__list a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.lseo-related__list a:hover {
  color: var(--accent-hover);
  border-color: rgba(99 102 241 / 0.4);
}

@media (max-width: 640px) {
  .lseo-grid {
    grid-template-columns: 1fr;
  }
  .lseo-location {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }
}

/* ── Services Page bottom CTA ────────────────────────── */

.svc-page__bottom-cta {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.09), rgba(139 92 246 / 0.06));
  padding: 64px 40px;
  text-align: center;
}

.svc-page__bottom-cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 10px;
}

.svc-page__bottom-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.svc-page__bottom-cta-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px;
}

.svc-page__bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.svc-page__bottom-cta-secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-page__bottom-cta-secondary:hover {
  color: var(--text-primary);
}

/* ── Responsive: Services ────────────────────────────── */

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

@media (max-width: 900px) {
  .svc-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .svc-card {
    padding: 18px 16px;
  }

  .svc-full-card {
    flex-direction: column;
    gap: 16px;
  }

  .svc-page__bottom-cta {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .services-preview__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing Preview (Homepage) ─────────────────────── */

.pricing-preview {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.pricing-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-preview__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.pricing-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-preview__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.pricing-preview__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.price-card:hover {
  border-color: rgba(99 102 241 / 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0 0 0 / 0.3);
  background: rgba(99 102 241 / 0.06);
}

.price-card--all {
  border-style: dashed;
}

.price-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.price-card__brand svg {
  width: 22px;
  height: 22px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

.price-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.price-card__from {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-card__from strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.price-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
  margin-top: 4px;
}

/* ── Repair Options (Homepage) ───────────────────────── */

.repair-options {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.repair-options__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.repair-options__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.repair-options__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.repair-options__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.15;
}

.repair-options__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.repair-options__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.repair-opt-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.repair-opt-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.repair-opt-panel__icon svg {
  width: 24px;
  height: 24px;
}

.repair-opt-panel__title {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.repair-opt-panel__sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.repair-opt-panel__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  padding: 0;
  flex: 1;
}

.repair-opt-panel__steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.repair-opt-panel__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.repair-opt-panel__steps li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.repair-opt-panel__steps li p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.repair-opt-panel__info {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255 255 255 / 0.03);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  flex: 1;
}

.repair-opt-panel__info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.repair-opt-panel__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(99 102 241 / 0.1);
  border: 1px solid rgba(99 102 241 / 0.18);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.repair-opt-panel__info-icon svg {
  width: 14px;
  height: 14px;
}

.repair-opt-panel__info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.repair-opt-panel__info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.55;
}

.repair-opt-panel__info-link {
  text-decoration: none;
  transition: color 0.2s;
}

.repair-opt-panel__info-link:hover {
  color: var(--accent-hover);
}

.repair-opt-panel__status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
}

.repair-opt-panel__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34 197 94 / 0.7);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .repair-options__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Mail-In Preview (Homepage) ─────────────────────── */

.mailin-preview {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.mailin-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mailin-preview__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.mailin-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.mailin-preview__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.mailin-preview__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.mailin-preview__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
}

.mi-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.mi-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99 102 241 / 0.15);
  border: 1px solid rgba(99 102 241 / 0.3);
  color: var(--accent-hover);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.mi-step__connector {
  position: absolute;
  top: 18px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1px;
  background: var(--border);
}

.mi-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent-hover);
  margin-bottom: 16px;
}

.mi-step__icon svg {
  width: 22px;
  height: 22px;
}

.mi-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.mi-step__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mailin-preview__cta {
  display: flex;
  justify-content: center;
}

/* ── FAQ Preview (Homepage) ──────────────────────────── */

.faq-preview {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.faq-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.faq-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.faq-preview__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-preview__all {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
  white-space: nowrap;
}

.faq-preview__all:hover {
  text-decoration: underline;
}

.faq-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.faq-tile {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-tile__q {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.4;
}

.faq-tile__a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-preview__cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .pricing-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mailin-preview__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .mi-step__connector {
    display: none;
  }
  .faq-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-preview__grid {
    grid-template-columns: 1fr;
  }
  .mailin-preview__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-preview__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Blog Preview (Homepage) ─────────────────────────── */

.blog-preview {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.blog-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.blog-preview__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-preview__all {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(129 140 248 / 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.blog-preview__all:hover {
  color: #fff;
  border-color: rgba(255 255 255 / 0.5);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Blog Card (shared by preview + listing) ─────────── */

.blog-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: rgba(99 102 241 / 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0 0 0 / 0.35);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card__cover {
  height: 140px;
  background: linear-gradient(135deg, var(--card-accent, #3b82f6), color-mix(in srgb, var(--card-accent, #3b82f6) 60%, #000));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10 10 15 / 0.6));
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  gap: 10px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
}

.blog-card__cat {
  font-weight: 600;
  color: var(--accent-hover);
}

.blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.blog-card__read {
  color: var(--text-muted);
}

.blog-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}

.blog-card__excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-card__cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-hover);
  transition: color 0.2s;
}

.blog-card:hover .blog-card__cta {
  color: #fff;
}

/* ── Blog Listing Page ───────────────────────────────── */

.blog-page {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 64px) 24px 80px;
}

.blog-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-page__header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.blog-page__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-filter-row {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 40px;
}

.blog-filter-row::-webkit-scrollbar { display: none; }

.blog-filter-wrap {
  display: flex;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}

.blog-filter {
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.blog-filter:hover {
  color: var(--text-primary);
  background: rgba(255 255 255 / 0.07);
}

.blog-filter--active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(99 102 241 / 0.4), 0 4px 14px rgba(99 102 241 / 0.3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Blog Post Page ──────────────────────────────────── */

.post-page {
  min-height: 100vh;
  padding-bottom: 80px;
}

.post-cover {
  width: 100%;
  height: 340px;
  margin-top: var(--nav-height);
  background: linear-gradient(135deg, var(--post-accent, #3b82f6), color-mix(in srgb, var(--post-accent, #3b82f6) 50%, #000));
  position: relative;
}

.post-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--bg));
}

.post-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-back {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.post-back:hover {
  color: var(--text-primary);
}

.post-header {
  margin-bottom: 48px;
}

.post-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 16px;
}

.post-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.post-meta__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.post-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.post-body p {
  margin-bottom: 20px;
}

.post-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 12px;
}

.post-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.08), rgba(139 92 246 / 0.06));
}

.post-cta-box__text {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.post-not-found {
  padding: calc(var(--nav-height) + 80px) 24px 80px;
  text-align: center;
}

.post-not-found h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.post-not-found a {
  color: var(--accent-hover);
  text-decoration: none;
}

/* ── Related Posts ───────────────────────────────────── */

.related-section {
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}

.related-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.related-card:hover {
  border-color: rgba(99 102 241 / 0.35);
  transform: translateY(-2px);
}

.related-card__cover {
  height: 80px;
  background: linear-gradient(135deg, var(--card-accent, #3b82f6), color-mix(in srgb, var(--card-accent, #3b82f6) 60%, #000));
  flex-shrink: 0;
}

.related-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
}

.related-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.related-card__title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

.related-card__read {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────────────── */

.footer {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(99 102 241 / 0.10) 0%, transparent 68%);
  pointer-events: none;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.footer__brand {
  max-width: 290px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.footer__social svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer__social:hover {
  color: #fff;
  background: rgba(99 102 241 / 0.15);
  border-color: rgba(99 102 241 / 0.45);
  box-shadow: 0 0 14px rgba(99 102 241 / 0.3);
  transform: translateY(-2px);
}

.footer__nav {
  display: flex;
  gap: 60px;
}

.footer__col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__col-link:hover {
  color: var(--text-primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 40px;
  }

  .footer__brand {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    padding: 56px 16px 40px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 10px;
  }
}

/* ── Mail-In Repair Page ─────────────────────────────── */

.mi-page {
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Hero */
.mi-hero {
  padding: calc(var(--nav-height) + 80px) 24px 96px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mi-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(99 102 241 / 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.mi-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.mi-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 20px;
}

.mi-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 8px rgba(249 115 22 / 0.8);
  flex-shrink: 0;
}

.mi-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.mi-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.mi-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.mi-hero__secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.mi-hero__secondary:hover {
  color: var(--text-primary);
}

.mi-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.mi-hero__stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.mi-hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Section header (shared) */
.mi-steps-section,
.mi-guarantees-section,
.mi-tips-section,
.mi-devices-section,
.mi-cta-section {
  padding: 96px 24px;
}

.mi-steps-section,
.mi-guarantees-section,
.mi-tips-section,
.mi-devices-section {
  border-bottom: 1px solid var(--border);
}

.mi-steps-section__inner,
.mi-guarantees-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mi-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.mi-section-header__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.mi-section-header__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.mi-section-header__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* How It Works steps */
.mi-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.mi-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--accent), #1d4ed8, var(--accent));
  opacity: 0.25;
}

.mi-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.mi-step__num-wrap {
  position: relative;
  margin-bottom: 24px;
}

.mi-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(99 102 241 / 0.1), 0 8px 24px rgba(99 102 241 / 0.3);
  position: relative;
  z-index: 1;
}

.mi-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.25);
  color: var(--accent-hover);
  margin: 0 auto 16px;
}

.mi-step__icon svg {
  width: 20px;
  height: 20px;
}

.mi-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.mi-step__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Guarantees */
.mi-guarantees-section {
  background: linear-gradient(to bottom, rgba(99 102 241 / 0.03), transparent);
}

.mi-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mi-guarantee-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mi-guarantee-card:hover {
  border-color: rgba(99 102 241 / 0.4);
  box-shadow: 0 8px 32px rgba(0 0 0 / 0.25);
}

.mi-guarantee-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.mi-guarantee-card__icon svg {
  width: 20px;
  height: 20px;
}

.mi-guarantee-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.mi-guarantee-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Packaging Tips */
.mi-tips-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mi-tips__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.mi-tips__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mi-tips__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99 102 241 / 0.15);
  border: 1px solid rgba(99 102 241 / 0.3);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-hover);
  flex-shrink: 0;
  margin-top: 1px;
}

.mi-tips__item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mi-tips__item-text span {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mi-tips-visual {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.07), rgba(139 92 246 / 0.05));
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mi-tips-visual__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
}

.mi-tips-visual__icon svg {
  width: 40px;
  height: 40px;
}

.mi-tips-visual__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mi-tips-visual__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.mi-tips-visual__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(99 102 241 / 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
  background: rgba(99 102 241 / 0.08);
}

/* Supported Devices */
.mi-devices-section__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mi-devices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.mi-device-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.mi-device-chip:hover {
  border-color: rgba(99 102 241 / 0.4);
  color: var(--text-primary);
  background: rgba(99 102 241 / 0.06);
}

.mi-device-chip svg {
  width: 16px;
  height: 16px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

/* Intake Form / Bottom CTA */
.mi-cta-section__inner {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.09), rgba(139 92 246 / 0.06));
  padding: 64px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mi-cta-section__inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99 102 241 / 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.mi-cta-section__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 10px;
  position: relative;
}

.mi-cta-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
}

.mi-cta-section__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}

/* Intake form */
.mi-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.mi-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mi-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mi-form__group--full {
  grid-column: 1 / -1;
}

.mi-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.mi-form__input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  background: rgba(255 255 255 / 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mi-form__input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.mi-form__input:focus {
  border-color: rgba(99 102 241 / 0.5);
  box-shadow: 0 0 0 3px rgba(99 102 241 / 0.15);
}

.mi-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.mi-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.mi-form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mi-form__submit {
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.mi-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.mi-form__agreements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.mi-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.mi-form__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #3b82f6;
  cursor: pointer;
}

.mi-form__check-link {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mi-form__check-link:hover {
  color: #c7d2fe;
}

.mi-form__note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Responsive: Mail-In ─────────────────────────────── */

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

@media (max-width: 900px) {
  .mi-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .mi-steps::before {
    display: none;
  }

  .mi-tips-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .mi-guarantees-grid {
    grid-template-columns: 1fr;
  }

  .mi-steps {
    grid-template-columns: 1fr;
  }

  .mi-hero__stats {
    gap: 28px;
  }

  .mi-cta-section__inner {
    padding: 40px 24px;
  }

  .mi-form__row {
    grid-template-columns: 1fr;
  }

  .mi-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mi-tips-visual {
    padding: 36px 24px;
  }
}

/* ── Location Preview (Homepage) ────────────────────── */

.location-preview {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.location-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.location-preview__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.15;
}

.location-preview__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.location-preview__offers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.location-preview__offer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-preview__offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
  margin-top: 1px;
}

.location-preview__offer-icon svg {
  width: 16px;
  height: 16px;
}

.location-preview__offer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.location-preview__offer span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Info card (right column) */
.location-preview__card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
}

.location-preview__card-map {
  height: 160px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.12), rgba(139 92 246 / 0.08));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
}

.location-preview__card-map svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}

.location-preview__card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-preview__card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-preview__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(99 102 241 / 0.1);
  border: 1px solid rgba(99 102 241 / 0.18);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.location-preview__card-icon svg {
  width: 15px;
  height: 15px;
}

.location-preview__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.location-preview__card-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.55;
}

.location-preview__card-link {
  text-decoration: none;
  transition: color 0.2s;
}

.location-preview__card-link:hover {
  color: var(--accent-hover);
}

.location-preview__card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: #4ade80;
}

.location-preview__card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34 197 94 / 0.7);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .location-preview__inner {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .location-preview__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── Location Page ───────────────────────────────────── */

.loc-page {
  min-height: 100vh;
  padding-bottom: 0;
}

/* Hero */
.loc-hero {
  padding: calc(var(--nav-height) + 80px) 24px 96px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.loc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(99 102 241 / 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.loc-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.loc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 20px;
}

.loc-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34 197 94 / 0.8);
  flex-shrink: 0;
}

.loc-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.loc-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.loc-hero__chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.loc-chip svg {
  width: 14px;
  height: 14px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

.loc-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.loc-hero__secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.loc-hero__secondary:hover {
  color: var(--text-primary);
}

/* Map + Info */
.loc-info-section {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.loc-info-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.loc-map-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.loc-map-placeholder {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.07), rgba(139 92 246 / 0.04));
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
}

.loc-map-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--accent-hover);
  opacity: 0.7;
}

.loc-map-placeholder p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
}

.loc-map-placeholder__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
  border-bottom: 1px solid rgba(129 140 248 / 0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.loc-map-placeholder__link:hover {
  color: #fff;
  border-color: rgba(255 255 255 / 0.5);
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.loc-details__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-details__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.loc-hours {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.loc-hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.loc-hours__row:last-child {
  border-bottom: none;
}

.loc-hours__row:hover {
  background: rgba(255 255 255 / 0.03);
}

.loc-hours__day {
  font-weight: 500;
  color: var(--text-primary);
}

.loc-hours__time {
  font-size: 13px;
  color: var(--text-muted);
}

.loc-hours__row--closed .loc-hours__day {
  color: var(--text-muted);
}

.loc-hours__row--closed .loc-hours__time {
  color: #f87171;
  font-weight: 600;
  font-size: 12px;
}

.loc-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.loc-contact-item__icon svg {
  width: 16px;
  height: 16px;
}

.loc-contact-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.loc-contact-item__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

a.loc-contact-item__value:hover {
  color: var(--accent-hover);
}

/* Shared section header */
.loc-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.loc-section-header__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.loc-section-header__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f4f4f5 20%, #93c5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.loc-section-header__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* What we carry */
.loc-carry-section {
  padding: 96px 24px;
  border-bottom: 1px solid var(--border);
}

.loc-carry-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.loc-carry-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.loc-carry-card:hover {
  border-color: rgba(99 102 241 / 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0 0 0 / 0.3);
  background: rgba(99 102 241 / 0.06);
}

.loc-carry-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
}

.loc-carry-card__icon svg {
  width: 20px;
  height: 20px;
}

.loc-carry-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.loc-carry-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* In-store services */
.loc-services-section {
  padding: 96px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, rgba(99 102 241 / 0.03), transparent);
}

.loc-services-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.loc-service-card {
  display: flex;
  gap: 20px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.loc-service-card:hover {
  border-color: rgba(99 102 241 / 0.35);
  box-shadow: 0 8px 32px rgba(0 0 0 / 0.25);
}

.loc-service-card--featured {
  border-color: rgba(99 102 241 / 0.25);
  background: linear-gradient(135deg, rgba(99 102 241 / 0.07), rgba(139 92 246 / 0.04));
}

.loc-service-card--featured:hover {
  border-color: rgba(99 102 241 / 0.5);
  box-shadow: 0 12px 40px rgba(99 102 241 / 0.15);
}

.loc-service-card__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
  flex-shrink: 0;
  padding: 12px;
}

.loc-service-card__icon svg {
  width: 22px;
  height: 22px;
}

.loc-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.loc-service-card__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.loc-service-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.loc-service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loc-service-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.loc-service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Why visit us */
.loc-why-section {
  padding: 96px 24px;
  border-bottom: 1px solid var(--border);
}

.loc-why-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.loc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.loc-why-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.loc-why-item:hover {
  border-color: rgba(99 102 241 / 0.35);
  box-shadow: 0 8px 32px rgba(0 0 0 / 0.2);
}

.loc-why-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99 102 241 / 0.12);
  border: 1px solid rgba(99 102 241 / 0.2);
  color: var(--accent-hover);
}

.loc-why-item__icon svg {
  width: 20px;
  height: 20px;
}

.loc-why-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.loc-why-item__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Bottom CTA */
.loc-cta-section {
  padding: 96px 24px;
}

.loc-cta-section__inner {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(99 102 241 / 0.09), rgba(139 92 246 / 0.06));
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.loc-cta-section__inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99 102 241 / 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.loc-cta-section__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 10px;
  position: relative;
}

.loc-cta-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
}

.loc-cta-section__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
}

.loc-cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}

.loc-cta-section__address {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}

/* ── Responsive: Location ────────────────────────────── */

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

  .loc-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .loc-info-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .loc-map-wrap {
    position: static;
  }

  .loc-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .loc-carry-grid {
    grid-template-columns: 1fr;
  }

  .loc-why-grid {
    grid-template-columns: 1fr;
  }

  .loc-cta-section__inner {
    padding: 40px 24px;
  }

  .loc-hero__chips {
    flex-direction: column;
    align-items: center;
  }

  .loc-service-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── Responsive: Blog ────────────────────────────────── */

@media (max-width: 900px) {
  .blog-preview__grid,
  .blog-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-preview__grid,
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-preview__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-cover {
    height: 220px;
  }

  .post-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .blog-filter-wrap {
    justify-content: flex-start;
  }
}

/* ── Legal / About prose pages ───────────────────────── */

.legal-prose {
  max-width: 720px;
  margin: 0 auto 80px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-prose h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0 0.75rem;
}

.legal-prose p,
.legal-prose address {
  margin: 0 0 1rem;
  font-style: normal;
}

.legal-prose ul {
  margin: 0 0 1rem 1.5rem;
}

.legal-prose li {
  margin-bottom: 0.375rem;
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-prose a:hover {
  color: var(--accent-hover, var(--accent));
}

/* ── Scroll reveal: initial hidden states ───────────────── */
/* Entrance animations driven by WAAPI in JS — avoids any   */
/* specificity clash with card hover transition definitions. */

.reveal         { opacity: 0; }
.reveal-stagger > * { opacity: 0; }

/* ── Hero: ambient depth blobs ──────────────────────────── */

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.09) 0%, transparent 65%);
  top: -250px;
  right: -200px;
  animation: blob-a 22s ease-in-out infinite alternate;
}

.hero::after {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
  bottom: 5%;
  left: -150px;
  animation: blob-b 28s ease-in-out infinite alternate;
}

@keyframes blob-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-70px, 60px) scale(1.18); }
}

@keyframes blob-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(90px, -50px) scale(1.22); }
}

/* ── Hero phone cards: gentle float ────────────────────── */

.hero__card:first-child {
  animation: float-a 7s ease-in-out infinite;
}

.hero__card:last-child {
  animation: float-b 9s ease-in-out 1.8s infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0px) rotate(-2.5deg); }
  50%       { transform: translateY(-10px) rotate(-2.5deg); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50%       { transform: translateY(-7px) rotate(2deg); }
}

/* ── Card depth: smooth tilt transitions ────────────────── */

.svc-card,
.price-card,
.blog-card,
.faq-tile,
.repair-opt-panel {
  will-change: transform;
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    background 0.2s ease,
    transform 0.1s ease;
}

/* ── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * { opacity: 1; }

  .hero::before,
  .hero::after,
  .hero__card:first-child,
  .hero__card:last-child { animation: none; }

  .hero__card:first-child { transform: rotate(-2.5deg); }
  .hero__card:last-child  { transform: rotate(2deg); }
}
