/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:
    Inter,
    sans-serif;

    background:#f5f7fb;

    color:#111827;

    line-height:1.5;
}

/* LINKS */

a{
    text-decoration:none;
}

/* CONTAINER */

.container{

    width:100%;
    max-width:1200px;

    margin:auto;

    padding:20px;
}

/* CARD */

.card{

    background:#fff;

    border-radius:22px;

    padding:24px;

    box-shadow:
    0 2px 10px rgba(0,0,0,0.05);
}

/* TITLE */

.title{

    font-size:28px;
    font-weight:700;
}

/* SUBTITLE */

.subtitle{

    color:#6b7280;

    margin-top:5px;

    font-size:15px;
}

/* INPUT */

.input{

    width:100%;

    padding:15px 18px;

    border:1px solid #dbe1ea;

    border-radius:16px;

    background:#fff;

    font-size:15px;

    transition:0.2s;
}

.input:focus{

    outline:none;

    border-color:#0a66c2;

    box-shadow:
    0 0 0 4px rgba(10,102,194,0.08);
}

/* BUTTON */

.btn{

    border:none;

    cursor:pointer;

    padding:14px 24px;

    border-radius:999px;

    font-size:15px;

    font-weight:600;

    transition:0.25s;
}

/* PRIMARY */

.btn-primary{

    background:#0a66c2;

    color:#fff;
}

.btn-primary:hover{

    background:#004182;
}

/* LIGHT */

.btn-light{

    background:#fff;

    border:1px solid #dbe1ea;

    color:#111827;
}

.btn-light:hover{

    background:#f3f4f6;
}

/* FLEX */

.flex{
    display:flex;
}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/* BADGE */

.badge{

    display:inline-block;

    padding:6px 10px;

    border-radius:999px;

    background:#eef2ff;

    color:#3730a3;

    font-size:12px;

    font-weight:600;
}

/* NAVBAR */

.navbar{

    background:#fff;

    border-bottom:1px solid #e5e7eb;

    padding:14px 20px;

    position:sticky;

    top:0;

    z-index:100;
}

.logo{

    font-size:28px;

    font-weight:700;

    color:#0a66c2;
}

/* AUTH */

.auth-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

.auth-box{

    width:100%;

    max-width:420px;
}

.auth-card{

    background:#fff;

    padding:30px;

    border-radius:26px;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.06);
}

/* FORM GROUP */

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

/* TEXT */

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

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}

.w-100{
    width:100%;
}

/* MOBILE */

@media(max-width:768px){

    .container{
        padding:15px;
    }

    .card{
        padding:18px;
    }

    .title{
        font-size:24px;
    }
}




/* LANDING */

.hero{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:40px;

    min-height:90vh;
}

.hero-title{

    font-size:60px;

    line-height:1.1;

    margin:20px 0;
}

.hero-text{

    color:#6b7280;

    font-size:18px;

    max-width:520px;
}

.hero-buttons{

    display:flex;

    gap:14px;

    margin-top:30px;
}

/* IMAGE */

.hero-image{

    width:100%;

    max-width:520px;
}

/* SECTION */

.section{
    padding:60px 20px;
}

.section-title{

    font-size:36px;

    margin-bottom:30px;

    text-align:center;
}

/* FEATURES */

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:20px;
}

.feature-card{

    text-align:center;
}

.feature-icon{

    font-size:32px;

    color:#0a66c2;

    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        padding-top:40px;
    }

    .hero-title{
        font-size:40px;
    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;
    }

    .hero-image{
        margin:auto;
    }
}



/* INPUT GROUP */

.input-group{
    position:relative;
    margin-bottom:18px;
}



/* ICON */

.input-icon{

    position:absolute;

    left:16px;
    top:50%;

    transform:translateY(-50%);

    color:#9ca3af;

    font-size:14px;
}

/* INPUT WITH ICON */

.input-icon-left{
    padding-left:45px;
}

/* DIVIDER */

.divider{

    position:relative;

    text-align:center;

    margin:25px 0;
}

