:root {
    --bm-green-950: #03291b;
    --bm-green-900: #073725;
    --bm-green-800: #0d4632;
    --bm-green-700: #175a41;
    --bm-green-100: #dfece4;
    --bm-green-50: #f1f6f3;

    --bm-orange-700: #ad3000;
    --bm-orange-600: #d93f00;
    --bm-orange-500: #f4510b;
    --bm-orange-200: #ffc39f;
    --bm-orange-50: #fff4ed;

    --bm-ink: #152019;
    --bm-muted: #66716a;
    --bm-border: #dde5df;
    --bm-surface: #ffffff;
    --bm-page: #f7f9f7;

    --bm-container: 1220px;
    --bm-gutter: 24px;
}

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

body.buminet-preview-page {
    margin: 0;
    background: var(--bm-page);
    color: var(--bm-ink);
    font-family:
            "DM Sans",
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;
}

.buminet-preview-page,
.buminet-preview-page * {
    box-sizing: border-box;
}

.buminet-preview-page h1,
.buminet-preview-page h2,
.buminet-preview-page h3,
.buminet-preview-page h4,
.buminet-preview-page strong {
    font-family:
            "Nunito",
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;
}

.buminet-preview-page a {
    text-decoration: none;
}

.buminet-preview-page #main-content:focus {
    outline: 0;
}

.bm-skip-link {
    position: fixed;
    z-index: 1100;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border: 2px solid var(--bm-orange-500);
    border-radius: 10px;
    background: #ffffff;
    color: var(--bm-green-950);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(3, 41, 27, 0.16);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.bm-skip-link:focus {
    color: var(--bm-green-950);
    transform: translateY(0);
}

.buminet-preview-page a:focus-visible,
.buminet-preview-page button:focus-visible {
    outline: 3px solid var(--bm-orange-500);
    outline-offset: 3px;
}

.bm-registration-form .form-control:focus-visible {
    outline: 0;
}

.bm-registration-form
.choice-control__input:focus-visible
+ .choice-control__label {
    border-color: var(--bm-green-700);
    outline: 3px solid rgba(23, 90, 65, 0.18);
    outline-offset: 2px;
}

.bm-page-wrapper {
    min-height: 100vh;
    overflow-x: clip;
}

.bm-container {
    width: min(
            calc(100% - (var(--bm-gutter) * 2)),
            var(--bm-container)
    );
    margin-inline: auto;
}

/* Header */

.bm-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    transition:
            background 180ms ease,
            box-shadow 180ms ease,
            transform 180ms ease;
}

.bm-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(3, 41, 27, 0.09);
    backdrop-filter: blur(16px);
}

.bm-header.is-menu-open {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(3, 41, 27, 0.09);
    backdrop-filter: blur(16px);
}

.bm-header__inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.bm-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.bm-brand img {
    display: block;
    width: auto;
    max-width: 156px;
    height: 42px;
    object-fit: contain;
}

.bm-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.bm-navigation a {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    transition: color 160ms ease;
}

.bm-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--bm-orange-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.bm-navigation a:hover {
    color: #ffffff;
}

.bm-navigation a:hover::after {
    transform: scaleX(1);
}

.bm-header.is-scrolled .bm-navigation a {
    color: var(--bm-muted);
}

.bm-header.is-scrolled .bm-navigation a:hover {
    color: var(--bm-green-800);
}

.bm-header__actions {
    display: flex;
    align-items: center;
}

.bm-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.bm-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: #ffffff;
    transition:
            transform 160ms ease,
            opacity 160ms ease,
            background 160ms ease;
}

.bm-header.is-scrolled .bm-menu-toggle {
    border-color: var(--bm-border);
    background: #ffffff;
}

.bm-header.is-scrolled .bm-menu-toggle span {
    background: var(--bm-green-900);
}

.bm-header.is-menu-open .bm-menu-toggle {
    border-color: var(--bm-border);
    background: #ffffff;
}

.bm-header.is-menu-open .bm-menu-toggle span {
    background: var(--bm-green-900);
}

.bm-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.bm-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.bm-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.bm-mobile-navigation {
    border-top: 1px solid var(--bm-border);
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(3, 41, 27, 0.12);
}

.bm-mobile-navigation .bm-container {
    display: grid;
    gap: 4px;
    padding-block: 14px 20px;
}

.bm-mobile-navigation a:not(.bm-button) {
    padding: 13px 4px;
    color: var(--bm-ink);
    font-weight: 600;
}

/* Buttons */

.bm-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family:
            "Nunito",
            sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition:
            transform 160ms ease,
            box-shadow 160ms ease,
            background 160ms ease,
            border-color 160ms ease;
}

.bm-button:hover {
    transform: translateY(-2px);
}

.bm-button--small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 14px;
}

.bm-button--primary {
    border-color: var(--bm-orange-500);
    background: var(--bm-orange-500);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(244, 81, 11, 0.25);
}

.bm-button--primary:hover {
    border-color: var(--bm-orange-600);
    background: var(--bm-orange-600);
    color: #ffffff;
}

.bm-button:disabled,
.bm-button:disabled:hover {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bm-button--outline {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.bm-button--outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

.bm-package-card .bm-button--outline {
    border-color: var(--bm-green-700);
    background: transparent;
    color: var(--bm-green-800);
}

.bm-package-card .bm-button--outline:hover {
    background: var(--bm-green-50);
    color: var(--bm-green-900);
}

.bm-button--light {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--bm-green-900);
    box-shadow: 0 15px 35px rgba(3, 41, 27, 0.16);
}

.bm-button--block {
    width: 100%;
}

/* Hero */

.bm-hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    padding: 158px 0 90px;
    background:
            linear-gradient(
                    135deg,
                    var(--bm-green-950) 0%,
                    var(--bm-green-800) 58%,
                    var(--bm-green-700) 100%
            );
}

.bm-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.22;
    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.08) 1px,
                    transparent 1px
            ),
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.08) 1px,
                    transparent 1px
            );
    background-size: 52px 52px;
    mask-image:
            linear-gradient(
                    to bottom,
                    #000,
                    transparent 86%
            );
}

.bm-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.bm-hero__glow--orange {
    top: 90px;
    right: -130px;
    width: 520px;
    height: 520px;
    background: rgba(244, 81, 11, 0.22);
}

.bm-hero__glow--green {
    bottom: -260px;
    left: -120px;
    width: 580px;
    height: 580px;
    background: rgba(87, 146, 118, 0.22);
}

.bm-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(430px, 0.95fr);
    align-items: center;
    gap: 80px;
}

.bm-eyebrow {
    margin: 0 0 18px;
    color: var(--bm-orange-500);
    font-family:
            "Nunito",
            sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bm-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 5.6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.bm-hero h1 span {
    display: block;
    color: #ffb28f;
}

.bm-hero__description {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    line-height: 1.75;
}

.bm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.bm-hero__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
}

.bm-hero__trust > div {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
}

.bm-hero__trust i {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bm-orange-200);
}

.bm-hero__trust span {
    display: grid;
    gap: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.45;
}

.bm-hero__trust strong {
    color: #ffffff;
    font-size: 13px;
}

.bm-hero__visual {
    position: relative;
    min-height: 540px;
}

.bm-visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.bm-visual-orbit--one {
    inset: 26px 10px 18px 24px;
}

.bm-visual-orbit--two {
    inset: 80px 64px 72px 78px;
}

.bm-home-card {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(390px, 82%);
    min-height: 440px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background:
            linear-gradient(
                    150deg,
                    rgba(255, 255, 255, 0.18),
                    rgba(255, 255, 255, 0.06)
            );
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.24);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(20px);
}

.bm-home-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
}

.bm-home-card__top strong {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0.08em;
}

.bm-home-card__house {
    position: relative;
    display: grid;
    width: 210px;
    height: 210px;
    margin: 52px auto 45px;
    place-items: center;
    border-radius: 50%;
    background:
            radial-gradient(
                    circle,
                    rgba(244, 81, 11, 0.9),
                    rgba(244, 81, 11, 0.16) 55%,
                    transparent 56%
            );
}

