
h1,h2,h3{
    font-family: 'Playfair Display', serif;
}

h1{
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 0 0 20px;
}
h2{
    margin:0px;
    margin-bottom: 10px;
    font-size: 2.3rem;
}
h3{
    margin:0px;
    margin-bottom: 10px;
    font-size: 1.1rem!important;
}

@media (max-width: 767px) {
    h1{
        font-size: 2.1rem;
    }
    h2{
        font-size: 2rem;
    }
    h3{
        font-size: 1.8rem;
    }
}

p{
    color:#555;
}

.cont-bg{
    background: #f9f9f9;
}
.cont-pd{
    padding:60px 0px;
}
.inner-container{
    max-width:90%;
    margin: auto;
}


/*-hero-*/
 .zb-hero {
    background: #ffffff;
    padding: 60px 5%;
    overflow: hidden;
}
.zb-hero-cont {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    align-items: center;
    gap: 60px;
}

.zb-badge {
    display: inline-flex;
    align-items: center;
    background: #f9f9f9;
    padding: 4px 14px 4px 4px;
    border-radius: 50px;
    border: 1px solid #eee;
    margin-bottom: 25px;
}
.zb-badge-est {
    background: #C5A059;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 10px;
}
.zb-badge-hd {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

.zb-hero-title span {
    color: #C5A059;
    font-style: italic;
}
.zb-hero-descr {
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 420px;
}

.zb-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zb-btn {
    padding: 15px 25px;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: 0.3s;
    width: fit-content;
    background: #1a1a1a;
    color: #fff;
}

.zb-btn:hover {
    background: #C5A059;
    color:#000;
    transform: translateY(-3px);
}

.zb-social {
    display: flex;
    align-items: center;
    gap: 15px;
}
.zb-social-avatar {
    display: flex;
    align-items: center;
}
.zb-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.zb-avatar:first-child {
    margin-left: 0;
}
.zb-avatar-more {
    background: #C5A059;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.zb-stars {
    color: #f1c40f;
    font-size: 1rem;
    margin-bottom: -3px;
}
.zb-social-rating p {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
}

.zb-hero-img img{
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .zb-hero-cont {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .zb-hero-descr {
        margin: 0 auto 30px;
    }
    .zb-social {
        justify-content: center;
        text-align: start;
    }
    
    .zb-cta{
        align-items: center;
    }

}

/*-hero-*/

/*-FEATURED-LOGOS-*/
.logos-strip {
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    grid-column-gap: 3rem;
    grid-row-gap: 1rem;
    background: #eacc85;
}
.logos-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4f4f4f;
    white-space: nowrap;
    flex-shrink: 0;
}
.logos-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    overflow: hidden;
    flex: 1;
    justify-content: space-between;
}

.logo-item img{
    object-fit: contain;
}

@media (max-width: 1024px) {
    .logos-strip{
        flex-direction: column;
    }
    .logos-row {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
}
/*-FEATURED-LOGOS-*/

/*-WHY-CHOOSE-US-*/
.sec-head{
    max-width:740px;
    text-align: center;
    margin: auto;
}

.sec-head h2 em{
    color: #C5A059;
}

.zb-track-container {
    padding: 24px 0px;
}
.zb-track-wrap {
    margin-bottom: 0.5rem;
    overflow: hidden;
    /*width: 100vw;*/
}
.zb-track {
    display: flex;
    gap: 1.2rem;
    gap: 0.5rem;
    width: max-content;
    will-change: transform;
    animation: zbScroll 60s linear infinite;
}
.zb-track-reverse {
    animation-direction: reverse;
    animation-duration: 60s;
}
.zb-track:hover {
    animation-play-state: paused;
}

@keyframes zbScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.zb-book {
    width: 150px;
    height: 220px;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    overflow: hidden;
}
.zb-book:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 4px 12px 32px rgba(0, 0, 0, 0.2);
}
.zb-book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.zb-book-overlay {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.zb-book-bestseller {
    font-size: 0.6rem;
    font-weight: 600;
    color: #ffeded;
    line-height: 1;
    background: #eb0a0a;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-align: center;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    justify-content: center;
    text-align: center;
    margin-top: 44px;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
}
.why-item:first-child {
    padding-top: 0;
}
.why-item:last-child {
    border-bottom: none;
}
.why-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin: auto;
}
.why-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}
.why-item p {
    font-weight: 300;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-features {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*--PROCESS--*/
.process-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
}

.left-col {
    max-width: 480px;
}
.process-header {
    position: sticky;
    top: 5rem;
}
.process-header h2 em{
    color:#C5A059;
}
.process-header p{
    margin-bottom:32px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    position: relative;
    overflow: hidden;
}
.step-card {
    padding: 2.5rem 0rem;
    border-bottom: 1px solid #e5e2dc;
    position: relative;
    transition: background 0.2s;
}
.step-card:last-child {
    border-bottom: none;
}

.step-no {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c9a664;
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}
.step-card h3 {
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}
.step-card p {
    font-weight: 300;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .left-col{
        margin: auto;
    }
}
/*--PROCESS--*/

/*-Reviews-*/
.zb-review-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.zb-review-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C5A059;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.zb-video-spotlight {
    max-width: 900px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #f2f2f2;
}

.zb-spotlight-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}
.zb-spotlight-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.zb-section-divider {
    text-align: center;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
    margin: 80px 0 50px;
}
.zb-section-divider span {
    background: #f9f9f9;
    padding: 0 25px;
    color: #C5A059;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.zb-text-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zb-text-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.zb-text-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
.zb-text-card-body {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.zb-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}
.zb-author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.zb-author-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    letter-spacing: -0.3px;
}
.zb-author-details {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}
.zb-rating-stars {
    color: #f1c40f;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .zb-text-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .zb-section-divider{
        padding: 0px 0px 15px 0px;
        line-height: 1.3;
    }
    .zb-section-divider span{
        padding:0px;
    }
    .zb-text-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

}

/*-seo-content-faq*/
.spage-content{
    background: #c5a059ba;
}
.zb-faq-item {
    padding: 20px 15px;
}

.zb-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 30px;
}

.zb-faq-item summary::-webkit-details-marker {
    display: none;
}

.zb-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
}

.zb-faq-item[open] summary::after {
    content: "−";
}

.zb-faq-content {
    padding-top: 10px;
}
.zb-faq-content p{
    margin:0px;
}

/*-seo-content-faq*/

/*-cta-form-*/
.cta-sec{
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.zb-cta-form{
    max-width: 800px;
    margin: auto;
    padding: 44px 44px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-top: 24px;
}