.divider::before{

    content:"";

    position:absolute;

    top:50%;
    left:0;

    width:100%;
    height:1px;

    background:#e5e7eb;
}

.divider span{

    position:relative;

    background:#fff;

    padding:0 12px;

    color:#9ca3af;

    font-size:13px;
}

/* AUTH LINKS */

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

.auth-links a{

    color:#0a66c2;

    font-weight:600;
}

.auth-links p{
    margin-top:15px;
}

/* ALERT */

.alert{

    padding:14px;

    border-radius:14px;

    font-size:14px;
}

.alert-danger{

    background:#fee2e2;

    color:#dc2626;
}



/* TOP SMALL TEXT */

.hero-top-text{

    font-size:14px;

    font-weight:600;

    color:#0a66c2;

    margin-bottom:10px;

    text-transform:uppercase;

    letter-spacing:1px;
}

/* BIG LOGO */

.hero-logo{

    font-size:72px;

    font-weight:800;

    line-height:1;

    color:#111827;

    margin-bottom:20px;
}

/* HERO TITLE */

.hero-title{

    font-size:48px;

    line-height:1.15;

    font-weight:700;

    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

    /* HIDE IMAGE */

    .hero-right{
        display:none;
    }

    .hero{

        grid-template-columns:1fr;

        min-height:auto;

        padding-top:70px;

        text-align:center;
    }

    .hero-logo{
        font-size:58px;
    }

    .hero-title{
        font-size:34px;
    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;
    }

    .hero-text{
        margin:auto;
    }
}




/* INPUT ICON */

.input-group{
    position:relative;
    margin-bottom:16px;
}

.input-group i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:14px;
}

.input-group input{
    width:100%;
    padding-left:45px;
}

/* ALERT */

.alert{
    padding:12px;
    border-radius:10px;
    font-size:14px;
    margin-bottom:15px;
}

.alert.error{
    background:#fff0f0;
    color:#d93025;
}

.alert.success{
    background:#eefbf3;
    color:#0f9d58;
}

/* OTP */

.otp-wrapper{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:25px 0;
}

.otp-box{
    width:48px;
    height:55px;

    border:none;
    border-bottom:2px solid #ddd;

    text-align:center;
    font-size:24px;
    font-weight:600;

    outline:none;
    background:transparent;
}

.otp-box:focus{
    border-bottom:2px solid #111;
}



/* PASSWORD FIELD */

.password-group{
    position:relative;
}

.password-group .password-input{

    width:100%;

    height:56px;

    padding-left:45px;
    padding-right:50px;

    border:1px solid #dbe1ea;
    border-radius:16px;

    background:#fff;

    font-size:15px;
}

/* EYE ICON */

.password-toggle{

    position:absolute;

    right:16px;

    top:50%;

    transform:translateY(-50%);

    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    color:#777;

    z-index:10;
}

/* LEFT ICON */

.password-group .input-icon{

    position:absolute;

    left:16px;

    top:50%;

    transform:translateY(-50%);

    color:#999;

    z-index:10;
}


/* TIMER */

.timer{
    text-align:center;
    margin-top:18px;
    font-size:14px;
    color:#666;
}

.resend{
    margin-top:10px;
    color:#111;
    font-weight:600;
    cursor:pointer;
    display:none;
}





/* =========================
   HEADER
========================= */

.main-header{
    width:100%;
    border-bottom:1px solid #eee;
    background:#fff;
    position:sticky;
    top:0;
    z-index:100;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.header-flex{
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-wrap{
    text-decoration:none;
}

.logo-top{
    font-size:11px;
    color:#888;
    margin-bottom:2px;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0a66c2;
}

/* NAV */

.nav{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav a{
    text-decoration:none;
    color:#444;
    font-size:14px;
}

.nav-btn{
    background:#111;
    color:#fff !important;
    padding:10px 18px;
    border-radius:999px;
}

/* =========================
   FOOTER
========================= */

.main-footer{
    border-top:1px solid #eee;
    padding:25px 0;
    margin-top:60px;
}

.footer-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links{
    display:flex;
    gap:18px;
}

.footer-links a{
    text-decoration:none;
    color:#666;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .nav{
        gap:12px;
    }

    .nav a{
        font-size:13px;
    }

    .header-flex{
        height:65px;
    }

    .logo{
        font-size:24px;
    }
}


/* =========================
   EXPLORE
========================= */

/* PAGE */

.explore-page{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

/* HERO */

.explore-hero{
    text-align:center;
    margin-bottom:35px;
}

.explore-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}

.explore-hero p{
    color:#666;
    font-size:18px;
}

/* FILTER */

.filter-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:22px;
    margin-bottom:35px;
}

.filter-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:15px;
    margin-bottom:18px;
}