.bm-home-card__house > i {
    position: relative;
    z-index: 4;
    color: #ffffff;
    font-size: 68px;
}

.bm-home-card__signal {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.bm-home-card__signal--one {
    inset: 22px;
}

.bm-home-card__signal--two {
    inset: 4px;
}

.bm-home-card__signal--three {
    inset: -16px;
    opacity: 0.5;
}

.bm-home-card__status {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.bm-home-card__status span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.bm-home-card__status span i {
    margin-right: 5px;
    color: #7ddc9d;
    font-size: 8px;
}

.bm-home-card__status strong {
    max-width: 190px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    text-align: right;
}

.bm-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 235px;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(3, 41, 27, 0.2);
}

.bm-floating-card > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    background: var(--bm-orange-50);
    color: var(--bm-orange-500);
}

.bm-floating-card span {
    display: grid;
    gap: 2px;
}

.bm-floating-card small {
    color: var(--bm-muted);
    font-size: 11px;
}

.bm-floating-card strong {
    color: var(--bm-green-900);
    font-size: 14px;
}

.bm-floating-card--speed {
    top: 92px;
    right: -26px;
}

.bm-floating-card--support {
    bottom: 70px;
    left: -25px;
}

/* Shared sections */

.bm-section {
    padding: 105px 0;
    background: #ffffff;
}

.bm-section--soft {
    background: var(--bm-green-50);
}

.bm-section--green {
    position: relative;
    overflow: hidden;
    background:
            linear-gradient(
                    135deg,
                    var(--bm-green-900),
                    var(--bm-green-700)
            );
}

.bm-section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.85fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.bm-section-heading h2,
.bm-go-panel h2,
.bm-registration-cta h2 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.bm-section-heading > p,
.bm-go-panel > div > p,
.bm-registration-cta p {
    margin: 0;
    color: var(--bm-muted);
    font-size: 17px;
    line-height: 1.75;
}

.bm-section-heading--light h2,
.bm-section-heading--light > p {
    color: #ffffff;
}

.bm-section-heading--light > p {
    color: rgba(255, 255, 255, 0.7);
}

/* Trust strip */

.bm-trust-strip {
    border-bottom: 1px solid var(--bm-border);
    background: #ffffff;
}

.bm-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 92px;
    align-items: center;
}

.bm-trust-strip__grid span {
    padding: 8px 28px;
    border-right: 1px solid var(--bm-border);
    color: var(--bm-green-800);
    font-family:
            "Nunito",
            sans-serif;
    font-weight: 800;
    text-align: center;
}

.bm-trust-strip__grid span:last-child {
    border-right: 0;
}

/* Packages */

.bm-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 24px;
}

.bm-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 34px;
    border: 1px solid var(--bm-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(3, 41, 27, 0.06);
}

.bm-package-card--featured {
    border-color: var(--bm-orange-500);
    box-shadow: 0 22px 55px rgba(244, 81, 11, 0.14);
    transform: translateY(-12px);
}

.bm-package-card__recommended {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--bm-orange-50);
    color: var(--bm-orange-600);
    font-size: 11px;
    font-weight: 800;
}

.bm-package-card__label {
    color: var(--bm-orange-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bm-package-card h3 {
    margin: 12px 0 24px;
    color: var(--bm-green-950);
    font-size: 28px;
    font-weight: 900;
}

.bm-package-card__speed {
    display: grid;
    gap: 2px;
}

.bm-package-card__speed small {
    color: var(--bm-muted);
    font-size: 12px;
}

.bm-package-card__speed strong {
    color: var(--bm-green-800);
    font-size: 38px;
}

.bm-package-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 22px 0;
}

.bm-package-card__price strong {
    color: var(--bm-ink);
    font-size: 24px;
}

.bm-package-card__price span {
    color: var(--bm-muted);
    font-size: 13px;
}

.bm-package-card ul {
    display: grid;
    flex: 1;
    gap: 12px;
    margin: 0 0 30px;
    padding: 24px 0 0;
    border-top: 1px solid var(--bm-border);
    list-style: none;
}

.bm-package-card li {
    position: relative;
    padding-left: 25px;
    color: var(--bm-muted);
    line-height: 1.55;
}

.bm-package-card li::before {
    position: absolute;
    top: 3px;
    left: 0;
    content: "✓";
    color: var(--bm-orange-500);
    font-weight: 900;
}

/* Process */

.bm-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bm-process-grid article {
    position: relative;
    min-height: 300px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
}

.bm-process-grid article > span {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, 0.16);
    font-family:
            "Nunito",
            sans-serif;
    font-size: 54px;
    font-weight: 900;
}

.bm-process-grid article > i {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 36px;
    place-items: center;
    border-radius: 16px;
    background: var(--bm-orange-500);
    color: #ffffff;
    font-size: 23px;
}

.bm-process-grid h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 23px;
}

.bm-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

/* GO */

.bm-go-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);
    align-items: center;
    gap: 80px;
    padding: 64px;
    border: 1px solid var(--bm-green-100);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(3, 41, 27, 0.08);
}

.bm-go-panel > div > p:last-child {
    max-width: 680px;
    margin-top: 22px;
}

.bm-go-panel__visual {
    position: relative;
    display: grid;
    min-height: 270px;
    place-items: center;
    overflow: hidden;
    border-radius: 24px;
    background:
            linear-gradient(
                    145deg,
                    var(--bm-orange-500),
                    var(--bm-orange-700)
            );
}

.bm-go-panel__visual::before,
.bm-go-panel__visual::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    content: "";
}

.bm-go-panel__visual::before {
    width: 210px;
    height: 210px;
}

.bm-go-panel__visual::after {
    width: 320px;
    height: 320px;
}

.bm-go-panel__visual span {
    position: absolute;
    right: 22px;
    bottom: 4px;
    color: rgba(255, 255, 255, 0.12);
    font-family:
            "Nunito",
            sans-serif;
    font-size: 120px;
    font-weight: 900;
}

.bm-go-panel__visual i {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 76px;
}

/* Registration CTA */

.bm-registration-cta {
    padding: 88px 0;
    background: var(--bm-orange-500);
}

.bm-registration-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.bm-registration-cta .bm-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.bm-registration-cta h2 {
    color: #ffffff;
}

.bm-registration-cta p {
    max-width: 700px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.76);
}

/* Footer */

.bm-footer {
    padding: 78px 0 26px;
    background: var(--bm-green-950);
    color: rgba(255, 255, 255, 0.64);
}

.bm-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(0, 0.7fr));
    gap: 56px;
}

.bm-footer__grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bm-footer__logo {
    width: auto;
    max-width: 155px;
    height: 42px;
    object-fit: contain;
}

.bm-footer strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.bm-footer a {
    color: rgba(255, 255, 255, 0.64);
}

.bm-footer a:hover {
    color: var(--bm-orange-200);
}

.bm-footer p {
    max-width: 400px;
    margin: 8px 0 0;
    line-height: 1.7;
}

.bm-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

/* Responsive */

@media (max-width: 1100px) {
    .bm-navigation {
        gap: 18px;
    }

    .bm-hero__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(370px, 0.8fr);
        gap: 36px;
    }

    .bm-hero__trust {
        grid-template-columns: 1fr;
    }

    .bm-floating-card--speed {
        right: 0;
    }

    .bm-floating-card--support {
        left: 0;
    }
}

@media (max-width: 920px) {
    .bm-navigation,
    .bm-header__actions {
        display: none;
    }

    .bm-menu-toggle {
        display: block;
    }

    .bm-hero {
        min-height: 0;
        padding-top: 140px;
    }

    .bm-hero__layout {
        grid-template-columns: 1fr;
    }

    .bm-hero__content {
        max-width: 720px;
    }

    .bm-hero__visual {
        min-height: 580px;
    }

    .bm-section-heading,
    .bm-go-panel {
        grid-template-columns: 1fr;
    }

    .bm-package-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-inline: auto;
    }

    .bm-package-card--featured {
        transform: none;
    }

    .bm-process-grid {
        grid-template-columns: 1fr;
    }

    .bm-go-panel {
        gap: 40px;
        padding: 42px;
    }
}

