/*============================
 Header
=============================*/

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, .05);

    transition: .3s;
}

.header .container {

    height: 85px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    display: flex;

    align-items: center;

    gap: 15px;

    text-decoration: none;

}

.logo img {

    width: 70px;

    height: 70px;

    object-fit: contain;

    transition: .3s;

}

.logo:hover img {

    transform: rotate(-8deg) scale(1.05);

}

.info-name h1 {

    color: #fff;

    font-size: 28px;

    line-height: 1;

    font-weight: 700;

}

.info-name span {

    color: var(--primary);

}

.info-name p {

    margin-top: 6px;

    color: var(--text-light);

    font-size: 11px;

    letter-spacing: 3px;

}


/*============================
 Navigation
=============================*/

.navbar {

    display: flex;

    align-items: center;

    gap: 45px;

}

.menu {

    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;

}

.menu li a {

    color: var(--text-muted);

    text-decoration: none;

    font-size: 15px;

    transition: .3s;

    position: relative;

}

.menu li a:hover {

    color: #fff;

}

.menu li a.active {

    color: #fff;

}

.menu li a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -10px;

    transform: translateX(-50%);

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

.menu li a:hover::after,

.menu li a.active::after {

    width: 100%;

}


/*============================
 Buttons
=============================*/

.nav-buttons {

    display: flex;

    gap: 12px;

}

.btn-login {

    border: 1px solid var(--border);

    color: #fff;

    background: transparent;

}

.btn-login:hover {

    background: var(--surface);

}

.btn-primary {

    padding: 12px 24px;

    background: var(--gradient-primary);

    color: #fff;

    border-radius: 8px;

    box-shadow: var(--shadow-green);

}

.btn-primary:hover {

    transform: translateY(-2px);

}

.btn {

    transition: .3s;

}

@media(max-width:1100px) {

    .menu {

        display: none;

    }

}

@media(max-width:768px) {

    .header .container {

        height: 75px;

    }

    .info-name h1 {

        font-size: 22px;

    }

    .info-name p {

        display: none;

    }

    .nav-buttons {

        gap: 8px;

    }

    .btn {

        padding: 10px 18px;

        font-size: 14px;

    }

}

@media(max-width:500px) {

    .btn-login {

        display: none;

    }

    .logo img {

        width: 50px;

        height: 50px;

    }

}



.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(57, 211, 83, .12);
    filter: blur(150px);
    top: -200px;
    right: -150px;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 800;
    margin: 20px 0;
    max-width: 700px;
}

.hero-content h1 span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(57, 211, 83, .3);
    background: rgba(57, 211, 83, .08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.stat h3 {
    color: var(--primary);
    font-size: 30px;
}

.stat span {
    color: var(--text-muted);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 850px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(57, 211, 83, .15);
}

@media(max-width:991px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }

    .hero-content h1 {
        font-size: 45px;
        margin: auto;
    }

    .hero-content p {
        margin: 20px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

}








.section {

    padding: 100px 0;

}

.section-title {

    text-align: center;
    margin-bottom: 70px;

}

.section-title span {

    color: var(--primary);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;

}

.section-title h2 {

    font-size: 48px;
    margin-top: 20px;
    color: white;

}

.section-title h2 strong {

    color: var(--primary);

}

.section-title p {

    color: var(--text-muted);
    width: 700px;
    max-width: 100%;
    margin: auto;
    margin-top: 20px;
    line-height: 1.8;

}

.feature-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.feature-card {

    background: #111;

    border: 1px solid #242424;

    border-radius: 18px;

    padding: 35px;

    transition: .35s;

}

.feature-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

    box-shadow: 0 0 40px rgba(57, 211, 83, .18);

}

.feature-card span {

    width: 70px;

    height: 70px;

    border-radius: 16px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(57, 211, 83, .12);

    color: var(--primary);

    font-size: 36px;

}

.feature-card h3 {

    margin: 25px 0 15px;

    font-size: 24px;

}

.feature-card p {

    color: var(--text-muted);

    line-height: 1.7;

}












.api-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

}

.api-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 25px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: .3s;

}

.api-card:hover {

    border-color: var(--primary);

    transform: translateY(-5px);

    box-shadow: var(--shadow-green);

}

.method {

    width: 75px;

    text-align: center;

    padding: 8px 0;

    border-radius: 8px;

    font-weight: 700;

    color: #fff;

}

.post .method {

    background: #22C55E;

}

.get .method {

    background: #3B82F6;

}

.endpoint {

    flex: 1;

    margin-left: 25px;

}