/* INPUT */

.filter-input{
    position:relative;
}

.filter-input i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
}

.filter-input input,
.filter-input select{
    width:100%;
    height:56px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:0 18px 0 46px;
    font-size:15px;
    background:#fff;
}

/* BUTTON */

.apply-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:#1463ff;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
}

.apply-btn i{
    margin-right:8px;
}

/* GRID */

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

/* CARD */

.user-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:20px;
    transition:.25s;
}

.user-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* TOP */

.card-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
}

/* AVATAR */

.avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    overflow:hidden;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
    flex-shrink:0;
}

.avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* INFO */

.user-info h3{
    font-size:18px;
    font-weight:700;
}

/* LINE */

.line{
    height:1px;
    background:#ececec;
    margin-bottom:15px;
}



/* PRO */

.pro-badge{
    background:#111;
    color:#fff;
    padding:3px 7px;
    border-radius:20px;
    font-size:10px;
    margin-left:6px;
}

/* REFRESH */

.refresh-wrap{
    text-align:center;
    margin-top:35px;
}

.refresh-btn{
    height:52px;
    padding:0 24px;
    border:none;
    border-radius:14px;
    background:#111;
    color:#fff;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.refresh-btn i{
    margin-right:8px;
}

/* MOBILE */

@media(max-width:900px){

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

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

@media(max-width:600px){

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

    .explore-hero h1{
        font-size:38px;
    }

}



/* TAG ROW */

.tag-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:22px;
}

/* TAG BOX */

.tag{

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

    height:34px;

    padding:0 14px;

    border-radius:6px;

    font-size:13px;
    font-weight:600;

    color:#fff;

    line-height:1;

    border:none;
}

/* DIFFERENT COLORS */

.tag:nth-child(1){
    background:#2d6cdf;
}

.tag:nth-child(2){
    background:#57b26a;
}

.tag:nth-child(3){
    background:#f39c12;
}

.tag:nth-child(4){
    background:#e74c3c;
}

.tag:nth-child(5){
    background:#8e44ad;
}

.tag:nth-child(6){
    background:#16a085;
}


.user-card{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:14px;
    padding:18px;
    transition:.25s;
}

/* CATEGORY */

.category-text{
    font-size:15px;
    font-weight:700;
    margin-bottom:16px;
    color:#333;
}

/* VIEW BUTTON */

.view-btn{

    display:block;

    text-align:center;

    height:46px;
    line-height:46px;

    border:1px solid #d9d9d9;

    border-radius:8px;

    text-decoration:none;

    color:#1463ff;

    font-weight:700;

    background:#fff;
}



/* =========================
   PROFILE PAGE
========================= */


/* PROFILE PAGE */

.profile-page{
    max-width:900px;
    margin:auto;
    padding:20px;
    padding-bottom:60px;
}

/* TOPBAR */

.profile-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.profile-topbar h3{
    font-size:18px;
    font-weight:700;
    color:#111827;
}

.top-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* BACK */

.back-btn,
.icon-btn{

    width:42px;
    height:42px;

    border:1px solid #e5e7eb;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#111827;

    background:#fff;

    transition:.2s;
}

.back-btn:hover,
.icon-btn:hover{
    background:#f3f4f6;
}

/* LOGOUT */

.logout-btn{

    padding:10px 18px;

    border-radius:999px;

    background:#111827;

    color:#fff;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    transition:.2s;
}

.logout-btn:hover{
    opacity:.9;
}

/* COVER */

