.hbbw-wrap,
.hbbw-wrap * {
    box-sizing: border-box;
}

.hbbw-wrap {
    width: min(100%, var(--hbbw-max));
    margin: 0 auto;
    padding: 22px;
    border-radius: calc(var(--hbbw-radius) + 6px);
    background: var(--hbbw-bg);
    color: var(--hbbw-dark);
    font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.45;
}

.hbbw-wrap svg {
    width: 1em;
    height: 1em;
    display: block;
}

.hbbw-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, .84fr);
    gap: 34px;
    min-height: 310px;
    padding: clamp(34px, 5vw, 68px);
    border: 1px solid rgba(220, 229, 239, .74);
    border-radius: calc(var(--hbbw-radius) + 8px);
    overflow: hidden;
    background:
        radial-gradient(circle at 77% 28%, rgba(22, 163, 74, .12), transparent 26%),
        radial-gradient(circle at 90% 8%, rgba(15, 23, 42, .06), transparent 23%),
        linear-gradient(130deg, #ffffff 0%, #ffffff 48%, var(--hbbw-soft) 100%);
}

.hbbw-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(22, 163, 74, .08) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 55%, transparent 100%);
    pointer-events: none;
}

.hbbw-hero-content {
    position: relative;
    z-index: 2;
    align-self: center;
}

.hbbw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 17px;
    border: 1px solid rgba(22, 163, 74, .18);
    border-radius: 999px;
    background: rgba(22, 163, 74, .08);
    color: var(--hbbw-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.hbbw-eyebrow:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hbbw-accent);
    box-shadow: 0 0 0 5px rgba(22, 163, 74, .12);
}

.hbbw-hero h1,
.hbbw-form-card h2,
.hbbw-info-box h2,
.hbbw-section-head h2,
.hbbw-bottom-cta h3,
.hbbw-mini-card h3 {
    margin: 0;
    color: var(--hbbw-dark);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.hbbw-hero h1 {
    max-width: 720px;
    font-size: clamp(31px, 4.2vw, 56px);
}

.hbbw-hero p {
    max-width: 690px;
    margin: 18px 0 0;
    color: var(--hbbw-muted);
    font-size: 15px;
    line-height: 1.75;
}

.hbbw-hero-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    margin-top: 23px;
    padding: 0 16px;
    border: 1px solid rgba(220, 229, 239, .95);
    border-radius: 10px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
    color: var(--hbbw-dark);
    font-size: 13px;
    font-weight: 600;
}

.hbbw-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hbbw-accent);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, .1);
}

.hbbw-hero-art {
    position: relative;
    min-height: 250px;
}

.hbbw-orbit {
    position: absolute;
    inset: 13px 0 0 auto;
    width: min(82%, 340px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, transparent 0 20px, rgba(15, 23, 42, .045) 21px 22px),
        radial-gradient(circle at center, rgba(255,255,255,.9), rgba(255,255,255,.24) 62%, transparent 64%);
}

.hbbw-headset {
    position: absolute;
    right: clamp(28px, 6vw, 82px);
    top: 50%;
    width: 170px;
    height: 168px;
    transform: translateY(-50%) rotate(-7deg);
    filter: drop-shadow(0 28px 28px rgba(15,23,42,.18));
}

.hbbw-headset-band {
    position: absolute;
    left: 34px;
    top: 0;
    width: 94px;
    height: 100px;
    border: 16px solid #eef3f8;
    border-bottom: 0;
    border-radius: 70px 70px 0 0;
    box-shadow: inset 0 0 12px rgba(15,23,42,.08);
}

.hbbw-ear {
    position: absolute;
    top: 78px;
    width: 50px;
    height: 72px;
    border-radius: 26px;
    background: linear-gradient(145deg, #ffffff, #edf3f8);
    box-shadow: inset 9px -10px 18px rgba(15,23,42,.09);
}

.hbbw-ear.left {
    left: 22px;
}

.hbbw-ear.right {
    right: 18px;
}

.hbbw-ear.right:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 28px;
    width: 24px;
    height: 7px;
    border-radius: 999px;
    background: var(--hbbw-accent);
    transform: rotate(-22deg);
    box-shadow: -11px 5px 0 var(--hbbw-accent);
}

