﻿/* ─────────────────────────────────────────────────────────────────────────────
   F&S Consulting — Shared CSS for new components
   Loaded AFTER each page's inline <style> so it can override / extend.
   Uses the existing CSS custom properties defined in index.html:root.
   ──────────────────────────────────────────────────────────────────────────── */

/* ── Lang toggle: real button styling ───────────────────────────────────── */
button.lang-toggle, .lang-toggle[role="button"] {
  font-family: inherit;
}
.lang-toggle:focus-visible {
  outline: 2px solid var(--gold-lt, #e8b020);
  outline-offset: 2px;
}

/* ── Quiz section ───────────────────────────────────────────────────────── */
#quiz {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}
.quiz-header { text-align: center; margin-bottom: 50px; }
.quiz-header .section-subtitle { margin: 0 auto; }
.quiz-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white, #fff);
  border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(11,30,61,.08);
  overflow: hidden;
}
.quiz-progress {
  height: 6px;
  background: var(--lgray, #e5e7eb);
  position: relative;
}
.quiz-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold, #c8960c), var(--gold-lt, #e8b020));
  width: 0%;
  transition: width .35s ease;
}
.quiz-body { padding: 40px 44px 36px; }
.quiz-step__meta {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold, #c8960c); margin-bottom: 12px;
}
.quiz-step__q {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; line-height: 1.3;
  color: var(--navy, #0b1e3d); margin-bottom: 26px;
}
.quiz-step__opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.quiz-opt {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--lgray, #e5e7eb); border-radius: 12px;
  padding: 14px 18px; cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  font-size: .95rem; color: var(--text, #1f2937);
  background: var(--white, #fff);
}
.quiz-opt:hover { border-color: var(--gold-lt, #e8b020); background: rgba(200,150,12,.04); }
.quiz-opt.is-selected {
  border-color: var(--gold, #c8960c);
  background: rgba(200,150,12,.08);
  box-shadow: 0 0 0 3px rgba(200,150,12,.12);
}
.quiz-opt input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-opt__dot {
  width: 20px; height: 20px; border: 2px solid var(--lgray, #e5e7eb);
  border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  transition: border-color .2s, background .2s;
}
.quiz-opt.is-selected .quiz-opt__dot {
  border-color: var(--gold, #c8960c);
  background: var(--gold, #c8960c);
}
.quiz-opt.is-selected .quiz-opt__dot::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff;
}
.quiz-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.quiz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9rem; padding: 12px 26px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: transform .2s, background .2s, opacity .2s;
}
.quiz-btn--ghost {
  background: transparent; color: var(--gray, #6b7280);
  border: 1.5px solid var(--lgray, #e5e7eb);
}
.quiz-btn--ghost:hover { color: var(--navy, #0b1e3d); border-color: var(--gray, #6b7280); }
.quiz-btn--ghost:disabled { opacity: .35; cursor: not-allowed; }
.quiz-btn--primary {
  background: var(--gold, #c8960c); color: var(--navy, #0b1e3d);
}
.quiz-btn--primary:hover { background: var(--gold-lt, #e8b020); transform: translateY(-1px); }
.quiz-btn--primary:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* Quiz results */
.quiz-result { padding: 40px 44px 44px; text-align: center; }
.quiz-gauge {
  width: 160px; height: 160px; margin: 0 auto 24px; position: relative;
}
.quiz-gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.quiz-gauge__track { stroke: var(--lgray, #e5e7eb); }
.quiz-gauge__fill {
  transition: stroke-dashoffset 1.1s ease, stroke .4s ease;
}
.quiz-gauge__val {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700;
  color: var(--navy, #0b1e3d);
}
.quiz-tier {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 50px;
}
.quiz-tier--low  { background: rgba(34,197,94,.15);  color: #15803d; }
.quiz-tier--med  { background: rgba(234,179,8,.18);  color: #a16207; }
.quiz-tier--high { background: rgba(239,68,68,.15);  color: #b91c1c; }
.quiz-result__msg {
  font-size: 1.02rem; color: var(--gray, #6b7280);
  max-width: 480px; margin: 16px auto 26px; line-height: 1.6;
}
.quiz-result__gaps {
  text-align: left; background: var(--offwhite, #f5f7fa);
  border-radius: 12px; padding: 20px 24px; margin-bottom: 28px;
}
.quiz-result__gaps h4 {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy, #0b1e3d); margin-bottom: 12px; font-weight: 700;
}
.quiz-result__gaps ul { list-style: none; padding: 0; margin: 0; }
.quiz-result__gaps li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: .9rem; color: var(--text, #1f2937); line-height: 1.5;
}
.quiz-result__gaps li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold, #c8960c); font-weight: 700;
}
.quiz-result__ctas {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px;
}
.quiz-email {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--lgray, #e5e7eb);
  text-align: left;
}
.quiz-email label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--gray, #6b7280); margin-bottom: 8px;
}
.quiz-email .quiz-email__row { display: flex; gap: 8px; }
.quiz-email input[type="email"] {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--lgray, #e5e7eb);
  border-radius: 10px; font-size: .92rem; font-family: inherit;
}
.quiz-email input[type="email"]:focus {
  outline: none; border-color: var(--gold, #c8960c);
}
.quiz-restart {
  display: inline-block; margin-top: 18px; font-size: .85rem;
  color: var(--gray, #6b7280); text-decoration: underline; cursor: pointer;
  background: none; border: none; padding: 0;
}

/* ── Lead-magnet modal ──────────────────────────────────────────────────── */
.fs-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.fs-modal.is-open { display: flex; }
.fs-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11,30,61,.7); backdrop-filter: blur(4px);
}
.fs-modal__dialog {
  position: relative;
  width: 100%; max-width: 520px;
  background: var(--white, #fff);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  max-height: 90vh; overflow-y: auto;
  animation: fsModalIn .25s ease-out;
}
@keyframes fsModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.fs-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--offwhite, #f5f7fa); border: none;
  color: var(--gray, #6b7280); font-size: 1rem; cursor: pointer;
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.fs-modal__close:hover { background: var(--lgray, #e5e7eb); color: var(--navy, #0b1e3d); }
.fs-modal__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(200,150,12,.15); color: var(--gold, #c8960c);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px;
}
.fs-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; color: var(--navy, #0b1e3d); line-height: 1.3; margin-bottom: 10px;
}
.fs-modal__text {
  color: var(--gray, #6b7280); font-size: .95rem; line-height: 1.6; margin-bottom: 22px;
}
.fs-modal form .form-group { margin-bottom: 14px; }
.fs-modal label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--text, #1f2937); margin-bottom: 6px;
}
.fs-modal input[type="text"], .fs-modal input[type="email"] {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--lgray, #e5e7eb); border-radius: 10px;
  font-size: .95rem; font-family: inherit; transition: border-color .2s;
}
.fs-modal input:focus { outline: none; border-color: var(--gold, #c8960c); }
.fs-modal .modal-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8rem; color: var(--gray, #6b7280); margin: 4px 0 18px;
  line-height: 1.5;
}
.fs-modal .modal-consent input { margin-top: 3px; flex-shrink: 0; }
.fs-modal .modal-submit {
  width: 100%; background: var(--gold, #c8960c); color: var(--navy, #0b1e3d);
  font-weight: 700; font-size: .95rem; padding: 14px 24px;
  border: none; border-radius: 50px; cursor: pointer;
  transition: background .2s, transform .2s;
}
.fs-modal .modal-submit:hover { background: var(--gold-lt, #e8b020); transform: translateY(-1px); }
.fs-modal .modal-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Promo modal overrides ──────────────────────────────────────────────── */
.fs-modal__dialog--promo { text-align: center; padding-top: 40px; }
.fs-modal__icon--promo {
  background: rgba(34,197,94,.15); color: #16a34a;
  margin: 0 auto 14px;
}
.fs-modal__badge {
  display: inline-block;
  background: #16a34a; color: #fff;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 12px;
}
.fs-modal__promo-cta {
  display: flex; flex-direction: column; gap: 10px;
}
.fs-modal__promo-cta .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold, #c8960c); color: var(--navy, #0b1e3d);
  font-weight: 700; font-size: .95rem; padding: 14px 24px;
  border: none; border-radius: 50px; cursor: pointer;
  text-decoration: none; transition: background .2s, transform .2s;
}
.fs-modal__promo-cta .btn-primary:hover { background: var(--gold-lt, #e8b020); transform: translateY(-1px); }
.btn-text-dismiss {
  background: none; border: none; color: var(--gray, #6b7280);
  font-size: .85rem; cursor: pointer; padding: 6px;
  transition: color .2s;
}
.btn-text-dismiss:hover { color: var(--navy, #0b1e3d); text-decoration: underline; }

/* ── Cache consent banner ───────────────────────────────────────────────── */
.fs-cache-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: var(--navy, #0b1e3d); color: #fff;
  padding: 16px 20px; font-size: .9rem; line-height: 1.5;
  transform: translateY(0); transition: transform .35s ease, opacity .35s ease;
}
.fs-cache-banner.is-hidden {
  transform: translateY(120%); opacity: 0; pointer-events: none;
}
.fs-cache-banner__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.fs-cache-banner__text {
  display: flex; align-items: center; gap: 10px; flex: 1 1 320px;
}
.fs-cache-banner__text i { font-size: 1.1rem; color: var(--gold, #c8960c); }
.fs-cache-banner__actions {
  display: flex; gap: 8px; flex-shrink: 0;
}
.fs-cache-banner__accept,
.fs-cache-banner__reject {
  padding: 8px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  cursor: pointer; border: none; transition: background .2s, transform .2s;
}
.fs-cache-banner__accept {
  background: var(--gold, #c8960c); color: var(--navy, #0b1e3d);
}
.fs-cache-banner__accept:hover { background: var(--gold-lt, #e8b020); }
.fs-cache-banner__reject {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.fs-cache-banner__reject:hover {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6);
}
@media (max-width: 640px) {
  .fs-cache-banner__inner { flex-direction: column; align-items: flex-start; }
  .fs-cache-banner__actions { width: 100%; }
  .fs-cache-banner__accept, .fs-cache-banner__reject { flex: 1; }
}

/* ── Floating consultation button ──────────────────────────────────────── */
.fs-float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--gold, #c8960c); color: var(--navy, #0b1e3d);
  font-weight: 700; font-size: .88rem;
  padding: 14px 22px; border-radius: 50px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 30px rgba(11,30,61,.28);
  transition: background .2s, transform .2s, opacity .3s;
}
.fs-float-cta:hover { background: var(--gold-lt, #e8b020); transform: translateY(-2px); }
.fs-float-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.fs-float-cta::before {
  content: ""; position: absolute; inset: 0; border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(200,150,12,.55);
  animation: fs-fab-pulse 1.6s ease-out 4;
  pointer-events: none;
}
@keyframes fs-fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,150,12,.55); }
  100% { box-shadow: 0 0 0 18px rgba(200,150,12,0); }
}
@media (prefers-reduced-motion: reduce) {
  .fs-float-cta::before { animation: none; }
}
@media (max-width: 680px) {
  .fs-float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .82rem; }
  .fs-float-cta span { display: none; }
  .fs-float-cta::after { content: "Book"; }
}

/* ── FAQ accordion ──────────────────────────────────────────────────────── */
#faq { padding: 100px 0; background: var(--offwhite, #f5f7fa); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white, #fff);
  border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: rgba(200,150,12,.4); box-shadow: 0 4px 18px rgba(11,30,61,.06); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600; font-size: 1rem; color: var(--navy, #0b1e3d);
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem; font-weight: 400; color: var(--gold, #c8960c);
  transition: transform .25s;
  width: 28px; height: 28px; display: grid; place-items: center; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 24px 20px;
  color: var(--gray, #6b7280); font-size: .94rem; line-height: 1.7;
}

/* ── ROI estimator ──────────────────────────────────────────────────────── */
#roi { padding: 100px 0; }
.roi-header { text-align: center; margin-bottom: 50px; }
.roi-header .section-subtitle { margin: 0 auto; }
.roi-wrap {
  max-width: 880px; margin: 0 auto;
  background: var(--white, #fff);
  border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(11,30,61,.06);
}
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.roi-inputs { display: flex; flex-direction: column; gap: 22px; }
.roi-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .85rem; font-weight: 600; color: var(--text, #1f2937); margin-bottom: 10px;
}
.roi-field label .roi-value {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold, #c8960c);
}
.roi-field input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none; height: 6px;
  background: var(--lgray, #e5e7eb); border-radius: 3px; outline: none;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold, #c8960c); cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(200,150,12,.4);
}
.roi-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold, #c8960c); cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(200,150,12,.4);
}
.roi-outputs {
  background: var(--navy, #0b1e3d); color: #fff;
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.roi-out__row {
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.roi-out__row:last-of-type { border-bottom: none; padding-bottom: 0; }
.roi-out__lbl {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.6); margin-bottom: 6px;
}
.roi-out__val {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--gold-lt, #e8b020);
}
.roi-disclaimer {
  font-size: .8rem; color: var(--gray, #6b7280);
  text-align: center; margin-top: 22px; max-width: 680px; margin-left: auto; margin-right: auto;
}
.roi-cta-wrap { text-align: center; margin-top: 22px; }

@media (max-width: 760px) {
  .roi-grid { grid-template-columns: 1fr; gap: 28px; }
  .roi-wrap { padding: 28px 22px; }
}

/* ── Testimonials carousel ──────────────────────────────────────────────── */
.tst-carousel {
  position: relative; overflow: hidden;
  max-width: 880px; margin: 0 auto;
}
.tst-track {
  display: flex; gap: 24px; transition: transform .45s ease;
  will-change: transform;
}
.tst-slide {
  flex: 0 0 100%;
  background: var(--white, #fff);
  border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 18px; padding: 36px;
  box-shadow: 0 4px 18px rgba(11,30,61,.05);
}
.tst-quote { font-size: 1.05rem; line-height: 1.7; color: var(--text, #1f2937); margin-bottom: 20px; font-style: italic; }
.tst-author { font-weight: 700; color: var(--navy, #0b1e3d); }
.tst-role { font-size: .85rem; color: var(--gray, #6b7280); }
.tst-controls {
  display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 24px;
}
.tst-nav {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--lgray, #e5e7eb);
  background: var(--white, #fff); color: var(--navy, #0b1e3d);
  cursor: pointer; transition: border-color .2s, color .2s; font-size: .85rem;
}
.tst-nav:hover { border-color: var(--gold, #c8960c); color: var(--gold, #c8960c); }
.tst-dots { display: flex; gap: 8px; }
.tst-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lgray, #e5e7eb);
  border: none; cursor: pointer; transition: background .2s, transform .2s;
}
.tst-dot.is-active { background: var(--gold, #c8960c); transform: scale(1.3); }

/* ── Shared form status / success ──────────────────────────────────────── */
.fs-form-status { margin-top: 12px; font-size: .88rem; color: var(--gray, #6b7280); }
.fs-form-status--error { color: #b91c1c; }
.fs-form-success {
  text-align: center; padding: 14px 0;
}
.fs-form-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(34,197,94,.15); color: #15803d;
  display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 14px;
}
.fs-form-success__msg {
  font-size: .95rem; color: var(--text, #1f2937); line-height: 1.6;
}

/* ── Hero secondary CTA ─────────────────────────────────────────────────── */
.btn-secondary-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid var(--gold, #c8960c);
  font-weight: 700; font-size: .92rem;
  padding: 12px 26px; border-radius: 50px; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-secondary-cta:hover { background: var(--gold, #c8960c); color: var(--navy, #0b1e3d); transform: translateY(-1px); }

/* ── Body scroll lock for modal ─────────────────────────────────────────── */
body.fs-no-scroll { overflow: hidden; }

/* ── Mobile nav overlay stacking ────────────────────────────────────────────
   The full-screen mobile menu must sit ABOVE the fixed navbar (z-index:1000),
   otherwise the navbar covers the close (✕) button and the hamburger only
   appears to "open" with no way to close. */
#mobile-nav.open { z-index: 1200; }
#mobile-nav .close-btn { z-index: 1; }

/* ── Map embed ──────────────────────────────────────────────────────────── */
.contact-map {
  margin-top: 26px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.contact-map iframe { width: 100%; height: 200px; border: 0; display: block; filter: invert(.92) hue-rotate(180deg); }

/* ── Mobile nav (hamburger) ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 0; right: 0; width: 80%; max-width: 320px; height: 100vh;
  background: var(--navy, #0b1e3d); z-index: 1100;
  padding: 80px 28px 28px;
  transform: translateX(100%); transition: transform .3s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,.3);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 14px 0; color: rgba(255,255,255,.85);
  font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { color: var(--gold-lt, #e8b020); }
.mobile-nav .nav-cta { display: block; margin-top: 18px; text-align: center; }
.mobile-nav-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border: none; border-radius: 50%; color: #fff; cursor: pointer; font-size: 1rem;
}
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 1099;
}
.mobile-nav-overlay.is-open { display: block; }
@media (max-width: 680px) {
  .mobile-nav { display: block; }
}

/* ── Service subpage bottom CTA ─────────────────────────────────────────── */
.subpage-cta {
  background: linear-gradient(135deg, var(--navy, #0b1e3d) 0%, var(--blue, #1a3a6b) 100%);
  color: #fff; padding: 70px 0; text-align: center;
}
.subpage-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px;
}
.subpage-cta p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 26px; font-size: 1rem; }
.subpage-cta .btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Promotion / bundle pages ───────────────────────────────────────────── */
.promo-steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.promo-steps li { position: relative; padding-left: 52px; font-size: .95rem; color: var(--text, #1f2937); line-height: 1.6; }
.promo-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -2px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy, #0b1e3d); color: var(--gold-lt, #e8b020);
  display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.promo-deliverable {
  background: rgba(200,150,12,.08); border: 1px solid rgba(200,150,12,.35);
  border-radius: 14px; padding: 20px 22px; margin-top: 8px;
}
.promo-deliverable strong { color: var(--navy, #0b1e3d); }
.promo-aside-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--navy, #0b1e3d); margin-bottom: 4px; }
.promo-aside-note { font-size: .8rem; color: var(--gray, #6b7280); margin-bottom: 18px; }
.promo-faq { margin-top: 8px; }
.promo-faq details { border-bottom: 1px solid var(--lgray, #e5e7eb); padding: 14px 0; }
.promo-faq summary { cursor: pointer; font-weight: 700; color: var(--navy, #0b1e3d); font-size: 1rem; list-style: none; }
.promo-faq summary::-webkit-details-marker { display: none; }
.promo-faq summary::after { content: "+"; float: right; color: var(--gold, #c8960c); font-weight: 800; }
.promo-faq details[open] summary::after { content: "–"; }
.promo-faq p { margin-top: 10px; color: var(--gray, #6b7280); font-size: .94rem; line-height: 1.65; }
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
@media (max-width: 720px) { .promo-grid { grid-template-columns: 1fr; } }

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Accessibility: focus-visible everywhere ────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-lt, #e8b020);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════════════
   RENOVATION R2 — challenge selector, portfolio, offers, carousel, confetti
   ════════════════════════════════════════════════════════════════════════ */

/* ── Challenge selector ─────────────────────────────────────────────────── */
#challenge { padding: 90px 0; background: var(--offwhite, #f5f7fa); }
.challenge-header { text-align: center; margin-bottom: 46px; }
.challenge-header .section-subtitle { margin: 0 auto; }
.challenge-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.challenge-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white, #fff); border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 16px; padding: 26px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.challenge-card:hover {
  transform: translateY(-4px); border-color: var(--gold, #c8960c);
  box-shadow: 0 14px 32px rgba(11,30,61,.10);
}
.challenge-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(200,150,12,.12); color: var(--gold, #c8960c);
  display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 16px;
}
.challenge-card h3 {
  font-size: 1.05rem; color: var(--navy, #0b1e3d); margin-bottom: 8px; line-height: 1.35;
}
.challenge-card p {
  font-size: .9rem; color: var(--gray, #6b7280); line-height: 1.6; margin-bottom: 16px; flex-grow: 1;
}
.challenge-cta { font-size: .85rem; font-weight: 700; color: var(--gold, #c8960c); }
.challenge-card i.fa-arrow-right { color: var(--gold, #c8960c); font-size: .75rem; transition: transform .25s ease; }
.challenge-card:hover i.fa-arrow-right { transform: translateX(4px); }
.challenge-quiz-link { text-align: center; margin-top: 32px; }
.challenge-quiz-link a {
  font-weight: 700; color: var(--navy, #0b1e3d); border-bottom: 2px solid var(--gold-lt, #e8b020);
  padding-bottom: 2px; font-size: .95rem;
}
.challenge-quiz-link a:hover { color: var(--gold, #c8960c); }

/* ── Portfolio / case studies ───────────────────────────────────────────── */
#portfolio { padding: 90px 0; }
.portfolio-header { text-align: center; margin-bottom: 50px; }
.portfolio-header .section-subtitle { margin: 0 auto; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.case-card {
  display: flex; flex-direction: column;
  background: var(--white, #fff); border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 18px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(11,30,61,.12); }
.case-thumb {
  position: relative; height: 132px;
  display: grid; place-items: center; color: #fff; font-size: 2.4rem;
  background: linear-gradient(135deg, var(--navy, #0b1e3d), var(--blue, #1a3a6b));
}
.case-thumb--llm   { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.case-thumb--pos   { background: linear-gradient(135deg, #065f46, #16a34a); }
.case-thumb--cyber { background: linear-gradient(135deg, #0b1e3d, #b91c1c); }
.case-thumb--web   { background: linear-gradient(135deg, #92710a, #e8b020); }
.case-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--navy, #0b1e3d);
  font-size: .7rem; font-weight: 700; letter-spacing: .03em;
  padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
}
.case-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.case-client { font-size: .78rem; color: var(--gray, #6b7280); margin-bottom: 8px; }
.case-client strong { color: var(--navy, #0b1e3d); font-weight: 600; }
.case-body h3 { font-size: 1.04rem; color: var(--navy, #0b1e3d); line-height: 1.35; margin-bottom: 12px; }
.case-metric {
  display: inline-flex; align-items: flex-start; gap: 7px;
  font-size: .85rem; font-weight: 700; color: #15803d; margin-bottom: 12px;
}
.case-metric i { margin-top: 3px; }
.case-desc { font-size: .88rem; color: var(--gray, #6b7280); line-height: 1.6; margin-bottom: 14px; }
.case-quote {
  font-size: .88rem; font-style: italic; color: var(--text, #1f2937);
  border-left: 3px solid var(--gold-lt, #e8b020); padding-left: 12px; margin-bottom: 18px;
}
.case-cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; color: var(--gold, #c8960c);
}
.case-cta i { font-size: .75rem; transition: transform .25s ease; }
.case-cta:hover i { transform: translateX(4px); }

/* ── Current offers ─────────────────────────────────────────────────────── */
#offers { padding: 90px 0; background: var(--offwhite, #f5f7fa); }
.offers-header { text-align: center; margin-bottom: 46px; }
.offers-header .section-subtitle { margin: 0 auto; }
.offers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.offer-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white, #fff); border: 1px solid var(--lgray, #e5e7eb);
  border-radius: 16px; padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(11,30,61,.10); }
.offer-card--feature { border-color: var(--gold, #c8960c); box-shadow: 0 10px 30px rgba(200,150,12,.14); }
.offer-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(200,150,12,.14); color: var(--gold, #c8960c);
  font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 50px;
}
.offer-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--navy, #0b1e3d); color: var(--gold-lt, #e8b020);
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px;
}
.offer-card--feature .offer-icon { background: var(--gold, #c8960c); color: var(--navy, #0b1e3d); }
.offer-card h3 { font-size: 1.05rem; color: var(--navy, #0b1e3d); margin-bottom: 10px; line-height: 1.35; }
.offer-card p { font-size: .88rem; color: var(--gray, #6b7280); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.offer-link { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 700; color: var(--gold, #c8960c); }
.offer-link i { font-size: .75rem; transition: transform .25s ease; }
.offer-card:hover .offer-link i { transform: translateX(4px); }
.offer-price {
  font-weight: 800; font-size: 1.05rem; color: var(--navy, #0b1e3d);
  margin: 0 0 10px; flex-grow: 0;
}
.offer-card--feature .offer-price { color: var(--gold, #c8960c); }
.offer-badge--hot { background: var(--gold, #c8960c); color: #fff; }
.offers-foot { text-align: center; margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center; }
.offers-foot a { font-weight: 700; font-size: .9rem; color: var(--navy, #0b1e3d); border-bottom: 2px solid var(--gold, #c8960c); padding-bottom: 2px; }
.offers-foot a:hover { color: var(--gold, #c8960c); }

/* ── Testimonials carousel wrapper ──────────────────────────────────────── */
.testimonial-carousel .section-label { margin-bottom: 18px; }
.tst-slide .stars { color: var(--gold, #c8960c); font-size: .85rem; margin-bottom: 14px; }

/* ── Confetti canvas ────────────────────────────────────────────────────── */
#fs-confetti {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 4000;
}

/* ── Spam-folder warning on email forms ───────────────────────────────── */
.fs-spam-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin: 0 0 14px;
  border-radius: 8px;
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  color: #991b1b;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.5;
}
.fs-spam-notice i {
  color: #dc2626;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.fs-spam-notice span {
  display: block;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .challenge-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .challenge-grid, .portfolio-grid, .offers-grid { grid-template-columns: 1fr; }
}

/* -- Language picker dropdown ---------------------------------------------- */
.lang-picker {
  position: relative;
  display: inline-block;
}
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
}
.lang-toggle-btn:hover {
  background: rgba(255,255,255,.18);
}
.lang-toggle-btn .lang-current {
  min-width: 1.2em;
  text-align: center;
  font-weight: 600;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--navy, #0b1e3d);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 6px;
  min-width: 150px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 1001;
}
.lang-dropdown button {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-family: inherit;
  font-size: .82rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.lang-dropdown button:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.lang-dropdown button.is-active,
.lang-dropdown button[aria-pressed="true"] {
  background: var(--gold, #c8960c);
  color: #0b1e3d;
  font-weight: 600;
}
.lang-dropdown button:focus-visible {
  outline: 2px solid var(--gold-lt, #e8b020);
  outline-offset: 2px;
}
.lang-picker.is-open .lang-dropdown {
  display: flex;
}
@media (max-width: 880px) {
  .nav-inner .lang-picker { display: none; }
}
#mobile-nav .lang-dropdown { top: auto; bottom: calc(100% + 6px); }