.profile-cover{
    height:220px;
    background:linear-gradient(135deg,#1463ff,#5b8cff);
    border-radius:0 0 30px 30px;
}

/* CARD */

.profile-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    margin:-80px auto 30px;
    padding:30px;
    width:92%;
    text-align:center;
    position:relative;
    box-shadow:0 8px 30px rgba(0,0,0,.04);
}

/* AVATAR */

.profile-avatar{
    width:130px;
    height:130px;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
    border:5px solid #fff;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:700;
    margin-top:-90px;
}

.profile-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* INFO */

.profile-info h1{
    font-size:34px;
    margin-top:18px;
    margin-bottom:8px;
}

.username{
    color:#666;
    font-size:17px;
}

/* VERIFIED */

.verified-badge{
    width:26px;
    height:26px;
    background:#1463ff;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:12px;
    margin-left:8px;
}

/* STATS */

.profile-stats{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:28px;
    margin-bottom:28px;
}

.profile-stats h3{
    font-size:26px;
    margin-bottom:5px;
}

.profile-stats p{
    color:#777;
}

/* FOLLOW */

.follow-btn{
    height:50px;
    padding:0 34px;
    border:none;
    border-radius:14px;
    background:#1463ff;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.follow-btn.following{
    background:#111;
}

/* SECTION */

.profile-section{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:24px;
    margin-bottom:20px;
}

.profile-section h3{
    margin-bottom:18px;
    font-size:22px;
}

/* ABOUT */

.about-box p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:12px;
    color:#444;
}

.about-box i{
    color:#1463ff;
    margin-right:8px;
}

/* TAGS */

.tag-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

/* CATEGORY TAG */

.profile-tag{
    background:#eef4ff;
    color:#1463ff;
    padding:10px 16px;
    border-radius:10px;
    font-weight:600;
}

/* NEED TAG */

.need-tag{
    background:#111;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .profile-cover{
        height:180px;
        border-radius:0 0 24px 24px;
    }

    .profile-card{
        width:100%;
        padding:24px 18px;
    }

    .profile-avatar{
        width:110px;
        height:110px;
        font-size:34px;
    }

    .profile-info h1{
        font-size:28px;
    }

    .profile-stats{
        gap:24px;
    }

    .profile-stats h3{
        font-size:22px;
    }

    .logout-btn{
        padding:9px 14px;
        font-size:13px;
    }

}




/* =========================
   USER DASHBOARD
========================= */

/* DASHBOARD */

.dashboard-page{
    max-width:1100px;
    margin:auto;
    padding:30px 20px;
}

.dashboard-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.mini-title{
    font-size:13px;
    color:#777;
}

.dashboard-logo{
    font-size:32px;
    font-weight:700;
}

.top-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-icon{
    width:42px;
    height:42px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
}

.logout-btn{
    padding:11px 18px;
    border-radius:12px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.dashboard-profile-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:24px;
    padding:30px;
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:25px;
}

.dashboard-avatar{
    width:130px;
    height:130px;
    border-radius:50%;
    overflow:hidden;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-weight:700;
}

.dashboard-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.profile-right{
    flex:1;
}

.profile-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
}

.profile-header h2{
    font-size:30px;
}

.profile-username{
    margin-top:6px;
    color:#666;
}

