:root {
    --hb-purple: #281664;
    --hb-purple-deep: #160c3b;
    --hb-green: #4f9f23;
    --hb-green-soft: #edf8e7;
    --hb-ink: #161d2f;
    --hb-text: #4d5b73;
    --hb-muted: #718097;
    --hb-border: #e2e7f0;
    --hb-bg: #f6f8fb;
    --hb-white: #ffffff;
}

.hb-landing-page {
    background: var(--hb-bg);
    color: var(--hb-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.hb-landing-page h1,
.hb-landing-page h2,
.hb-landing-page h3,
.hb-landing-page h4 {
    color: var(--hb-ink);
    font-weight: 800;
    letter-spacing: 0;
}

.hb-hero {
    position: relative;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(27, 15, 72, 0.98) 0%, rgba(40, 22, 100, 0.94) 48%, rgba(69, 29, 141, 0.82) 100%),
        linear-gradient(180deg, rgba(40, 22, 100, 0.38) 0%, rgba(40, 22, 100, 0.86) 100%),
        url("/assets/images/home-budget-bills-preview.png") center center / cover no-repeat;
}

.hb-hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -78px;
    height: 132px;
    background: var(--hb-bg);
    transform: rotate(-2deg);
    transform-origin: left top;
}

.hb-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 176px;
    padding-bottom: 132px;
}

.hb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #a5e47e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hb-hero .hb-eyebrow {
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #a5e47e;
}

.hb-hero h1 {
    max-width: 820px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 72px;
    line-height: 1.06;
}

.hb-hero-lead {
    max-width: 760px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 23px;
    line-height: 1.55;
}

.hb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.hb-btn-primary {
    background: var(--hb-green);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(79, 159, 35, 0.28);
}

.hb-btn-primary:hover,
.hb-btn-primary:focus {
    background: #3f831c;
    color: #ffffff;
}

.hb-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.hb-btn-secondary:hover,
.hb-btn-secondary:focus {
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.hb-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 700px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hb-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

.hb-hero-points i {
    color: #a5e47e;
}

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

.hb-section-tight {
    padding: 54px 0;
}

.hb-section-header {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.hb-section-header h2,
.hb-feature-intro h2 {
    margin: 0 0 14px;
    font-size: 36px;
    line-height: 1.18;
}

.hb-section-header p,
.hb-feature-intro p {
    margin: 0;
    color: var(--hb-muted);
    font-size: 17px;
}

.hb-card {
    height: 100%;
    padding: 26px;
    border: 1px solid var(--hb-border);
    border-radius: 8px;
    background: var(--hb-white);
    box-shadow: 0 18px 38px rgba(25, 18, 64, 0.08);
}

.hb-value-card {
    padding: 32px;
}

.hb-value-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.22;
}

.hb-value-card p {
    margin: 0;
}

.hb-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hb-stat {
    padding: 18px;
    border-radius: 8px;
    background: var(--hb-green-soft);
}

.hb-stat strong {
    display: block;
    color: var(--hb-purple);
    font-size: 30px;
    line-height: 1;
}

.hb-stat span {
    display: block;
    margin-top: 7px;
    color: #4b5f3e;
    font-size: 13px;
    font-weight: 700;
}

.hb-feature-card i,
.hb-trust-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(40, 22, 100, 0.1);
    color: var(--hb-purple);
    font-size: 18px;
}

.hb-feature-card h3,
.hb-trust-card h3,
.hb-flow-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.hb-feature-card p,
.hb-trust-card p,
.hb-flow-card p,
.hb-price-card p {
    margin: 0;
    color: var(--hb-muted);
}

.hb-flow-section {
    background: #ffffff;
}

.hb-flow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--hb-purple);
    color: #ffffff;
    font-weight: 800;
}

.hb-interface-band {
    background: var(--hb-purple-deep);
    color: rgba(255, 255, 255, 0.8);
}

.hb-interface-band h2,
.hb-interface-band h3 {
    color: #ffffff;
}

.hb-interface-band p {
    color: rgba(255, 255, 255, 0.76);
}

.hb-interface-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hb-interface-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.hb-price-card {
    display: flex;
    flex-direction: column;
}

.hb-price-card.featured {
    border-color: rgba(79, 159, 35, 0.5);
    box-shadow: 0 20px 46px rgba(79, 159, 35, 0.18);
}

.hb-price-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.hb-price {
    margin-bottom: 10px;
    color: var(--hb-purple);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.hb-price small {
    color: var(--hb-muted);
    font-size: 15px;
    font-weight: 700;
}

.hb-price-card .hb-btn {
    margin-top: auto;
}

.hb-faq-list {
    display: grid;
    gap: 12px;
}

.hb-faq-list details {
    border: 1px solid var(--hb-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(25, 18, 64, 0.06);
}

.hb-faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--hb-ink);
    font-weight: 800;
}

.hb-faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--hb-muted);
}

.hb-contact-band {
    background: #ffffff;
}

.hb-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 8px;
    background: var(--hb-purple);
    color: rgba(255, 255, 255, 0.82);
}

.hb-contact-panel h2,
.hb-contact-panel p {
    color: #ffffff;
}

.hb-contact-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.hb-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .hb-hero {
        min-height: auto;
        background-position: 58% center;
    }

    .hb-hero .container {
        padding-top: 146px;
        padding-bottom: 92px;
    }

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

    .hb-stat-grid,
    .hb-contact-panel {
        grid-template-columns: 1fr;
    }

    .hb-contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .hb-hero h1 {
        font-size: 34px;
    }

    .hb-hero-lead {
        font-size: 18px;
    }

    .hb-section {
        padding: 56px 0;
    }

    .hb-section-header h2,
    .hb-feature-intro h2 {
        font-size: 28px;
    }

    .hb-card,
    .hb-value-card,
    .hb-contact-panel {
        padding: 22px;
    }

    .hb-actions,
    .hb-contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hb-btn {
        width: 100%;
    }
}