.endpoint h3 {

    font-size: 22px;

    color: #fff;

    margin-bottom: 8px;

}

.endpoint p {

    color: var(--text-muted);

}

.copy {

    color: var(--primary);

    cursor: pointer;

    transition: .3s;

}

.copy:hover {

    transform: scale(1.15);

}

.api-btn {

    margin-top: 50px;

    text-align: center;

}



.dashboard-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

}

.dashboard-content {

    width: 45%;

}

.dashboard-image {

    width: 55%;

    position: relative;

}

.dashboard-image img {

    width: 100%;

    border-radius: 20px;

    position: relative;

    z-index: 2;

    border: 1px solid var(--border);

    box-shadow: 0 0 60px rgba(57, 211, 83, .18);

}

.glow {

    position: absolute;

    width: 550px;

    height: 550px;

    background: rgba(57, 211, 83, .15);

    filter: blur(140px);

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}

.sub-title {

    color: var(--primary);

    letter-spacing: 3px;

    font-size: 13px;

    font-weight: 700;

}

.dashboard-content h2 {

    font-size: 48px;

    margin: 20px 0;

}

.dashboard-content h2 span {

    color: var(--primary);

}

.dashboard-content p {

    color: var(--text-muted);

    line-height: 1.8;

    margin-bottom: 35px;

}

.dashboard-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

}

.dashboard-features .item {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

}

.dashboard-features .item span {

    color: var(--primary);

}


.floating-card {

    position: absolute;

    background: #121212;

    border: 1px solid var(--border);

    padding: 20px;

    border-radius: 18px;

    z-index: 5;

    backdrop-filter: blur(10px);

    box-shadow: var(--shadow);

}

.floating-card h3 {

    color: var(--primary);

    font-size: 32px;

}

.floating-card p {

    color: var(--text-muted);

    margin-top: 5px;

}

.top {

    top: -20px;

    left: -30px;

}

.bottom {

    bottom: -20px;

    right: -30px;

}







.pricing {

    padding: 120px 0;

    background: #111;

}

.section-title {

    text-align: center;

    margin-bottom: 70px;

}

.section-title span {

    color: var(--primary);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: bold;

}

.section-title h2 {

    font-size: 46px;

    margin: 15px 0;

}

.section-title p {

    color: #999;

}

.pricing-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

.price-card {

    background: #181818;

    border: 1px solid #262626;

    border-radius: 20px;

    padding: 45px;

    transition: .35s;

    position: relative;

}

.price-card:hover {

    transform: translateY(-12px);

    border-color: var(--primary);

    box-shadow: 0 20px 50px rgba(57, 211, 83, .12);

}

.price-card.active {

    border: 2px solid var(--primary);

    transform: scale(1.05);

    box-shadow: 0 20px 70px rgba(57, 211, 83, .18);

}

.popular {

    position: absolute;

    top: -15px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--primary);

    color: #fff;

    padding: 8px 20px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: bold;

}

.price-card h3 {

    font-size: 26px;

    margin-bottom: 25px;

}

.price {

    margin-bottom: 35px;

}

.currency {

    color: #aaa;

}

.price h1 {

    font-size: 70px;

    color: var(--primary);

    margin: 10px 0;

}

.price small {

    color: #999;

}

.price-card ul {

    list-style: none;

    margin-bottom: 40px;

}

.price-card li {

    padding: 14px 0;

    color: #ddd;

    border-bottom: 1px solid #252525;

}

.price-card .btn {

    width: 100%;

    text-align: center;

    padding: 15px;

    border-radius: 12px;

}


@media(max-width:992px) {

    .pricing-grid {

        grid-template-columns: 1fr;

    }

    .price-card.active {

        transform: none;

    }

}









.testimonials {

    padding: 120px 0;

    background: #0B0B0B;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.testimonial-card {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 30px;

    transition: .35s;

}

.testimonial-card:hover {

    transform: translateY(-10px);

    border-color: var(--primary);

    box-shadow: 0 20px 50px rgba(57, 211, 83, .12);

}

.user {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

}

.user img {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid var(--primary);

}

.user h4 {

    color: white;

    margin-bottom: 5px;

}

.user span {

    color: #999;

    font-size: 14px;

}

.stars {

    color: #FFD54A;

    font-size: 22px;

    margin-bottom: 18px;

}

.testimonial-card p {

    color: #BDBDBD;

    line-height: 1.9;

}




@media(max-width:992px) {

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

}














.faq {

    padding: 120px 0;

    background: var(--background);

}

.faq-list {

    max-width: 900px;

    margin: auto;

}

