:root{
    --bg:#0b1220;
    --card:#111827;
    --accent:#f59e0b;
    --text:#f9fafb;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(17,24,39,.95);
    backdrop-filter:blur(8px);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--accent);
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.hero{
    padding:100px 0;
}

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

h1{
    font-size:64px;
    line-height:1.1;
}

.badge{
    background:#1f2937;
    padding:8px 12px;
    border-radius:30px;
}

.card,
.panel{
    background:var(--card);
    padding:24px;
    border-radius:16px;
}

.actions{
    margin-top:24px;
}

.btn-primary{
    background:var(--accent);
    color:#000;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

.btn-secondary{
    border:1px solid var(--accent);
    color:var(--accent);
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

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

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.dark{
    background:#111827;
}

.workflow{
    font-size:24px;
    font-weight:600;
    text-align:center;
}

.featured{
    border:2px solid var(--accent);
}

footer{
    background:#111827;
    text-align:center;
    padding:50px 0;
}

@media(max-width:900px){

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

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

h1{
    font-size:42px;
}

}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-grid input,
.contact-grid select,
.contact-grid textarea{
    width:100%;
    padding:12px;
    margin-bottom:16px;
    border-radius:10px;
    border:1px solid #374151;
    background:#1f2937;
    color:#fff;
}

.contact-grid textarea{
    resize:vertical;
}

@media(max-width:900px){

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

}
.logout-btn{
    width:100%;

    padding:10px 12px;

    border:none;

    border-radius:10px;

    background:#dc2626;

    color:#fff;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;
}

.logout-btn:hover{
    background:#b91c1c;
}
.btn-success{
    background:#059669 !important;
    color:#fff !important;
}

.btn-warning{
    background:#f59e0b !important;
    color:#000 !important;
}

.btn-success:hover{
    background:#047857 !important;
}

.btn-warning:hover{
    background:#d97706 !important;
}
.btn-secondary{
    background:#374151 !important;
    color:#fff !important;
}

.btn-secondary:hover{
    background:#4b5563 !important;
}