/* =================================================================
   VIKING REPAIR NYC
   Clean, professional, light — white surfaces, gold/amber accents,
   card grids. Inspired by modern appliance-repair service sites.
   Plus Jakarta Sans (display) + Inter (body).
   ================================================================= */

:root {
  --bg:         #ffffff;
  --bg-alt:     #f6f7f9;   /* alternating section background */
  --surface:    #ffffff;
  --line:       #e6e8ec;
  --line-soft:  #eef0f3;

  --gold:       #ffb400;   /* primary accent */
  --gold-deep:  #f59e0b;   /* hover */
  --gold-tint:  #fff4d6;   /* soft tints */
  --gold-ink:   #b07400;   /* gold-toned text on white */

  --dark:       #14181f;   /* dark buttons / headings */
  --text:       #1b2027;
  --text-soft:  #5c6672;
  --text-dim:   #8a93a0;
  --star:       #ffb400;

  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1200px;

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 14px -8px rgba(20, 30, 45, 0.18);
  --shadow:    0 18px 40px -22px rgba(20, 30, 45, 0.28);
  --shadow-gold: 0 12px 26px -10px rgba(245, 158, 11, 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 0.85em 1.5em; border-radius: 100px; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap; line-height: 1;
}
.btn-gold { background: var(--gold); color: var(--dark); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-ink); }
.btn-sm { padding: 0.65em 1.15em; font-size: 0.85rem; }
.btn-lg { padding: 1em 1.8em; font-size: 1rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--dark); color: #fff; font-size: 0.8rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar span:first-child { color: var(--gold); font-weight: 600; letter-spacing: 0.01em; }
.topbar-right { color: rgba(255,255,255,0.78); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  color: var(--dark); background: var(--gold); box-shadow: var(--shadow-gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--text); }
.brand-text em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }

.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--text-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-ink); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.phone-link svg { color: var(--gold-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 9px; background: #fff; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow { display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 14px; }
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--text); }
.section-lede { font-size: 1.05rem; color: var(--text-soft); margin-top: 16px; }
.section-head.center .section-lede { margin-inline: auto; max-width: 56ch; }
.hl { color: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 56px; background:
  radial-gradient(70% 60% at 88% 0%, var(--gold-tint), transparent 60%),
  linear-gradient(180deg, #fffdf7, var(--bg)); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600;
  color: var(--gold-ink); background: var(--gold-tint); border: 1px solid #ffe49e;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 20px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-deep); box-shadow: 0 0 0 0 rgba(245,158,11,0.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); } 70% { box-shadow: 0 0 0 9px rgba(245,158,11,0); } 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); } }
.hero-title { font-weight: 800; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--text); }
.hero-lede { font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--text-soft); margin: 22px 0 30px; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-reviews { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-review { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--text-soft); }
.hero-review .stars { color: var(--star); letter-spacing: 1px; }
.hero-review strong { color: var(--text); }
.hero-review-logos { display: flex; gap: 8px; }
.badge-logo { font-size: 0.78rem; font-weight: 700; color: var(--text-soft); border: 1px solid var(--line); border-radius: 7px; padding: 5px 10px; background: #fff; }

.hero-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hero-float {
  position: absolute; left: 18px; bottom: 18px; display: flex; flex-direction: column;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
}
.hero-float strong { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--text); line-height: 1; }
.hero-float span { font-size: 0.8rem; color: var(--text-soft); margin-top: 3px; }

/* ---------- Trust badges ---------- */
.trust { padding: 0 0 8px; margin-top: -34px; position: relative; z-index: 2; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 11px; background: var(--gold-tint); color: var(--gold-deep); margin-bottom: 14px; }
.trust-ico svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.25; }
.trust-card p { font-size: 0.88rem; color: var(--text-soft); }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #ffe49e; }
.service-ico { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--dark); color: var(--gold); margin-bottom: 16px; }
.service-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-soft); }

/* ---------- Process ---------- */
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.process-num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--dark); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; }
.process-step h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 7px; }
.process-step p { font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 24px; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--gold); letter-spacing: -0.02em; }
.stat span { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-top: 8px; display: block; }