.faq-item {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 15px;

    margin-bottom: 20px;

    overflow: hidden;

    transition: .3s;

}

.faq-item:hover {

    border-color: var(--primary);

}

.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    padding: 25px;

}

.faq-question h3 {

    font-size: 20px;

    font-weight: 600;

}

.faq-question span {

    font-size: 35px;

    color: var(--primary);

    transition: .3s;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: .35s ease;

}

.faq-answer p {

    color: var(--text-muted);

    line-height: 1.9;

    padding: 0 25px 25px;

}

.faq-item.active .faq-answer {

    max-height: 250px;

}

.faq-item.active .faq-question span {

    transform: rotate(45deg);

}




.footer {

    background: #070707;

    border-top: 1px solid var(--border);

    padding-top: 80px;

}

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;

}

.footer-about .logo {

    justify-content: flex-start;

    margin-bottom: 25px;

}

.footer-about img {

    width: 55px;

    margin-right: 15px;

}

.footer-about h2 {

    font-size: 30px;

    color: white;

}

.footer-about h2 span {

    color: var(--primary);

}

.footer-about p {

    color: var(--text-muted);

}

.about-text {

    margin: 25px 0;

    line-height: 1.9;

    max-width: 450px;

}

.footer-links h3 {

    color: white;

    margin-bottom: 25px;

    font-size: 22px;

}

.footer-links ul {

    list-style: none;

}

.footer-links li {

    margin-bottom: 18px;

    color: var(--text-muted);

}

.footer-links li i {

    color: var(--primary);

    margin-right: 10px;

}

.footer-links a {

    color: var(--text-muted);

    text-decoration: none;

    transition: .3s;

}

.footer-links a:hover {

    color: var(--primary);

    padding-left: 6px;

}

.socials {

    display: flex;

    gap: 15px;

}

.socials a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #131313;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    transition: .3s;

}

.socials a:hover {

    background: var(--primary);

    transform: translateY(-5px);

}

