
/* ///// BABIES ///// */
@media screen and (min-width: 992px) {
    .pbb-babies-content {
        flex-direction: column;
        align-items: center;
    }
}

.pbb-babies-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}


/* ///// HERO ///// */
.pbb-hero {
    padding: 144px 0 64px 0;
}

.pbb-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.pbb-hero-content .left {
    max-width: 540px;
    order: 2;
}

.pbb-hero-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.pbb-hero-subtitle {
    font-size: 21px;
    margin: 40px 0;
}

.pbb-hero-content .right {
    order: 1;
}

.pbb-hero-content .right img {
    max-width: 100%;
    border-radius: 16px;
}

@media screen and (min-width: 992px) {
    .pbb-hero {
        padding: 200px 0 120px 0;
    }

    .pbb-babies-content {
        flex-direction: column;
        align-items: center;
    }

    .pbb-hero-content {
        flex-direction: row;
        align-items: center;
    }

    .pbb-hero-title {
        font-size: 48px;
    }

    .pbb-hero-content .left {
        order: 1;
    }

    .pbb-hero-content .right {
        order: 2;
    }

    .pbb-hero-content .right img {
        max-width: 490px;
    }
}

/* ///// HOW IT WORKS ///// */
.pbb-how-it-works {
    background-color: var(--grey-100);
    padding: 64px 0;
}

.pbb-how-it-works-title {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
}

.pbb-how-it-works-slider {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 40px;
    gap: 32px;
}

.pbb-how-it-works-slider-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    order: 2;
}

.pbb-how-it-works-slider-item {
    padding: 24px 32px;
    border-radius: 16px;
    cursor: pointer;
}

.pbb-how-it-works-slider-item-title {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 0;
}

.pbb-how-it-works-slider-item-descr {
    font-size: 18px;
    margin-top: 8px;
    display: none;
}

.pbb-how-it-works-slider-item:hover .pbb-how-it-works-slider-item-title  {
    opacity: 1;
}

.pbb-how-it-works-slider-item.active {
    background-color: var(--white);
}

.pbb-how-it-works-slider-item.active .pbb-how-it-works-slider-item-title {
    opacity: 1;
}

.pbb-how-it-works-slider-item.active .pbb-how-it-works-slider-item-descr {
    display: block;
}

.pbb-how-it-works-slider-preview {
    order: 1;
}

.pbb-how-it-works-slider-preview img {
    max-width: 100%;
    border-radius: 16px;
    display: none;
}

.pbb-how-it-works-slider-preview img.active {
    display: block;
}

@media screen and (min-width: 992px) {

    .pbb-how-it-works {
        padding: 120px 0;
    }

    .pbb-how-it-works-title {
        font-size: 40px;
    }

    .pbb-how-it-works-slider {
        flex-direction: row;
        margin-top: 88px;
    }

    .pbb-how-it-works-slider-items {
        order: 1;
        max-width: 488px;
    }

    .pbb-how-it-works-slider-item-title {
        font-size: 24px;
    }
    
    .pbb-how-it-works-slider-item-descr {
        font-size: 20px;
    }

    .pbb-how-it-works-slider-preview {
        order: 2;
        margin-bottom: 0;
        margin-top: 30px;
    }

    .pbb-how-it-works-slider-preview img {
        max-width: 590px;
    }
}

/* ///// LAST TRANSACTIONS ///// */
.pbb-last-transactions {
    padding: 64px 0;
}

.pbb-last-transactions-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.pbb-last-transactions-btn-mobile {
    display: block;
}

.pbb-last-transactions-btn-desktop {
    display: none;
}

.pbb-last-transactions-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.pbb-last-transactions-list {
    max-width: 480px;
    position: relative;
}

.pbb-last-transactions-list-gradient {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(360deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.pbb-last-transactions-item {
    margin-bottom: 32px;
}

.pbb-last-transactions-item-value {
    font-size: 18px;
}

.pbb-last-transactions-item-time {
    font-size: 16px;
    color: #969696;
    font-weight: 500;
}

@media screen and (min-width: 992px) {
    .pbb-last-transactions {
        padding: 120px 0;
    }

    .pbb-last-transactions-content {
        flex-direction: row;
    }

    .pbb-last-transactions-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .pbb-last-transactions-item-time {
        font-size: 18px;
    }

    .pbb-last-transactions-item-value {
        font-size: 24px;
    }

    .pbb-last-transactions-btn-mobile {
        display: none;
    }

    .pbb-last-transactions-btn-desktop {
        display: block;
    }
}

/* ///// KEY FIGURES ///// */
.pbb-key-figures {
    background-color: var(--bitcoin-orange);
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

.pbb-key-figures-ornement-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 150px;
}

.pbb-key-figures-ornement-2 {
    position: absolute;
    right: 0;
    top: -27px;
    z-index: 1;
    width: 150px;
}

.pbb-key-figures-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 64px;
    position: relative;
    z-index: 5;
}

.pbb-key-figures-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 200px;
}

.pbb-key-figures-item-title {
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    margin-bottom: 4px;
}