/* ---------- Brands ---------- */
.brand-grid { list-style: none; display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.brand-chip { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 78px; padding: 14px 10px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; text-align: center; transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.brand-chip:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.brand-chip span { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--text); }
.brand-chip em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); font-weight: 700; }
.brand-chip.featured { background: var(--gold); border-color: var(--gold); }
.brand-chip.featured span { color: var(--dark); }
.brand-fallback { text-align: center; margin-top: 26px; font-size: 0.95rem; color: var(--text-soft); }
.brand-fallback a { color: var(--gold-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Pricing ---------- */
.price-table { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 26px; border-bottom: 1px solid var(--line-soft); }
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: #fcfcfd; }
.price-name { font-weight: 600; color: var(--text); }
.price-val { font-family: var(--font-display); font-weight: 700; color: var(--text); white-space: nowrap; }
.price-val em { font-style: normal; font-weight: 500; font-size: 0.8rem; color: var(--text-dim); }
.price-note { max-width: 640px; margin: 20px auto 0; text-align: center; font-size: 0.85rem; color: var(--text-dim); }
.price-cta { text-align: center; margin-top: 26px; }

/* ---------- Areas + ZIP tool ---------- */
.zip-tool { max-width: 480px; margin: 0 auto 36px; text-align: center; }
.zip-tool label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-soft); margin-bottom: 12px; }
.zip-row { display: flex; gap: 10px; }
.zip-row input { flex: 1; font-family: inherit; font-size: 1rem; border: 1px solid var(--line); border-radius: 100px; padding: 0.85em 1.3em; transition: border-color 0.2s, box-shadow 0.2s; }
.zip-row input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,180,0,0.18); }
.zip-result { margin-top: 14px; font-weight: 600; font-size: 0.92rem; padding: 10px 14px; border-radius: var(--radius-sm); }
.zip-result.ok { background: var(--gold-tint); color: var(--gold-ink); }
.zip-result.no { background: #fdecec; color: #b3261e; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-list li { font-size: 0.9rem; font-weight: 600; color: var(--text-soft); padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line); background: #fff; transition: all 0.2s; }
.area-list li:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ---------- Schedule wizard ---------- */
.schedule-card { max-width: 840px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 40px; box-shadow: var(--shadow); }
.wizard-progress { list-style: none; display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.wizard-progress li { display: flex; align-items: center; gap: 9px; flex: 1; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
.wizard-progress li .dot { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 0.82rem; color: var(--text-dim); background: var(--bg-alt); border: 1px solid var(--line); flex-shrink: 0; transition: 0.3s; }
.wizard-progress li::after { content: ""; flex: 1; height: 2px; background: var(--line); border-radius: 2px; transition: 0.3s; }
.wizard-progress li:last-child { flex: 0; }
.wizard-progress li:last-child::after { display: none; }
.wizard-progress li.is-active { color: var(--text); }
.wizard-progress li.is-active .dot { color: var(--dark); background: var(--gold); border-color: var(--gold); }
.wizard-progress li.is-done { color: var(--gold-ink); }
.wizard-progress li.is-done .dot { color: var(--dark); background: var(--gold); border-color: var(--gold); }
.wizard-progress li.is-done::after { background: var(--gold); }

.schedule-form { min-width: 0; }
.schedule-form .sched-step { display: none; border: none; min-width: 0; padding: 0; }
.schedule-form .sched-step.is-active { display: block; animation: rise 0.4s var(--ease) both; }
.sched-step legend { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 18px; }
.step-no { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-weight: 800; font-size: 0.85rem; color: var(--dark); background: var(--gold); flex-shrink: 0; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 22px; }
.wizard-hint { font-size: 0.85rem; font-weight: 600; color: var(--gold-ink); display: inline-flex; align-items: center; }

.date-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(76px, 76px); gap: 10px; overflow-x: auto; padding-bottom: 8px; min-width: 0; scrollbar-width: thin; }
.date-chip { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 14px 8px; border-radius: var(--radius-sm); background: var(--bg-alt); border: 1px solid var(--line); cursor: pointer; transition: 0.25s; text-align: center; }
.date-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.date-chip .dow { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }
.date-chip .day { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.date-chip .mon { font-size: 0.7rem; color: var(--text-soft); }
.date-chip.is-selected { background: var(--gold); border-color: var(--gold); }
.date-chip.is-selected .dow, .date-chip.is-selected .mon { color: #6b4e00; }
.date-chip.is-today .dow { color: var(--gold-ink); }

.time-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.slot { cursor: pointer; }
.slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot-face { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; padding: 16px 10px; border-radius: var(--radius-sm); background: var(--bg-alt); border: 1px solid var(--line); transition: 0.25s; }
.slot-face strong { font-size: 0.92rem; font-weight: 700; }
.slot-face em { font-style: normal; font-size: 0.74rem; color: var(--text-soft); }
.slot:hover .slot-face { border-color: var(--gold); transform: translateY(-2px); }
.slot input:focus-visible + .slot-face { box-shadow: 0 0 0 4px rgba(255,180,0,0.22); }
.slot input:checked + .slot-face { background: var(--gold); border-color: var(--gold); }
.slot input:checked + .slot-face em { color: #6b4e00; }
.slot-asap .slot-face { border-style: dashed; border-color: var(--gold-deep); }

.sched-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field-wide { grid-column: 1 / -1; }
.field span { font-size: 0.8rem; font-weight: 600; color: var(--text-soft); }
.field .opt { font-weight: 400; color: var(--text-dim); }
.field input { width: 100%; font-family: inherit; font-size: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.85em 1em; transition: 0.2s; }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,180,0,0.18); }
.sched-summary { display: flex; flex-direction: column; gap: 2px; margin: 8px 0 22px; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--gold-tint); border: 1px dashed var(--gold-deep); }
.summary-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); }
.summary-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.form-success { margin-top: 16px; padding: 14px; border-radius: var(--radius-sm); background: var(--gold-tint); border: 1px solid var(--gold-deep); color: var(--gold-ink); font-weight: 700; text-align: center; }
.form-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 10px; }
.hero-form { margin-bottom: 28px; }

