/* handymangoldhands.com — styles reproduced from the Weblium theme (computed values captured 2026-09-24) */
:root {
  --brand: #e45b25;
  --brand-hover: #cf4f1c;
  --dark: #011222;
  --navy: #272b50;
  --navy-2: #404783;
  --blue-text: #045198;
  --light: #f6f6f6;
  --light-2: #f7f8fa;
  --text: #272b50;
  --text-gray: #606060;
  --text-light: #9199ab;
  --line: #e6e6e6;
  --white: #fff;
  --radius: 8px;
  --radius-card: 8px;
  --font-heading: 'Montserrat', 'Plus Jakarta Sans', system-ui, sans-serif; /* Weblium block/card titles */
  --font-hero: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif; /* hero headings only */
  --font-body: 'Open Sans', system-ui, sans-serif;
  --font-button: 'Inter', system-ui, sans-serif;
  --font-quote: 'Lora', Georgia, serif;
  --container: 1200px;
  --gutter: 15px;
}

@font-face { font-family: 'Plus Jakarta Sans'; font-weight: 600; font-display: swap; src: url(/assets/fonts/plus-jakarta-sans-600.woff2) format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-weight: 700; font-display: swap; src: url(/assets/fonts/plus-jakarta-sans-700.woff2) format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-display: swap; src: url(/assets/fonts/plus-jakarta-sans-800.woff2) format('woff2'); }
@font-face { font-family: 'Open Sans'; font-weight: 400; font-display: swap; src: url(/assets/fonts/open-sans-400.woff2) format('woff2'); }
@font-face { font-family: 'Open Sans'; font-weight: 600; font-display: swap; src: url(/assets/fonts/open-sans-600.woff2) format('woff2'); }
@font-face { font-family: 'Open Sans'; font-weight: 700; font-display: swap; src: url(/assets/fonts/open-sans-700.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url(/assets/fonts/inter-400.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-display: swap; src: url(/assets/fonts/inter-500.woff2) format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 700; font-display: swap; src: url(/assets/fonts/montserrat-700.woff2) format('woff2'); }
@font-face { font-family: 'Lora'; font-style: italic; font-weight: 400; font-display: swap; src: url(/assets/fonts/lora-400-italic.woff2) format('woff2'); }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.69; color: var(--text); background: var(--white); }
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--brand); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin: 0 0 .5em; line-height: 1.21; }
h1 { font-size: clamp(32px, 4vw, 52px); }
h2 { font-size: clamp(30px, 3vw, 35px); }
h3 { font-size: 22px; line-height: 1.3; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.accent { color: var(--brand); }
.muted { color: var(--text-gray); }
.center { text-align: center; }
.stack > * + * { margin-top: 12px; }
.grid-2 { display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 992px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.section { position: relative; padding: 80px 0; }
.section--light { background-color: var(--light); }
.section--dark { background-color: var(--dark); color: var(--light); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark p { color: var(--light); }
.section--dark a { color: var(--light); }
.eyebrow { font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); }

/* Buttons — Inter 15px, 12px 21px, radius 8 */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 21px; border-radius: var(--radius); border: 1px solid transparent; font: 400 15px/24px var(--font-button); text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.btn[hidden] { display: none; } /* same [hidden]-vs-display bug as .fallback — needed for the /membership/thank-you portal button, which starts hidden */
.btn--primary { background: var(--brand); color: var(--white) !important; }
.btn--primary:hover { background: var(--brand-hover); }
.btn--navy { background: var(--navy); color: var(--white) !important; }
.btn--navy:hover { background: var(--navy-2); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }

/* Header — 100px, sits on top of the page's first section */
.header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; height: 100px; }
.header__inner { display: flex; align-items: flex-start; justify-content: space-between; height: 100px; }
.header__logo img { width: 100px; height: 100px; }
.header__right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; padding-top: 8px; }
.nav { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav a { color: var(--light); text-decoration: none; font-size: 16px; }
.nav a:hover { color: var(--brand); }
.header__phone { margin-top: 2px; }
.header__phone--mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; color: var(--light); width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
@media (max-width: 991px) {
  .header { height: 90px; }
  .header__inner { height: 90px; align-items: center; }
  .header__logo img { width: 64px; height: 64px; }
  .header__right { padding: 0; flex-direction: row; align-items: center; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 90px; flex-direction: column; align-items: stretch; background: var(--dark); padding: 12px 15px 20px; gap: 12px; }
  .nav.is-open { display: flex; }
  .nav a { font-size: 18px; }
  .header__phone { display: none; }
  .nav .header__phone--mobile { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
}

/* Page hero with the tools illustration (home, one-price) */
.hero { padding: 170px 0 60px; background-color: #1c2148; background-image: url(/assets/img/bg/hero-calm.webp); background-size: cover; background-position: center top; color: var(--light); }
@media (min-width: 992px) { .hero { background-attachment: fixed; min-height: 897px; } }
.hero__grid { display: grid; grid-template-columns: 570px minmax(0, 1fr); gap: 30px; align-items: start; }
.hero__grid--rev { grid-template-columns: minmax(0, 1fr) 570px; }
.hero__grid--rev .hero__img { justify-self: start; }
.hero__panel { background: rgba(28, 33, 72, .78); padding: 60px 30px; min-height: 600px; display: flex; flex-direction: column; justify-content: center; }
.hero__panel h1, .hero__panel h2 { font-family: var(--font-hero); font-size: 38px; line-height: 1.21; color: var(--light); margin: 0 0 40px; }
.hero__sub { font-size: 13px; margin: 0 0 20px; }
.hero__checks { list-style: none; padding: 0; margin: 0 0 8px; font-size: 16px; line-height: 1.7; }
.hero__note { font-size: 13px; margin: 0 0 40px; }
.hero__img { justify-self: end; width: 100%; max-width: 570px; min-width: 0; }
.hero__img img { width: 100%; height: 600px; object-fit: cover; object-position: 50% 30%; border-radius: 60px 120px 60px 120px / 60px 120px 60px 120px; border: 2px solid rgba(228, 91, 37, .6); box-shadow: 0 0 40px rgba(228, 91, 37, .35); }
.hero__img--square img { border-radius: 4px; border: 2px solid var(--brand); box-shadow: 0 0 40px rgba(228, 91, 37, .45); height: 660px; object-position: center; }
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.badges img { width: 100%; height: auto; border-radius: 8px; display: block; }
.badges a { display: block; border-radius: 8px; transition: transform .15s, box-shadow .15s; }
.badges a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
@media (max-width: 991px) {
  .hero { padding: 110px 0 40px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__panel { padding: 30px 20px; min-height: 0; }
  .hero__panel h1, .hero__panel h2 { font-size: 30px; margin-bottom: 24px; }
  .hero__img img { height: auto; aspect-ratio: 570/600; }
  .hero__img--square img { height: auto; aspect-ratio: 1; }
  .badges { grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
}

/* Countdown promo */
.promo { padding: 60px 0; background: url(/assets/img/bg/countdown.webp) center/cover no-repeat #fff; text-align: center; }
.promo h2 { font-size: 35px; margin-bottom: 30px; }
.countdown { display: inline-flex; align-items: center; gap: 40px; }
.countdown__item { text-align: center; }
.countdown__num { font: 700 36px/1 var(--font-heading); color: var(--navy); }
.countdown__label { font-size: 22px; color: var(--text-gray); }
.countdown__sep { width: 1px; height: 80px; background: #ddd; }
@media (max-width: 600px) { .countdown { gap: 20px; flex-wrap: wrap; justify-content: center; } .promo h2 { font-size: 30px; } }

/* Slider */
.slider { position: relative; }
.slider__track { display: flex; gap: 30px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { flex: 0 0 calc((100% - 30px * (var(--per, 2) - 1)) / var(--per, 2)); scroll-snap-align: start; }
.slider__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; z-index: 2; }
.slider__btn--prev { left: -20px; }
.slider__btn--next { right: -20px; }
.slider--gray .slider__btn { background: #c7c7c7; }
@media (max-width: 767px) { .slider__track > * { flex-basis: 100% !important; } .slider__btn--prev { left: 4px; } .slider__btn--next { right: 4px; } }

/* Reviews */
.reviews { background: url(/assets/img/bg/reviews.webp) center/cover no-repeat var(--light); }
.reviews h2 { text-align: center; margin-bottom: 40px; }
.reviews__panel { background: var(--navy); border-radius: 8px; padding: 40px 100px; }
.reviews__panel img { width: 100%; height: auto; border-radius: 4px; }
.reviews__links { display: flex; justify-content: center; gap: 20px; margin-top: 50px; flex-wrap: wrap; }
@media (max-width: 767px) { .reviews__panel { padding: 24px 40px; } }

/* Portfolio */
.portfolio h2 { text-align: center; margin-bottom: 50px; }
.portfolio__slider { padding: 0 20px; }
.portfolio img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Services */
.services { background: url(/assets/img/bg/services.webp) center/cover no-repeat #fff; text-align: center; }
.services h2 { color: var(--brand); }
.services__sub { font-size: 18px; margin: 0 0 20px; }
.services__rates { font-size: 18px; margin: 0 0 40px; }
.cards { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); text-align: left; }
.card { background: var(--light-2); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 30px; }
.card--white { background: var(--white); }
.service-card__icon { width: 70px; height: 70px; margin-bottom: 26px; }
.service-card h3 { margin-bottom: 20px; }
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card p { color: var(--text-gray); }
/* whole card is the link (stretched link over the Book now anchor) */
.service-card { position: relative; transition: box-shadow .2s, transform .2s; }
.service-card__link::after { content: ''; position: absolute; inset: 0; }
.service-card .link-arrow { position: relative; z-index: 1; }
.service-card:hover { box-shadow: 0 10px 30px rgba(1, 18, 34, .10); transform: translateY(-2px); }
.service-card:hover .link-arrow { color: var(--brand); }
.link-arrow { color: var(--navy); text-decoration: none; font: 400 15px/24px var(--font-button); display: inline-flex; gap: 14px; align-items: center; }
.link-arrow:hover { color: var(--brand); }

/* Features (Why) */
.features { background: url(/assets/img/bg/features.webp) center/cover no-repeat #fff; }
.features h2 { text-align: center; margin-bottom: 60px; }
.features__grid { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
.feature { display: grid; grid-template-columns: 50px 1fr; gap: 15px; align-items: start; }
.feature img { width: 50px; height: 50px; object-fit: contain; }
.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--text-gray); margin: 0; }
.features__note { text-align: right; color: var(--text-gray); margin-top: 20px; }
@media (max-width: 767px) { .features__grid { grid-template-columns: 1fr; } .features__note { text-align: left; } }

/* Membership card block */
.membership-block { background: url(/assets/img/bg/membership-section.webp) center/cover no-repeat #fff; padding: 88px 0; }
.membership-card { background: url(/assets/img/bg/membership-card.webp) center/cover no-repeat #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 40px rgba(1, 18, 34, .08); padding: 50px 40px; text-align: center; }
.membership-card h2 { margin-bottom: 20px; }
.membership-card p { font-weight: 700; margin-bottom: 30px; }

/* CTA blocks (white in the original's fixed-background layout) */
.cta { padding: 80px 0; background: #fff; }
.cta h2 { color: var(--brand); }
.cta p { color: var(--text-gray); max-width: 760px; }
.cta--dark { background: url(/assets/img/bg/cta.webp) center/cover no-repeat var(--dark); color: var(--light); }
.cta--dark h2 { color: var(--brand); }
.cta--dark p { color: var(--light); }
.cta--center { text-align: center; }
.cta--center p { margin-inline: auto; }
.cta__row { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
@media (max-width: 767px) { .cta__row { grid-template-columns: 1fr; } }

/* How WE work (masonry) */
.work { background: url(/assets/img/bg/work.webp) center/cover no-repeat #fff; }
.work h2 { text-align: center; margin-bottom: 50px; }
.work__grid { columns: 3; column-gap: 15px; }
.work__grid img { width: 100%; margin-bottom: 15px; border-radius: 4px; break-inside: avoid; }
@media (max-width: 767px) { .work__grid { columns: 2; } }

/* About */
.about { background: url(/assets/img/bg/about.webp) center/cover no-repeat #fff; }
.about__grid { display: grid; grid-template-columns: 470px minmax(0, 1fr); gap: 30px; align-items: start; }
.about__img img { width: 100%; border-radius: 16px; }
.about h2 { color: var(--brand); }
.about__lead { font-weight: 600; font-size: 18px; color: var(--navy); }
.about p { color: var(--text-gray); }
.about ul { list-style: none; padding: 0; color: var(--text-gray); }
@media (max-width: 991px) { .about__grid { grid-template-columns: minmax(0, 1fr); } }

/* FAQ */
.faq-block { background: url(/assets/img/bg/faq.webp) center/cover no-repeat #fff; }
.faq-block h2 { text-align: center; margin-bottom: 40px; }
.faq__item { border-bottom: 1px solid #d9d9d9; }
.faq__item summary { cursor: pointer; padding: 22px 0; font: 700 22px/1.3 var(--font-heading); color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; color: var(--navy); font-size: 28px; line-height: 1; font-weight: 400; }
.faq__item[open] summary::after { content: '–'; }
.faq__body { padding: 0 0 22px; color: var(--text-gray); }
.faq__body ul { padding-left: 1.2em; }

/* Blog feed on the homepage (image card with gradient overlay) */
.feed { background: var(--light); }
.feed__grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
.feed-card { position: relative; display: block; aspect-ratio: 1; border-radius: 4px; overflow: hidden; color: #fff; text-decoration: none; }
.feed-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feed-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .75) 100%); }
.feed-card__date { font-size: 14px; font-weight: 700; margin: 0 0 8px; }
.feed-card__title { font: 700 22px/1.3 var(--font-heading); color: #fff; margin: 0 0 12px; }
.feed-card__excerpt { margin: 0 0 14px; font-size: 16px; }
.feed-card__author { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.feed-card__author span.avatar { width: 28px; height: 28px; border-radius: 50%; background: #d9d9d9; display: inline-block; }
.feed__more { text-align: center; margin-top: 50px; }
@media (max-width: 767px) { .feed__grid { grid-template-columns: 1fr; } }

/* Page hero for inner pages (blog, membership): dark gradient */
.page-hero { background: url(/assets/img/bg/cta-flop.webp) center/cover no-repeat var(--dark); color: var(--light); padding: 160px 0 60px; text-align: center; }
.page-hero h1 { font-family: var(--font-hero); color: var(--brand); font-size: clamp(40px, 5vw, 60px); margin: 0; }
.page-hero--left { text-align: left; }
.page-hero p { color: #fff; }
@media (max-width: 991px) { .page-hero { padding: 120px 0 50px; } }

/* Blog index: 3 per row, image on top */
.post-grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.post-card { display: flex; flex-direction: column; gap: 14px; }
.post-card__img img { width: 100%; aspect-ratio: 5/3; object-fit: cover; object-position: top; }
.post-card__date { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }
.post-card__title { font-size: 22px; line-height: 1.3; margin: 0; }
.post-card__title a { color: var(--navy); text-decoration: none; }
.post-card__title a:hover { color: var(--brand); }
.post-card__excerpt { color: var(--blue-text); margin: 0; }
.pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }

/* Post */
.post__cover { max-width: 1000px; margin: 30px auto 0; padding: 0 15px; }
.post__cover img { width: 100%; height: auto; }
.post__body { max-width: 700px; margin: 0 auto; padding: 30px 15px 60px; color: var(--blue-text); font-size: 17px; }
.post__date { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 20px; }
.post__body h1 { font-size: 35px; color: var(--dark); margin-bottom: 20px; }
.post__author { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 30px; }
.post__body h2 { font: 700 18px/1.5 var(--font-body); color: var(--blue-text); margin: 1.6em 0 .6em; }
.post__body h3 { font: 700 17px/1.5 var(--font-body); color: var(--blue-text); margin: 1.4em 0 .5em; }
.post__body b, .post__body strong { color: var(--blue-text); }
.post__body ul, .post__body ol { padding-left: 1.3em; }
.post__body li { margin-bottom: .4em; }
.post__body blockquote { font-family: var(--font-quote); font-style: italic; border-left: 3px solid var(--brand); margin: 1.2em 0; padding: .2em 1em; }
.post__cta { max-width: 700px; margin: 0 auto 50px; }
.post__nav { max-width: 700px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; padding: 0 15px 60px; font-size: 15px; }
.post__nav a { color: var(--navy); }

/* Contact / map */
.contact-map h2 { text-align: center; margin-bottom: 20px; }
.contact-map iframe { width: 100%; height: 600px; border: 0; }
.service-map { width: 100%; height: 600px; border-radius: 12px; overflow: hidden; background: #eef2f7; }
@media (max-width: 700px) { .service-map { height: 420px; } }
.map-pin span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50% 50% 50% 0; background: var(--brand); color: #fff; font-size: 17px; transform: rotate(-45deg); box-shadow: 0 4px 12px rgba(0,0,0,.3); border: 2px solid #fff; }
.map-pin span > * , .map-pin span { }
.map-pin--hq span { background: var(--navy); }
.leaflet-popup-content-wrapper { border-radius: 12px; font-family: var(--font-body); }
.map-card { font-size: 14px; line-height: 1.4; }
.map-card strong { display: block; font: 700 17px/1.2 var(--font-heading); color: var(--navy); margin-bottom: 4px; }
.map-card p { margin: 0 0 10px; color: var(--text-gray); }
.map-card .btn { margin: 2px 4px 2px 0; }
.btn--sm { padding: 8px 14px; font-size: 14px; }

/* Inline form (one-price style) */
.form { display: grid; gap: 14px; }
.form label { color: var(--blue-text); font-size: 16px; }
.form input, .form textarea, .form select { width: 100%; min-height: 46px; padding: 10px 14px; border: 0; border-radius: 6px; background: #dbdbdb; font: inherit; color: var(--dark); }
.form input:focus, .form textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.form__submit { background: linear-gradient(90deg, #4a4f96, #272b50); color: #fff; border: 0; border-radius: 6px; min-height: 48px; font: 400 15px/24px var(--font-button); cursor: pointer; margin-top: 14px; }
.form__note { font-size: 12px; color: var(--text-light); margin: 0; }
.form__status { margin: 0; color: var(--brand); }

/* Popup form ("Ready to Fix, Build, or Improve?") */
.popup { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(0, 0, 0, .6); }
.popup.is-open { display: flex; }
.popup__box { position: relative; width: min(900px, 100%); background: var(--dark); color: var(--light); padding: 50px 40px 40px; border-radius: 6px; max-height: 95vh; overflow: auto; }
.popup__close { position: absolute; top: 14px; right: 14px; background: none; border: 0; color: #fff; font-size: 28px; line-height: 1; cursor: pointer; width: 44px; height: 44px; }
.popup__box h2 { color: var(--brand); text-align: center; margin-bottom: 10px; }
.popup__box > p { text-align: center; color: #fff; }
.popup__form { background: #fff; padding: 20px; border-radius: 2px; margin-top: 24px; display: grid; gap: 12px; }
.popup__form input, .mini-form input { width: 100%; min-height: 50px; padding: 12px 10px; border: 1px solid #d0d0d0; border-radius: 2px; background: #f7f7f7; font: inherit; color: var(--dark); }
.popup__send { background: #ef8a2a; color: #fff; border: 0; border-radius: 999px; min-height: 34px; font: 700 13px/1 var(--font-body); letter-spacing: .04em; cursor: pointer; }
.popup__send:hover { background: var(--brand); }
.mini-form { display: grid; gap: 12px; padding: 20px; border: 1px solid rgba(255, 255, 255, .5); width: 100%; max-width: 296px; }
.mini-form button { background: #7a7a7a; color: #fff; border: 0; border-radius: 999px; min-height: 34px; font: 700 13px/1 var(--font-body); letter-spacing: .04em; cursor: pointer; }
.mini-form button:hover { background: var(--brand); }

/* Plans (membership) */
.plans { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: start; }
.plan { background: var(--light-2); border: 1px solid rgba(228, 91, 37, .55); border-radius: 6px; padding: 40px 30px; text-align: center; display: grid; gap: 16px; align-content: start; }
.plan--peach { background: #fbf5f1; }
.plan--green { background: #e9efe6; }
.plan h3 { font-size: 28px; line-height: 1.15; margin: 0; }
.plan--peach h3 { color: var(--brand); }
.plan__price { margin: 0; font: 700 28px/1.2 var(--font-heading); color: var(--navy); }
.plan__price s { color: var(--brand); }
.plan__price small { font-size: 22px; color: #b5b5b5; font-weight: 600; }
.plan__note { font-size: 12px; font-weight: 600; color: #777; margin: 0; }
.plan .btn { justify-self: center; }
.plan__blurb { color: var(--text-gray); margin: 0; }
.plan__inc { font-weight: 700; color: #555; margin: 0; }
.plan ul { list-style: none; padding: 0; margin: 0; text-align: left; display: grid; gap: 14px; }
.plan li { position: relative; padding-left: 30px; color: var(--text-gray); font-size: 16px; line-height: 1.6; }
.plan li::before { content: '↘'; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700; }
.plan li b { color: #555; }

/* Testimonials (dark, avatars) */
.testimonials { background: url(/assets/img/bg/cta.webp) center/cover no-repeat var(--dark); color: var(--light); text-align: center; padding: 100px 0; }
.testimonials h2 { color: var(--brand); }
.testimonials__intro { font: 700 22px/1.45 var(--font-heading); color: #fff; max-width: 1120px; margin: 0 auto 28px; }
.testimonials__grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 40px; }
.testimonial img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.testimonial h3 { color: #fff; font-size: 22px; }
.testimonials .slider { margin-top: 40px; }
.pager { display: flex; justify-content: center; align-items: center; gap: 2px; margin-top: 56px; font: 600 12px/28px var(--font-body); }
.pager a, .pager span { min-width: 28px; padding: 0 6px; text-align: center; border-radius: 6px; color: #9199ab; text-decoration: none; }
.pager a:hover { color: #464c5c; }
.pager .is-active { background: var(--brand); color: #fff; }
.pager .pager__arrow { font-size: 16px; }
.testimonial p { color: #cfd3dc; }
.stars { color: #ffc107; letter-spacing: 2px; }

/* Checklists (one-price) */
.checks { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 14px; }
.checks li { position: relative; padding-left: 32px; font-weight: 700; color: var(--blue-text); }
.checks li::before { content: '✔'; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--dark); color: #fff; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; }
.crosses { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 14px; }
.crosses li { position: relative; padding-left: 32px; font-weight: 700; color: var(--blue-text); }
.crosses li::before { content: '✖'; position: absolute; left: 0; top: 0; color: var(--brand); font-size: 18px; }
.underline-brand::after { content: ''; display: block; width: 55px; height: 3px; background: var(--brand); margin-top: 14px; }
.steps--grid { list-style: none; padding: 0; display: grid; gap: 30px; grid-template-columns: 1fr 1fr; text-align: center; }
.steps--grid li { background: var(--light-2); border: 1px solid var(--line); border-radius: 8px; padding: 30px; font: 700 22px/1.3 var(--font-heading); color: var(--navy); }
.steps--grid svg { margin: 24px auto; }
.steps--grid .link-arrow { justify-content: center; }
@media (max-width: 767px) { .steps--grid { grid-template-columns: 1fr; } }
.blob-img img { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; box-shadow: 0 0 40px rgba(228, 91, 37, .35); border: 2px solid rgba(228, 91, 37, .4); width: 100%; aspect-ratio: 1; object-fit: cover; }
.blob-img--right img { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
.big-line { font: 700 clamp(36px, 5vw, 60px)/1.1 var(--font-hero); color: var(--dark); text-align: center; letter-spacing: -.02em; margin: 30px 0 20px; }
.blue-bold { color: var(--blue-text); font-weight: 700; }

/* City list */
.city-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.city-list li, .city-list a { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--navy); }
.city-list svg { color: var(--brand); flex: none; }

/* Footer */
.footer { background: var(--dark); color: var(--light); padding: 40px 0 0; font-size: 16px; }
.footer a { color: var(--light); text-decoration: none; }
.footer a:hover { color: var(--brand); }
.footer__grid { display: grid; gap: 30px; grid-template-columns: 1.1fr 1fr 1fr 1fr; align-items: start; padding-bottom: 40px; }
.footer__logo img { width: 156px; height: 156px; margin-left: 16px; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.footer__follow h3 { font-size: 16px; color: #fff; font-family: var(--font-body); margin: 0 0 24px; }
.footer__social { display: flex; flex-wrap: wrap; gap: 14px; max-width: 120px; }
.footer__social a { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; background: #fff; color: var(--dark); border-radius: 6px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .15); padding: 30px 0; display: grid; gap: 16px; grid-template-columns: 1fr 1fr 1fr; font-weight: 700; font-size: 15px; align-items: center; }
.footer__bottom a { text-decoration: underline; }
@media (max-width: 991px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__bottom { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } .footer__logo img { margin: 0; } }

/* Floating call */

/* Cookie banner */
.cookie { position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 60; background: #fff; color: var(--text); border-radius: 6px; box-shadow: 0 8px 30px rgba(0, 0, 0, .2); padding: 12px 16px; display: none; gap: 14px; align-items: center; font-size: 13px; width: min(560px, calc(100% - 32px)); }
.cookie.is-visible { display: flex; }
.cookie a { color: var(--brand); }

/* Thank you */
.thanks { background: url(/assets/img/bg/thankyou.webp) center/cover no-repeat var(--light); padding: 180px 0 100px; text-align: center; }
.thanks h1 { font-size: 35px; }
.thanks p { color: var(--text-gray); font-size: 18px; }
.thanks__arrow { color: var(--brand); font-size: 40px; margin: 20px 0; }
.thanks__social { display: flex; justify-content: center; gap: 14px; }
.thanks__social a { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; background: var(--navy); color: #fff; border-radius: 6px; }

/* Legal */
.legal { max-width: 800px; }
.legal h2 { font-size: 20px; margin-top: 1.6em; }
.page-plain { padding: 140px 0 80px; }
.post__top { height: 100px; background: var(--dark); }
.post__cta { padding: 0 15px 40px; }
.post__cta h2 { font-size: 28px; }
.plans-track > .plan { flex: 0 0 calc((100% - 90px) / 4); }
@media (max-width: 1100px) { .plans-track > .plan { flex-basis: calc((100% - 30px) / 2); } }
@media (max-width: 767px) { .plans-track > .plan { flex-basis: 100%; } }

.grid-2 > * { min-width: 0; }
.cta__row > * { min-width: 0; }

/* lead forms: TCPA consent line + inline validation */
.consent { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; line-height: 1.4; color: var(--text-gray); margin: 10px 0; text-align: left; }
.consent input { margin-top: 2px; flex: 0 0 auto; }
.consent input, .popup__form .consent input, .mini-form .consent input, .form .consent input { width: 18px; height: 18px; min-height: 0; padding: 0; margin: 2px 0 0; flex: 0 0 18px; accent-color: var(--brand); }
.mini-form .consent { color: rgba(255,255,255,.75); }
.mini-form .consent a { color: #fff; }
.popup__form .consent { color: var(--text-gray); }
[aria-invalid="true"] { outline: 2px solid #d33 !important; }
.form__status:not(:empty) { margin-top: 8px; color: #ffb4a8; font-size: 14px; }
.form .form__status:not(:empty) { color: #c0392b; }

/* top offer bar + company pages (2026-09-25) */
.topbar { background: var(--brand); color: #fff; font: 600 14px/1.3 var(--font-body); position: relative; z-index: 51; }
.topbar__inner { display: flex; gap: 18px; align-items: center; justify-content: center; min-height: 38px; padding-block: 6px; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar a[data-popup] { background: var(--dark); text-decoration: none; padding: 5px 12px; border-radius: 6px; }
.header { top: 38px; }
@media (max-width: 700px) { .topbar__inner span { display: none; } .topbar__inner { justify-content: space-between; } }
.prose { max-width: 1000px; }
.prose h2 { margin-top: 1.6em; }
.prose ol { padding-left: 1.3em; color: var(--text-gray); }
.prose ol li { margin-bottom: 10px; }
.prose .cards { margin: 24px 0; }
.prose .card h3 { font-size: 20px; margin-bottom: 10px; }
.prose .card h3 a { color: inherit; text-decoration: none; }
.prose .card p:last-child { margin-bottom: 0; }
.stats { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stats li { background: var(--light-2); border: 1px solid var(--line); border-radius: 12px; padding: 22px 12px; }
.stats strong { display: block; font: 700 32px/1.1 var(--font-heading); color: var(--brand); }
.stats span { color: var(--text-gray); font-size: 14px; }
.form select, .form textarea { width: 100%; min-height: 46px; padding: 10px 14px; border: 0; border-radius: 6px; background: #dbdbdb; font: inherit; color: var(--dark); }
.form label { display: block; margin: 10px 0 6px; color: var(--blue-text); }
.footer__grid--4 { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.footer__grid--4 h3 { font-size: 18px; color: #fff; margin: 0 0 18px; }
.footer__grid--4 .footer__links { gap: 12px; }
.footer__brand img { width: 150px; height: 150px; }
.footer__tagline { font: 700 20px/1.3 var(--font-heading); color: var(--brand); margin: 14px 0 8px; }
.footer__brand .muted { color: rgba(255,255,255,.7); }
.footer__contact { line-height: 1.8; margin-top: 14px; }
.footer__brand .footer__social { margin-top: 10px; }
@media (max-width: 900px) { .footer__grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid--4 { grid-template-columns: 1fr; } }

/* video reviews (YouTube shorts, click to load) */
.video-reviews { background: url(/assets/img/bg/cta.webp) center/cover no-repeat var(--dark); color: var(--light); padding: 90px 0; }
.video-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); max-width: 1000px; margin: 0 auto; }
.video { margin: 0; }
.video__play { position: relative; display: block; width: 100%; aspect-ratio: 9/16; border: 0; padding: 0; border-radius: 14px; overflow: hidden; cursor: pointer; background: #000; }
.video__play img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video__btn { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 26px; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.4); transition: transform .15s; }
.video__play:hover .video__btn { transform: scale(1.08); }
.video iframe { width: 100%; aspect-ratio: 9/16; border: 0; border-radius: 14px; display: block; }
.video figcaption { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.85); text-align: center; }

/* service × city pages */
.crumbs { font-size: 14px; color: var(--text-gray); margin: 0 0 16px; }
.crumbs a { color: var(--blue-text); text-decoration: none; }
.price-table { width: 100%; border-collapse: collapse; margin: 10px 0 14px; font-size: 15px; }
.price-table td { padding: 8px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.link-list a { color: var(--blue-text); font-weight: 600; text-decoration: none; }
.link-list a:hover { color: var(--brand); }

/* floating contact buttons: real brand marks on brand colours (owner 2026-09-25) */
.float { position: fixed; right: 20px; bottom: 30px; z-index: 40; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.float__btn { width: 56px; height: 56px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.28); transition: transform .15s, box-shadow .15s; text-decoration: none; border: 0; cursor: pointer; font: inherit; }
.float__btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 10px 24px rgba(0,0,0,.34); }
.float__btn--wa { background: #25d366; }
.float__btn--ms { background: linear-gradient(135deg, #00b2ff 0%, #006aff 50%, #a033ff 100%); }
.float__btn--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.float__btn--sms { background: #34c759; }
.float__btn--call { background: var(--brand); }
/* AI assistant: labelled so nobody mistakes it for "just another messenger" (owner, 2026-09-25) */
.float__ai { display: inline-flex; align-items: center; gap: 8px; height: 50px; padding: 0 18px 0 14px; border: 0; border-radius: 999px; cursor: pointer; color: #fff; background: linear-gradient(135deg, #6d28d9, #4f46e5); font: 700 15px/1 var(--font-body); box-shadow: 0 6px 18px rgba(79,70,229,.4); transition: transform .15s, box-shadow .15s; }
.float__ai:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(79,70,229,.5); }
/* Contact menu: one button, the five channels unfold above it */
.float__toggle { background: var(--brand); position: relative; }
.float__toggle .ico-close, .float.is-open .float__toggle .ico-open { display: none; }
.float.is-open .float__toggle .ico-close { display: block; }
.float__toggle-label { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); background: #fff; color: var(--dark); border-radius: 999px; padding: 6px 12px; font: 600 13px/1 var(--font-body); box-shadow: 0 4px 14px rgba(0,0,0,.18); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s; }
.float__toggle:hover .float__toggle-label, .float__toggle:focus-visible .float__toggle-label { opacity: 1; }
.float.is-open .float__toggle-label { display: none; }
/* The menu is anchored to the whole .float (fixed = containing block), so it unfolds above the AI pill, never over it */
.float__menu { position: absolute; right: 0; bottom: calc(100% + 10px); display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.float__toggle-wrap { position: static; }
.float__menu[hidden] { display: none; }
.float__item { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.float__item .float__btn { width: 48px; height: 48px; }
.float__item .float__btn svg { width: 24px; height: 24px; }
.float__label { background: #fff; color: var(--dark); border-radius: 999px; padding: 7px 12px; font: 600 14px/1 var(--font-body); box-shadow: 0 4px 14px rgba(0,0,0,.18); white-space: nowrap; }
.float__item:hover .float__label { color: var(--brand); }
/* Chat dispatcher widget */
.chat { position: fixed; right: 20px; bottom: 30px; z-index: 60; width: min(380px, calc(100vw - 24px)); height: min(560px, calc(100vh - 60px)); display: none; flex-direction: column; background: #fff; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,.35); overflow: hidden; }
.chat.is-open { display: flex; }
.chat__head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--dark); color: #fff; }
.chat__head img { border-radius: 50%; background: #fff; }
.chat__head div { flex: 1; display: grid; line-height: 1.2; }
.chat__head span { font-size: 12px; opacity: .75; }
.chat__close { background: none; border: 0; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; width: 40px; height: 40px; }
.chat__log { flex: 1; overflow-y: auto; padding: 14px; display: grid; gap: 8px; align-content: start; background: #f4f6f9; }
.chat__msg { max-width: 85%; padding: 9px 12px; border-radius: 14px; font-size: 15px; line-height: 1.4; white-space: pre-wrap; word-wrap: break-word; }
.chat__msg--ai { background: #fff; color: var(--dark); border-bottom-left-radius: 4px; justify-self: start; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.chat__msg--me { background: var(--brand); color: #fff; border-bottom-right-radius: 4px; justify-self: end; }
.chat__msg--sys { background: none; color: var(--text-gray); font-size: 13px; justify-self: center; text-align: center; max-width: 100%; }
.chat__msg--sys a { color: var(--brand); font-weight: 700; }
.chat__msg--wait { color: var(--text-gray); font-style: italic; }
.chat__note { margin: 0; padding: 6px 14px; font-size: 11px; line-height: 1.35; color: var(--text-gray); background: #fff; border-top: 1px solid #e3e6ea; }
.chat__note a { color: inherit; text-decoration: underline; }
.chat__form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #e3e6ea; background: #fff; }
.chat__form input { flex: 1; min-height: 44px; padding: 10px 12px; border: 1px solid #d0d0d0; border-radius: 22px; font: inherit; font-size: 16px; color: var(--dark); }
.chat__form button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.chat__form button:disabled { opacity: .5; cursor: default; }
body.has-chat .float, body.has-chat .cookie { display: none; } /* chat owns the corner; the banner comes back when it closes */
@media (max-width: 600px) { .chat { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; } }


/* ── Membership V3 (site look: dark hero, orange CTAs, site fonts) ─────────── */
.mv3-hero { padding: 170px 0 70px; }
.mv3-hero .container { max-width: 900px; }
.mv3-eyebrow { font: 700 13px/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin: 0 0 14px; }
.mv3-hero h1 { color: var(--light); font-size: clamp(34px, 4.6vw, 58px); line-height: 1.08; margin: 0 0 18px; }
.mv3-lead { font-size: 19px; line-height: 1.5; color: #fff; max-width: 640px; margin: 0 0 24px; }
.mv3-hero__cta { margin: 0 0 14px; }
.mv3-hero__line { font-size: 14px; color: rgba(255,255,255,.8); margin: 0; }
.mv3-intro { max-width: 760px; margin-inline: auto; }
.mv3-small { font-size: 14px; max-width: 800px; margin-inline: auto; }
.mv3-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 36px 0 20px; align-items: stretch; }
.mv3-plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); padding: 30px 26px; display: grid; gap: 10px; align-content: start; }
.mv3-plan--featured { border: 2px solid var(--brand); box-shadow: 0 12px 32px rgba(228,91,37,.15); }
.mv3-plan__badge { font: 700 12px/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin: 0; }
.mv3-plan h3 { font-size: 26px; margin: 0; color: var(--navy); }
.mv3-plan__price { font: 700 30px/1.1 var(--font-heading); color: var(--navy); margin: 6px 0 0; }
.mv3-plan__support { font-size: 14px; color: var(--text-gray); margin: 0; }
.mv3-plan__entitlement { font-weight: 700; color: var(--blue-text); margin: 8px 0 0; padding: 12px; background: var(--light); border-radius: 8px; }
.mv3-plan__desc { color: var(--text-gray); margin: 0; }
.mv3-plan__benefits { list-style: none; padding: 0; margin: 4px 0 8px; display: grid; gap: 8px; font-size: 15px; color: var(--dark); }
.mv3-plan__benefits li { padding-left: 24px; position: relative; }
.mv3-plan__benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.mv3-plan .btn { margin-top: auto; }
.mv3-plan__billing { font-size: 12px; color: var(--text-gray); margin: 0; line-height: 1.45; }
.mv3-under { color: var(--text-gray); font-size: 15px; }
.mv3-under a { color: var(--blue-text); font-weight: 600; }
.mv3-two { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; margin-top: 28px; }
.mv3-two h3 { margin: 0 0 12px; }
.mv3-steps { counter-reset: s; list-style: none; padding: 0; margin: 36px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mv3-steps li { counter-increment: s; background: var(--light-2); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px; }
.mv3-steps li::before { content: counter(s); display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; margin-bottom: 12px; }
.mv3-steps h3 { font-size: 18px; margin: 0 0 6px; }
.mv3-steps p { margin: 0; color: var(--text-gray); font-size: 15px; }
.mv3-dash { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--text-gray); }
.mv3-dash li { padding-left: 24px; position: relative; } .mv3-dash li::before { content: '–'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.mv3-strip { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 8px; padding: 16px 18px; margin: 24px auto 12px; max-width: 900px; line-height: 1.5; color: var(--navy); }
.mv3-narrow { max-width: 800px; }
.mv3-cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 16px 0 6px; }
.mv3-cities span { background: var(--light); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 14px; }
.mv3-form { margin-top: 24px; background: var(--light-2); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px; }
.mv3-form .mv3-two { margin-top: 0; gap: 12px 16px; }
.page-mv3 .form__status:not(:empty) { color: var(--brand); }
.page-mv3 .form__status.is-ok { color: var(--blue-text); font-weight: 700; }
.mv3-sticky { display: none; }
@media (max-width: 900px) {
  .mv3-hero { padding: 140px 0 50px; }
  .mv3-plans, .mv3-two, .mv3-steps { grid-template-columns: 1fr; }
  .page-mv3 .float { display: none; }
  .mv3-sticky { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 45; }
  .page-mv3 .cookie { bottom: 84px; }
  .page-mv3 .faq-block { padding-bottom: 120px; }
}

/* /calculator */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.calc label { display: block; font-weight: 700; color: var(--navy); margin: 18px 0 6px; }
.calc input[type=range] { width: 100%; accent-color: var(--brand); }
.calc output { display: block; font: 700 22px/1.2 var(--font-heading); color: var(--brand); margin-top: 4px; }
.calc-result .price-table td:last-child { font-size: 18px; }
.calc-verdict { font-weight: 700; color: var(--blue-text); margin: 14px 0 18px; }
@media (max-width: 800px) { .calc-grid { grid-template-columns: 1fr; } }
/* /quote ads landing */
.header--minimal { top: 0; }
@media (max-width: 991px) { .header--minimal .header__phone { display: inline-flex; } }
.calc-result .price-table td:last-child { white-space: normal; }
.quote-hero { padding-bottom: 80px; }
.quote-hero__call { font-size: 20px; margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.quote-hero__call > a:first-child { color: #fff; font-weight: 700; text-decoration: none; }
.quote-card { background: #fff; border-radius: var(--radius-card); padding: 28px; color: var(--dark); }
.quote-card h2 { font-size: 24px; margin-bottom: 8px; color: var(--navy); }
.footer--minimal { padding: 30px 0; text-align: center; font-size: 14px; }
.footer--minimal a { text-decoration: underline; }

/* ── Mobile UX pass (owner test 2026-09-25) ───────────────────────────────── */
.consent > span { flex: 1 1 auto; }
.form .consent input, .popup__form .consent input, .mini-form .consent input { width: 20px; height: 20px; flex-basis: 20px; }
.form input, .form select, .form textarea, .popup__form input, .mini-form input { font-size: 16px; } /* no iOS zoom */
.popup__form .form__status:not(:empty) { color: #c0392b; }
.form__status.is-ok, .popup__form .form__status.is-ok, .page-mv3 .form__status.is-ok { color: #1a7f37 !important; font-weight: 700; }
form.is-sent input, form.is-sent select, form.is-sent textarea { opacity: .6; }
.link-arrow { padding: 8px 0; }
.topbar a[data-popup] { min-height: 36px; display: inline-flex; align-items: center; }
.topbar a { padding: 6px 0; }
.footer__links a { display: inline-block; padding: 4px 0; }
.footer__bottom a { display: inline-block; padding: 6px 0; }
.map-cities { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.map-cities button { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: 8px 14px; font: 600 14px/1 var(--font-body); min-height: 36px; cursor: pointer; }
.map-cities button:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 600px) {
  .float { left: 0; right: 0; bottom: 0; display: flex; justify-content: space-around; align-items: center; gap: 0; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(1, 18, 34, .92); backdrop-filter: blur(8px); }
  .float { flex-direction: row; align-items: center; }
  .float__btn { width: 46px; height: 46px; box-shadow: none; }
  .float__btn svg { width: 22px; height: 22px; }
  .float__ai { height: 44px; padding: 0 12px 0 10px; font-size: 13px; box-shadow: none; }
  .float__ai svg { width: 20px; height: 20px; }
  .float__toggle-label { display: none; }
  .float__menu { position: absolute; right: 8px; bottom: calc(100% + 8px); flex-direction: row; gap: 6px; background: #fff; border-radius: 16px; padding: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
  .float__item { flex-direction: column; gap: 4px; width: 60px; }
  .float__item .float__btn { width: 44px; height: 44px; box-shadow: none; }
  .float__label { box-shadow: none; padding: 0; font-size: 11px; max-width: 60px; overflow: hidden; text-overflow: ellipsis; text-align: center; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .cookie { left: 10px; right: 10px; transform: none; width: auto; bottom: calc(74px + env(safe-area-inset-bottom)); padding: 12px 14px; font-size: 13px; }
  .page-mv3 .cookie { bottom: calc(74px + env(safe-area-inset-bottom)); }
  .page-mv3 .mv3-sticky { bottom: calc(74px + env(safe-area-inset-bottom)); }
  body.has-cookie.page-mv3 .mv3-sticky { bottom: calc(180px + env(safe-area-inset-bottom)); }
  .page-mv3 .float { display: flex; }
  .cookie .btn { min-height: 40px; }
  .popup { padding: 0; align-items: flex-end; }
  .popup__box { width: 100%; max-height: 92vh; overflow: auto; border-radius: 16px 16px 0 0; padding: 44px 18px 24px; }
  .popup__form { padding: 16px; border-radius: 10px; }
  .popup__close { top: 10px; right: 12px; width: 40px; height: 40px; }
  .hero__panel { padding: 40px 20px; min-height: 0; }
  .hero__panel .btn { width: 100%; }
  .badges { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
  .slider__btn--prev { left: 4px; } .slider__btn--next { right: 4px; }
  .service-map { height: 380px; }
  .faq__item summary { font-size: 18px; padding: 16px 0; }
  .section { padding: 56px 0; }
}

/* sticky estimate in the mobile bar + collapsible sections */
.float__cta { display: none; }
@media (max-width: 600px) {
  .float__cta { display: inline-flex; flex: 1 1 auto; min-height: 46px; padding: 0 12px; font-size: 15px; font-weight: 700; margin-right: 4px; }
  .collapse__heading { margin: 0; }
  .collapse__toggle { width: 100%; background: none; border: 0; padding: 14px 0; text-align: left; font: inherit; color: inherit; display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; }
  .collapse__icon { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 22px; line-height: 1; }
  [data-collapse] { padding: 16px 0; }
  [data-collapse] .collapse__body { padding-top: 8px; }
}
/* /stats (owner page) */
.stats h1 { font-size: 32px; margin-bottom: 6px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 20px 0 40px; }
.stat { background: var(--light-2); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.stat h3 { font-size: 14px; color: var(--text-gray); margin: 0 0 8px; }
.stat strong { display: block; font: 700 40px/1 var(--font-heading); color: var(--brand); }
.stat span { color: var(--navy); font-weight: 700; }
.stat small { display: block; color: var(--text-gray); margin-top: 6px; }
.stats-bars { display: flex; align-items: flex-end; gap: 4px; height: 160px; border-bottom: 1px solid var(--line); margin: 16px 0 40px; }
.bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; height: 100%; }
.bar i { display: block; width: 100%; background: var(--brand); border-radius: 3px 3px 0 0; min-height: 2px; }
.bar em { font-size: 9px; color: var(--text-gray); font-style: normal; margin-top: 4px; transform: rotate(-60deg); transform-origin: top; white-space: nowrap; }
.stats-pages li { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.stats-pages b { color: var(--navy); }

.mb-40 { margin-bottom: 40px; }
@media (max-width: 600px) { .page-mv3 .float__cta { display: none; } .collapse__heading.mb-40 { margin-bottom: 0; } }


/* Promo ticker under the hero: quick-access showcase of offers and popular services */
.ticker { overflow: hidden; background: var(--dark); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px 0; }
.ticker__track { display: flex; gap: 12px; width: max-content; animation: ticker 45s linear infinite; }
.ticker:hover .ticker__track, .ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__copy { display: contents; }
.ticker__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; text-decoration: none; font: 600 14px/1 var(--font-body); border: 1px solid rgba(255,255,255,.14); transition: background .15s, border-color .15s; }
.ticker__item:hover { background: var(--brand); border-color: var(--brand); }
.ticker__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex: none; font-style: normal; }
.ticker__item:hover .ticker__dot { background: #fff; }
.ticker__item--ai { background: linear-gradient(135deg, #6d28d9, #4f46e5); border-color: transparent; }
.ticker__item--ai .ticker__dot { width: auto; height: auto; background: none; color: #fff; font-size: 14px; line-height: 1; }
.ticker__item--ai:hover { background: linear-gradient(135deg, #5b21b6, #4338ca); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; padding: 0 16px; } .ticker__copy { display: none; } }
@media (max-width: 600px) { .ticker__track { animation-duration: 30s; } }

/* Half / Full day cards reuse the membership plan cards */
.mv3-plans--2 { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
.mv3-plan__per { font: 600 15px/1 var(--font-body); color: var(--text-gray); }
.mv3-plan .checks { margin: 8px 0 16px; }
@media (max-width: 700px) { .mv3-plans--2 { grid-template-columns: 1fr; } }

.days { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 8px; }
.days__btn { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: 8px 12px; font: 700 13px/1 var(--font-body); min-height: 36px; cursor: pointer; }
.days__btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Direct booking page */
.book { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.book__main h1 { font-size: 32px; margin: 0 0 12px; color: var(--navy); }
.book__main h2 { font-size: 22px; margin: 0 0 14px; color: var(--navy); }
.book__steps { list-style: none; padding: 0; margin: 0 0 22px; display: flex; gap: 6px; counter-reset: s; }
.book__steps li { flex: 1; padding: 8px 10px; border-radius: 999px; background: var(--light-2); color: var(--text-gray); font: 700 13px/1.2 var(--font-body); text-align: center; }
.book__steps li.is-active { background: var(--navy); color: #fff; }
.book__steps li.is-done { background: #e8f5ec; color: #1a7f37; }
.book__blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.book__block { border: 2px solid var(--line); border-radius: 10px; background: #fff; padding: 14px; text-align: left; cursor: pointer; display: grid; gap: 4px; font: inherit; color: var(--navy); }
.book__block strong { font-size: 18px; }
.book__block span { color: var(--text-gray); font-size: 14px; }
.book__block.is-active { border-color: var(--brand); box-shadow: 0 6px 18px rgba(228,91,37,.15); }
.book__zip { display: flex; gap: 8px; flex-wrap: wrap; }
.book__zip input { flex: 1 1 120px; min-height: 46px; padding: 10px 14px; border: 1px solid #d0d0d0; border-radius: 6px; font: inherit; font-size: 16px; }
.book__mode { color: var(--blue-text); font-weight: 600; margin: 14px 0 10px; }
.cal { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.cal__title { font: 700 15px/1.2 var(--font-body); color: var(--navy); margin-bottom: 6px; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__wd { font-size: 11px; color: var(--text-gray); text-align: center; }
.cal__day { min-height: 36px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font: 600 14px/1 var(--font-body); }
.cal__day.is-off { color: #bbb; }
.cal__day.is-free { background: #e8f5ec; color: #1a7f37; border: 1px solid #bfe3c8; cursor: pointer; }
.cal__day.is-free:hover { background: #cdebd6; }
.cal__day.is-picked { background: var(--brand); border-color: var(--brand); color: #fff; }
.book__start { display: flex; align-items: center; gap: 8px; margin: 14px 0; color: var(--blue-text); font-weight: 600; }
.book__start[hidden] { display: none; } /* same [hidden]-vs-display bug as .fallback — /book and /membership both hide this until a date is picked */
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book__form input, .book__form textarea { border: 1px solid #d0d0d0; background: #fff; font-size: 16px; }
.book__form label { margin: 8px 0 4px; }
.book__nav { display: flex; gap: 10px; justify-content: space-between; margin-top: 14px; }
.book__summary { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; margin: 0; }
.book__summary dt { color: var(--text-gray); }
.book__summary dd { margin: 0; color: var(--navy); }
.page-book .float, .page-book .cookie { display: none; }
.cal__day.is-past { color: #ddd; }
@media (max-width: 800px) { .book { grid-template-columns: 1fr; } .book__row { grid-template-columns: 1fr; } }

/* SMS consent: compact line + Details (all viewports) */
.consent__more { display: none; }
.consent.is-open .consent__more { display: inline; }
.consent__toggle, form .consent__toggle, .mini-form .consent__toggle, .popup__form .consent__toggle { display: inline-block; width: auto; min-height: 0; margin: -2px 0 8px 30px; padding: 4px 0; border: 0; border-radius: 0; background: none; box-shadow: none; color: inherit; opacity: .75; font: 600 12px/1.2 var(--font-body); letter-spacing: 0; text-transform: none; text-decoration: underline; cursor: pointer; }
.consent > span { font-size: 12.5px; line-height: 1.45; }

/* Photo lightbox (all viewports) */
.is-zoomable { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 56px 12px 24px; background: rgba(1,10,22,.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.lightbox[hidden] { display: none; }
.lightbox { overscroll-behavior: contain; touch-action: none; }
.lightbox__fig { margin: 0; max-width: min(1000px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox__fig img { max-width: 100%; max-height: calc(100dvh - 150px); width: auto; height: auto; border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.5); object-fit: contain; }
.lightbox__fig figcaption { color: #fff; font: 500 15px/1.4 var(--font-body); text-align: center; max-width: 60ch; opacity: .9; }
.lightbox__close, .lightbox__nav { position: absolute; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; width: 48px; height: 48px; border-radius: 50%; font: 400 30px/1 var(--font-body); cursor: pointer; display: grid; place-items: center; }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 767px) { .lightbox__nav { top: auto; bottom: 18px; transform: none; } .lightbox__nav--prev { left: calc(50% - 58px); } .lightbox__nav--next { right: calc(50% - 58px); } .lightbox { padding-bottom: 84px; } }
body.has-lightbox { overflow: hidden; }
body.has-lightbox .fab, body.has-lightbox .float, body.has-lightbox .cookie { display: none !important; }

/* ── Hourly Handyman + booking fallback (owner 2026-09-26) ──
   Hours stepper (/one-price card, /book step 1), honest-math box, direct-booking promise,
   and the "never lose a sale" panel (text / call-me-back / call) on /book and /membership. */
.hours { display: grid; gap: 10px; margin: 6px 0; }
.hours__label { font: 700 14px/1.3 var(--font-body); color: var(--navy); margin: 0; }
.hours__label .muted { font-weight: 400; }
.hours__stepper { display: flex; align-items: center; gap: 10px; }
.hours__btn { width: 44px; height: 44px; flex: none; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy); font: 700 22px/1 var(--font-body); cursor: pointer; }
.hours__btn:hover:not(:disabled) { border-color: var(--navy); }
.hours__btn:disabled { opacity: .35; cursor: default; }
.hours__out { min-width: 96px; text-align: center; font: 700 20px/1 var(--font-heading); color: var(--navy); }
.hours__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hours__chip { min-height: 44px; min-width: 52px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--navy); font: 700 14px/1 var(--font-body); cursor: pointer; }
.hours__chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.hours__hint { font-size: 14px; line-height: 1.45; background: var(--light); border-radius: 8px; padding: 10px 12px; margin: 0; color: var(--blue-text); }
.hours__hint:empty { display: none; }
.hours__total { margin: 4px 0 0; color: var(--navy); }
.hours__total strong { font: 700 26px/1.1 var(--font-heading); }
.promise { margin: 12px 0; padding: 12px 14px 12px 40px; position: relative; border-radius: 10px; background: #e8f5ec; color: #14532d; font-weight: 600; line-height: 1.45; }
.promise::before { content: '✓'; position: absolute; left: 14px; top: 11px; font-weight: 700; color: #1a7f37; }
.promise--center { max-width: 720px; margin: 8px auto 10px; }
.deal { max-width: 820px; margin: 28px auto 0; background: var(--light); border-radius: var(--radius-card); padding: 22px 24px; }
.deal h3 { margin: 0 0 12px; color: var(--navy); font-size: 22px; }
.deal__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.deal__list li { display: grid; grid-template-columns: 220px 1fr; gap: 12px; }
.deal__list b { color: var(--navy); }
.book__blocks--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.book__block { min-height: 44px; }
.book__start { flex-wrap: wrap; }
.book__times { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.book__start .days__btn { min-height: 44px; padding: 8px 14px; }
.book__split { margin: 0 0 14px; padding: 10px 12px; border-radius: 8px; background: var(--light); color: var(--blue-text); font-size: 15px; }
.fallback { margin: 18px 0 0; padding: 18px; border: 2px solid var(--brand); border-radius: 12px; background: #fff7f3; display: grid; gap: 10px; }
.fallback[hidden] { display: none; } /* bug found verifying /membership in a real browser: an author display:grid beats the UA [hidden]{display:none} rule regardless of specificity, so the "never lose a sale" panel (/book and /membership) rendered open on page load */
.fallback:focus { outline: none; }
.fallback h3 { margin: 0; color: var(--navy); font-size: 20px; }
.fallback__reason { margin: 0; color: var(--dark); }
.fallback__or { margin: 6px 0 0; font-weight: 700; color: var(--navy); }
.fallback__form { display: grid; gap: 6px; }
.fallback__form input:not([type=checkbox]) { border: 1px solid #d0d0d0; background: #fff; font-size: 16px; min-height: 44px; }
.fallback__form .btn { justify-self: start; }
.fallback__call { margin: 0; }
.fallback__call a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; }
.fallback--inline { margin: 0 0 12px; }
@media (max-width: 700px) {
  .deal { padding: 18px 16px; }
  .deal__list li { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 520px) {
  .book__blocks--3 { grid-template-columns: 1fr; gap: 8px; }
  .book__blocks--3 .book__block { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 14px; }
  .book__blocks--3 .book__block span { text-align: right; }
  .book__start > span:first-child { flex-basis: 100%; }
  .fallback__sms, .fallback__form .btn { width: 100%; justify-self: stretch; }
}

/* ── Mobile "liquid glass" layout (owner 2026-09-26: компактно, кругло, стекло, без нижней плашки; мы живём в эру ИИ) ──
   On by default since 2026-09-26 (owner: «ставим»). html.liquid is set by an inline head script; /?liquid=0 opts a browser
   out (to compare with the old layout), /?liquid=1 opts it back in. */
.fab, .sheet, .hero__ai, .hero__book { display: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
@media (max-width: 767px) {
  html.liquid { --glass: rgba(255,255,255,.12); --glass-strong: rgba(10,16,40,.62); --glass-line: rgba(255,255,255,.28); --glass-hi: inset 0 1px 0 rgba(255,255,255,.28); --r-glass: 24px; }
  html.liquid body { font-size: 15px; line-height: 1.55; padding-bottom: 0; }
  html.liquid .container { padding-inline: 14px; }
  html.liquid h2 { font-size: 24px; line-height: 1.18; letter-spacing: -.01em; }
  html.liquid h3 { font-size: 17px; }
  html.liquid .section { padding: 40px 0; }
  html.liquid .btn { min-height: 46px; padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 15px; }
  html.liquid .card { padding: 18px; border-radius: 20px; }
  html.liquid img { border-radius: inherit; }

  /* Header: floating glass bar, small logo, phone + menu as round glass buttons */
  html.liquid .topbar { display: none; }
  /* Header = just the logo + two round buttons floating over the page (owner 2026-09-26: «убери обводку, оставь png логотип и две круглые кнопки») */
  html.liquid .header { position: fixed; height: auto; padding: calc(8px + env(safe-area-inset-top)) 12px 0; transition: transform .25s ease; }
  html.liquid.header-hidden .header { transform: translateY(-120%); }
  html.liquid .header__inner { height: 52px; padding: 0; align-items: center; background: none; border: 0; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }

  html.liquid .header__logo { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font: 700 15px/1.1 var(--font-heading); }
  html.liquid .header__logo img { width: 52px; height: 52px; border-radius: 0; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
  html.liquid .header__right { gap: 10px; }
  html.liquid .header__phone { position: relative; display: block; flex: none; width: 46px; height: 46px; min-height: 0; padding: 0; border: 0; border-radius: 50%; font-size: 0; line-height: 0; color: transparent !important; overflow: hidden; background: var(--brand); box-shadow: 0 6px 16px rgba(0,0,0,.3); }
  html.liquid .header__phone::before { content: ''; position: absolute; inset: 0; margin: auto; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 0 1 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1z'/%3E%3C/svg%3E") center/contain no-repeat; }
  html.liquid .nav-toggle { width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; background: #1c2148; color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.3); }
  html.liquid .nav-toggle svg { width: 22px; height: 22px; }
  html.liquid .nav { top: 72px; left: 10px; right: 10px; border-radius: var(--r-glass); background: rgba(10,16,40,.95); -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%); border: 1px solid var(--glass-line); box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--glass-hi); padding: 10px; gap: 2px; }
  html.liquid .nav a { font-size: 16px; padding: 12px 14px; border-radius: 14px; }
  html.liquid .nav a:active { background: var(--glass); }
  html.liquid .nav .header__phone--mobile { display: inline-flex; margin-top: 6px; font-size: 16px; }

  /* Hero: glass card, tight type, chips instead of a checklist, two round actions, a small AI line */
  html.liquid .hero { padding: 104px 0 24px; background-position: 62% top; }
  html.liquid .hero__grid { gap: 12px; }
  html.liquid .hero__panel { padding: 20px 16px 18px; border-radius: var(--r-glass); background: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%); border: 1px solid var(--glass-line); box-shadow: var(--glass-hi), 0 12px 40px rgba(0,0,0,.25); }
  html.liquid .hero__panel h1, html.liquid .hero__panel h2 { font-size: 27px; line-height: 1.14; margin: 0 0 10px; letter-spacing: -.015em; }
  html.liquid .hero__sub { font-size: 14px; opacity: .88; margin: 0 0 12px; }
  html.liquid .hero__checks { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; font-size: 12.5px; line-height: 1.2; }
  html.liquid .hero__checks li { padding: 7px 11px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-line); }
  html.liquid .hero__note { display: none; }
  html.liquid .hero__actions { gap: 8px; }
  html.liquid .hero__panel .btn { width: auto; flex: 1 1 auto; min-height: 48px; padding: 10px 10px; font-size: clamp(12.5px, 3.55vw, 14px); letter-spacing: -.01em; white-space: nowrap; }
  html.liquid .hero__actions { flex-wrap: nowrap; }
  html.liquid .hero__book { display: inline-flex; color: #fff !important; background: rgba(255,255,255,.12); border: 1px solid var(--glass-line); box-shadow: var(--glass-hi); text-decoration: none; }
  html.liquid .hero__ai { display: flex; align-items: center; gap: 8px; width: 100%; margin: 12px 0 0; padding: 4px 0; border: 0; background: none; text-align: left; cursor: pointer; font: 400 12.5px/1.3 var(--font-body); color: rgba(255,255,255,.85); }
  html.liquid .hero__ai span { width: 22px; height: 22px; flex: none; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #6d28d9, #4f46e5); color: #fff; font-size: 12px; box-shadow: 0 0 0 3px rgba(109,40,217,.25); }
  html.liquid .hero__img img, html.liquid .hero__img--square img { aspect-ratio: 16 / 10; height: auto; max-height: 230px; border-radius: 22px; border: 1px solid var(--glass-line); box-shadow: 0 12px 34px rgba(0,0,0,.35); object-position: 50% 22%; }
  html.liquid .badges { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; }
  html.liquid .badges::-webkit-scrollbar { display: none; }
  html.liquid .badges a { flex: 0 0 148px; scroll-snap-align: start; border-radius: 14px; background: #fff; border: 1px solid var(--glass-line); }
  html.liquid .badges img { border-radius: 14px; }

  /* Ticker + promo: same idea, less height */
  html.liquid .ticker { padding: 8px 0; }
  html.liquid .ticker__item { padding: 7px 12px; font-size: 13px; }
  html.liquid .promo { padding: 30px 0; }
  html.liquid .promo h2 { font-size: 22px; margin-bottom: 14px; }
  html.liquid .countdown { gap: 18px; }
  html.liquid .countdown__num { font-size: 28px; }
  html.liquid .countdown__label { font-size: 13px; }
  html.liquid .countdown__sep { height: 44px; }

  /* Content blocks: rounder, tighter */
  html.liquid .service-card__icon { width: 44px; height: 44px; margin-bottom: 10px; }
  html.liquid .service-card h3 { margin-bottom: 8px; }
  html.liquid .service-card p { font-size: 14px; }
  html.liquid .reviews__panel { padding: 16px 34px; border-radius: 22px; }
  html.liquid .work__grid { column-gap: 8px; }
  /* How WE work: a swipeable row instead of a tall masonry (owner: «прокруткой влево-вправо») */
  html.liquid .work h2 { margin-bottom: 18px; }
  html.liquid .work__grid { columns: auto; display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 -14px; padding: 0 14px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  html.liquid .work__grid::-webkit-scrollbar { display: none; }
  html.liquid .work__grid img { flex: 0 0 76%; height: 320px; object-fit: cover; margin: 0; border-radius: 22px; scroll-snap-align: center; box-shadow: 0 10px 26px rgba(1,18,34,.18); }
  html.liquid .work__grid::after { content: ''; flex: 0 0 4px; }
  /* Glass backdrop behind the floating header once scrolled — nothing peeks above it */
  html.liquid .header::before { content: none; }
  /* (no backdrop band behind the header any more) */
  /* Tactile: everything tappable gives way under the finger */
  html.liquid a, html.liquid button, html.liquid .is-zoomable { -webkit-tap-highlight-color: transparent; }
  html.liquid .btn, html.liquid .ticker__item, html.liquid .sheet__item, html.liquid .sheet__ai, html.liquid .badges a, html.liquid .service-card, html.liquid .is-zoomable, html.liquid .nav-toggle, html.liquid .header__phone, html.liquid .hero__ai, html.liquid .faq__item summary { transition: transform .12s ease, filter .12s ease; }
  html.liquid .btn:active, html.liquid .ticker__item:active, html.liquid .sheet__item:active, html.liquid .sheet__ai:active, html.liquid .badges a:active, html.liquid .service-card:active, html.liquid .is-zoomable:active, html.liquid .nav-toggle:active, html.liquid .header__phone:active, html.liquid .hero__ai:active { transform: scale(.96); filter: brightness(.94); }
  html.liquid .faq__item summary { font-size: 16px; padding: 14px 0; }
  html.liquid .footer { padding: 34px 0 calc(96px + env(safe-area-inset-bottom)); }
  html.liquid .footer__logo img, html.liquid .footer__brand img { width: 64px; height: 64px; }
  html.liquid .footer h3 { font-size: 14px; margin-bottom: 6px; }
  html.liquid .footer__links { font-size: 14px; }
  html.liquid .footer__grid--4 { gap: 18px; }

  /* The old bottom bar is gone; one floating "Help" button opens the sheet */
  html.liquid .float, html.liquid .float__cta, html.liquid .mv3-sticky { display: none !important; }
  html.liquid .page-mv3 .faq-block { padding-bottom: 40px; }
  html.liquid .page-hero { padding-top: 96px; }
  html.liquid .mv3-hero { padding-top: 112px; }
  html.liquid .hero__grid--rev .hero__panel h1 { font-size: 23px; }
  html.liquid .hero__panel > p[style] { font-size: 14px; line-height: 1.5; margin-bottom: 14px !important; }
  html.liquid .hero__panel s { opacity: .7; }
  html.liquid .cookie { left: 12px; right: 100px; bottom: calc(14px + env(safe-area-inset-bottom)); transform: none; width: auto; border-radius: 16px; padding: 8px 10px; font-size: 11.5px; line-height: 1.3; gap: 8px; background: rgba(10,16,40,.88); color: #fff; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border: 1px solid var(--glass-line); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
  html.liquid .cookie a { color: #fff; }
  html.liquid .cookie .btn { min-height: 34px; padding: 4px 12px; font-size: 13px; white-space: nowrap; }
  html.liquid .fab { display: block; position: fixed; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); z-index: 56; }
  html.liquid .fab__btn { display: inline-flex; align-items: center; gap: 8px; height: 56px; padding: 0 18px 0 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); background: linear-gradient(135deg, rgba(228,91,37,.96), rgba(109,40,217,.94)); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); color: #fff; font: 700 15px/1 var(--font-body); cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.4); transition: transform .15s; }
  html.liquid .fab__btn:active { transform: scale(.96); }
  html.liquid .fab__btn svg { width: 22px; height: 22px; }
  html.liquid .fab__btn .ico-close, html.liquid .fab.is-open .fab__btn .ico-open { display: none; }
  html.liquid .fab.is-open .fab__btn .ico-close { display: block; }
  html.liquid .fab.is-open .fab__btn span { display: none; }
  html.liquid .fab.is-open .fab__btn { padding: 0 17px; }
  html.liquid body.has-chat .fab, html.liquid body.has-chat .cookie, html.liquid body.has-sheet .cookie { display: none; }
  html.liquid body.has-sheet { overflow: hidden; }
  html.liquid .sheet { display: block; position: fixed; inset: 0; z-index: 55; }
  html.liquid .sheet[hidden] { display: none; }
  html.liquid .sheet__backdrop { position: absolute; inset: 0; background: rgba(1,18,34,.42); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
  html.liquid .sheet__panel { position: absolute; left: 10px; right: 10px; bottom: calc(82px + env(safe-area-inset-bottom)); padding: 12px; border-radius: 28px; color: #fff; background: rgba(12,18,44,.74); -webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%); border: 1px solid rgba(255,255,255,.32); box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.32); animation: sheet-in .22s ease-out; }
  @keyframes sheet-in { from { transform: translateY(14px); opacity: 0; } }
  html.liquid .sheet__ai { display: flex; align-items: center; gap: 12px; width: 100%; padding: 13px 14px; border: 0; border-radius: 20px; text-align: left; color: #fff; cursor: pointer; background: linear-gradient(135deg, #6d28d9, #4f46e5); box-shadow: 0 10px 26px rgba(79,70,229,.45), inset 0 1px 0 rgba(255,255,255,.3); font: 700 16px/1.2 var(--font-body); }
  html.liquid .sheet__ai svg { width: 26px; height: 26px; flex: none; }
  html.liquid .sheet__ai small { display: block; margin-top: 3px; font: 400 12.5px/1.3 var(--font-body); opacity: .85; }
  html.liquid .sheet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
  html.liquid .sheet__item { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 12px 6px 10px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; text-decoration: none; font: 600 12.5px/1 var(--font-body); text-align: center; }
  html.liquid .sheet__item:active { background: rgba(255,255,255,.18); }
  html.liquid .sheet__ico { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-style: normal; }
  html.liquid .sheet__ico svg { width: 20px; height: 20px; }
  html.liquid .sheet__ico--call { background: var(--brand); }
  html.liquid .sheet__ico--sms { background: #34c759; }
  html.liquid .sheet__ico--wa { background: #25d366; }
  html.liquid .sheet__ico--ms { background: linear-gradient(135deg, #00b2ff 0%, #006aff 50%, #a033ff 100%); }
  html.liquid .sheet__ico--est { background: #0ea5e9; }
  html.liquid .sheet__ico--day { background: #f59e0b; }
  html.liquid .sheet__note { margin: 10px 4px 2px; font-size: 12px; opacity: .72; text-align: center; }
  html.liquid .chat { border-radius: 0; }
  /* Popup form as a bottom glass sheet too */
  html.liquid .popup__box { border-radius: 26px 26px 0 0; }
  /* Portraits: the transparent cut-out, whole, no frame, no crop */
  html.liquid .cutout img { display: block; }
  html.liquid .hero__img .cutout img, html.liquid .hero__img--square .cutout img, html.liquid .about__img .cutout img { width: auto; max-width: 100%; height: auto; max-height: 420px; aspect-ratio: auto; margin: 0 auto; object-fit: contain; border: 0; border-radius: 0; box-shadow: none; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35)); }
  html.liquid .about__img .cutout img { max-height: 460px; filter: none; -webkit-mask-image: linear-gradient(#000 82%, transparent); mask-image: linear-gradient(#000 82%, transparent); }
  html.liquid .hero__img, html.liquid .about__img { background: none; border: 0; box-shadow: none; }
  /* Forms: centred glass cards */
  html.liquid .cta__row { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  html.liquid .mini-form, html.liquid .popup__form, html.liquid .form.card, html.liquid .quote-card { width: 100%; max-width: 440px; margin: 0 auto; padding: 18px; border-radius: 24px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 14px 40px rgba(0,0,0,.25); text-align: left; }
  html.liquid .section:not(.section--dark):not(.cta--dark) .form.card, html.liquid .quote-card { background: rgba(255,255,255,.72); border-color: rgba(28,33,72,.12); }
  html.liquid .mini-form input, html.liquid .popup__form input, html.liquid .form input, html.liquid .form select, html.liquid .form textarea { border-radius: 14px; border: 1px solid rgba(28,33,72,.15); min-height: 48px; }
  html.liquid .mini-form button[type=submit], html.liquid .popup__form button[type=submit], html.liquid .form button[type=submit] { border-radius: 999px; min-height: 48px; }
}