.hbbw-mic {
    position: absolute;
    left: 48px;
    top: 128px;
    width: 80px;
    height: 15px;
    border-radius: 999px;
    background: #111827;
    transform-origin: left center;
    transform: rotate(11deg);
}

.hbbw-mic:after {
    content: "";
    position: absolute;
    right: -2px;
    top: -7px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #111827;
}

.hbbw-float-card {
    position: absolute;
    display: grid;
    gap: 8px;
    width: 90px;
    padding: 18px;
    border: 1px solid rgba(220, 229, 239, .9);
    border-radius: 14px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 20px 35px rgba(15,23,42,.12);
    backdrop-filter: blur(12px);
}

.hbbw-float-card span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: var(--hbbw-accent);
}

.hbbw-float-card span:nth-child(2) {
    width: 42px;
    opacity: .55;
}

.hbbw-float-one {
    left: 6%;
    top: 24%;
}

.hbbw-float-two {
    right: 3%;
    bottom: 11%;
    transform: rotate(-14deg);
    opacity: .85;
}

.hbbw-card-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.hbbw-mini-card,
.hbbw-info-box,
.hbbw-form-card,
.hbbw-bottom-cta,
.hbbw-knowledge-pill {
    border: 1px solid var(--hbbw-border);
    border-radius: var(--hbbw-radius);
    background: var(--hbbw-card);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .04);
}

.hbbw-mini-card {
    min-height: 166px;
    padding: 22px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hbbw-mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 163, 74, .28);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .08);
}

.hbbw-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(22, 163, 74, .09);
    color: var(--hbbw-accent);
    font-size: 19px;
    flex: 0 0 auto;
}

.hbbw-icon.large {
    width: 48px;
    height: 48px;
    font-size: 23px;
}

.hbbw-mini-card h3 {
    margin-top: 18px;
    font-size: 15px;
}

.hbbw-mini-card p {
    min-height: 42px;
    margin: 9px 0 10px;
    color: var(--hbbw-muted);
    font-size: 12px;
    line-height: 1.55;
}

.hbbw-link {
    color: var(--hbbw-accent);
    font-size: 12px;
    font-weight: 700;
}

.hbbw-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 32px 0 14px;
}

.hbbw-section-head h2 {
    font-size: 20px;
}

.hbbw-section-head span {
    color: var(--hbbw-accent);
    font-size: 12px;
    font-weight: 700;
}

.hbbw-knowledge-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.hbbw-knowledge-pill {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    min-height: 74px;
    padding: 13px;
}

.hbbw-knowledge-pill span {
    grid-row: 1 / 3;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #f1f5f9;
    color: var(--hbbw-muted);
    font-size: 17px;
}

.hbbw-knowledge-pill strong {
    color: var(--hbbw-dark);
    font-size: 11px;
    line-height: 1.25;
}

.hbbw-knowledge-pill em {
    color: var(--hbbw-muted);
    font-size: 10px;
    font-style: normal;
}

.hbbw-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
    gap: 24px;
    align-items: start;
}

.hbbw-form-card,
.hbbw-info-box {
    padding: 24px;
}

.hbbw-form-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.hbbw-form-card h2,
.hbbw-info-box h2 {
    font-size: 22px;
}

.hbbw-form-card p,
.hbbw-info-box p,
.hbbw-bottom-cta p {
    margin: 8px 0 0;
    color: var(--hbbw-muted);
    font-size: 13px;
    line-height: 1.7;
}

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

.hbbw-field-grid label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: var(--hbbw-dark);
    font-size: 12px;
    font-weight: 700;
}

.hbbw-wide {
    grid-column: 1 / -1;
}

.hbbw-form input,
.hbbw-form textarea {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--hbbw-border) !important;
    border-radius: 9px !important;
    outline: none !important;
    background: #ffffff !important;
    box-shadow: none !important;
    color: var(--hbbw-dark) !important;
    font: 500 13px/1.45 Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.hbbw-form textarea {
    resize: vertical;
    min-height: 108px;
}

