/* ═══════════════════════════════════════════════════════════════
   Fix Ninja — appliance repair site, 2026-08 redesign.
   Fully dark theme: black surfaces, orange accents, Anton display
   headings + Manrope body. Old (light) design rules are kept in the
   commented block at the very bottom of this file.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ink:        #0d0d0d;   /* page background            */
  --ink-2:      #121212;   /* alternating sections       */
  --panel:      #1a1a1a;   /* cards                      */
  --panel-2:    #222;      /* inputs, hovers             */
  --line:       #2b2b2b;
  --orange:     #f26a21;   /* logo wrench                */
  --orange-d:   #d3540e;
  --orange-t:   rgba(242,106,33,.12);
  --text:       #a9a5a0;   /* body text                  */
  --text-dim:   #7c7873;
  --white:      #ffffff;
  --radius:     14px;
  --container:  1200px;
  --display:    "Anton", "Manrope", sans-serif;
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.08;
}
h4 { color: var(--white); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 860px; }
.section { padding: 66px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
h1 span, h2 span { color: var(--orange); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border: 0; border-radius: 10px; cursor: pointer;
  font: 800 14px/1 "Manrope", sans-serif; letter-spacing: .02em; text-transform: uppercase;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn-sm { padding: 11px 18px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 26px rgba(242,106,33,.35); }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid #3a3a3a; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost:disabled { opacity: .35; cursor: default; }

/* ── header ── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.header-in { display: flex; align-items: center; gap: 26px; height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--display); font-size: 20px; letter-spacing: .03em; color: #fff; }
.logo-text b { color: var(--orange); font-weight: 400; }
.nav { display: flex; gap: 24px; margin-inline: auto; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #cfccc8; }
.nav a { padding: 4px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav a:hover { color: var(--orange); }
.nav a.is-active { color: #fff; border-color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--orange); }
.header-phone:hover { color: #fff; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ── hero ── */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(13,13,13,.94) 26%, rgba(13,13,13,.55) 48%, rgba(13,13,13,.08) 68%, rgba(13,13,13,.35) 100%),
    linear-gradient(0deg, rgba(13,13,13,.6) 0%, rgba(13,13,13,0) 30%);
}
.hero-in { position: relative; z-index: 1; padding-block: 76px 60px; }
.hero-content { max-width: 560px; }
.hero h1 { font-size: clamp(40px, 5.4vw, 64px); margin-bottom: 20px; }
.hero-lead { font-size: 16px; max-width: 470px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-chips { display: flex; gap: 0; flex-wrap: wrap; }
.chip {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 26px 6px 0; margin-right: 26px;
  border-right: 1px solid var(--line);
}
.chip:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.chip svg { color: var(--orange); flex: none; }
.chip b { display: block; color: #fff; font-size: 14px; line-height: 1.25; }
.chip span { font-size: 13px; color: var(--text-dim); }
/* OLD: .hero-photo card — replaced by the full-bleed .hero-bg above */

/* ── service call fee ── */
.fee { background: var(--ink-2); border-block: 1px solid var(--line); }
.fee-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: start; }
.fee-main h2 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 10px; }
.fee-sub { color: #dedbd7; font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.fee-text { max-width: 620px; margin-bottom: 34px; }
.fee-features {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; margin-bottom: 20px;
}
.fee-feature { padding: 0 12px; text-align: center; border-right: 1px solid var(--line); }
.fee-feature:last-child { border-right: 0; }
.fee-feature svg {
  color: var(--orange); margin: 0 auto 12px;
  width: 46px; height: 46px; padding: 11px;
  border: 1.5px solid var(--orange); border-radius: 50%;
}
.fee-feature b {
  display: block; color: #fff; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; line-height: 1.35;
}
.fee-feature span { font-size: 12px; line-height: 1.45; color: var(--text-dim); display: block; }
.fee-note {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(242,106,33,.4); border-radius: 10px;
  padding: 12px 16px; font-size: 13.5px; color: #dedbd7; margin-bottom: 20px;
}
.fee-note svg { color: var(--orange); flex: none; }
.fee-push { display: flex; align-items: center; gap: 12px; }
.fee-push svg { color: var(--orange); flex: none; }
.fee-push b { display: block; color: #fff; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.fee-push span { font-size: 13.5px; color: var(--text-dim); }

.fee-card {
  background: var(--panel); border: 1.5px solid var(--orange); border-radius: 18px;
  padding: 30px 26px; text-align: center;
  box-shadow: 0 0 60px rgba(242,106,33,.15);
  position: sticky; top: 90px;
}
.fee-card-only { font-family: var(--display); text-transform: uppercase; color: #fff; font-size: 20px; letter-spacing: .05em; }
.fee-card-amount {
  font-family: var(--display); color: #fff; font-size: clamp(64px, 6vw, 88px); line-height: 1;
  text-shadow: 0 0 34px rgba(242,106,33,.55);
}
.fee-card-label { font-family: var(--display); text-transform: uppercase; color: #fff; font-size: 19px; letter-spacing: .1em; margin-bottom: 20px; }
.fee-card-list { list-style: none; text-align: left; margin-bottom: 22px; border-top: 1px solid var(--line); padding-top: 14px; }
.fee-card-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px; color: #dedbd7;
}
.fee-card-list svg { color: var(--orange); flex: none; }
.fee-card .btn + .btn { margin-top: 10px; }
.fee-card .btn-outline { border-color: rgba(242,106,33,.55); }
.fee-card .btn-outline:hover { border-color: var(--orange); }
.fee-card .btn-block + .btn-block { margin-top: 10px; }

/* ── services ── */
.services { background: var(--ink); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.svc-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 10px 16px; text-align: center;
  transition: transform .18s, border-color .18s;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.svc-img { position: relative; border-radius: 8px; overflow: hidden; margin-bottom: 14px; background: #101010; }
.svc-img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(.9) brightness(.85); transition: transform .3s; }
.svc-card:hover .svc-img img { transform: scale(1.04); filter: saturate(.9) brightness(.9); }
.svc-ico {
  position: absolute; inset: 0; margin: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,13,13,.55); border: 1.5px solid var(--orange); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.svc-card h3 { font-size: 12.5px; letter-spacing: .08em; margin-bottom: 7px; line-height: 1.3; }
.svc-card p { font-size: 11.5px; color: var(--text-dim); line-height: 1.5; }
.svc-link { position: absolute; inset: 0; border-radius: var(--radius); }
.services-more { text-align: center; margin-top: 30px; }
.services-more .btn { padding: 11px 20px; font-size: 12px; border-color: var(--line); border-radius: 8px; }

/* ── reviews ── */
.reviews { background: var(--ink-2); border-block: 1px solid var(--line); }
.reviews-grid { display: grid; grid-template-columns: .8fr 2.2fr; gap: 40px; align-items: center; }
.reviews-summary h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.reviews-stars { color: var(--orange); font-size: 22px; letter-spacing: 4px; margin-bottom: 6px; }
.reviews-score { font-family: "Manrope", sans-serif; font-weight: 800; color: #fff; font-size: 30px; line-height: 1.1; }
.reviews-summary p { font-size: 13px; color: var(--text-dim); margin-top: 6px; }
.reviews-slider {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: var(--orange); letter-spacing: 3px; font-size: 14px; }
.review-card p { font-size: 14px; flex: 1; color: #cfccc8; }
.review-card footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.review-card footer b { color: #fff; font-size: 14px; display: block; }
.review-card footer small { color: var(--text-dim); font-size: 12.5px; }
.review-avatar {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--orange); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.slider-dots { grid-column: 1 / -1; display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.slider-dots:empty { display: none; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; cursor: pointer; background: #3a3a3a; transition: .2s; padding: 0; }
.slider-dots button.is-active { background: var(--orange); width: 22px; border-radius: 99px; }

/* ── trust bar ── */
.trust { background: var(--ink); padding: 46px 0; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; padding: 0 14px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { color: var(--orange); flex: none; }
.trust-item b {
  display: block; color: #fff; font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; line-height: 1.3;
}
.trust-item span { font-size: 12px; color: var(--text-dim); }

/* ── booking quiz ── */
.quiz-section { background: var(--ink-2); border-block: 1px solid var(--line); }
.quiz-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.quiz-in > *, .faq-grid > *, .fee-grid > *, .reviews-grid > *, .hero-grid > * { min-width: 0; }
.quiz h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 26px; }
.quiz-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; max-width: 420px; }
.qp-dot {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel); border: 1px solid var(--line);
  font-size: 13px; font-weight: 800; color: var(--text-dim); transition: .2s;
}
.qp-dot.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }
.qp-dot.is-done { background: #3a2a1f; border-color: var(--orange-d); color: var(--orange); }
.qp-line { flex: 1; height: 2px; background: var(--line); }

/* one-step booking form (simplified 2026-08) */
.book-subtitle { margin: -12px 0 24px; max-width: 480px; }
.book-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-fields textarea { grid-column: 1 / -1; resize: vertical; }
.book-fields input, .book-fields textarea {
  width: 100%; padding: 15px 18px; border-radius: 12px;
  font: 600 14.5px "Manrope", sans-serif; outline: none; transition: border-color .15s;
  background: var(--panel); border: 1.5px solid var(--line); color: #fff;
}
.book-fields input::placeholder, .book-fields textarea::placeholder { color: var(--text-dim); }
.book-fields input:focus, .book-fields textarea:focus { border-color: var(--orange); }
.book-fields input.is-error { border-color: #e0402a; }
.book-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.book-note { font-size: 12.5px; color: var(--text-dim); }

.quiz-step { display: none; border: 0; }
.quiz-step.is-active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } }
.quiz-step legend { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-options label { position: relative; display: block; cursor: pointer; }
.quiz-options input { position: absolute; opacity: 0; }
.quiz-options span {
  display: flex; align-items: center; min-height: 52px; padding: 12px 18px;
  background: var(--panel); border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 14.5px; font-weight: 600; color: #dedbd7; transition: .15s;
}
.quiz-options label:hover span { border-color: #565350; }
.quiz-options input:checked + span {
  background: var(--orange-t); border-color: var(--orange); color: #fff;
  box-shadow: 0 0 0 1px var(--orange) inset;
}
.quiz-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-fields textarea { grid-column: 1 / -1; resize: vertical; }
.quiz-fields input, .quiz-fields textarea {
  width: 100%; padding: 15px 18px; border-radius: 12px;
  font: 600 14.5px "Manrope", sans-serif; outline: none; transition: border-color .15s;
  background: var(--panel); border: 1.5px solid var(--line); color: #fff;
}
.quiz-fields input::placeholder, .quiz-fields textarea::placeholder { color: var(--text-dim); }
.quiz-fields input:focus, .quiz-fields textarea:focus { border-color: var(--orange); }
.quiz-fields input.is-error, .quiz-fields textarea.is-error { border-color: #e0402a; }

.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; flex-wrap: wrap; gap: 12px; }
.quiz-stepnum { font-size: 13px; font-weight: 700; color: var(--text-dim); }
.quiz-btns { display: flex; gap: 12px; }
.quiz-success { text-align: center; padding: 30px 0 10px; }
.quiz-success .qs-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 30px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.quiz-success h3 { font-size: 24px; margin-bottom: 8px; }
.quiz-success p { color: var(--text); max-width: 420px; margin-inline: auto; }
.quiz-photo img { border-radius: 16px; border: 1px solid var(--line); }

/* ── faq + help card ── */
.faq { background: var(--ink); }
.faq-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.faq-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px; }
.faq-heading {
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #101010; border: 1px solid #232323; border-radius: 10px; color: #fff; overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 22px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 14.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 16px; height: 16px; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--orange); border-radius: 2px; transition: transform .2s;
}
.faq-plus::before { width: 14px; height: 2.2px; }
.faq-plus::after { width: 2.2px; height: 14px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); }
.faq-item p { padding: 0 22px 18px; font-size: 14px; color: var(--text); max-width: 720px; }

.help-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: row; align-items: stretch;
}
.help-body { flex: 1 1 58%; padding: 32px 28px; min-width: 0; }
.help-card h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 12px; }
.help-card p { font-size: 14px; margin-bottom: 22px; }
.help-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.help-photo { flex: 1 1 42%; min-width: 0; }
.help-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ── bottom cta ── */
.cta-bar { background: var(--ink-2); border-top: 1px solid var(--line); padding: 46px 0; }
.cta-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-bar h2 { font-size: clamp(20px, 2.4vw, 28px); max-width: 680px; }
.cta-bar h2 span { display: block; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── footer ── */
.footer { background: #0a0a0a; border-top: 1px solid var(--line); color: var(--text); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1fr 1.2fr; gap: 28px;
  padding-block: 52px 36px;
}
.logo--footer .logo-text { font-size: 18px; }
.footer-brand p { margin: 14px 0 16px; font-size: 13.5px; }
.footer-brand small { color: var(--text-dim); font-size: 12px; display: block; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel); border: 1px solid var(--line); color: #cfccc8;
  transition: .15s;
}
.footer-social a:hover { color: var(--orange); border-color: var(--orange); }
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; color: #fff; }
.fc-row { display: flex; align-items: center; gap: 8px; }
.fc-row svg { color: var(--orange); flex: none; }
.footer-col a:hover { color: var(--orange); }
.footer-serving { color: var(--text-dim); font-size: 12.5px; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-in { display: flex; gap: 24px; padding-block: 16px; font-size: 12.5px; color: var(--text-dim); }
.footer-bottom a:hover { color: var(--orange); }

/* ── service pages ── */
.service-hero { background: var(--ink); }
.service-hero h1 { font-size: clamp(30px, 4vw, 46px); }
.service-lead { display: flex; flex-direction: column; gap: 22px; align-items: center; margin-bottom: 20px; }
.service-photo img { border-radius: 16px; border: 1px solid var(--line); max-width: 440px; }
.service-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.content-text { max-width: 760px; margin: 0 auto; padding: 10px 0 0; color: var(--text); }
.content-text h2 { font-size: 22px; margin: 18px 0 10px; }
.content-text p { margin-bottom: 12px; }

/* ── error pages ── */
.error-screen { background: var(--ink); text-align: center; }
.error-code {
  font-family: var(--display); font-size: clamp(72px, 14vw, 140px); line-height: 1;
  color: var(--orange); letter-spacing: .02em;
}
.error-screen h1 { font-size: clamp(24px, 3.4vw, 34px); margin: 8px 0 12px; }
.error-screen p { margin-bottom: 26px; }

/* ═══════════ responsive ═══════════ */
@media (max-width: 1080px) {
  .hero-bg { width: 100%; opacity: .28; }
  .hero-content { max-width: 640px; }
  .fee-grid { grid-template-columns: 1fr; }
  .fee-card { position: static; max-width: 460px; margin-inline: auto; }
  .fee-features { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .fee-feature:nth-child(3) { border-right: 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-slider { grid-auto-columns: calc((100% - 16px) / 2); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .quiz-in { grid-template-columns: 1fr; }
  .quiz-photo { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; }
  .help-card { flex-direction: column; }
  .help-photo img { max-height: 300px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .burger { display: block; }
  .nav.is-open {
    display: flex; position: fixed; inset: 66px 0 auto 0; z-index: 49;
    flex-direction: column; gap: 0; background: var(--ink);
    padding: 10px 24px 20px; border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
  .nav.is-open a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .header-phone { font-size: 0; gap: 0; padding: 10px; }
  .header-phone svg { width: 22px; height: 22px; }
  .header-cta .btn span { display: none; }
  .hero-chips { flex-direction: column; align-items: flex-start; gap: 12px; }
  .chip { border-right: 0; margin-right: 0; padding: 0; }
  .fee-features { grid-template-columns: 1fr; }
  .fee-feature { border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 6px; }
  .fee-feature:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-slider { grid-auto-columns: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .quiz-options, .quiz-fields, .book-fields { grid-template-columns: 1fr; }
  .cta-bar-in { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   OLD DESIGN (2026-08 redesign) — rules for the removed light-theme
   sections, kept commented for reference together with the blade
   blocks they styled (see resources/views/pages/index.blade.php).

.ticker { background: var(--orange); color: #fff; overflow: hidden; font-size: 13px; font-weight: 600; }
.ticker-track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 8px 0; animation: ticker 28s linear infinite; }
.ticker-track i { font-style: normal; opacity: .6; }
@keyframes ticker { to { transform: translateX(-50%); } }

.brands { background: #fff; border-block: 1px solid #eceae7; overflow: hidden; }
.brands-track { display: flex; align-items: center; gap: 40px; width: max-content; padding: 22px 0; animation: ticker 36s linear infinite; font-weight: 800; font-size: 15px; letter-spacing: .12em; color: #a9a5a0; }
.brands-track i { font-style: normal; color: var(--orange); font-size: 8px; }

.about { background: #161616; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 20px; }
.stat-card { background: #262626; border: 1px solid #333; border-radius: 16px; padding: 22px 24px; }
.stat-card b { display: block; font-size: 34px; font-weight: 800; color: #fff; }
.fee-card--gradient { background: linear-gradient(140deg, #f26a21, #d3540e); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; background: #f6f5f3; border-radius: 20px; padding: 28px; }
.ci-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; }
.map iframe { display: block; width: 100%; height: 380px; border: 0; }
.form-success { color: #1d8a44; font-weight: 700; font-size: 14px; }
═══════════════════════════════════════════════════════════════ */

/* ── review gate (/review — landing behind the QR thank-you card) ── */
.rg-section { min-height: calc(100vh - 220px); display: flex; align-items: center; }
.rg-card { max-width: 640px; margin: 0 auto; text-align: center; }
.rg-title { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 14px; }
.rg-subtitle { color: var(--text); max-width: 460px; margin: 0 auto 26px; }

.rg-stars { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.rg-star {
  background: none; border: 0; cursor: pointer; padding: 4px;
  font-size: clamp(42px, 7vw, 56px); line-height: 1; color: #3a3a3a;
  transition: color .12s, transform .12s;
}
.rg-star:hover { transform: scale(1.12); }
.rg-star.is-on { color: var(--orange); text-shadow: 0 0 26px rgba(242,106,33,.45); }

#rgForm { max-width: 520px; margin: 0 auto; text-align: left; }
.rg-form-title { font: 800 20px/1.3 "Manrope", sans-serif; text-transform: none; letter-spacing: 0; color: var(--white); margin-bottom: 6px; }
.rg-form-text { color: var(--text); font-size: 14px; margin-bottom: 18px; }
.rg-fields { margin-bottom: 16px; }
.rg-fields textarea.is-error { border-color: #e0402a; }

.rg-redirect { color: var(--text); font-weight: 700; }
.rg-success h3 { font-family: "Manrope", sans-serif; text-transform: none; letter-spacing: 0; }