.footer-bottom {

    border-top: 1px solid var(--border);

    padding: 30px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.footer-bottom p {

    color: #888;

}

.footer-bottom div {

    display: flex;

    gap: 30px;

}

.footer-bottom a {

    color: #888;

    text-decoration: none;

    transition: .3s;

}

.footer-bottom a:hover {

    color: var(--primary);

}


@media(max-width:992px) {

    .footer-top {

        grid-template-columns: 1fr;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

}








/* ==========================================
   Responsive
========================================== */

/* Laptop */
@media (max-width:1200px) {

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dashboard-wrapper {
        gap: 50px;
    }

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

    .floating-card {
        transform: scale(.9);
    }

}

/* Tablet */
@media (max-width:992px) {

    .section {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        width: 100%;
        font-size: 15px;
    }

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

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

    .dashboard-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .dashboard-content,
    .dashboard-image {
        width: 100%;
    }

    .dashboard-content {
        text-align: center;
    }

    .dashboard-content h2 {
        font-size: 38px;
    }

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

    .dashboard-features .item {
        justify-content: center;
    }

    .floating-card.top {
        left: 10px;
        top: 10px;
    }

    .floating-card.bottom {
        right: 10px;
        bottom: 10px;
    }

}

/* Mobile */
@media (max-width:768px) {

    .section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title span {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .section-title p {
        font-size: 14px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card span {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .feature-card h3 {
        font-size: 22px;
    }

    .api-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 20px;
    }

    .endpoint {
        margin-left: 0;
    }

    .endpoint h3 {
        font-size: 20px;
    }

    .copy {
        align-self: flex-end;
    }

    .dashboard-content h2 {
        font-size: 32px;
    }

    .dashboard-features {
        grid-template-columns: 1fr;
    }

    .dashboard-features .item {
        justify-content: flex-start;
    }

    .floating-card {
        position: relative;
        width: 100%;
        margin-top: 20px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .glow {
        width: 320px;
        height: 320px;
        filter: blur(100px);
    }

}

/* Small Mobile */
@media (max-width:576px) {

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 13px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card span {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .api-card {
        padding: 18px;
    }

    .method {
        width: 65px;
        font-size: 13px;
    }

    .endpoint h3 {
        font-size: 18px;
    }

    .endpoint p {
        font-size: 13px;
        word-break: break-word;
    }

    .dashboard-content h2 {
        font-size: 28px;
    }

    .dashboard-content p {
        font-size: 14px;
    }

    .dashboard-image img {
        border-radius: 15px;
    }

    .floating-card {
        padding: 15px;
    }

    .floating-card h3 {
        font-size: 24px;
    }

    .glow {
        width: 250px;
        height: 250px;
    }

}

.feature-card,
.api-card {
    width: 100%;
}

.dashboard-image img {
    display: block;
    max-width: 100%;
    height: auto;
}













/* ===========================
   Login
=========================== */

.auth-page{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.auth-glow{
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(57,211,83,.12);
    filter:blur(180px);
    left:-250px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
}

.auth-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 450px;
    gap:80px;
    align-items:center;
}

/* ===========================
   Left
=========================== */

.auth-left .logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.auth-left .logo img{
    width:75px;
}

.auth-left .logo h2{
    margin:0;
    font-size:42px;
}

.auth-left .logo h2 span{
    color:var(--primary);
}

.auth-left .logo p{
    margin-top:5px;
    color:#bdbdbd;
    font-size:14px;
    letter-spacing:2px;
}

.badge{
    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    margin:40px 0 25px;
    border-radius:50px;
    border:1px solid rgba(57,211,83,.3);
    background:rgba(57,211,83,.08);
    color:var(--primary);
}

.auth-left h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.auth-left h1 span{
    color:var(--primary);
}

.auth-left>p{
    color:var(--text-muted);
    max-width:600px;
    line-height:1.8;
    font-size:18px;
}

.features{
    
    gap:18px;
    margin-top:45px;
}

.features span{
    color:var(--primary);
}

/* ===========================
   Card
=========================== */

.auth-card{
    width:100%;
    background:#121212;
    border:1px solid #242424;
    border-radius:24px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.auth-card h2{
    font-size:42px;
    margin-bottom:10px;
}

.auth-card>p{
    color:var(--text-muted);
    margin-bottom:35px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    color:#fff;
}

.form-group input{
    width:100%;
    height:58px;
    border-radius:12px;
    border:1px solid #2d2d2d;
    background:#1b1b1b;
    padding:0 18px;
    color:#fff;
}

.form-group input:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(57,211,83,.15);
}

.remember{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:25px 0;
}

.remember label{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
}

.remember input{
    width:auto;
}

.remember a{
    color:var(--primary);
}

.w-100{
    width:100%;
}

.divider{
    text-align:center;
    color:#777;
    margin:35px 0;
}

.register{
    text-align:center;
    color:var(--text-muted);
}

.register a{
    color:var(--primary);
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .auth-page{
        padding:60px 0;
    }

    .auth-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .auth-left{
        text-align:center;
    }

    .auth-left .logo{
        justify-content:center;
    }

    .auth-left>p{
        margin:auto;
    }

    .features{
        max-width:900px;
        margin:40px auto 0;
    }

    .auth-card{
        max-width:500px;
        margin:auto;
    }

    .auth-left h1{
        font-size:48px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:576px){

    .auth-page{
        padding:40px 0;
    }

    .auth-wrapper{
        gap:35px;
    }

    .auth-left .logo{
        flex-direction:column;
        text-align:center;
    }

    .auth-left .logo img{
        width:65px;
    }

    .auth-left .logo h2{
        font-size:34px;
    }

    .badge{
        font-size:13px;
        margin:30px 0 20px;
    }

    .auth-left h1{
        font-size:36px;
    }

    .auth-left>p{
        font-size:16px;
    }

    .features{
        grid-template-columns:1fr;
        text-align:left;
        max-width: 500px;
    }

    .auth-card{
        padding:30px 20px;
    }

    .auth-card h2{
        font-size:34px;
    }

    .remember{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .auth-glow{
        width:350px;
        height:350px;
        left:-150px;
    }

}















/* ===========================
   API Reference
=========================== */

.api-hero{
    padding:140px 0 90px;
    background:
        radial-gradient(circle at top,#22c55e22,transparent 40%),
        #07111d;
}

.api-hero .container{
    max-width:900px;
    text-align:center;
}

.api-hero h1{
    font-size:58px;
    color:#fff;
    margin:20px 0;
    line-height:1.1;
}

.api-hero h1 span{
    color:#22c55e;
}

.api-hero p{
    max-width:700px;
    margin:auto;
    color:#a8b3c5;
    line-height:1.9;
    font-size:18px;
}

.hero-badge{

    display:inline-flex;
    align-items:center;

    padding:8px 18px;

    border-radius:50px;

    background:#22c55e20;

    color:#22c55e;

    font-size:14px;

    letter-spacing:1px;

    border:1px solid #22c55e40;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:35px;

}

.api-reference{

    padding:80px 0;

}

.api-wrapper{

    display:grid;

    grid-template-columns:270px 1fr;

    gap:50px;

}

.api-sidebar{

    position:sticky;

    top:120px;

    height:max-content;

    background:#0f172a;

    border:1px solid #1f2937;

    border-radius:20px;

    padding:25px;

}

.api-sidebar h3{

    color:#fff;

    margin-bottom:20px;

}

.api-sidebar ul{

    list-style:none;

}

.api-sidebar li{

    margin-bottom:12px;

}

.api-sidebar a{

    display:block;

    padding:10px 14px;

    border-radius:10px;

    color:#94a3b8;

    transition:.3s;

    text-decoration:none;

}

.api-sidebar a:hover{

    background:#22c55e;

    color:#fff;

}

.api-content{

    display:flex;

    flex-direction:column;

    gap:60px;

}

.doc-section{

    background:#0f172a;

    border:1px solid #1f2937;

    border-radius:22px;

    padding:40px;

}

.doc-section h2{

    color:#fff;

    margin-bottom:15px;

    font-size:34px;

}

.doc-section h3{

    margin-top:30px;

    color:#fff;

}

.doc-section p{

    color:#9ca3af;

    line-height:1.8;

}





.endpoint-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.method{

    padding:7px 15px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    color:#fff;

}

.method.post{

    background:#22c55e;

}

.method.get{

    background:#3b82f6;

}

.method.put{

    background:#f59e0b;

}

.method.delete{

    background:#ef4444;

}

.endpoint-table{

    width:100%;

    border-collapse:collapse;

    margin-top:25px;

}

.endpoint-table th{

    background:#162233;

    color:#fff;

    text-align:left;

    padding:14px;

}

.endpoint-table td{

    padding:14px;

    border-bottom:1px solid #243244;

    color:#b8c1ce;

}

.code-box{

    margin-top:25px;

    background:#07111d;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #1f2937;

}

.code-box pre{

    margin:0;

    padding:25px;

    color:#7dd3fc;

    font-size:15px;

    overflow:auto;

    line-height:1.7;

}



.code-box::-webkit-scrollbar{

    height:8px;

}

.code-box::-webkit-scrollbar-thumb{

    background:#22c55e;

}

.endpoint-table tr:hover{

    background:#132131;

}

.doc-section:hover{

    transform:translateY(-3px);

    transition:.3s;

}

.api-sidebar a.active{

    background:#22c55e;

    color:#fff;

}



/* ===========================
   Code Header
=========================== */

.code-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 20px;

    background:#111c2d;

    border-bottom:1px solid #1f2937;

}

.code-header h4{

    color:#fff;

    font-size:15px;

    margin:0;

}

.copy-btn{

    display:flex;

    align-items:center;

    gap:8px;

    background:#1f2937;

    color:#fff;

    border:none;

    border-radius:10px;

    padding:8px 15px;

    cursor:pointer;

    transition:.3s;

}

.copy-btn:hover{

    background:#22c55e;

}

/* ===========================
   Endpoint Card
=========================== */

.endpoint-card{

    border:1px solid #1f2937;

    border-radius:20px;

    overflow:hidden;

    margin-top:35px;

    background:#101b2d;

}

.endpoint-body{

    padding:35px;

}

.endpoint-url{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.endpoint-url code{

    color:#7dd3fc;

    font-size:18px;

}

.endpoint-description{

    color:#94a3b8;

    line-height:1.9;

}

.endpoint-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:35px;

}

.endpoint-box{

    background:#162233;

    padding:20px;

    border-radius:16px;

}

.endpoint-box h5{

    color:#fff;

    margin-bottom:10px;

}

.endpoint-box p{

    color:#94a3b8;

    margin:0;

}


/* ===========================
   Tabs
=========================== */

.code-tabs{

    display:flex;

    gap:15px;

    padding:15px 20px;

    border-bottom:1px solid #1f2937;

}

.code-tab{

    cursor:pointer;

    color:#94a3b8;

    padding:8px 15px;

    border-radius:10px;

    transition:.3s;

}

.code-tab.active{

    background:#22c55e;

    color:#fff;

}

.code-content{

    display:none;

}

.code-content.active{

    display:block;

}

/* ===========================
Responsive
=========================== */

@media(max-width:1100px){

.api-wrapper{

grid-template-columns:1fr;

}

.api-sidebar{

position:relative;

top:0;

margin-bottom:40px;

}

}

@media(max-width:768px){

.api-hero{

padding:110px 0 60px;

}

.api-hero h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.endpoint-info{

grid-template-columns:1fr;

}

.doc-section{

padding:25px;

}

.endpoint-table{

display:block;

overflow:auto;

}

}