/* ---------- FAQ / accordion ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq .section-head { text-align: center; margin-inline: auto; }
.faq .section-lede a { color: var(--gold-ink); font-weight: 700; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.acc-item.is-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: none; border: none; text-align: left; }
.acc-q, .acc-title { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.acc-num { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--gold-ink); min-width: 26px; }
.acc-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-plus::before, .acc-plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold-deep); border-radius: 2px; }
.acc-plus::before { width: 18px; height: 2px; }
.acc-plus::after { width: 2px; height: 18px; transition: transform 0.3s var(--ease); }
.acc-item.is-open .acc-plus::after { transform: rotate(90deg); opacity: 0; }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s var(--ease); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > .acc-body { overflow: hidden; }
.acc-body { padding: 0 22px; color: var(--text-soft); font-size: 0.95rem; }
.acc-item.is-open .acc-body { padding-bottom: 20px; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--star); letter-spacing: 2px; font-size: 0.95rem; }
.review-card blockquote { font-size: 1rem; line-height: 1.5; color: var(--text); }
.review-card figcaption { font-weight: 700; font-size: 0.9rem; color: var(--text); margin-top: auto; }
.review-card figcaption em { font-style: normal; font-weight: 400; color: var(--text-dim); }

/* ---------- Closing paragraph ---------- */
.closing { padding: 64px 0; }
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing-inner p { font-size: 1.08rem; line-height: 1.7; color: var(--text-soft); }
.closing-inner strong { color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 48px 24px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--dark); letter-spacing: -0.02em; }
.cta-inner p { color: #5b4400; font-weight: 600; margin-top: 6px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-gold { background: #fff; }
.cta-band .btn-gold:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #fff; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-logo .brand-text strong { color: #fff; }
.footer-logo .brand-text em { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.62); max-width: 34ch; }
.footer-stars { color: var(--gold); font-size: 0.9rem; margin-top: 14px; }
.footer-stars span { color: rgba(255,255,255,0.6); margin-left: 4px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: rgba(255,255,255,0.66); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-base { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 22px 26px; }
.footer-base p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ---------- Mobile call bar ---------- */
.mobile-call { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; align-items: center; justify-content: center; gap: 10px; padding: 15px; border-radius: 100px; font-family: var(--font-display); font-weight: 700; color: var(--dark); background: var(--gold); box-shadow: 0 12px 30px -8px rgba(245,158,11,0.6); }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media img { min-height: 320px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
  .trust-grid, .service-grid, .review-grid, .process-grid, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-asap { grid-column: 1 / -1; }
  .sched-fields { grid-template-columns: 1fr; }
  .schedule-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .phone-link { display: none; }
  .mobile-call { display: flex; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 80px; }
}
@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-progress li { font-size: 0; gap: 0; }
  .wizard-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