.dashboard-stats{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.stat-box{
    flex:1;
    border:1px solid #eee;
    border-radius:18px;
    padding:18px;
    text-align:center;
}

.stat-box h3{
    font-size:24px;
    margin-bottom:4px;
}

.stat-box p{
    color:#666;
    font-size:14px;
}

.dashboard-section{
    margin-top:30px;
}

.dashboard-section h3{
    margin-bottom:15px;
    font-size:20px;
}

.dashboard-card{
    border:1px solid #eee;
    border-radius:20px;
    padding:20px;
    background:#fff;
}

.mt-10{
    margin-top:10px;
}

.tag-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.dashboard-tag,
.need-tag{
    padding:10px 16px;
    border-radius:999px;
    background:#f3f4f6;
    font-size:14px;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.quick-card{
    border:1px solid #eee;
    border-radius:20px;
    padding:22px;
    text-align:center;
    text-decoration:none;
    color:#111;
    background:#fff;
    transition:.2s;
}

.quick-card:hover{
    transform:translateY(-3px);
}

.quick-card i{
    font-size:22px;
    margin-bottom:10px;
}

.quick-card span{
    display:block;
    font-size:14px;
}

.upgrade-btn{
    padding:10px 18px;
    border-radius:999px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.verified-badge{
    width:22px;
    height:22px;
    background:#2563eb;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    margin-left:5px;
}


/* PROFILE LEFT */

.profile-left{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* CHANGE PHOTO */

.change-photo-btn{
    margin-top:14px;
    padding:10px 18px;
    border-radius:999px;
    background:#f3f4f6;
    color:#111827;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.2s;
}

.change-photo-btn:hover{
    background:#e5e7eb;
}

/* ABOUT CARD */

.about-card p{
    font-size:15px;
    line-height:1.7;
    color:#374151;
}

/* FIX SHORT HEIGHT */

.dashboard-page{
    min-height:calc(100vh - 140px);
}

/* MOBILE */

@media(max-width:768px){

    .dashboard-profile-card{
        flex-direction:column;
        text-align:center;
    }

    .dashboard-stats{
        flex-direction:column;
    }

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

    .profile-header{
        justify-content:center;
    }
}




/* =========================
   SETTINGS PHP
========================= */

.settings-page{
    max-width:700px;
    margin:auto;
    padding:40px 20px;
}

.settings-card{
    border:1px solid #eee;
    border-radius:24px;
    padding:30px;
    background:#fff;
}

.settings-card h1{
    margin-bottom:25px;
}

.settings-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.settings-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    border:1px solid #eee;
    border-radius:18px;
    text-decoration:none;
    color:#111;
}

.settings-item i{
    margin-right:10px;
}

.settings-item span{
    flex:1;
}

.settings-item.danger{
    color:#dc2626;
}

/* SETTINGS COMMON */

.settings-page{
    max-width:750px;
    margin:auto;
    padding:40px 20px;
}

.settings-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:24px;
    padding:30px;
}

.settings-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.settings-top h1{
    font-size:28px;
}

.back-link{
    text-decoration:none;
    color:#555;
    font-size:14px;
}

.settings-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    font-size:14px;
    font-weight:600;
}

.input,
.textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:15px;
    outline:none;
}

.input:focus,
.textarea:focus{
    border-color:#111;
}

.textarea{
    min-height:120px;
    resize:none;
}

.alert{
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
    font-size:14px;
}

.alert-danger{
    background:#fff1f2;
    color:#dc2626;
}

.alert-success{
    background:#ecfdf5;
    color:#059669;
}

/* UPGRADE */

.upgrade-card{
    text-align:center;
}

.pro-badge-big{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.upgrade-sub{
    color:#666;
    margin-top:10px;
}

.pro-features{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.pro-item{
    border:1px solid #eee;
    border-radius:16px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
}

.pricing-box{
    margin-top:35px;
}

.pricing-box h2{
    font-size:48px;
}

.pricing-box p{
    color:#666;
}

.upgrade-full-btn{
    width:100%;
    margin-top:25px;
}

/* MOBILE */

@media(max-width:768px){

    .settings-card{
        padding:22px;
    }

    .settings-top h1{
        font-size:24px;
    }

}




/* EMAIL GROUP */

.email-group{
    position:relative;
    margin-bottom:18px;
}

.email-group .input-icon{

    position:absolute;

    left:16px;
    top:50%;

    transform:translateY(-50%);

    color:#888;
    font-size:14px;

    z-index:2;
}

.email-group input{

    width:100%;

    height:54px;

    padding-left:45px;

    padding-right:16px;

    border:1px solid #ddd;

    border-radius:14px;

    outline:none;

    font-size:15px;

    background:#fff;
}



/* PASSWORD GROUP */

.password-group{
    position:relative;
    margin-bottom:18px;
}

.password-group .input-icon{

    position:absolute;

    left:16px;
    top:50%;

    transform:translateY(-50%);

    color:#888;
    font-size:14px;

    z-index:2;
}

.password-group input{

    width:100%;

    height:54px;

    padding-left:45px;

    padding-right:50px;

    border:1px solid #ddd;

    border-radius:14px;

    outline:none;

    font-size:15px;

    background:#fff;
}

/* EYE ICON */

.password-toggle{

    position:absolute;

    right:16px;
    top:50%;

    transform:translateY(-50%);

    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    color:#777;

    z-index:5;
}

.password-toggle i{
    font-size:15px;
    line-height:1;
}





/* =========================
   STEPS ONBOARDING
========================= */

.onboard-page{
    max-width:760px;
    margin:auto;
    padding:40px 20px;
}

.onboard-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:30px;
    padding:35px;
}

.onboard-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:25px;
}

