:root {
    --bg-ink: #0b1511;
    --bg-ink-soft: #24312b;
    --bg-forest: #14251d;
    --bg-forest-2: #1f3529;
    --bg-gold: #c89b5d;
    --bg-gold-deep: #8f642d;
    --bg-gold-pale: #f5e8d5;
    --bg-paper: #f5f2ea;
    --bg-paper-2: #ebe6db;
    --bg-white: #ffffff;
    --bg-text: #17221c;
    --bg-muted: #657069;
    --bg-line: rgba(16, 28, 21, .14);
    --bg-success: #17663f;
    --bg-error: #a42626;
    --bg-shadow: 0 28px 80px rgba(10, 24, 16, .18);
    --bg-shadow-soft: 0 16px 45px rgba(10, 24, 16, .10);
    --bg-radius-sm: 12px;
    --bg-radius: 20px;
    --bg-radius-lg: 30px;
    --bg-shell: 1200px;
}

html { scroll-behavior: smooth; }
body.hns-bg-search-page {
    margin: 0;
    background: var(--bg-paper);
    color: var(--bg-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.hns-bg-search-page.admin-bar .bg-header { top: 32px; }
body.hns-bg-search-page * { box-sizing: border-box; }
body.hns-bg-search-page img { display: block; max-width: 100%; height: auto; }
body.hns-bg-search-page button,
body.hns-bg-search-page input,
body.hns-bg-search-page select { font: inherit; }
body.hns-bg-search-page button { cursor: pointer; }
body.hns-bg-search-page a { color: inherit; }
body.hns-bg-search-page [hidden] { display: none !important; }

.bg-search { min-height: 100vh; overflow: clip; }
.bg-shell { width: min(calc(100% - 40px), var(--bg-shell)); margin-inline: auto; }
.bg-skip {
    position: fixed;
    z-index: 99999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    border-radius: 9px;
    background: var(--bg-white);
    color: var(--bg-ink);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.bg-skip:focus { transform: translateY(0); }

.bg-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    min-height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    background: rgba(9, 20, 14, .86);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.bg-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.bg-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.bg-brand img { width: clamp(132px, 16vw, 186px); max-height: 58px; object-fit: contain; }
.bg-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }

.bg-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.bg-btn:hover { transform: translateY(-2px); }
.bg-btn:focus-visible,
.bg-link-btn:focus-visible,
.bg-field input:focus-visible,
.bg-field select:focus-visible,
.bg-consent input:focus-visible,
.bg-accordion summary:focus-visible {
    outline: 3px solid rgba(200, 155, 93, .43);
    outline-offset: 3px;
}
.bg-btn:disabled { cursor: wait; opacity: .68; transform: none; }
.bg-btn--gold {
    background: linear-gradient(135deg, #ddb77f, var(--bg-gold));
    color: #1d160d;
    box-shadow: 0 13px 30px rgba(155, 105, 44, .25);
}
.bg-btn--gold:hover { box-shadow: 0 17px 38px rgba(155, 105, 44, .34); }
.bg-btn--dark { background: var(--bg-forest); color: var(--bg-white); }
.bg-btn--light { background: var(--bg-white); color: var(--bg-ink); }
.bg-btn--outline-light { border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .07); color: var(--bg-white); }
.bg-btn--quiet { min-height: 40px; padding: 9px 15px; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: var(--bg-white); }
.bg-btn--whatsapp { background: #167a4c; color: #fff; }
.bg-btn--block { width: 100%; border-radius: 14px; }

.bg-hero {
    position: relative;
    min-height: 770px;
    padding: 128px 0 70px;
    isolation: isolate;
    color: var(--bg-white);
    background: var(--bg-forest);
}
.bg-hero__media { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.bg-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bg-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 16, 10, .94) 0%, rgba(8, 19, 12, .78) 47%, rgba(8, 18, 13, .49) 100%),
        linear-gradient(180deg, rgba(5, 13, 8, .25), rgba(6, 15, 10, .70));
}
.bg-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
    align-items: center;
    gap: clamp(36px, 6vw, 78px);
}
.bg-hero__copy { max-width: 720px; padding-block: 24px; }
.bg-eyebrow,
.bg-kicker {
    margin: 0 0 12px;
    color: #e8c99e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}
.bg-eyebrow--dark { color: var(--bg-gold-deep); }
.bg-hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7.2vw, 104px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .92;
    text-wrap: balance;
}
.bg-hero__lead {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.85);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    text-wrap: balance;
}
.bg-price-lockup {
    width: fit-content;
    max-width: 510px;
    margin-top: 30px;
    padding: 17px 20px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    gap: 3px 12px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: var(--bg-radius-sm);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}