.hbbw-form input:focus,
.hbbw-form textarea:focus {
    border-color: rgba(22, 163, 74, .55) !important;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .09) !important;
}

.hbbw-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.hbbw-submit,
.hbbw-outline-btn {
    appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    margin: 18px 0 0 !important;
    padding: 0 20px !important;
    border-radius: 8px !important;
    border: 1px solid var(--hbbw-accent) !important;
    background: var(--hbbw-accent) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font: 700 13px/1 Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    box-shadow: 0 16px 30px rgba(22, 163, 74, .2) !important;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.hbbw-submit:hover,
.hbbw-outline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(22, 163, 74, .28) !important;
    color: #ffffff !important;
}

.hbbw-submit[disabled] {
    opacity: .68;
    cursor: not-allowed;
    transform: none;
}

.hbbw-response {
    display: none;
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.hbbw-response.is-success {
    display: block;
    border: 1px solid rgba(22, 163, 74, .28);
    background: rgba(22, 163, 74, .09);
    color: #14783b;
}

.hbbw-response.is-error {
    display: block;
    border: 1px solid rgba(239, 68, 68, .25);
    background: rgba(239, 68, 68, .08);
    color: #b42318;
}

.hbbw-info-stack {
    display: grid;
    gap: 16px;
}

.hbbw-soft-box {
    background: linear-gradient(135deg, var(--hbbw-soft), #ffffff) !important;
}

.hbbw-box-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hbbw-box-title span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(22, 163, 74, .09);
    color: var(--hbbw-accent);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.hbbw-check-list {
    display: grid;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.hbbw-check-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    margin: 0 !important;
    padding: 0 !important;
}

.hbbw-check-list li > span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--hbbw-accent);
    font-size: 20px;
}

.hbbw-check-list strong {
    display: block;
    color: var(--hbbw-dark);
    font-size: 13px;
    line-height: 1.35;
}

.hbbw-check-list small {
    display: block;
    margin-top: 3px;
    color: var(--hbbw-muted);
    font-size: 12px;
    line-height: 1.55;
}

.hbbw-bottom-cta {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 22px;
}

.hbbw-bottom-cta h3 {
    font-size: 17px;
}

.hbbw-outline-btn {
    min-width: 140px !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: var(--hbbw-dark) !important;
    border-color: var(--hbbw-border) !important;
    box-shadow: none !important;
}

.hbbw-outline-btn:hover {
    background: var(--hbbw-accent) !important;
    border-color: var(--hbbw-accent) !important;
}

@media (max-width: 1024px) {
    .hbbw-wrap {
        padding: 16px;
    }

    .hbbw-hero,
    .hbbw-main-grid {
        grid-template-columns: 1fr;
    }

    .hbbw-hero-art {
        min-height: 220px;
    }

    .hbbw-card-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hbbw-knowledge-row {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .hbbw-knowledge-pill {
        min-width: 190px;
    }
}

@media (max-width: 640px) {
    .hbbw-wrap {
        padding: 12px;
        border-radius: 12px;
    }

    .hbbw-hero {
        padding: 28px 20px;
        min-height: auto;
    }

    .hbbw-hero h1 {
        font-size: 29px;
    }

    .hbbw-hero p {
        font-size: 13px;
    }

    .hbbw-hero-note {
        width: 100%;
        align-items: flex-start;
        height: auto;
        padding: 12px 14px;
        line-height: 1.45;
    }

    .hbbw-hero-art {
        display: none;
    }

    .hbbw-card-row,
    .hbbw-field-grid {
        grid-template-columns: 1fr;
    }

    .hbbw-mini-card,
    .hbbw-form-card,
    .hbbw-info-box,
    .hbbw-bottom-cta {
        padding: 18px;
    }

    .hbbw-form-head {
        display: grid;
    }

    .hbbw-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hbbw-main-grid {
        gap: 16px;
    }

    .hbbw-box-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .hbbw-bottom-cta {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hbbw-outline-btn,
    .hbbw-submit {
        width: 100% !important;
    }
}