.mini-text{
    font-size:13px;
    color:#777;
    margin-bottom:6px;
}

.onboard-logo{
    font-size:42px;
    font-weight:800;
    line-height:1;
}

.step-badge{
    background:#f3f4f6;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

/* PROGRESS */

.progress-area{
    margin-bottom:30px;
}

.progress-bar-wrap{
    width:100%;
    height:10px;
    background:#eef1f5;
    border-radius:999px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    width:0%;
    background:#1463ff;
    border-radius:999px;
    transition:.3s;
}

#progressText{
    margin-top:10px;
    font-size:13px;
    color:#666;
}

/* STEP */

.step{
    display:none;
}

.step.active{
    display:block;
}

.step h2{
    font-size:32px;
    margin-bottom:10px;
}

.step-sub{
    color:#666;
    margin-bottom:30px;
}

/* ICON */

.step-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:#eef4ff;
    color:#1463ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

/* INPUT */

.select-input{
    width:100%;
    height:56px;
    border:1px solid #ddd;
    border-radius:16px;
    padding:0 16px;
    font-size:15px;
    background:#fff;
}

/* USERNAME */

.username-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:16px;
    overflow:hidden;
}

.username-box span{
    width:60px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#1463ff;
}

.username-input{
    flex:1;
    border:none;
    outline:none;
    padding:16px;
    font-size:15px;
}

/* PREVIEW */

.preview-box{
    margin-top:20px;
}

.preview-title{
    margin-bottom:10px;
    font-size:14px;
    color:#666;
}

.preview-card{
    border:1px solid #eee;
    border-radius:18px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:14px;
}

.preview-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* OPTION GRID */

.option-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.option-grid div{
    border:1px solid #eee;
    border-radius:18px;
    padding:20px;
    text-align:center;
    cursor:pointer;
    transition:.2s;
    font-weight:600;
}

.option-grid div.active{
    background:#1463ff;
    color:#fff;
    border-color:#1463ff;
}

/* TAGS */

.tag-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.tag-grid span{
    padding:12px 18px;
    border-radius:999px;
    background:#f3f4f6;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
}

.tag-grid span.active{
    background:#111;
    color:#fff;
}

/* BUTTONS */

.step-buttons{
    display:flex;
    gap:12px;
    margin-top:35px;
}

.step-buttons .btn{
    flex:1;
}

/* DETECT */

.detect-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:16px;
    background:#111;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.detect-btn i{
    margin-right:8px;
}

/* SUCCESS */

.success-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:34px;
    margin-bottom:25px;
}

/* SUMMARY */

.summary-card{
    border:1px solid #eee;
    border-radius:20px;
    overflow:hidden;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:18px 20px;
    border-bottom:1px solid #eee;
}

.summary-row:last-child{
    border-bottom:none;
}

.summary-row span{
    color:#666;
}

.summary-row p{
    font-weight:600;
    text-align:right;
}

/* MOBILE */

@media(max-width:768px){

    .onboard-card{
        padding:24px;
    }

    .onboard-top{
        flex-direction:column;
    }

    .onboard-logo{
        font-size:34px;
    }

    .step h2{
        font-size:26px;
    }

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

    .step-buttons{
        flex-direction:column;
    }
}





