.hero-top-strip{
    background:#ff6b00;
    color:#fff;
    padding:18px 0;
}

.strip-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.strip-stats{
    display:flex;
    gap:40px;
}

.stat-item strong{
    display:block;
    font-size:28px;
}

.stat-item span{
    font-size:13px;
}

.hero-banner{
    background:#f5f3ef; 

}

.hero-layout{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    padding-top:70px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:24px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:28px;
}

.hero-feature-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:30px;
}

.hero-feature-list span{
    background:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    border:1px solid #e6dfd7;
}

.hero-buttons{
    display:flex;
    gap:16px;
}

.primary-btn,
.secondary-btn{
    height:54px;
    padding:0 28px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
}

.primary-btn{
    background:#ff6b00;
    color:#fff;
}

.secondary-btn{
    background:#fff;
    color:#111;
    border:1px solid #ddd;
}

.hero-mockup{
    position:relative;
    background:#fff;
    border-radius:28px;
    height:500px;
    border:1px solid #e7e1d8;
    overflow:hidden;
}

.mockup-window{
    position:absolute;
    top:40px;
    left:40px;
    right:40px;
    height:220px;
    background:#f2f2f2;
    border-radius:20px;
}

.mockup-card{
    position:absolute;
    width:180px;
    height:100px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.mockup-card.one{
    bottom:40px;
    left:40px;
}

.mockup-card.two{
    bottom:90px;
    right:40px;
}

.mockup-card.three{
    bottom:220px;
    left:120px;
}

@media(max-width:992px){

    .hero-layout{
        grid-template-columns:1fr;
    }

    .strip-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .strip-stats{
        width:100%;
        justify-content:space-between;
    }

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

}

/*Feature Grid */
.featured-section{
    padding:30px 0;
    background: #f5f3ef;
}

.featured-layout{
    display:grid;
    grid-template-columns:1.2fr 0.9fr;
    gap:30px;
}

.featured-main-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid #ebe5dd;
}

.featured-thumb{
    height:auto !important;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.thumb-overlay{
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    max-width:320px;
}

.featured-content{
    padding:30px;
}

.featured-content h2{
    font-size:32px;
    line-height:1.3;
    margin-bottom:16px;
}

.featured-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:28px;
}

.mini-post-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.mini-post{
    background:#f7f5f2;
    border-radius:16px;
    padding:16px;
    display:flex;
    gap:14px;
    align-items:flex-start;
    text-decoration:none;
    transition:0.3s;
}

.mini-post:hover{
    transform:translateY(-3px);
}

.mini-post span{
    color:#111;
    font-size:14px;
    line-height:1.5;
    font-weight:600;
}

.mini-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    flex-shrink:0;
}

.mini-icon.blue{
    background:#4d8cff;
}

.mini-icon.purple{
    background:#7b61ff;
}

.mini-icon.pink{
    background:#ff5ca8;
}

.mini-icon.dark{
    background:#222;
}

.featured-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
}

.sidebar-top{
    margin-bottom:10px;
}

.sidebar-top h3{
    font-size:32px;
    margin-bottom:12px;
}

.sidebar-top p{
    color:#666;
    line-height:1.7;
}

.sidebar-card{
    background:#fff;
    border:1px solid #ebe5dd;
    border-radius:22px;
    padding:24px;
    transition:0.3s;
}

.sidebar-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 30px rgba(0,0,0,0.05);
}

.sidebar-card h4{
    font-size:22px;
    margin-bottom:12px;
}

.sidebar-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:16px;
}

.sidebar-card a{
    color:#ff6b00;
    font-weight:700;
    text-decoration:none;
}

.sidebar-card.disabled{
    opacity:0.7;
}

.sidebar-card.disabled span{
    display:inline-flex;
    background:#f3f3f3;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.course-btn{
    height:56px;
    background:#ff6b00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    margin-top:auto;
}



@media(max-width:992px){

    .featured-layout{
        grid-template-columns:1fr;
    }

    .mini-post-grid{
        grid-template-columns:1fr;
    }

    .thumb-overlay{
        font-size:36px;
    }

}

.featured-thumb{
    display:block;
    height:auto;
    overflow:hidden;
    position:relative;
     
}

.featured-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.thumb-overlay{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    padding:40px;
    color:#fff;
    font-size:48px;
    line-height:1.1;
    font-weight:800;
}