.pbb-key-figures-item-value {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .pbb-key-figures {
        padding: 88px 0;
    }

    .pbb-key-figures-content {
        flex-direction: row;
    }

    .pbb-key-figures-ornement-1, .pbb-key-figures-ornement-2 {
        width: auto;
    }
}

/* ///// FAQ ///// */
.pbb-faq {
    padding: 88px 0;
}

.pbb-faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.pbb-faq-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 32px;
}

.pbb-faq-item {
    margin-bottom: 40px;
    cursor: pointer;
}

.pbb-faq-question {
    font-size: 18px;
    font-weight: 500;
    padding-right: 56px;
    margin-bottom: 16px;
    position: relative;
}

.pbb-faq-question::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    right: 0;
    top: 13px;
}

.pbb-faq-item .pbb-faq-question::before {
    content: "";
    display: block;
    height: 20px;
    width: 2px;
    background-color: var(--dark);
    position: absolute;
    right: 9px;
    top: 4px;
}

.pbb-faq-answer {
    font-size: 18px;
    font-weight: 400;
    display: none;
}

.pbb-faq-item.active .pbb-faq-answer {
    display: block;
}

.pbb-faq-item.active .pbb-faq-question::before {
    display: none;
}

@media screen and (min-width: 992px) {
    .pbb-faq {
        padding: 120px 0;
    }

    .pbb-faq-title {
        font-size: 40px;
    }
}

/* ///// CALLBACK CTA ///// */
.pbb-callback-cta {
    background: linear-gradient(135deg, var(--dark) 0%, #2a3a1a 50%, var(--green) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pbb-callback-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 169, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pbb-callback-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pbb-callback-cta-icon {
    color: var(--bitcoin-orange);
    margin-bottom: 20px;
}

.pbb-callback-cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 12px;
}

.pbb-callback-cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.pbb-callback-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--bitcoin-orange);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
    box-shadow: 0 4px 20px rgba(242, 169, 0, 0.3);
}

.pbb-callback-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(242, 169, 0, 0.4);
    background-color: #d99400;
    text-decoration: none;
}

.pbb-callback-cta-btn svg {
    transition: transform 200ms ease;
}

.pbb-callback-cta-btn:hover svg {
    transform: translateX(4px);
}

@media screen and (min-width: 992px) {
    .pbb-faq {
        padding: 120px 0;
    }

    .pbb-callback-cta-title {
        font-size: 40px;
    }
}

/* ///// CLOSURE LANDING ///// */
.closure-hero {
    padding-bottom: 80px;
}

.closure-section {
    padding: 64px 0;
}

.closure-personal {
    background-color: var(--grey-100);
}

.closure-section-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.closure-body {
    font-size: 18px;
    line-height: 1.7;
}

.closure-cta {
    align-self: flex-start;
    display: inline-flex;
}

.closure-share-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.closure-share-item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    color: var(--dark);
    transition: box-shadow 150ms ease, transform 150ms ease;
}

.closure-share-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.closure-share-thumb {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--grey-100);
}

.closure-share-label {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.closure-share-icon {
    color: var(--bitcoin-orange);
    font-size: 18px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .closure-share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.closure-personal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.closure-bluewallet-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.closure-bluewallet-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.closure-bluewallet-steps {
    margin: 8px 0 0 22px;
    padding: 0;
}

.closure-bluewallet-steps li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.closure-bluewallet-warning {
    background: #fdecea;
    border-left: 4px solid #c0392b;
    padding: 12px 16px;
    margin: 8px 0 0;
    color: #5b1d15;
    font-size: 14px;
}

@media screen and (max-width: 600px) {
    .closure-bluewallet-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.closure-babies-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 8px 0 16px;
}

.closure-babies-stat {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
}

.closure-babies-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.closure-babies-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-top: 4px;
}

.closure-babies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 8px 0;
}

.closure-baby-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.closure-baby-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.closure-baby-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.closure-baby-meta {
    font-size: 13px;
    color: #888;
}

.closure-baby-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 4px;
}

.closure-baby-value small {
    font-weight: 400;
    color: #888;
    font-size: 12px;
}

.closure-baby-perf,
.closure-babies-perf {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.perf-positive { background: #e8f5e9; color: #2e7d32; }
.perf-negative { background: #ffebee; color: #c62828; }

@media screen and (min-width: 768px) {
    .closure-babies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .closure-babies-stats {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 992px) {
    .closure-section {
        padding: 100px 0;
    }

    .closure-body {
        font-size: 20px;
    }
}

/* ///// FOOTER ///// */
.pbb-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--grey-200);
}

.pbb-footer-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.pbb-footer-brand {
    flex-shrink: 0;
}

.pbb-footer-logo {
    width: 100px;
}

.pbb-footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px 36px;
    padding: 0;
    margin: 0;
}

.pbb-footer-links li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 150ms ease;
}

.pbb-footer-links li a:hover {
    color: var(--bitcoin-orange);
}

.pbb-footer-tree {
    margin-left: auto;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .pbb-footer-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .pbb-footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pbb-footer-tree {
        margin-left: 0;
    }
}