@media (max-width: 700px) {
    html {
        scroll-padding-top: 92px;
    }

    :root {
        --bm-gutter: 18px;
    }

    .bm-header__inner {
        min-height: 76px;
    }

    .bm-brand img {
        max-width: 132px;
        height: 36px;
    }

    .bm-hero {
        padding: 124px 0 68px;
    }

    .bm-hero h1 {
        font-size: 42px;
    }

    .bm-hero__description {
        font-size: 16px;
    }

    .bm-hero__actions {
        flex-direction: column;
    }

    .bm-hero__actions .bm-button {
        width: 100%;
    }

    .bm-hero__visual {
        min-height: 480px;
    }

    .bm-home-card {
        width: 88%;
        min-height: 390px;
        padding: 24px;
    }

    .bm-home-card__house {
        width: 170px;
        height: 170px;
        margin-block: 42px 36px;
    }

    .bm-home-card__house > i {
        font-size: 54px;
    }

    .bm-floating-card {
        min-width: 200px;
        padding: 12px;
    }

    .bm-floating-card--speed {
        top: 30px;
    }

    .bm-floating-card--support {
        bottom: 24px;
    }

    .bm-trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bm-trust-strip__grid span {
        border-bottom: 1px solid var(--bm-border);
    }

    .bm-section {
        padding: 76px 0;
    }

    .bm-section-heading {
        gap: 24px;
        margin-bottom: 38px;
    }

    .bm-section-heading h2,
    .bm-go-panel h2,
    .bm-registration-cta h2 {
        font-size: 36px;
    }

    .bm-package-card {
        min-height: 0;
        padding: 28px;
    }

    .bm-go-panel {
        padding: 28px;
        border-radius: 20px;
    }

    .bm-registration-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .bm-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .bm-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Registration form preview */

.bm-form-page {
    min-height: 100vh;
    padding: 150px 0 110px;
    background:
            radial-gradient(
                    circle at top right,
                    rgba(244, 81, 11, 0.08),
                    transparent 32%
            ),
            linear-gradient(
                    180deg,
                    #f3f7f4 0%,
                    #ffffff 100%
            );
}

.bm-registration-preview-page .bm-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(3, 41, 27, 0.08);
    backdrop-filter: blur(16px);
}

.bm-registration-preview-page .bm-navigation a {
    color: var(--bm-muted);
}

.bm-registration-preview-page .bm-navigation a:hover {
    color: var(--bm-green-800);
}

.bm-registration-preview-page .bm-menu-toggle {
    border-color: var(--bm-border);
    background: #ffffff;
}

.bm-registration-preview-page .bm-menu-toggle span {
    background: var(--bm-green-900);
}

.bm-form-page__heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.bm-form-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: var(--bm-green-700);
    font-size: 14px;
    font-weight: 700;
}

.bm-form-back-link:hover {
    color: var(--bm-orange-500);
}

.bm-form-page__heading h1 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.bm-form-page__heading > p:last-child {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--bm-muted);
    font-size: 17px;
    line-height: 1.75;
}

.bm-registration-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 360px);
    align-items: start;
    gap: 36px;
}

.bm-registration-main {
    min-width: 0;
}

.bm-form-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid var(--bm-border);
    border-radius: 18px;
    background: #ffffff;
}

.bm-form-step {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

.bm-form-step:not(:last-child)::after {
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;
    width: 1px;
    content: "";
    background: var(--bm-border);
}

.bm-form-step > span {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--bm-border);
    border-radius: 50%;
    background: var(--bm-green-50);
    color: var(--bm-muted);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.bm-form-step > div {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.bm-form-step strong {
    color: var(--bm-ink);
    font-size: 13px;
}

.bm-form-step small {
    overflow: hidden;
    color: var(--bm-muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bm-form-step.is-active {
    background: var(--bm-orange-50);
}

.bm-form-step.is-active > span {
    border-color: var(--bm-orange-500);
    background: var(--bm-orange-500);
    color: #ffffff;
}

.bm-form-step.is-active strong {
    color: var(--bm-orange-700);
}

.bm-registration-card {
    overflow: hidden;
    border: 1px solid var(--bm-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(3, 41, 27, 0.08);
}

.bm-registration-card__heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 36px;
    border-bottom: 1px solid var(--bm-border);
    background:
            linear-gradient(
                    135deg,
                    var(--bm-green-50),
                    #ffffff
            );
}

.bm-registration-card__icon {
    display: grid;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: var(--bm-green-800);
    color: #ffffff;
    font-size: 19px;
}

.bm-registration-card__heading p {
    margin: 0 0 4px;
    color: var(--bm-orange-500);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bm-registration-card__heading h2 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: 28px;
    font-weight: 900;
}

.bm-registration-card__heading > div > span {
    display: block;
    margin-top: 6px;
    color: var(--bm-muted);
    font-size: 14px;
    line-height: 1.55;
}

.bm-registration-form {
    padding: 36px;
}

.bm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bm-form-grid__full {
    grid-column: 1 / -1;
}

/* Override existing reusable form components */

.bm-registration-form .form-field {
    margin: 0;
}

.bm-registration-form .form-label {
    display: block;
    margin-bottom: 9px;
    color: var(--bm-green-950);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.bm-registration-form .form-label__required {
    color: var(--bm-orange-500);
}

.bm-registration-form .form-control {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid #ced9d1;
    border-radius: 12px;
    outline: 0;
    background: #ffffff;
    color: var(--bm-ink);
    font: inherit;
    transition:
            border-color 160ms ease,
            box-shadow 160ms ease,
            background 160ms ease;
}

.bm-registration-form .form-control::placeholder {
    color: #9aa59e;
}

.bm-registration-form .form-control:hover {
    border-color: #aebdb3;
}

.bm-registration-form .form-control:focus {
    border-color: var(--bm-green-700);
    box-shadow: 0 0 0 4px rgba(23, 90, 65, 0.1);
}

.bm-registration-form .form-control.is-invalid,
.bm-registration-form [aria-invalid="true"] {
    border-color: #c93b32;
    box-shadow: 0 0 0 4px rgba(201, 59, 50, 0.08);
}

.bm-registration-form .form-hint {
    margin: 7px 0 0;
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.5;
}

.bm-registration-form .form-field-error {
    margin: 7px 0 0;
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
}

.bm-registration-form .choice-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.bm-registration-form .choice-group__hint {
    margin-bottom: 12px;
}

.bm-registration-form .choice-group__options {
    display: grid;
    gap: 12px;
}

.bm-registration-form
.choice-group__options--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bm-registration-form .choice-control {
    position: relative;
}

.bm-registration-form .choice-control__input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bm-registration-form .choice-control__label {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--bm-border);
    border-radius: 13px;
    background: #ffffff;
    cursor: pointer;
    transition:
            border-color 160ms ease,
            background 160ms ease,
            box-shadow 160ms ease;
}

.bm-registration-form
.choice-control__input:checked
+ .choice-control__label {
    border-color: var(--bm-orange-500);
    background: var(--bm-orange-50);
    box-shadow: 0 0 0 3px rgba(244, 81, 11, 0.08);
}

.bm-registration-form .choice-control__indicator {
    display: grid;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 2px solid #aebbb2;
    border-radius: 5px;
    background: #ffffff;
}

.bm-registration-form
.choice-control__indicator--radio {
    border-radius: 50%;
}

.bm-registration-form
.choice-control__input:checked
+ .choice-control__label
.choice-control__indicator {
    border: 6px solid var(--bm-orange-500);
}

.bm-registration-form .choice-control__content {
    color: var(--bm-ink);
    font-size: 13px;
}

.bm-form-information {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 30px;
    padding: 17px;
    border: 1px solid #cfe0d4;
    border-radius: 14px;
    background: var(--bm-green-50);
}

.bm-form-information > i {
    margin-top: 2px;
    color: var(--bm-green-700);
}

.bm-form-information strong {
    color: var(--bm-green-900);
    font-size: 13px;
}

.bm-form-information p {
    margin: 4px 0 0;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.55;
}

.bm-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--bm-border);
}

.bm-button--form-secondary {
    border-color: var(--bm-border);
    background: #ffffff;
    color: var(--bm-muted);
}

.bm-button--form-secondary:hover {
    border-color: var(--bm-green-700);
    color: var(--bm-green-800);
}

/* Registration sidebar */

.bm-registration-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 18px;
}

.bm-registration-summary {
    padding: 28px;
    border-radius: 22px;
    background:
            linear-gradient(
                    145deg,
                    var(--bm-green-950),
                    var(--bm-green-700)
            );
    color: #ffffff;
    box-shadow: 0 22px 55px rgba(3, 41, 27, 0.18);
}

.bm-registration-summary__eyebrow {
    margin: 0 0 18px;
    color: var(--bm-orange-200);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bm-registration-summary__package {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.bm-registration-summary__package span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.bm-registration-summary__package h2 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
}

.bm-registration-summary__badge {
    padding: 5px 8px;
    border-radius: 7px;
    background: var(--bm-orange-500);
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800;
}

.bm-registration-summary__speed {
    display: grid;
    gap: 2px;
    margin-top: 28px;
}

.bm-registration-summary__speed small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.bm-registration-summary__speed strong {
    color: #ffffff;
    font-size: 39px;
}

.bm-registration-summary__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
}

.bm-registration-summary__price strong {
    color: var(--bm-orange-200);
    font-size: 21px;
}

.bm-registration-summary__price span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.bm-registration-summary ul {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    list-style: none;
}

.bm-registration-summary li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.bm-registration-summary li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--bm-orange-200);
    font-weight: 900;
}

