:root {
  --bg: #0b0b0d;
  --bg-soft: #121317;
  --panel: rgba(18, 19, 23, 0.92);
  --gold: #d4a437;
  --gold-bright: #f0c96a;
  --green: #25a244;
  --text: #f5f2e8;
  --muted: #c9c1ae;
  --border: rgba(212, 164, 55, 0.24);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 12px 25px rgba(212, 164, 55, 0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
a,
input,
textarea {
  font: inherit;
  touch-action: manipulation;
}

button {
  border: none;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--flush-top {
  padding-top: 0;
}

.section-tag {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-lede {
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 2rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: block;
}

.brand-title {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Nav-scoped brand block: tighter vertical spacing */
.nav .brand-title {
  font-size: 0.92rem;
  line-height: 1.25;
}

.nav .brand-subtitle {
  font-size: 0.68rem;
  line-height: 1.2;
  margin-top: 1px;
}

.nav .license-footer {
  font-size: 0.65rem;
  line-height: 1.2;
  margin-top: 0;
}

.verify-link {
  font-size: 0.7rem;
  color: var(--gold-bright);
  text-decoration: none;
  transition: color var(--transition);
}

.verify-link:hover {
  text-decoration: underline;
}

.verify-link--inline {
  margin-left: 6px;
}

.verify-link--block {
  display: inline-block;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0.5rem 0.25rem;
  transition: color var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.nav-signup {
  color: var(--gold);
  font-weight: 700;
}

.nav-links a.nav-signup:hover {
  color: var(--gold-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions a {
  min-width: 292px;
  text-align: center;
}

.lang-btn,
.phone-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--transition), filter var(--transition),
    border-color var(--transition), color var(--transition);
}

.lang-btn,
.phone-btn,
.primary-btn {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: none;
  color: #000 !important;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.lang-btn:hover,
.phone-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.lang-btn:active,
.phone-btn:active,
.primary-btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.secondary-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.secondary-btn:active {
  border-color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.94) 0%, rgba(11, 11, 13, 0.75) 45%, rgba(11, 11, 13, 0.65) 100%),
    url("hero-bg.webp") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 164, 55, 0.12), transparent 25%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

.hero-content h1 span:last-child {
  color: var(--gold);
}

.hero-text {
  max-width: 55ch;
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.service-icon-card {
  background: rgba(18, 19, 23, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  min-height: 110px;
  transition: transform var(--transition), border-color var(--transition);
}

.service-icon-card:hover,
.info-card:hover,
.step-card:hover,
.testimonial-card:hover,
.contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 201, 106, 0.45);
}

.service-icon-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.service-icon-card p {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}

.quiz-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.quiz-label {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.quiz-subtext {
  margin-bottom: 1.25rem;
}

.progress-top {
  margin-bottom: 1.2rem;
}

#stepText {
  display: inline-block;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-soft);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.25s ease;
}

.quiz-question {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.answers {
  display: grid;
  gap: 0.75rem;
}

.answer-btn {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.answer-btn:hover,
.answer-btn.selected {
  border-color: var(--gold);
  background: rgba(212, 164, 55, 0.08);
  box-shadow: 0 0 0 1px rgba(212, 164, 55, 0.2);
}

.quiz-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.quiz-buttons button {
  flex: 1;
}

.quiz-note {
  font-size: 0.82rem;
  margin-top: 0.9rem;
}

.quiz-error {
  color: var(--gold-bright);
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

.contact-strip {
  padding: 1.2rem 0;
  background: #0f1013;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform var(--transition), border-color var(--transition);
}

.contact-item strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.five-up {
  grid-template-columns: repeat(5, 1fr);
}

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

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

.info-card,
.step-card,
.testimonial-card,
.final-cta-box,
.result-box,
.lead-form {
  background: linear-gradient(180deg, rgba(18, 19, 23, 0.95), rgba(12, 13, 16, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: transform var(--transition), border-color var(--transition);
}

.info-card--highlight {
  border-color: rgba(240, 201, 106, 0.35);
}

.info-card h3,
.step-card h3,
.testimonial-card strong,
.lead-form h3,
.result-box h3 {
  color: var(--text);
}

.info-card h3,
.step-card h3,
.lead-form h3,
.result-box h3 {
  margin-bottom: 0.75rem;
}

.comparison-title {
  color: var(--muted);
  margin-bottom: 1rem;
}

.comparison-title--ours {
  color: var(--gold-bright);
}

.step-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(212, 164, 55, 0.12);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin-bottom: 1rem;
}

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.final-cta-box.stacked {
  display: block;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.result-box h3 {
  color: var(--gold);
}

.result-box ul {
  margin: 1rem 0 0 1rem;
  color: var(--muted);
}

.lead-form {
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9a9080;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(212, 164, 55, 0.1);
  border: 1px solid rgba(212, 164, 55, 0.22);
  color: var(--text);
}

.site-footer {
  padding: 1.5rem 0 1rem;
  border-top: 1px solid var(--border);
  background: #090a0c;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0.75rem;
}

.footer-col-pair {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-label {
  color: var(--gold);
}

.footer-license {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.footer-address {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-nav-heading {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-nav-heading + ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav-heading + ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-nav-heading + ul li a:hover {
  color: var(--gold);
}

.footer-areas {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
}

.footer-areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  max-width: 440px;
}

.article-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 0.01em;
}

.footer-areas-list li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-areas-list li a:hover {
  color: var(--gold);
}

.footer-areas-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.footer-areas-note a {
  color: var(--gold-bright);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-areas-note a:hover {
  text-decoration: underline;
}

.footer-areas-region {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0.6rem;
}

.footer-areas-link {
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-areas-link:hover {
  text-decoration: underline;
}

.footer-copyright {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 164, 55, 0.08);
}

.contact-item a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.floating-call-btn {
  display: none;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 2rem;
}

.trust-pill,
.faq-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.trust-label {
  display: block;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.trust-pill small,
.form-promise,
.license-footer {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-card h3 {
  color: var(--text);
  margin-bottom: 0.65rem;
}

/* ── Article shell (blog, city, service pages) ── */
.article-main {
  padding: 5rem 0;
}

.article-shell {
  width: min(850px, calc(100% - 2rem));
  margin: 0 auto;
}

.article-shell h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.article-shell .article-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.article-shell h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-shell h3 {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.article-shell ul,
.article-shell ol {
  margin: 1rem 0 1rem 1.25rem;
  color: var(--muted);
}

.article-shell strong {
  color: var(--text);
}

.article-shell a {
  color: var(--gold);
  text-decoration: none;
}

.article-shell a:hover {
  color: var(--gold-bright);
}

.article-shell a.primary-btn,
.article-shell a.primary-btn:hover {
  color: #000 !important;
}

.article-shell a.secondary-btn {
  color: var(--text) !important;
}

.article-shell a.secondary-btn:hover {
  color: var(--gold) !important;
}

.back-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--gold-bright);
}

.back-link-wrap {
  margin-bottom: 1.25rem;
}

.related-articles {
  width: min(850px, calc(100% - 2rem));
  margin: 3rem auto;
  padding-bottom: 2rem;
}

.related-articles h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-articles ul a {
  color: #e8e0d0;
  text-decoration: underline;
  transition: color var(--transition);
}

.related-articles ul a:hover {
  color: var(--gold-bright);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.text-link:hover {
  color: var(--gold-bright);
}

.form-error {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(240, 80, 80, 0.08);
  border: 1px solid rgba(240, 80, 80, 0.25);
  color: var(--text);
}

.form-promise {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.comparison-check {
  color: var(--text);
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.comparison-cross {
  color: var(--muted);
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ── Spacing utilities (8px-based rhythm) ────── */
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 2.5rem; }
.mb-lg { margin-bottom: 2.5rem; }
.text-center { text-align: center; }

/* ── Shared page components ────────────────── */
.section--alt {
  background: var(--bg-soft);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.link-quiet {
  color: inherit;
  text-decoration: none;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-num--sm {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

/* ── Skip link ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 10001;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

/* ── Keyframes ─────────────────────────────── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Quiz loader ───────────────────────────── */
.quiz-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  gap: 1.2rem;
  text-align: center;
}

.quiz-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(240, 201, 106, 0.2);
  border-top-color: var(--gold-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-text {
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0;
}

.loader-sub {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

/* ── Quiz result score badge ───────────────── */
.result-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.score-strong { background: rgba(212, 164, 55, 0.12); border-color: rgba(212, 164, 55, 0.3); }
.score-good   { background: rgba(212, 164, 55, 0.07); border-color: rgba(212, 164, 55, 0.2); }
.score-worth  { background: rgba(255, 255, 255, 0.04); border-color: var(--border-soft); }

.score-icon  { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.score-label { display: block; color: var(--text); font-size: 1rem; font-weight: 800; }
.score-sub   { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 0.1rem; }

.result-message {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.result-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid,
  .five-up,
  .four-up,
  .three-up,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    min-height: auto;
    padding: 0.75rem 0;
    row-gap: 0;
    column-gap: 0;
    justify-content: flex-start;
  }

  .brand {
    order: 0;
    flex: 1;
    min-width: 0;
  }

  .menu-toggle {
    display: flex;
    order: 1;
    margin-left: 0.75rem;
    flex-shrink: 0;
  }

  .header-actions {
    order: 2;
    width: 100%;
    margin-left: 0;
    padding-top: 0.5rem;
    gap: 0.5rem;
  }

  .header-actions .lang-btn,
  .header-actions .phone-btn {
    flex: 1;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-links.open {
    max-height: 500px;
    padding-top: 0.5rem;
  }

  .nav-links a {
    display: block;
    padding: 0.65rem 0.25rem;
    font-size: 0.95rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .five-up,
  .four-up,
  .three-up,
  .two-up,
  .footer-grid,
  .trust-bar,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(11, 11, 13, 0.94) 0%, rgba(11, 11, 13, 0.75) 45%, rgba(11, 11, 13, 0.65) 100%),
      url("hero-bg-mobile.webp") center/cover no-repeat;
  }

  .hero-content h1 {
    max-width: 100%;
  }

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

  /* Keep the floating call button clear of the footer fine print */
  .site-footer {
    padding-bottom: 6.5rem;
  }

  .floating-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 9999;
    background: var(--green);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition);
  }

  .floating-call-btn:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1200px);
  }

  .section {
    padding: 3.5rem 0;
  }

  .article-main {
    padding: 3.5rem 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .phone-btn,
  .lang-btn {
    flex: 1;
  }

  .service-icons,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quiz-buttons {
    flex-direction: column;
  }
}

/* ── Reduced motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
