/* dhakacleaners.com — mobile-first stylesheet */
:root {
  --brand: #0e7c5a;
  --brand-dark: #0a5c43;
  --brand-light: #e6f4ef;
  --accent: #ffb703;
  --dark: #14202b;
}

body { font-family: 'Segoe UI', 'Hind Siliguri', system-ui, -apple-system, sans-serif; color: #2b3440; padding-bottom: 64px; }
@media (min-width: 992px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 { font-weight: 700; color: var(--dark); }
a { color: var(--brand); }
.btn-success { background: var(--brand); border-color: var(--brand); }
.btn-success:hover, .btn-success:focus { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline-success { color: var(--brand); border-color: var(--brand); }
.btn-outline-success:hover { background: var(--brand); border-color: var(--brand); }
.text-success { color: var(--brand) !important; }
.bg-brand-light { background: var(--brand-light); }

/* Top bar & nav */
.topbar { background: var(--brand-dark); color: #fff; padding: 6px 0; }
.topbar a { color: #fff; }
.site-nav { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); z-index: 1030; }
.site-nav .nav-link { font-weight: 500; color: var(--dark); }
.site-nav .nav-link:hover { color: var(--brand); }
.brand-accent { color: var(--brand); }
.brand-logo { height: 40px; width: auto; max-width: 190px; vertical-align: middle; }
@media (min-width: 992px) { .brand-logo { height: 46px; } }

/* Hero */
.hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #129670 100%); color: #fff; padding: 56px 0; }
.hero h1 { color: #fff; font-size: 1.9rem; line-height: 1.3; }
@media (min-width: 768px) { .hero { padding: 90px 0; } .hero h1 { font-size: 2.8rem; } }
.hero .lead { color: #d9efe7; }
.hero.hero-has-banner { background-size: cover; background-position: center; background-repeat: no-repeat; animation: none; }
.trust-badges span { background: rgba(255,255,255,.14); border-radius: 50px; padding: 6px 14px; font-size: .85rem; display: inline-block; margin: 4px 4px 0 0; }

/* Service cards */
.service-card { border: 1px solid #e8ecef; border-radius: 14px; transition: transform .2s, box-shadow .2s; height: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(14,124,90,.15); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.service-img { width: 100%; height: 170px; object-fit: cover; border-radius: 12px; display: block; background: var(--brand-light); }
.price-tag { color: var(--brand); font-weight: 700; }

/* Section titles */
.section-title { position: relative; margin-bottom: 2rem; }
.section-title:after { content: ""; display: block; width: 64px; height: 4px; background: var(--accent); border-radius: 2px; margin-top: 10px; }
.section-title.text-center:after { margin-left: auto; margin-right: auto; }

/* Checklists */
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 8px 0 8px 32px; position: relative; border-bottom: 1px dashed #e5e9ec; }
.check-list li:before { content: "✔"; position: absolute; left: 4px; color: var(--brand); font-weight: 700; }

/* Process steps */
.step-card { text-align: center; padding: 20px 12px; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }

/* Reviews */
.review-card { background: #fff; border: 1px solid #e8ecef; border-radius: 12px; padding: 18px; height: 100%; }
.stars { color: var(--accent); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--brand-dark), var(--brand)); color: #fff; border-radius: 18px; padding: 32px 24px; }
.cta-band h2, .cta-band h3 { color: #fff; }

/* Footer */
.site-footer { background: var(--dark); color: #9fb0bf; }
.site-footer a { color: #c8d5e0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: 6px; }
.area-badge { background: rgba(255,255,255,.1); color: #c8d5e0; margin: 0 4px 6px 0; font-weight: 500; }
.area-badge:hover { background: var(--brand); color: #fff; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: #c8d5e0; margin: 0 8px 8px 0; font-size: 1.15rem; transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

/* ---- Contact page (modern) ---- */
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 .2rem rgba(14,124,90,.15); }
.contact-hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #129670 100%); color: #fff; padding: 52px 0 92px; text-align: center; }
.contact-hero h1 { color: #fff; font-size: 2rem; margin-bottom: 0; }
.contact-hero .lead { color: #d9efe7; max-width: 640px; margin: 14px auto 0; }
.contact-hero-badge { display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-weight: 600; padding: 7px 16px; border-radius: 30px; font-size: .85rem; margin-bottom: 16px; }
@media (min-width: 768px) { .contact-hero { padding: 68px 0 104px; } .contact-hero h1 { font-size: 2.6rem; } }

.quick-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: -58px; position: relative; z-index: 3; }
@media (min-width: 768px) { .quick-contact { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.qc-card { background: #fff; border-radius: 16px; padding: 22px 14px; text-align: center; text-decoration: none; box-shadow: 0 10px 30px rgba(20,32,43,.08); display: flex; flex-direction: column; align-items: center; gap: 5px; transition: transform .2s ease, box-shadow .2s ease; }
a.qc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(20,32,43,.15); }
.qc-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--qc, var(--brand)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 4px; }
.qc-label { font-size: .78rem; color: #8a94a0; text-transform: uppercase; letter-spacing: .3px; }
.qc-value { font-weight: 700; color: var(--dark); font-size: .96rem; word-break: break-word; }

.contact-card { background: #fff; border: 1px solid #eef1f4; border-radius: 18px; padding: 26px; box-shadow: 0 10px 40px rgba(20,32,43,.06); height: 100%; }
@media (min-width: 768px) { .contact-card { padding: 32px; } }
.input-icon { position: relative; }
.input-icon > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #9aa5b1; font-size: 1.05rem; pointer-events: none; }
.input-icon .form-control { padding-left: 40px; }

.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid #f0f3f6; }
.contact-info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ci-ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.contact-info-list small { display: block; color: #8a94a0; font-size: .76rem; text-transform: uppercase; letter-spacing: .3px; }
.contact-info-list a, .contact-info-list span { color: var(--dark); font-weight: 600; text-decoration: none; word-break: break-word; }
.contact-info-list a:hover { color: var(--brand); }
.contact-socials { display: flex; gap: 10px; margin-top: 20px; }
.contact-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-light); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; transition: background .2s, color .2s, transform .2s; }
.contact-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.map-wrap { background: #fff; border: 1px solid #eef1f4; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 40px rgba(20,32,43,.06); }
.map-head { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; padding: 16px 20px; }
.map-frame { line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---- "Review us on Google" CTA ---- */
.greview-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border: 1px solid #eef1f4; border-radius: 18px; padding: 26px 30px; box-shadow: 0 10px 40px rgba(20,32,43,.06); }
.greview-cta-left { display: flex; align-items: center; gap: 18px; }
.greview-glogo { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; background: #f1f5ff; color: #4285F4; display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.greview-stars { color: #fbbc05; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 2px; }
.greview-sub { color: #6b7480; font-size: .95rem; }
.btn-greview { background: #4285F4; color: #fff; font-weight: 700; padding: 12px 22px; border-radius: 10px; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .2s, box-shadow .2s; }
.btn-greview:hover, .btn-greview:focus { background: #3367d6; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(66,133,244,.35); }
@media (max-width: 600px) { .greview-cta { padding: 22px; } .greview-cta-left { gap: 14px; } .greview-glogo { flex-basis: 48px; width: 48px; height: 48px; font-size: 1.4rem; } .btn-greview { width: 100%; justify-content: center; } }

/* ---- About page ---- */
.about-hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #129670 100%); color: #fff; padding: 56px 0; text-align: center; }
.about-hero h1 { color: #fff; font-size: 2rem; margin: 0; }
.about-hero .lead { color: #d9efe7; max-width: 640px; margin: 14px auto 0; }
.about-hero-badge { display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-weight: 600; padding: 7px 16px; border-radius: 30px; font-size: .85rem; margin-bottom: 16px; }
@media (min-width: 768px) { .about-hero { padding: 72px 0; } .about-hero h1 { font-size: 2.6rem; } }
.about-lead-img { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; display: block; box-shadow: 0 12px 40px rgba(20,32,43,.12); }
.about-banner { width: 100%; height: 240px; border-radius: 18px; background: linear-gradient(135deg, var(--brand-dark), var(--brand) 70%, #129670); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 12px 40px rgba(20,32,43,.12); }
.about-banner i { font-size: 2.6rem; }
.about-banner span { font-weight: 700; font-size: 1.3rem; letter-spacing: .3px; }
.about-article { max-width: 860px; margin: 0 auto; }
.about-mv { background: #fff; border: 1px solid #eef1f4; border-radius: 16px; padding: 26px; height: 100%; box-shadow: 0 10px 40px rgba(20,32,43,.05); }
.about-mv-ic { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-light); color: var(--brand); font-size: 1.5rem; }
@media (min-width: 768px) { .about-lead-img { height: 420px; } }

/* ---- NID Verify ---- */
.verify-ok { border: 1.5px solid #b7e4c7; background: #f0fbf4; border-radius: 14px; padding: 20px; }
.verify-bad { border: 1.5px solid #f5c2c7; background: #fff5f5; border-radius: 14px; padding: 18px; color: #842029; }
.verify-photo { width: 120px; height: 120px; border-radius: 14px; object-fit: cover; border: 3px solid #12a074; flex: 0 0 120px; }
.verify-photo-ph { display: inline-flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); font-size: 3rem; }
@media (min-width: 768px) { .verify-photo { width: 150px; height: 150px; flex-basis: 150px; } }
.verify-badge { display: inline-flex; align-items: center; gap: 6px; background: #12a074; color: #fff; font-weight: 700; font-size: .8rem; padding: 3px 12px; border-radius: 20px; }

/* Sticky mobile CTA */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040; display: flex; box-shadow: 0 -3px 14px rgba(0,0,0,.18); }
.mobile-cta a { flex: 1; text-align: center; padding: 13px 4px; font-weight: 600; font-size: .95rem; color: #fff; text-decoration: none; }
.cta-call { background: var(--brand); }
.cta-book { background: var(--accent); color: var(--dark) !important; }
.cta-wa { background: #25d366; }

/* Floating WhatsApp (desktop) */
.wa-float { position: fixed; bottom: 24px; left: 24px; z-index: 1040; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.wa-float:hover { color: #fff; transform: scale(1.08); }

/* Chatbot */
.chat-widget { position: fixed; bottom: 76px; right: 16px; z-index: 1045; }
@media (min-width: 992px) { .chat-widget { bottom: 24px; right: 24px; } }
.chat-toggle { width: 56px; height: 56px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; font-size: 1.5rem; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.chat-box { position: absolute; bottom: 68px; right: 0; width: min(92vw, 360px); background: #fff; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.chat-head { background: var(--brand); color: #fff; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
.chat-messages { height: 320px; overflow-y: auto; padding: 12px; background: #f4f7f6; }
.chat-msg { max-width: 85%; padding: 9px 13px; border-radius: 14px; margin-bottom: 8px; font-size: .92rem; line-height: 1.45; white-space: pre-wrap; }
.chat-msg.bot { background: #fff; border: 1px solid #e3e8e6; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--brand); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chat-msg.typing { color: #8aa; font-style: italic; }
.chat-input { display: flex; gap: 6px; padding: 10px; background: #fff; border-top: 1px solid #eee; }

/* Estimator */
.estimator-box { background: var(--brand-light); border: 2px dashed var(--brand); border-radius: 16px; padding: 24px; }
.estimate-result { font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); }

/* Blog */
.blog-card { position: relative; border: 1px solid #e8ecef; border-radius: 14px; overflow: hidden; height: 100%; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.blog-content img { max-width: 100%; height: auto; border-radius: 10px; }
.blog-content h2 { font-size: 1.4rem; margin-top: 1.6rem; }

/* FAQ accordion */
.accordion-button:not(.collapsed) { background: var(--brand-light); color: var(--brand-dark); }

/* Gallery before/after */
.ba-card { border-radius: 12px; overflow: hidden; position: relative; }
.ba-label { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.65); color: #fff; font-size: .75rem; padding: 3px 10px; border-radius: 50px; }

/* Promo strip */
.promo-strip { background: linear-gradient(90deg, #b45309, #d97706, #b45309); color: #fff; padding: 9px 8px; font-size: .92rem; }
.promo-code { background: #fff; color: #b45309; font-weight: 800; padding: 2px 10px; border-radius: 6px; letter-spacing: 1px; }
.promo-link { color: #fff; font-weight: 700; text-decoration: underline; margin-left: 8px; white-space: nowrap; }

/* Offer cards */
.offer-card { position: relative; border: 1px solid #e8ecef; border-radius: 16px; padding: 32px 22px 22px; height: 100%; background: #fff; transition: transform .2s, box-shadow .2s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(14,124,90,.15); }
.offer-featured { border: 2px solid var(--accent); box-shadow: 0 8px 24px rgba(255,183,3,.2); }
.offer-badge { position: absolute; top: -12px; left: 20px; background: var(--brand); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; }
.coupon-code { border: 2px dashed var(--brand); border-radius: 10px; padding: 10px; text-align: center; font-weight: 800; font-size: 1.15rem; color: var(--brand-dark); letter-spacing: 2px; cursor: pointer; background: var(--brand-light); }
.coupon-code small { display: block; font-weight: 400; letter-spacing: 0; font-size: .72rem; color: #6b7d76; }

/* Stats band */
.stats-band { background: linear-gradient(120deg, var(--brand-dark), var(--brand)); color: #fff; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; }
.stat-label { color: #cfe9df; font-size: .95rem; }

/* Reviews slider */
.review-slider { position: relative; max-width: 760px; margin: 0 auto; padding: 8px 40px; text-align: center; min-height: 220px; }
.review-slide { display: none; }
.review-slide.active { display: block; animation: revFade .5s ease; }
@keyframes revFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.review-text { font-size: 1.12rem; line-height: 1.6; color: #34424d; margin: 0 auto; max-width: 640px; }
.star-empty { color: #d8dee2; }
.review-author { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand-light); }
.review-avatar-ph { display: flex; align-items: center; justify-content: center; background: var(--brand); color: #fff; font-weight: 700; font-size: 1.2rem; }
.review-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1px solid #e2e8ec; background: #fff; color: var(--brand); font-size: 1.1rem; cursor: pointer; box-shadow: 0 3px 10px rgba(0,0,0,.08); z-index: 2; }
.review-nav:hover { background: var(--brand); color: #fff; }
.review-nav.prev { left: 0; } .review-nav.next { right: 0; }
.review-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.review-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: #cfd8dd; cursor: pointer; padding: 0; }
.review-dots button.active { background: var(--brand); width: 24px; border-radius: 5px; }

/* Google rating badge */
.google-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e6ebee; border-radius: 50px; padding: 8px 18px; text-decoration: none; color: var(--dark); box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.google-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); color: var(--dark); }
.google-badge .g-logo { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: conic-gradient(#ea4335 0 25%, #fbbc05 0 50%, #34a853 0 75%, #4285f4 0); color: #fff; font-weight: 800; font-size: .8rem; }
.google-badge strong { font-size: 1.15rem; }
.google-badge .gb-stars { color: var(--accent); letter-spacing: 1px; }
.google-badge .gb-count { color: #6b7d76; font-size: .85rem; }
@media (max-width: 575px) { .google-badge .gb-count { display: none; } .review-text { font-size: 1rem; } }

/* Utility */
img { max-width: 100%; height: auto; }
.object-cover { object-fit: cover; }
.min-touch { min-height: 44px; }

/* ============================================================
   Animations & scroll reveal (lightweight, CSS-driven)
   Hidden states apply ONLY when JS added .js-reveal to <html>,
   so no-JS / crawler visitors always see full content.
   ============================================================ */
.js-reveal [data-reveal],
.js-reveal [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js-reveal [data-reveal="left"]  { transform: translateX(-34px); }
.js-reveal [data-reveal="right"] { transform: translateX(34px); }
.js-reveal [data-reveal="zoom"]  { transform: scale(.93); }
.js-reveal [data-reveal].in-view,
.js-reveal [data-reveal-group].in-view > * { opacity: 1; transform: none; }
/* staggered children of a group */
.js-reveal [data-reveal-group].in-view > *:nth-child(1) { transition-delay: .04s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(2) { transition-delay: .12s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(3) { transition-delay: .20s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(4) { transition-delay: .28s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(5) { transition-delay: .36s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(6) { transition-delay: .44s; }
.js-reveal [data-reveal-group].in-view > *:nth-child(n+7) { transition-delay: .5s; }

/* Hero: gentle animated gradient + staggered entrance */
.hero { background-size: 180% 180%; animation: heroShift 16s ease infinite; }
@keyframes heroShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero h1 { animation: fadeUp .8s ease both; }
.hero .lead { animation: fadeUp .8s .15s ease both; }
.hero .trust-badges { animation: fadeUp .8s .3s ease both; }
.hero .hero-cta { animation: fadeUp .8s .45s ease both; }

/* Floating estimator card in the hero */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.estimator-float { animation: floatY 5.5s ease-in-out infinite; animation-delay: .6s; }

/* Service icon pops on card hover */
.service-icon { transition: transform .25s ease, background .25s ease; }
.service-card:hover .service-icon { transform: scale(1.12) rotate(-5deg); }
.step-card { transition: transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 12px 26px rgba(14,124,90,.14); }
.step-card:hover .step-num { transform: scale(1.1); }
.step-num { transition: transform .25s ease; }

/* Subtle attention pulse for a primary CTA */
@keyframes softPulse { 0% { box-shadow: 0 0 0 0 rgba(255,183,3,.55); } 70% { box-shadow: 0 0 0 16px rgba(255,183,3,0); } 100% { box-shadow: 0 0 0 0 rgba(255,183,3,0); } }
.pulse-cta { animation: softPulse 2.6s infinite; }

/* Section-title accent bar grows in as the heading reveals */
.js-reveal [data-reveal].section-title:after { width: 0; transition: width .55s .25s cubic-bezier(.2,.7,.2,1); }
.js-reveal [data-reveal].section-title.in-view:after { width: 64px; }

/* Animated numbers keep a stable line while counting */
.stats-band .stat-num { font-variant-numeric: tabular-nums; }

/* Accessibility: honor reduced-motion — everything static & visible */
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal],
  .js-reveal [data-reveal-group] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero, .hero h1, .hero .lead, .hero .trust-badges, .hero .hero-cta,
  .estimator-float, .pulse-cta { animation: none !important; }
  .js-reveal [data-reveal].section-title:after { width: 64px !important; transition: none !important; }
}

/* Language switcher (navbar, top-right) */
.lang-switch { display: inline-flex; border: 1px solid #d7dee2; border-radius: 50px; overflow: hidden; font-size: .78rem; background: #fff; }
.lang-switch a { padding: 4px 12px; color: #55636b; text-decoration: none; font-weight: 600; line-height: 1.5; white-space: nowrap; }
.lang-switch a.on { background: var(--brand); color: #fff; }
.lang-switch a:hover:not(.on) { background: var(--brand-light); color: var(--brand-dark); }