.bm-registration-summary__note {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    line-height: 1.55;
}

.bm-registration-help {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--bm-border);
    border-radius: 18px;
    background: #ffffff;
}

.bm-registration-help > span {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--bm-orange-50);
    color: var(--bm-orange-500);
}

.bm-registration-help strong {
    color: var(--bm-green-950);
    font-size: 14px;
}

.bm-registration-help p {
    margin: 5px 0 10px;
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.55;
}

.bm-registration-help a {
    color: var(--bm-green-700);
    font-size: 12px;
    font-weight: 800;
}

.bm-registration-safety {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 8px;
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.55;
}

.bm-registration-safety i {
    margin-top: 2px;
    color: var(--bm-green-700);
}

@media (max-width: 1040px) {
    .bm-registration-layout {
        grid-template-columns: 1fr;
    }

    .bm-registration-sidebar {
        position: static;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .bm-registration-safety {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .bm-form-page {
        padding: 120px 0 76px;
    }

    .bm-form-page__heading h1 {
        font-size: 40px;
    }

    .bm-form-steps {
        grid-template-columns: repeat(4, minmax(68px, 1fr));
        overflow-x: auto;
    }

    .bm-form-step {
        justify-content: center;
        padding: 13px 9px;
    }

    .bm-form-step > div {
        display: none;
    }

    .bm-form-step:not(:last-child)::after {
        top: 14px;
        bottom: 14px;
    }

    .bm-registration-card__heading {
        padding: 26px 24px;
    }

    .bm-registration-form {
        padding: 26px 24px;
    }

    .bm-form-grid {
        grid-template-columns: 1fr;
    }

    .bm-form-grid__full {
        grid-column: auto;
    }

    .bm-registration-form
    .choice-group__options--inline {
        grid-template-columns: 1fr;
    }

    .bm-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .bm-form-actions .bm-button {
        width: 100%;
    }

    .bm-registration-sidebar {
        grid-template-columns: 1fr;
    }

    .bm-registration-safety {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .bm-header,
    .bm-navigation a,
    .bm-navigation a::after,
    .bm-menu-toggle span,
    .bm-button,
    .bm-skip-link,
    .bm-registration-form .form-control,
    .bm-registration-form .choice-control__label {
        transition: none;
    }

    .bm-button:hover {
        transform: none;
    }
}
/* =========================================================
   Buminet HOME registration MVP
========================================================= */

.bm-header-status-link {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding-inline: 4px;
    color: var(--bm-green-800);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.bm-header:not(.is-scrolled):not(.is-menu-open)
.bm-header-status-link {
    color: #ffffff;
}

.bm-registration-preview-page
.bm-header-status-link {
    color: var(--bm-green-800) !important;
}

.bm-header-status-link:hover {
    color: var(--bm-orange-500) !important;
}

.bm-form-step {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.bm-form-step[aria-disabled="true"] {
    cursor: default;
}

.bm-form-step.is-complete > span {
    border-color: var(--bm-green-700);
    background: var(--bm-green-700);
    color: #ffffff;
}

.bm-form-step.is-complete strong {
    color: var(--bm-green-800);
}

.bm-registration-step-panel[hidden] {
    display: none !important;
}

.bm-registration-step-content {
    padding: 36px;
}

.bm-registration-step-panel
.bm-registration-card__heading {
    margin: -36px -36px 0;
}

.bm-registration-step-panel
.bm-registration-step-content {
    margin-top: 36px;
    padding: 0;
}

.bm-form-information--warning {
    border-color: #f0d38b;
    background: #fff9e8;
}

.bm-form-information--warning > i,
.bm-form-information--warning strong {
    color: #8a6100;
}

.bm-button--compact {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 11px;
}

.bm-coordinate-box {
    padding: 20px;
    border: 1px solid var(--bm-border);
    border-radius: 16px;
    background: #f8faf9;
}

.bm-coordinate-box__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.bm-coordinate-box__heading strong {
    color: var(--bm-green-950);
    font-size: 14px;
}

.bm-coordinate-box__heading p {
    margin: 5px 0 0;
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.55;
}

.bm-location-feedback {
    min-height: 18px;
    margin: 12px 0 0;
    color: var(--bm-muted);
    font-size: 11px;
    font-weight: 700;
}

.bm-location-feedback[data-state="success"] {
    color: var(--bm-green-700);
}

.bm-location-feedback[data-state="error"] {
    color: #b42318;
}

.bm-location-feedback[data-state="loading"] {
    color: #8a6100;
}

.bm-package-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bm-package-choice {
    position: relative;
    display: block;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.bm-package-choice > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bm-package-choice__card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--bm-border);
    border-radius: 16px;
    background: #ffffff;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.bm-package-choice:hover
.bm-package-choice__card {
    border-color: #9db5a4;
    transform: translateY(-2px);
}

.bm-package-choice > input:focus-visible
+ .bm-package-choice__card {
    outline: 3px solid var(--bm-orange-500);
    outline-offset: 3px;
}

.bm-package-choice > input:checked
+ .bm-package-choice__card {
    border-color: var(--bm-orange-500);
    box-shadow: 0 0 0 4px rgba(244, 81, 11, 0.09);
}

.bm-package-choice__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--bm-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.bm-package-choice__topline strong {
    padding: 4px 7px;
    border-radius: 6px;
    background: var(--bm-orange-50);
    color: var(--bm-orange-700);
    font-size: 9px;
}

.bm-package-choice__name {
    margin-top: 14px;
    color: var(--bm-green-950);
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.bm-package-choice__speed {
    display: grid;
    gap: 1px;
    margin-top: 14px;
}

.bm-package-choice__speed small {
    color: var(--bm-muted);
    font-size: 10px;
}

.bm-package-choice__speed strong {
    color: var(--bm-green-800);
    font-size: 28px;
}

.bm-package-choice__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 7px;
}

.bm-package-choice__price strong {
    color: var(--bm-orange-600);
    font-size: 17px;
}

.bm-package-choice__price small,
.bm-package-choice__description {
    color: var(--bm-muted);
    font-size: 10px;
}

.bm-package-choice__description {
    flex: 1 1 auto;
    margin-top: 13px;
    line-height: 1.55;
}

.bm-package-choice__select {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--bm-green-700);
    font-size: 11px;
    font-weight: 800;
}

.bm-package-choice__select i {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid #b8c7bc;
    border-radius: 50%;
    color: transparent;
    font-size: 8px;
}

.bm-package-choice > input:checked
+ .bm-package-choice__card
.bm-package-choice__select i {
    border-color: var(--bm-orange-500);
    background: var(--bm-orange-500);
    color: #ffffff;
}

.bm-confirmation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.bm-confirmation-grid article {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--bm-border);
    border-radius: 14px;
    background: #f8faf9;
}

.bm-confirmation-grid span,
.bm-result-summary span {
    display: block;
    color: var(--bm-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bm-confirmation-grid strong,
.bm-result-summary strong {
    display: block;
    margin-top: 7px;
    overflow-wrap: anywhere;
    color: var(--bm-green-950);
    font-size: 13px;
}

.bm-confirmation-grid small,
.bm-result-summary small {
    display: block;
    margin-top: 5px;
    overflow-wrap: anywhere;
    color: var(--bm-muted);
    font-size: 10px;
    line-height: 1.45;
}

.bm-form-actions--single {
    justify-content: flex-end;
}

.bm-result-container,
.bm-tracking-container {
    max-width: 980px;
}

.bm-result-card {
    max-width: 820px;
    margin-inline: auto;
    padding: 46px;
    border: 1px solid var(--bm-border);
    border-radius: 26px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 24px 70px rgba(3, 41, 27, 0.1);
}

.bm-result-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 20px;
    background: var(--bm-green-700);
    color: #ffffff;
    font-size: 24px;
}

.bm-result-card h1 {
    margin: 8px 0 0;
    color: var(--bm-green-950);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bm-result-card__lead {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--bm-muted);
    font-size: 15px;
    line-height: 1.7;
}

.bm-registration-number {
    display: grid;
    gap: 8px;
    margin: 28px 0 0;
    padding: 22px;
    border: 1px dashed #9fb8a6;
    border-radius: 16px;
    background: var(--bm-green-50);
}

.bm-registration-number span {
    color: var(--bm-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bm-registration-number strong {
    color: var(--bm-green-900);
    font-family: "Nunito", sans-serif;
    font-size: clamp(23px, 4vw, 34px);
    font-weight: 900;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
}

.bm-result-status {
    margin-top: 22px;
}

.bm-result-status__badge {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    padding-inline: 11px;
    border-radius: 8px;
    background: #fff4d5;
    color: #7a5700;
    font-size: 10px;
    font-weight: 900;
}

.bm-result-status p {
    max-width: 650px;
    margin: 10px auto 0;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.6;
}

.bm-result-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 27px;
    text-align: left;
}

.bm-result-summary article {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--bm-border);
    border-radius: 13px;
    background: #fbfcfb;
}

.bm-result-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.bm-result-card__notice {
    margin: 23px 0 0;
    color: var(--bm-muted);
    font-size: 10px;
    line-height: 1.55;
}

.bm-tracking-layout {
    display: grid;
    gap: 22px;
}

.bm-tracking-layout
.bm-registration-form {
    padding-top: 30px;
}

.bm-tracking-result {
    padding: 30px;
    border: 1px solid var(--bm-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(3, 41, 27, 0.07);
}

.bm-tracking-result__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.bm-tracking-result__header > div > span {
    display: block;
    color: var(--bm-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.bm-tracking-result__header > div > strong {
    display: block;
    margin-top: 7px;
    color: var(--bm-green-950);
    font-size: 24px;
    overflow-wrap: anywhere;
}

.bm-tracking-result__status {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding-inline: 10px;
    border-radius: 7px;
    background: #f0f2f4;
    color: #596271;
    font-size: 9px;
    font-weight: 900;
    white-space: nowrap;
}

.bm-tracking-result__status--success {
    background: #eaf8ef;
    color: #247443;
}

.bm-tracking-result__status--warning {
    background: #fff4d5;
    color: #7a5700;
}

.bm-tracking-result__status--danger {
    background: #fff0f0;
    color: #9b3030;
}

.bm-tracking-result__description {
    margin: 16px 0 0;
    color: var(--bm-muted);
    font-size: 13px;
    line-height: 1.65;
}

.bm-tracking-result__note {
    margin-top: 18px;
    padding: 16px;
    border-left: 4px solid var(--bm-orange-500);
    border-radius: 9px;
    background: var(--bm-orange-50);
}

.bm-tracking-result__note strong {
    color: var(--bm-green-950);
    font-size: 12px;
}

.bm-tracking-result__note p {
    margin: 6px 0 0;
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.6;
}

@media (max-width: 1040px) {
    .bm-header-status-link {
        display: none;
    }
}

@media (max-width: 760px) {
    .bm-registration-step-panel
    .bm-registration-card__heading {
        margin: -26px -24px 0;
    }

    .bm-registration-step-panel
    .bm-registration-step-content {
        margin-top: 26px;
    }

    .bm-coordinate-box__heading,
    .bm-tracking-result__header {
        align-items: stretch;
        flex-direction: column;
    }

    .bm-coordinate-box__heading .bm-button,
    .bm-result-actions .bm-button {
        width: 100%;
    }

    .bm-package-choice-grid,
    .bm-confirmation-grid,
    .bm-result-summary {
        grid-template-columns: 1fr;
    }

    .bm-result-card {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .bm-result-actions {
        flex-direction: column;
    }

    .bm-tracking-result {
        padding: 22px;
    }

    .bm-tracking-result__status {
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bm-package-choice__card {
        transition: none;
    }

    .bm-package-choice:hover
    .bm-package-choice__card {
        transform: none;
    }
}


/* Legal consent and public legal documents */

.bm-legal-consent-panel {
    margin-top: 6px;
    padding: 22px;
    border: 1px solid #d9e4dd;
    border-radius: 16px;
    background: #f8fbf9;
}

.bm-legal-consent-panel__heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.bm-legal-consent-panel__heading > span {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 11px;
    background: var(--bm-green-100);
    color: var(--bm-green-800);
}

.bm-legal-consent-panel__heading h3 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: 16px;
    line-height: 1.35;
}

.bm-legal-consent-panel__heading p {
    margin: 5px 0 0;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.6;
}

.bm-legal-consent-panel__documents {
    display: grid;
    gap: 12px;
}

.bm-legal-consent {
    padding: 0;
    border: 1px solid var(--bm-border);
    border-radius: 14px;
    background: #ffffff;
}

.bm-legal-consent.is-invalid {
    border-color: rgba(180, 35, 24, 0.38);
    background: #fffafa;
}

.bm-registration-form
.bm-legal-consent__label {
    min-height: 0;
    align-items: flex-start;
    border: 0;
    border-radius: 13px 13px 0 0;
    box-shadow: none;
}

.bm-registration-form
.bm-legal-consent__control
.choice-control__input:checked
+ .bm-legal-consent__label {
    border: 0;
    background: var(--bm-orange-50);
    box-shadow: none;
}

.bm-registration-form
.bm-legal-consent__label
.choice-control__content {
    line-height: 1.55;
}

.bm-legal-consent__document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    border-top: 1px solid var(--bm-border);
    color: var(--bm-muted);
    font-size: 10px;
}

.bm-legal-consent__document a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bm-green-800);
    font-size: 11px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bm-legal-consent__document a:hover {
    color: var(--bm-orange-600);
}

.bm-legal-consent > .form-field-error {
    margin: 0;
    padding: 0 16px 12px;
}

.bm-legal-consent-panel__note {
    margin: 14px 0 0;
    color: var(--bm-muted);
    font-size: 10px;
    line-height: 1.6;
}

.bm-legal-page__hero {
    padding: 154px 0 54px;
    background:
        radial-gradient(
            circle at top right,
            rgba(244, 81, 11, 0.09),
            transparent 34%
        ),
        linear-gradient(180deg, #f3f7f4 0%, #ffffff 100%);
}

.bm-legal-page__hero-inner {
    max-width: 980px;
}

.bm-legal-page__hero h1 {
    max-width: 820px;
    margin: 12px 0 0;
    color: var(--bm-green-950);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.bm-legal-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.bm-legal-page__meta span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid #dce6df;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--bm-muted);
    font-size: 10px;
    font-weight: 700;
}

.bm-legal-page__meta i {
    color: var(--bm-green-700);
}

.bm-legal-page__content {
    padding: 42px 0 100px;
    background: #ffffff;
}

.bm-legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px 48px;
    border: 1px solid var(--bm-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(3, 41, 27, 0.07);
    color: #35433b;
}

.bm-legal-document > p:first-of-type {
    margin-top: 0;
}

.bm-legal-document p,
.bm-legal-document li,
.bm-legal-table td,
.bm-legal-table th {
    font-size: 14px;
    line-height: 1.78;
}

.bm-legal-document p {
    margin: 14px 0 0;
}

.bm-legal-section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--bm-border);
}

.bm-legal-section h2 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: 23px;
    line-height: 1.3;
}

.bm-legal-section h3 {
    margin: 24px 0 0;
    color: var(--bm-green-900);
    font-size: 16px;
    line-height: 1.4;
}

.bm-legal-document ol {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 24px;
}

.bm-legal-table-wrapper {
    overflow-x: auto;
    margin-top: 18px;
    border: 1px solid var(--bm-border);
    border-radius: 12px;
}

.bm-legal-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.bm-legal-table th,
.bm-legal-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--bm-border);
    text-align: left;
    vertical-align: top;
}

.bm-legal-table th {
    background: var(--bm-green-50);
    color: var(--bm-green-900);
    font-weight: 800;
}

.bm-legal-table tbody tr:last-child td {
    border-bottom: 0;
}

.bm-legal-page__actions {
    display: flex;
    max-width: 900px;
    justify-content: flex-end;
    margin: 24px auto 0;
}

@media (max-width: 760px) {
    .bm-legal-consent-panel {
        padding: 18px;
    }

    .bm-legal-consent__document {
        align-items: flex-start;
        flex-direction: column;
    }

    .bm-legal-page__hero {
        padding: 128px 0 42px;
    }

    .bm-legal-page__hero h1 {
        font-size: 36px;
    }

    .bm-legal-page__content {
        padding: 24px 0 72px;
    }

    .bm-legal-document {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .bm-legal-document p,
    .bm-legal-document li,
    .bm-legal-table td,
    .bm-legal-table th {
        font-size: 13px;
    }

    .bm-legal-section h2 {
        font-size: 20px;
    }

    .bm-legal-page__actions .bm-button {
        width: 100%;
    }
}

/* HOME-B01B: step validation and focused public package offer */

.bm-package-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bm-package-choice.is-featured
.bm-package-choice__card {
    border-color: rgba(244, 81, 11, 0.5);
    background:
        linear-gradient(
            160deg,
            #fff8f3 0%,
            #ffffff 54%
        );
    box-shadow: 0 14px 34px rgba(244, 81, 11, 0.11);
}

.bm-package-choice.is-featured
.bm-package-choice__name {
    color: var(--bm-orange-700);
}

.bm-package-choice.is-featured:hover
.bm-package-choice__card {
    border-color: var(--bm-orange-500);
    box-shadow: 0 18px 38px rgba(244, 81, 11, 0.14);
}

.bm-package-choice > input[aria-invalid="true"]
+ .bm-package-choice__card {
    border-color: #c93b32;
    box-shadow: 0 0 0 4px rgba(201, 59, 50, 0.08);
}

.bm-package-choice-grid > .form-field-error {
    grid-column: 1 / -1;
    margin-top: 0;
}

.bm-registration-form
.form-control.is-invalid {
    border-color: #c93b32;
    box-shadow: 0 0 0 4px rgba(201, 59, 50, 0.08);
}

@media (max-width: 980px) {
    .bm-package-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bm-package-choice.is-featured {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .bm-package-choice-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Existing customer update flow
========================================================= */
.bm-existing-customer-page {
    min-height: 75vh;
}

.bm-existing-update-page,
.bm-existing-welcome-page {
    padding-top: 126px;
}

.bm-existing-customer-narrow {
    max-width: 900px;
}

/* Personal invitation welcome */
.bm-existing-welcome-container {
    max-width: 900px;
}

.bm-existing-welcome-card {
    overflow: hidden;
    border: 1px solid rgba(3, 70, 47, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 26px 80px rgba(3, 41, 27, 0.09);
}

.bm-existing-welcome-card__header {
    padding: clamp(28px, 5vw, 46px) clamp(24px, 5vw, 52px) 24px;
    text-align: center;
}

.bm-existing-welcome-card__header h1,
.bm-existing-update-hero h1 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.bm-existing-welcome-card__header > p:last-child,
.bm-existing-update-hero__copy > p:last-child {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--bm-muted);
    font-size: 16px;
    line-height: 1.7;
}

.bm-existing-comparison {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(23, 90, 65, 0.15);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(3, 41, 27, 0.07);
}

.bm-existing-comparison--banner {
    margin: 28px 0 32px;
}

.bm-existing-comparison__service {
    display: grid;
    align-content: center;
    gap: 6px;
    min-height: 132px;
    padding: 20px 22px;
    border-radius: 16px;
}

.bm-existing-comparison__service.is-current {
    background: #f3f6f4;
}

.bm-existing-comparison__service.is-target {
    border: 1px solid rgba(244, 81, 11, 0.18);
    background: linear-gradient(145deg, #fff8f3, #ffffff);
}

.bm-existing-comparison__service > span {
    color: var(--bm-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bm-existing-comparison__service strong {
    color: var(--bm-green-950);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
}

.bm-existing-comparison__service small {
    color: var(--bm-orange-600);
    font-size: 17px;
    font-weight: 850;
}

.bm-existing-comparison__arrow {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    align-self: center;
    border-radius: 50%;
    background: var(--bm-green-800);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(3, 70, 47, 0.18);
}

.bm-existing-comparison__benefit {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 14px;
    border-radius: 11px;
    background: var(--bm-green-50);
    color: var(--bm-green-800);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.bm-existing-comparison__benefit i {
    color: var(--bm-orange-500);
}

.bm-existing-welcome-card__action {
    display: grid;
    gap: 18px;
    padding: 26px clamp(24px, 5vw, 52px) 30px;
    text-align: center;
}

.bm-existing-welcome-card__action > p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--bm-green-950);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.65;
}

.bm-existing-welcome-card__action form {
    width: min(100%, 620px);
    margin-inline: auto;
}

.bm-existing-welcome-cta {
    width: 100%;
    min-height: 56px;
}

.bm-existing-welcome-card__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 24px;
    border-top: 1px solid rgba(3, 70, 47, 0.09);
    background: #f7faf8;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.bm-existing-welcome-card__footer i {
    color: var(--bm-green-700);
}

/* Update journey */

.bm-existing-update-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 36px;
    align-items: end;
}

.bm-existing-update-hero__assurances {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(23, 90, 65, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
}

.bm-existing-update-hero__assurances span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--bm-green-800);
    font-size: 12px;
    font-weight: 750;
}

.bm-existing-update-hero__assurances i {
    color: var(--bm-orange-500);
}

.bm-existing-update-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 32px;
    align-items: start;
}

.bm-existing-update-form {
    min-width: 0;
}

.bm-existing-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.bm-existing-registration-card {
    overflow: visible;
}

.bm-existing-step-content {
    display: grid;
    gap: 20px;
}

.bm-existing-form-section {
    padding: 22px;
    border: 1px solid rgba(3, 70, 47, 0.11);
    border-radius: 16px;
    background: #fbfdfc;
}

.bm-existing-form-section__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.bm-existing-form-section__header > span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    background: var(--bm-green-100);
    color: var(--bm-green-800);
}

.bm-existing-form-section__header h3 {
    margin: 0;
    color: var(--bm-green-950);
    font-size: 17px;
    font-weight: 900;
}

.bm-existing-form-section__header p {
    margin: 4px 0 0;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.55;
}

.bm-existing-action-hint {
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.5;
}

.bm-existing-choice-intro {
    display: grid;
    grid-template-columns: minmax(190px, 0.6fr) minmax(0, 1.4fr);
    gap: 20px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(23, 90, 65, 0.15);
    border-radius: 14px;
    background: var(--bm-green-50);
}

.bm-existing-choice-intro > div {
    display: grid;
    gap: 4px;
}

.bm-existing-choice-intro span {
    color: var(--bm-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.bm-existing-choice-intro strong {
    color: var(--bm-green-950);
    font-size: 22px;
}

.bm-existing-choice-intro small {
    color: var(--bm-orange-600);
    font-size: 15px;
    font-weight: 800;
}

.bm-existing-choice-intro p {
    margin: 0;
    color: var(--bm-muted);
    font-size: 13px;
    line-height: 1.65;
}

.bm-existing-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bm-existing-package-grid .bm-package-choice {
    min-height: 100%;
}

.bm-package-choice small {
    display: block;
    margin-top: 12px;
    color: var(--bm-green-800);
    font-weight: 700;
}

.bm-existing-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bm-existing-review-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(3, 70, 47, 0.11);
    border-radius: 14px;
    background: #fbfdfc;
}

.bm-existing-review-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--bm-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.bm-existing-review-card strong {
    display: block;
    color: var(--bm-green-950);
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.bm-existing-review-card p {
    margin: 6px 0 0;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.bm-existing-adjustment-summary {
    padding: 18px 20px;
    border-left: 4px solid var(--bm-orange-500);
    border-radius: 10px;
    background: #fff6ef;
    color: var(--bm-green-950);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.65;
}

.bm-existing-consent-list {
    margin-top: 0;
}

/* Sticky service summary */
.bm-existing-side-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--bm-green-950), var(--bm-green-800));
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(3, 41, 27, 0.18);
}

.bm-existing-side-summary__eyebrow {
    color: #ffb28f;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.bm-existing-side-service {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 14px;
}

.bm-existing-side-service.is-current {
    background: rgba(255, 255, 255, 0.08);
}

.bm-existing-side-service.is-target {
    border: 1px solid rgba(255, 178, 143, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.bm-existing-side-service small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bm-existing-side-service strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
}

.bm-existing-side-service b {
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.bm-existing-side-service p {
    margin: 0;
    color: #ffb28f;
    font-size: 16px;
    font-weight: 850;
}

.bm-existing-side-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 750;
}

.bm-existing-side-arrow i {
    color: #ffb28f;
}

.bm-existing-side-benefit {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.55;
}

.bm-existing-side-benefit i {
    margin-top: 2px;
    color: #ffb28f;
}

.bm-existing-side-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.6;
}

/* Success */
.bm-existing-customer-card {
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid var(--bm-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(3, 41, 27, 0.09);
}

.bm-existing-success-card {
    text-align: center;
}

.bm-existing-success-icon {
    display: inline-grid;
    width: 68px;
    height: 68px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--bm-green-700);
    color: #ffffff;
    font-size: 24px;
}

.bm-existing-success-icon.is-warning {
    background: var(--bm-orange-500);
}

.bm-existing-success-summary {
    display: grid;
    grid-template-columns: minmax(120px, 0.6fr) minmax(0, 1.4fr);
    gap: 12px 18px;
    margin-top: 26px;
    padding: 20px;
    border-radius: 14px;
    background: var(--bm-green-50);
    text-align: left;
}

.bm-existing-success-summary span {
    color: var(--bm-muted);
}

@media (max-width: 1080px) {
    .bm-existing-update-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bm-existing-update-hero__assurances {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bm-existing-update-layout {
        grid-template-columns: 1fr;
    }

    .bm-existing-side-summary {
        position: static;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .bm-existing-side-summary__eyebrow,
    .bm-existing-side-benefit,
    .bm-existing-side-note {
        grid-column: 1 / -1;
    }

    .bm-existing-side-arrow i {
        transform: rotate(-90deg);
    }
}

@media (max-width: 760px) {
    .bm-existing-update-page,
    .bm-existing-welcome-page {
        padding-top: 108px;
    }

    .bm-existing-welcome-card__header h1,
    .bm-existing-update-hero h1 {
        font-size: 38px;
    }

    .bm-existing-welcome-card__header > p:last-child,
    .bm-existing-update-hero__copy > p:last-child {
        font-size: 15px;
    }

    .bm-existing-comparison {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    .bm-existing-comparison__service {
        min-height: auto;
        padding: 17px;
    }

    .bm-existing-comparison__arrow {
        width: 38px;
        height: 38px;
        justify-self: center;
        transform: rotate(90deg);
    }

    .bm-existing-welcome-card {
        border-radius: 18px;
    }

    .bm-existing-welcome-card__header {
        padding: 26px 20px 18px;
    }

    .bm-existing-welcome-card__action {
        padding: 22px 20px 26px;
    }

    .bm-existing-welcome-card__footer {
        align-items: flex-start;
        padding-inline: 20px;
        text-align: left;
    }

    .bm-existing-update-hero__assurances {
        grid-template-columns: 1fr;
    }

    .bm-existing-form-section {
        padding: 17px;
    }

    .bm-existing-choice-intro,
    .bm-existing-review-grid,
    .bm-existing-package-grid,
    .bm-existing-side-summary,
    .bm-existing-success-summary {
        grid-template-columns: 1fr;
    }

    .bm-existing-side-arrow i {
        transform: none;
    }

    .bm-existing-side-summary__eyebrow,
    .bm-existing-side-benefit,
    .bm-existing-side-note {
        grid-column: auto;
    }

    .bm-existing-update-form .bm-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .bm-existing-update-form .bm-form-actions .bm-button {
        width: 100%;
    }

    .bm-existing-action-hint {
        text-align: center;
    }
}

.bm-tracking-result__timeline {
    display: grid;
    gap: 12px;
}

.bm-tracking-result__timeline article {
    padding-top: 12px;
    border-top: 1px solid rgba(3, 70, 47, 0.12);
}

.bm-tracking-result__timeline article:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.bm-tracking-result__timeline article p {
    margin: 0;
}

.bm-tracking-result__timeline article small {
    display: block;
    margin-top: 5px;
    color: var(--bm-muted);
    font-size: 11px;
}

/* =========================================================
   HOME-B03B — Existing customer journey polish
========================================================= */

.bm-existing-update-page {
    padding-top: 112px;
    background:
        radial-gradient(
            circle at 88% 7%,
            rgba(244, 81, 11, 0.07),
            transparent 25%
        ),
        linear-gradient(180deg, #f5f8f6 0%, #ffffff 78%);
}

.bm-existing-update-hero,
.bm-existing-comparison--banner,
.bm-existing-update-layout {
    max-width: 1040px;
    margin-inline: auto;
}

.bm-existing-update-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid rgba(3, 70, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px rgba(3, 41, 27, 0.055);
}

.bm-existing-update-hero h1 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
}

.bm-existing-update-hero__copy > p:last-child {
    max-width: 650px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
}

.bm-existing-update-hero__assurances {
    min-width: 270px;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
}

.bm-existing-update-hero__assurances span {
    font-size: 11px;
}

.bm-existing-comparison--banner {
    margin-top: 16px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 41, 27, 0.05);
}

.bm-existing-comparison--banner .bm-existing-comparison__service {
    min-height: 100px;
    padding: 16px 18px;
}

.bm-existing-comparison--banner .bm-existing-comparison__service strong {
    font-size: clamp(22px, 2.5vw, 28px);
}

.bm-existing-comparison--banner .bm-existing-comparison__benefit {
    padding-block: 9px;
    font-size: 12px;
}

.bm-existing-update-layout {
    display: block;
}

.bm-existing-update-form {
    min-width: 0;
    padding: 0;
}

.bm-existing-update-form .bm-existing-steps {
    position: relative;
    z-index: 2;
    margin: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 10px 28px rgba(3, 41, 27, 0.045);
}

.bm-existing-update-form .bm-form-step {
    min-height: 70px;
    padding: 15px 20px;
}

.bm-existing-update-form .bm-form-step > span {
    width: 32px;
    height: 32px;
}

.bm-existing-registration-card {
    overflow: hidden;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 48px rgba(3, 41, 27, 0.075);
}

.bm-existing-update-form
.bm-registration-step-panel
.bm-registration-card__heading {
    margin: 0;
    padding: 24px 30px;
    background: #ffffff;
}

.bm-existing-update-form
.bm-registration-step-panel
.bm-registration-step-content {
    margin: 0;
    padding: 28px 30px 30px;
}

.bm-existing-update-form .bm-registration-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
}

.bm-existing-update-form .bm-registration-card__heading h2 {
    font-size: 24px;
}

.bm-existing-update-form
.bm-registration-card__heading > div > span {
    font-size: 13px;
}

.bm-existing-step-content {
    gap: 26px;
}

.bm-existing-form-section {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.bm-existing-form-section + .bm-existing-form-section {
    padding-top: 26px;
    border-top: 1px solid rgba(3, 70, 47, 0.11);
}

.bm-existing-form-section__header {
    margin-bottom: 18px;
}

.bm-existing-form-section__header > span {
    width: 34px;
    height: 34px;
}

.bm-existing-update-form .bm-form-grid {
    gap: 18px 20px;
}

.bm-existing-update-form .form-control {
    min-height: 54px;
    border-radius: 12px;
    background: #ffffff;
}

.bm-existing-update-form textarea.form-control {
    min-height: 112px;
}

.bm-existing-choice-intro {
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
    padding: 16px 18px;
    border-radius: 12px;
}

.bm-existing-package-grid {
    gap: 18px;
}

.bm-existing-package-grid .bm-package-choice__card {
    min-height: 285px;
    padding: 22px;
    border-radius: 16px;
}

.bm-existing-package-grid
.bm-package-choice.is-featured
.bm-package-choice__card {
    border-color: rgba(244, 81, 11, 0.52);
    background:
        linear-gradient(155deg, #fff5ee 0%, #ffffff 58%);
}

.bm-existing-package-grid
.bm-package-choice > input:checked
+ .bm-package-choice__card {
    border-color: var(--bm-orange-500);
    box-shadow:
        0 0 0 4px rgba(244, 81, 11, 0.09),
        0 16px 34px rgba(3, 41, 27, 0.06);
}

.bm-existing-package-grid .bm-package-choice__description {
    font-size: 11px;
}

.bm-existing-package-grid .bm-package-choice__select {
    padding-top: 14px;
    border-top: 1px solid rgba(3, 70, 47, 0.09);
}

.bm-existing-review-card {
    background: #ffffff;
}

.bm-existing-adjustment-summary {
    border-left-width: 3px;
    border-radius: 12px;
}

.bm-existing-update-form .bm-form-actions {
    margin-top: 2px;
    padding-top: 22px;
    border-top: 1px solid rgba(3, 70, 47, 0.1);
}

.bm-existing-side-summary {
    display: none;
}

.bm-existing-welcome-page {
    background:
        radial-gradient(
            circle at 88% 7%,
            rgba(244, 81, 11, 0.07),
            transparent 25%
        ),
        linear-gradient(180deg, #f5f8f6 0%, #ffffff 78%);
}

.bm-existing-comparison--welcome {
    margin-inline: clamp(18px, 4vw, 36px);
    padding: 16px;
    border-radius: 18px;
    background: #fbfdfc;
    box-shadow: none;
}

.bm-existing-comparison--welcome .bm-existing-comparison__service {
    min-height: 112px;
    padding: 18px;
}

@media (max-width: 1080px) {
    .bm-existing-update-hero {
        grid-template-columns: 1fr;
    }

    .bm-existing-update-hero__assurances {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-width: 0;
        padding-top: 16px;
        border-top: 1px solid rgba(3, 70, 47, 0.1);
    }
}

@media (max-width: 760px) {
    .bm-existing-update-page {
        padding-top: 96px;
    }

    .bm-existing-update-hero {
        padding: 20px;
        border-radius: 15px;
    }

    .bm-existing-update-hero h1 {
        font-size: 33px;
    }

    .bm-existing-update-hero__assurances {
        grid-template-columns: 1fr;
    }

    .bm-existing-comparison--banner {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .bm-existing-update-form .bm-existing-steps {
        border-radius: 15px 15px 0 0;
    }

    .bm-existing-update-form .bm-form-step {
        min-height: 58px;
        justify-content: center;
        padding: 12px 8px;
    }

    .bm-existing-update-form .bm-form-step > div {
        display: none;
    }

    .bm-existing-registration-card {
        border-radius: 0 0 15px 15px;
    }

    .bm-existing-update-form
    .bm-registration-step-panel
    .bm-registration-card__heading {
        margin: 0;
        padding: 21px 20px;
    }

    .bm-existing-update-form
    .bm-registration-step-panel
    .bm-registration-step-content {
        margin: 0;
        padding: 22px 20px 24px;
    }

    .bm-existing-update-form .bm-registration-card__heading h2 {
        font-size: 21px;
    }

    .bm-existing-choice-intro,
    .bm-existing-review-grid,
    .bm-existing-package-grid {
        grid-template-columns: 1fr;
    }

    .bm-existing-package-grid .bm-package-choice__card {
        min-height: 0;
    }
}

/* =========================================================
   HOME-B03E — Data-first existing customer journey
========================================================= */

.bm-existing-welcome-card--data-first {
    max-width: 820px;
    margin-inline: auto;
}

.bm-existing-update-purpose {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0 clamp(24px, 5vw, 52px) 22px;
}

.bm-existing-update-purpose__item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 17px;
    border: 1px solid rgba(3, 70, 47, 0.1);
    border-radius: 14px;
    background: #fbfdfc;
}

.bm-existing-update-purpose__item > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--bm-green-50);
    color: var(--bm-green-800);
}

.bm-existing-update-purpose__item strong {
    display: block;
    color: var(--bm-green-950);
    font-size: 13px;
    font-weight: 850;
}

.bm-existing-update-purpose__item p {
    margin: 5px 0 0;
    color: var(--bm-muted);
    font-size: 11px;
    line-height: 1.55;
}

.bm-existing-data-first-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 clamp(24px, 5vw, 52px);
    padding: 15px 17px;
    border: 1px solid rgba(23, 90, 65, 0.13);
    border-radius: 12px;
    background: var(--bm-green-50);
    color: var(--bm-green-800);
}

.bm-existing-data-first-notice i {
    margin-top: 2px;
    color: var(--bm-orange-500);
}

.bm-existing-data-first-notice p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
}

.bm-existing-update-hero--data-first {
    grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
    margin-bottom: 22px;
}

.bm-existing-update-hero--data-first .bm-existing-update-hero__assurances {
    min-width: 0;
}

@media (max-width: 820px) {
    .bm-existing-update-purpose {
        grid-template-columns: 1fr;
    }

    .bm-existing-update-hero--data-first {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .bm-existing-update-purpose {
        padding-inline: 18px;
    }

    .bm-existing-data-first-notice {
        margin-inline: 18px;
    }

    .bm-existing-update-purpose__item {
        padding: 15px;
    }
}

/* =========================================================
   HOME fulfillment tracking
========================================================= */

.bm-tracking-fulfillment {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 17px 18px;
    border: 1px solid rgba(23, 90, 65, 0.16);
    border-radius: 14px;
    background: var(--bm-green-50);
}

.bm-tracking-fulfillment span,
.bm-tracking-fulfillment small {
    display: block;
    color: var(--bm-muted);
    font-size: 11px;
}

.bm-tracking-fulfillment strong {
    display: block;
    margin-top: 4px;
    color: var(--bm-green-950);
    font-size: 18px;
    font-weight: 850;
}

.bm-tracking-fulfillment p {
    margin: 6px 0 0;
    color: var(--bm-green-800);
    font-size: 12px;
    line-height: 1.65;
}

.bm-tracking-fulfillment--success {
    border-color: rgba(23, 125, 78, 0.25);
    background: #edf9f1;
}

.bm-tracking-fulfillment--warning {
    border-color: rgba(239, 137, 38, 0.25);
    background: #fff8ef;
}

.bm-tracking-fulfillment--danger {
    border-color: rgba(185, 54, 54, 0.22);
    background: #fff4f4;
}