.featured-content h2 a{
    text-decoration:none;
    color:#111;
}

.mini-thumb{
    width:52px;
    height:52px;
    border-radius:14px;
    overflow:hidden;
    flex-shrink:0;
    background:#f3f3f3;
}

.mini-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.mini-thumb-placeholder{
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#ff7b29,#ffb36b);
}

/*Fix Hub*/

.toolkit-section{
    padding:90px 0;
    background:#f7f5f2;
}

.toolkit-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff3eb;
    color:#ff6b00;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.toolkit-header h2{
    font-size:52px;
    line-height:1.15;
    margin-bottom:20px;
    color:#111;
}

.toolkit-header p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.toolkit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.toolkit-card{
    background:#fff;
    border-radius:28px;
    padding:34px;
    border:1px solid #ece7df;
    text-decoration:none;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.toolkit-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 40px rgba(0,0,0,0.06);
}

.toolkit-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:26px;
}

.toolkit-icon.orange{
    background:#fff0e5;
}

.toolkit-icon.blue{
    background:#e8f1ff;
}

.toolkit-icon.purple{
    background:#f2ebff;
}

.toolkit-icon.green{
    background:#eaf8ec;
}

.toolkit-icon.pink{
    background:#ffe9f3;
}

.toolkit-icon.dark{
    background:#1f2937;
    color:#fff;
}

.toolkit-card h3{
    font-size:28px;
    line-height:1.3;
    margin-bottom:16px;
    color:#111;
}

.toolkit-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:26px;
}

.toolkit-link{
    color:#ff6b00;
    font-weight:700;
    font-size:15px;
}

.dark-card{
    background:#111827;
    border-color:#111827;
}

.dark-card h3,
.dark-card p{
    color:#fff;
}

.dark-card .toolkit-link{
    color:#ffb36b;
}

@media(max-width:1100px){

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

}

@media(max-width:768px){

    .toolkit-grid{
        grid-template-columns:1fr;
    }

    .toolkit-header h2{
        font-size:38px;
    }

}

/*Guttenbirg Course */

.gutenberg-showcase{
    padding:60px 0;
    background:#f5f3ef;
    overflow:hidden;
}

.showcase-wrapper{
    background:#fff;
    border-radius:40px;
    padding:70px;
    border:1px solid #ebe5dd;
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    align-items:center;
    position:relative;
}

.showcase-badge{
    display:inline-flex;
    background:#fff3eb;
    color:#ff6b00;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.showcase-content h2{
    font-size:58px;
    line-height:1.05;
    margin-bottom:24px;
    color:#111;
}

.showcase-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:36px;
}

.showcase-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.showcase-primary,
.showcase-secondary{
    height:56px;
    padding:0 28px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
}

.showcase-primary{
    background:#ff6b00;
    color:#fff;
}

.showcase-secondary{
    background:#f3efe9;
    color:#111;
}

.showcase-visual{
    position:relative;
}

.editor-window{
    background:#f9f7f4;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #ece7df;
    box-shadow:0 30px 60px rgba(0,0,0,0.06);
}

.window-top{
    height:54px;
    background:#fff;
    border-bottom:1px solid #ece7df;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 20px;
}

.window-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ddd;
}

.editor-layout{
    display:grid;
    grid-template-columns:90px 1fr;
    min-height:420px;
}

.editor-sidebar{
    background:#fff;
    border-right:1px solid #ece7df;
}

.editor-content{
    padding:28px;
}

.editor-block{
    height:70px;
    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    border:1px solid #ece7df;
}

.editor-block.large{
    height:150px;
}

.editor-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:16px 20px;
    border-radius:18px;
    border:1px solid #ece7df;
    font-weight:700;
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.card-one{
    top:-20px;
    right:-10px;
}

.card-two{
    bottom:30px;
    left:-30px;
}

.card-three{
    bottom:-20px;
    right:40px;
}

@media(max-width:1100px){

    .showcase-wrapper{
        grid-template-columns:1fr;
        padding:40px;
    }

    .showcase-content h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .showcase-wrapper{
        padding:28px;
    }

    .showcase-content h2{
        font-size:34px;
    }

    .editor-layout{
        grid-template-columns:60px 1fr;
    }

}