.bg-price-lockup span { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.bg-price-lockup strong { color: #f1d5ad; font-family: Georgia, serif; font-size: clamp(26px, 3vw, 38px); font-weight: 500; }
.bg-price-lockup small { grid-column: 1 / -1; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.45; }
.bg-hero__ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.bg-trust-inline { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; color: rgba(255,255,255,.74); font-size: 13px; font-weight: 700; }
.bg-trust-inline li::before { content: "✓"; margin-right: 8px; color: #e8c99e; }

.bg-form-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    justify-self: end;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,.19);
    border-radius: var(--bg-radius-lg);
    background: rgba(250, 248, 242, .97);
    color: var(--bg-text);
    box-shadow: var(--bg-shadow);
    backdrop-filter: blur(20px);
}
.bg-form-card__head { margin-bottom: 22px; }
.bg-form-card__head h2,
.bg-thankyou h2 {
    margin: 0;
    color: var(--bg-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.03;
}
.bg-form-card__head p:last-child { margin: 12px 0 0; color: var(--bg-muted); font-size: 14px; line-height: 1.55; }
.bg-form-card .bg-kicker { color: var(--bg-gold-deep); }
.bg-lead-form { display: grid; gap: 14px; }
.bg-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.bg-field { display: grid; gap: 7px; }
.bg-field label { color: var(--bg-ink-soft); font-size: 12px; font-weight: 850; letter-spacing: .02em; }
.bg-optional { color: var(--bg-muted); font-size: 10px; font-weight: 650; }
.bg-field input,
.bg-field select {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    border: 1px solid rgba(20, 38, 29, .18);
    border-radius: 12px;
    background: #fff;
    color: var(--bg-text);
    box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.bg-field input:focus,
.bg-field select:focus { border-color: var(--bg-gold); box-shadow: 0 0 0 4px rgba(200,155,93,.14); outline: none; }
.bg-field input[aria-invalid="true"],
.bg-field select[aria-invalid="true"] { border-color: var(--bg-error); }
.bg-phone-field {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    border: 1px solid rgba(20, 38, 29, .18);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.bg-phone-field:focus-within { border-color: var(--bg-gold); box-shadow: 0 0 0 4px rgba(200,155,93,.14); }
.bg-phone-field span { padding: 0 0 0 14px; color: var(--bg-muted); font-size: 14px; font-weight: 750; }
.bg-phone-field input { border: 0; box-shadow: none; }
.bg-phone-field input:focus { box-shadow: none; }
.bg-field__error { min-height: 14px; color: var(--bg-error); font-size: 11px; line-height: 1.25; }
.bg-field__help { min-height: 16px; color: var(--bg-success); font-size: 11px; line-height: 1.35; }
.bg-consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: var(--bg-muted); font-size: 11px; line-height: 1.5; }
.bg-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--bg-forest); }
.bg-consent--optional { color: #667184; }
.bg-data-use { margin: -2px 0 0; color: var(--bg-muted); font-size: 10px; line-height: 1.45; }
.bg-data-use a { color: var(--bg-forest); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.bg-noscript-note { margin: 0; padding: 10px 12px; border-radius: 8px; background: #fff4d6; color: #5e4300; font-size: 11px; line-height: 1.5; }
.bg-otp-panel { padding: 14px; border: 1px solid rgba(200,155,93,.38); border-radius: 14px; background: var(--bg-gold-pale); }
.bg-otp-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.bg-otp-row .bg-btn { min-height: 49px; border-radius: 12px; }
.bg-form-status { min-height: 18px; margin: 0; color: var(--bg-error); font-size: 12px; font-weight: 700; line-height: 1.45; text-align: center; }
.bg-form-status[data-type="success"] { color: var(--bg-success); }
.bg-thankyou { padding: 20px 4px 8px; text-align: center; }
.bg-thankyou__icon { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: #dff4e8; color: var(--bg-success); font-size: 27px; font-weight: 900; }
.bg-thankyou > p:not(.bg-kicker):not(.bg-lead-reference) { color: var(--bg-muted); line-height: 1.6; }
.bg-lead-reference { padding: 10px; border-radius: 10px; background: var(--bg-paper); color: var(--bg-ink); font-size: 12px; font-weight: 800; }
.bg-thankyou__actions { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }

.bg-stat-band { background: var(--bg-ink); color: var(--bg-white); }
.bg-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.bg-stat-grid > div { min-height: 122px; padding: 25px 20px; display: grid; align-content: center; gap: 5px; border-right: 1px solid rgba(255,255,255,.11); }
.bg-stat-grid > div:last-child { border-right: 0; }
.bg-stat-grid strong { color: #e7c492; font-family: Georgia, serif; font-size: clamp(24px, 2.8vw, 35px); font-weight: 500; }
.bg-stat-grid span { color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; }

.bg-section { padding: clamp(72px, 9vw, 124px) 0; }
.bg-section-heading { max-width: 800px; margin: 0 auto 42px; text-align: center; }
.bg-section-heading--left { margin-inline: 0; text-align: left; }
.bg-section-heading h2,
.bg-location h2,
.bg-final-cta h2 {
    margin: 0;
    color: var(--bg-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 66px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
    text-wrap: balance;
}
.bg-section-heading > p:last-child { max-width: 700px; margin: 18px auto 0; color: var(--bg-muted); font-size: 16px; line-height: 1.7; }
.bg-section-heading--left > p:last-child { margin-left: 0; }

.bg-config { background: var(--bg-paper); }
.bg-config-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bg-config-card {
    min-height: 222px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--bg-line);
    border-radius: var(--bg-radius);
    background: rgba(255,255,255,.72);
    box-shadow: var(--bg-shadow-soft);
    transition: transform .22s ease, border-color .22s ease;
}
.bg-config-card:hover { transform: translateY(-5px); border-color: rgba(143,100,45,.42); }
.bg-config-card--featured { border-color: rgba(200,155,93,.55); background: linear-gradient(145deg, #fff, var(--bg-gold-pale)); }
.bg-config-card div { display: grid; gap: 9px; }
.bg-config-card span { color: var(--bg-gold-deep); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.bg-config-card strong { color: var(--bg-ink); font-family: Georgia, serif; font-size: 32px; font-weight: 500; }
.bg-config-card p { margin: 24px 0 12px; color: var(--bg-muted); }
.bg-config-card p b { color: var(--bg-ink); font-size: 19px; }
.bg-link-btn { width: fit-content; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--bg-forest); font-size: 12px; font-weight: 900; }
.bg-offer-note {
    margin-top: 20px;
    padding: clamp(22px, 4vw, 38px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    border-radius: var(--bg-radius);
    background: var(--bg-gold-pale);
    border: 1px solid rgba(143,100,45,.20);
}
.bg-offer-note strong { color: var(--bg-gold-deep); font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.bg-offer-note p { margin: 0; color: var(--bg-muted); line-height: 1.6; }

.bg-highlights { background: var(--bg-white); }
.bg-two-col { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 8vw, 105px); align-items: start; }
.bg-highlight-list { display: grid; gap: 10px; }
.bg-highlight-list article { padding: 23px 0; display: grid; grid-template-columns: 48px 1fr; gap: 18px; border-bottom: 1px solid var(--bg-line); }
.bg-highlight-list article:first-child { padding-top: 0; }
.bg-highlight-list span { color: var(--bg-gold-deep); font-family: Georgia, serif; font-size: 21px; }
.bg-highlight-list h3 { margin: 0 0 7px; color: var(--bg-ink); font-size: 19px; }
.bg-highlight-list p { margin: 0; color: var(--bg-muted); line-height: 1.65; }

.bg-location { background: var(--bg-paper-2); }
.bg-location__grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(38px, 7vw, 88px); align-items: center; }
.bg-location__copy > p:not(.bg-eyebrow) { color: var(--bg-muted); line-height: 1.7; }
.bg-address { margin-top: 25px; padding-left: 18px; border-left: 3px solid var(--bg-gold); color: var(--bg-ink) !important; font-weight: 750; }
.bg-location__actions { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 10px; }
.bg-map-wrap { min-height: 470px; overflow: hidden; border: 8px solid rgba(255,255,255,.8); border-radius: var(--bg-radius-lg); box-shadow: var(--bg-shadow-soft); }
.bg-map-wrap iframe { width: 100%; height: 100%; min-height: 470px; border: 0; display: block; }

.bg-trust { background: var(--bg-white); }
.bg-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bg-trust-grid article { min-height: 250px; padding: 30px; border: 1px solid var(--bg-line); border-radius: var(--bg-radius); background: linear-gradient(145deg, #fff, #f8f6f0); }
.bg-trust-grid article > span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--bg-gold-pale); color: var(--bg-gold-deep); font-family: Georgia, serif; font-size: 18px; font-weight: 700; }
.bg-trust-grid h3 { margin: 25px 0 8px; color: var(--bg-ink); font-size: 21px; }
.bg-trust-grid p { margin: 0; color: var(--bg-muted); line-height: 1.65; }

.bg-faq { background: var(--bg-paper); }
.bg-faq__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 105px); align-items: start; }
.bg-accordion { display: grid; gap: 10px; }
.bg-accordion details { border: 1px solid var(--bg-line); border-radius: 16px; background: rgba(255,255,255,.72); overflow: hidden; }
.bg-accordion summary { position: relative; padding: 21px 52px 21px 22px; color: var(--bg-ink); font-size: 16px; font-weight: 850; list-style: none; cursor: pointer; }
.bg-accordion summary::-webkit-details-marker { display: none; }
.bg-accordion summary::after { content: "+"; position: absolute; right: 20px; top: 50%; translate: 0 -50%; color: var(--bg-gold-deep); font-family: Georgia, serif; font-size: 27px; }
.bg-accordion details[open] summary::after { content: "−"; }
.bg-accordion details p { margin: 0; padding: 0 22px 22px; color: var(--bg-muted); line-height: 1.7; }

.bg-final-cta { padding: clamp(64px, 8vw, 104px) 0; background: var(--bg-forest); color: var(--bg-white); }
.bg-final-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 45px; align-items: center; }
.bg-final-cta h2 { max-width: 770px; color: var(--bg-white); }
.bg-final-cta p:not(.bg-eyebrow) { color: rgba(255,255,255,.68); line-height: 1.6; }
.bg-final-cta__actions { max-width: 280px; display: grid; gap: 9px; }

.bg-footer { padding: 48px 0 105px; background: var(--bg-ink); color: rgba(255,255,255,.64); }
.bg-footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: start; }
.bg-footer img { width: 168px; max-height: 56px; object-fit: contain; }
.bg-footer__grid p { max-width: 520px; line-height: 1.6; }
.bg-footer__contact { display: grid; gap: 10px; text-align: right; }
.bg-footer__contact a { color: #e7c492; font-weight: 800; text-decoration: none; }
.bg-disclaimer { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.11); font-size: 10px; line-height: 1.65; }
.bg-disclaimer p { margin: 7px 0; }

.bg-mobile-bar { display: none; }

@media (max-width: 1050px) {
    .bg-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr); gap: 34px; }
    .bg-config-grid { grid-template-columns: repeat(2, 1fr); }
    .bg-offer-note { grid-template-columns: 1fr auto; }
    .bg-offer-note strong { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    body.hns-bg-search-page.admin-bar .bg-header { top: auto; }
    .bg-shell { width: min(calc(100% - 30px), var(--bg-shell)); }
    .bg-header {
        position: relative;
        inset: auto;
        min-height: 68px;
    }
    .bg-header__inner { min-height: 68px; }
    .bg-header__actions .bg-btn--quiet { display: none; }
    .bg-header__actions .bg-btn { min-height: 40px; padding: 9px 14px; }
    .bg-hero { min-height: auto; padding: 34px 0 48px; }
    .bg-hero__veil { background: linear-gradient(180deg, rgba(5,14,8,.84), rgba(5,14,9,.78) 54%, rgba(5,14,9,.94)); }
    .bg-hero__grid { grid-template-columns: 1fr; gap: 28px; }
    .bg-hero__copy { padding-block: 20px 0; }
    .bg-hero h1 { font-size: clamp(54px, 14vw, 83px); }
    .bg-form-card { max-width: none; justify-self: stretch; }
    .bg-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .bg-stat-grid > div:nth-child(2) { border-right: 0; }
    .bg-stat-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
    .bg-two-col,
    .bg-location__grid,
    .bg-faq__grid { grid-template-columns: 1fr; gap: 40px; }
    .bg-section-heading--left { max-width: 740px; }
    .bg-location__copy { order: 1; }
    .bg-map-wrap { order: 2; min-height: 390px; }
    .bg-map-wrap iframe { min-height: 390px; }
    .bg-trust-grid { grid-template-columns: 1fr; }
    .bg-trust-grid article { min-height: 0; }
    .bg-final-cta__inner { grid-template-columns: 1fr; }
    .bg-final-cta__actions { max-width: none; grid-template-columns: repeat(3, 1fr); }
    .bg-footer__grid { grid-template-columns: 1fr; }
    .bg-footer__contact { text-align: left; }
}

@media (max-width: 620px) {
    .bg-shell { width: min(calc(100% - 22px), var(--bg-shell)); }
    .bg-brand img { width: 125px; }
    .bg-header__actions .bg-btn { font-size: 12px; }
    .bg-hero { padding-bottom: 26px; }
    .bg-hero__copy { text-align: left; }
    .bg-hero__lead { font-size: 18px; }
    .bg-price-lockup { width: 100%; grid-template-columns: 1fr auto; }
    .bg-hero__ctas { display: grid; grid-template-columns: 1fr 1fr; }
    .bg-hero__ctas .bg-btn:first-child { grid-column: 1 / -1; }
    .bg-trust-inline { display: grid; gap: 8px; }
    .bg-form-card { padding: 22px 18px; border-radius: 23px; }
    .bg-stat-grid > div { min-height: 102px; padding: 18px 13px; }
    .bg-stat-grid strong { font-size: 23px; }
    .bg-config-grid { grid-template-columns: 1fr; }
    .bg-config-card { min-height: 190px; }
    .bg-offer-note { grid-template-columns: 1fr; }
    .bg-offer-note .bg-btn { width: 100%; }
    .bg-location__actions { display: grid; }
    .bg-location__actions .bg-btn { width: 100%; }
    .bg-map-wrap { min-height: 330px; border-width: 5px; }
    .bg-map-wrap iframe { min-height: 330px; }
    .bg-final-cta__actions { grid-template-columns: 1fr; }
    .bg-final-cta__actions .bg-btn { width: 100%; }
    .bg-footer { padding-bottom: 108px; }
    .bg-mobile-bar {
        position: fixed;
        z-index: 1100;
        inset: auto 8px calc(8px + env(safe-area-inset-bottom));
        padding: 7px;
        display: grid;
        grid-template-columns: 1.18fr .82fr;
        gap: 7px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
        background: rgba(10, 22, 15, .94);
        box-shadow: 0 18px 50px rgba(0,0,0,.30);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .bg-mobile-bar .bg-btn { min-height: 46px; padding: 10px 12px; font-size: 12px; }
}

@media (max-width: 390px) {
    .bg-header__actions .bg-btn { padding-inline: 11px; }
    .bg-hero h1 { font-size: 51px; }
    .bg-hero__ctas { grid-template-columns: 1fr; }
    .bg-hero__ctas .bg-btn:first-child { grid-column: auto; }
    .bg-price-lockup { grid-template-columns: 1fr; }
    .bg-price-lockup small { grid-column: auto; }
    .bg-otp-row { grid-template-columns: 1fr; }
    .bg-otp-row .bg-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
