:root {
  --bg: #0a1c38;
  --bg-elevated: #0e2850;
  --surface: #12325e;
  --text: #f4f8ff;
  --text-muted: #b4c9e6;
  --accent: #1e7bff;
  --accent-dim: #0f5ed1;
  --accent-glow: rgba(77, 163, 255, 0.45);
  --border: rgba(160, 200, 255, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: min(1120px, 100% - 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.text-accent {
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-serif);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 17, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  border-radius: 10px;
}

.footer-logo-img {
  display: block;
  height: 88px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-weight: 800;
  font-size: 1rem;
}

.logo-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.header-phone {
  font-weight: 600 !important;
  color: var(--text) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #4da3ff 0%, #1e7bff 42%, #0a4db8 100%);
  color: #fff;
  border: 1px solid rgba(180, 220, 255, 0.4);
  box-shadow:
    0 4px 24px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6bb4ff 0%, #2b8cff 45%, #1563e0 100%);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
}

.link-arrow::after {
  content: " →";
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 78% 18%, rgba(77, 163, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 40% 35% at 18% 75%, rgba(30, 123, 255, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(5, 14, 30, 0.45) 0%, rgba(8, 28, 56, 0.88) 65%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5, 14, 30, 0.88) 0%, rgba(10, 35, 70, 0.4) 55%, rgba(5, 18, 40, 0.75) 100%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
}

.hero-content .hero-lead,
.hero-content .hero-status,
.hero-content .hero-stats {
  color: rgba(255, 255, 255, 0.88);
}

.hero-content .hero-stats strong {
  color: #fff;
}

.hero-content .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin: 0 0 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.hero-lead {
  font-size: 1rem;
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.8125rem;
}

.hero-stats strong {
  display: block;
  font-size: 1rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.pillars {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-grid article {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pillar-grid h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.pillar-grid p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.category-card h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.category-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-card.featured {
  border-color: rgba(61, 214, 195, 0.4);
}

.price-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(61, 214, 195, 0.15);
  color: var(--accent);
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.price-card p:last-of-type:not(.price-amount):not(.price-card-tagline):not(.price-tier-note) {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.price-card-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.price-tier-note {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.price-card-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.price-card-field select {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.price-card-field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.price-card .btn-block {
  margin-top: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 2rem 0 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-card {
  display: block;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  border-color: rgba(61, 214, 195, 0.35);
  text-decoration: none;
}

.brand-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.brand-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.brand-card-btn {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.brand-card-btn[aria-expanded="true"] {
  border-color: rgba(61, 214, 195, 0.45);
  background: rgba(61, 214, 195, 0.06);
}

.brand-card-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem !important;
  color: var(--accent) !important;
}

.iphone-models {
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.iphone-models-head {
  margin-bottom: 1.25rem;
}

.iphone-models-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.iphone-models-head p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.iphone-models-book {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.screen-quality-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.quality-option {
  padding: 0.75rem 0.65rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.quality-option:hover {
  border-color: rgba(61, 214, 195, 0.35);
  color: var(--text);
}

.quality-option.is-active {
  color: var(--text);
  border-color: rgba(61, 214, 195, 0.55);
  background: rgba(61, 214, 195, 0.08);
}

.iphone-panel-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.iphone-panel-field select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.iphone-panel-field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.iphone-panel-tier-note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.iphone-panel-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.iphone-models-or {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.model-link.is-selected {
  border-color: rgba(61, 214, 195, 0.55);
  background: rgba(61, 214, 195, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.model-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.5rem;
}

.model-link {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
}

.model-link:hover {
  border-color: rgba(61, 214, 195, 0.4);
  color: var(--accent);
  text-decoration: none;
}

.testimonials {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-grid blockquote {
  margin: 0;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quote-grid p {
  margin: 0 0 1rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.area-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.areas-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
}

.faq-layout header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.faq-list > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-list dd {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.contact {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.contact-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.contact-list a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.book-repair-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  background: #0a0a0c;
  color: var(--text);
}

.book-repair-screen[hidden] {
  display: none !important;
}

body.book-repair-open {
  overflow: hidden;
}

.book-repair-screen-bar {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(8, 8, 10, 0.98);
}

.book-repair-screen-title {
  margin: 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.book-repair-back,
.book-repair-close {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  cursor: pointer;
}

.book-repair-screen-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1rem 2rem;
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
}

.book-step[hidden] {
  display: none !important;
}

.book-step-lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}


.book-repair-screen .book-wizard {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.book-repair-screen .book-iphone-options {
  border: 1px solid rgba(148, 163, 184, 0.14);
  margin-top: 0;
}

.book-repair-screen .device-picker .device-tile-icon--brand svg {
  width: 32px;
  height: 32px;
}

.book-repair-screen .device-tile-icon--pixel {
  color: var(--text);
}

.phone-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.phone-brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.5rem;
  font: inherit;
  text-align: center;
  color: var(--text-muted);
  background: rgba(15, 17, 21, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-brand-tile strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text);
}

.phone-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text);
}

.phone-brand-tile.is-active {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
  color: var(--text);
}

.phone-brand-tile.is-active .phone-brand-logo {
  color: var(--accent, #d4af37);
}

.phone-other-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.phone-other-fields[hidden] {
  display: none !important;
}

.phone-selected-brand {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.phone-selected-brand[hidden] {
  display: none !important;
}

.phone-selected-brand span {
  font-weight: 600;
  color: var(--text-muted);
}

.phone-model-select-wrap[hidden] {
  display: none !important;
}

.phone-other-fields .iphone-panel-field input {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  background: rgba(8, 8, 10, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
}

.book-form-screen {
  max-width: none;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.device-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.device-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 7.25rem;
  padding: 1rem 0.65rem 0.85rem;
  font: inherit;
  text-align: center;
  color: var(--text-muted);
  background: rgba(15, 17, 21, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.device-tile strong {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #f5d142;
  letter-spacing: 0.01em;
}

.device-tile-sub {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(148, 163, 184, 0.85);
  max-width: 9rem;
}

.device-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 237, 244, 0.92);
  margin-bottom: 0.15rem;
}

.device-tile:hover {
  border-color: rgba(245, 209, 66, 0.35);
}

.device-tile.is-active {
  border-color: rgba(245, 209, 66, 0.75);
  box-shadow:
    0 0 0 1px rgba(245, 209, 66, 0.35),
    0 0 22px rgba(245, 209, 66, 0.18);
}

.device-tile.is-active::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f5d142;
  box-shadow: 0 0 8px rgba(245, 209, 66, 0.85);
}

.device-tile.is-active .device-tile-icon {
  color: #fff;
}

.book-services {
  margin-bottom: 1rem;
  padding-top: 0.35rem;
}

.book-services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.book-services-head h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5d142;
}

.book-services-icon {
  display: inline-flex;
  color: #f5d142;
}

.book-services-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.75);
}

.service-picker-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-picker-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0.15rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  color: rgba(232, 237, 244, 0.95);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  cursor: pointer;
}

.service-picker-item::after {
  content: "›";
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(148, 163, 184, 0.45);
}

.service-picker-item:hover {
  color: #f5d142;
}

.service-picker-item.is-active {
  color: #f5d142;
}

.service-picker-item.is-active::after {
  color: #f5d142;
}

.book-iphone-options {
  margin: 0 0 1rem;
  padding: 1.15rem;
  background: rgba(15, 17, 21, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
}

.book-iphone-next {
  margin: 0 0 1rem;
}

.book-wizard-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 0.75);
  text-align: center;
}

.iphone-panel-price-note {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quality-option .quality-option-price {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.85;
}

.book-iphone-options .quality-option.is-active .quality-option-price {
  opacity: 1;
}

.book-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 1rem;
}

.book-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.book-phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.book-phone a:hover {
  color: var(--accent);
}

.book-email a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.book-form input,
.book-form textarea,
.book-form select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
}

.book-form input:focus,
.book-form textarea:focus,
.book-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--accent);
  margin: 0;
  text-align: center;
}

.form-note.is-error {
  color: #c45c5c;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

#book-form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #080c12;
}

.contact-hours {
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.follow-us {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.follow-us-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.follow-us-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.follow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated, #fff);
  color: var(--text);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
}

.follow-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

.follow-link[hidden] {
  display: none !important;
}

.follow-us-links--footer {
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.follow-us-links--footer .follow-link {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-tag {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 22rem;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .pillar-grid,
  .category-grid,
  .price-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout,
  .book-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .device-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 57px;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .brand-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
