:root{
    --primary:#0f766e;
    --dark:#0f172a;
    --muted:#64748b;
    --bg:#f6f8fb;
    --card:#fff;
    --line:#e2e8f0;
    --danger:#dc2626;
    --gold:#f59e0b;
}

*{
    box-sizing:border-box;
}

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

a{
    text-decoration:none;
    color:var(--primary);
}

.topbar{
    position:sticky;
    top:0;
    z-index:20;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 6%;
    background:#fff;
    border-bottom:1px solid var(--line);
    box-shadow:0 2px 20px #00000008;
}

.brand{
    display:flex;
    gap:8px;
    align-items:center;
    min-width:0;
}

.brand-link{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:inherit;
    min-width:0;
}

.site-logo{
    height:32px;
    width:auto;
    max-width:120px;
    object-fit:contain;
    display:block;
    flex:0 0 auto;
}

.brand-text{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.brand-text b{
    font-size:16px;
    line-height:1.1;
    color:var(--dark);
    white-space:nowrap;
}

.brand-text small,
.brand small{
    display:block;
    color:var(--muted);
    font-size:11px;
    white-space:nowrap;
}

.logo{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:linear-gradient(135deg,var(--primary),#14b8a6);
    color:#fff;
    font-weight:800;
    flex:0 0 auto;
}

.fallback-logo{
    flex:0 0 36px;
}

.navlinks{
    display:flex;
    gap:18px;
    align-items:center;
}

.menu-btn{
    display:none;
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    padding:8px;
}

.container{
    width:min(1180px,92%);
    margin:26px auto;
}

.hero{
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:24px;
    align-items:center;
}

.hero-card,
.card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:22px;
    padding:26px;
    box-shadow:0 15px 35px #0f172a0d;
}

.hero h1{
    font-size:42px;
    line-height:1.05;
    margin:0 0 14px;
}

.muted{
    color:var(--muted);
}

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

.grid2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.btn,
button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--primary);
    color:#fff;
    border:0;
    border-radius:12px;
    padding:11px 16px;
    font-weight:700;
    cursor:pointer;
}

.btn.secondary{
    background:#e0f2f1;
    color:#0f766e;
}

.btn.danger{
    background:var(--danger);
}

.btn.gold{
    background:var(--gold);
}

.btn.small{
    padding:8px 12px;
    border-radius:10px;
}

.jobs{
    display:grid;
    gap:16px;
}

.job-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:20px;
}

.badge{
    display:inline-block;
    padding:5px 10px;
    border-radius:99px;
    background:#e0f2f1;
    color:#0f766e;
    font-weight:700;
    font-size:12px;
}

.badge.gray{
    background:#f1f5f9;
    color:#475569;
}

.badge.gold{
    background:#fef3c7;
    color:#92400e;
}

.form{
    display:grid;
    gap:14px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

label{
    font-weight:700;
    font-size:14px;
}

input,
select,
textarea{
    width:100%;
    padding:12px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    font:inherit;
}

textarea{
    min-height:110px;
}

.table-wrap{
    overflow:auto;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
}

table{
    width:100%;
    border-collapse:collapse;
}

th,
td{
    padding:13px;
    border-bottom:1px solid var(--line);
    text-align:left;
    font-size:14px;
}

th{
    background:#f8fafc;
}

.sidebar-layout{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:20px;
}

.sidebar{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px;
    align-self:start;
}

.sidebar a{
    display:block;
    padding:11px 12px;
    border-radius:10px;
    color:#334155;
}

.sidebar a:hover,
.sidebar a.active{
    background:#e0f2f1;
    color:#0f766e;
}

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

.stat{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
}

.stat b{
    font-size:28px;
}

.alert{
    padding:13px 16px;
    border-radius:14px;
    margin-bottom:16px;
    background:#dcfce7;
    color:#166534;
    border:1px solid #bbf7d0;
}

.alert.error{
    background:#fee2e2;
    color:#991b1b;
    border-color:#fecaca;
}

.footer{
    text-align:center;
    color:var(--muted);
    padding:25px;
}

.searchbar{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.progress{
    height:10px;
    background:#e2e8f0;
    border-radius:20px;
    overflow:hidden;
}

.progress span{
    display:block;
    height:100%;
    background:linear-gradient(90deg,#14b8a6,#0f766e);
}

/* Subscription and reports update */
.plan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
    margin:18px 0;
}

.plan-card{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.price{
    font-size:22px;
    font-weight:800;
}

.small-price{
    font-size:16px;
    color:#475569;
}

.clean{
    padding-left:18px;
    margin:6px 0;
}

.inline-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:auto;
}

.btn.secondary.dark{
    background:#0f172a;
    color:#fff;
}

.badge.danger,
.alert.danger,
.alert.error{
    background:#fee2e2;
    color:#991b1b;
}

.hero-mini{
    background:linear-gradient(135deg,#eef2ff,#ecfeff);
}

.grid-form .full{
    grid-column:1/-1;
}

/* Home, terms and contact update */
.home-hero{
    margin-bottom:18px;
}

.hero-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.btn.ghost{
    background:#fff;
    color:var(--primary);
    border:1px solid var(--line);
}

.public-stats{
    margin:18px 0;
}

.feature-row{
    margin:18px 0;
}

.page-card{
    max-width:980px;
    margin:auto;
}

.page-card h1{
    font-size:36px;
    margin-bottom:5px;
}

.page-card h3{
    margin-top:24px;
}

.contact-info{
    background:#f8fafc;
    border:1px solid var(--line);
    border-radius:16px;
    padding:14px;
    margin-top:16px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    width:min(980px,92%);
    margin:0 auto 12px;
    text-align:left;
}

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

/* Mobile responsive */
@media(max-width:850px){
    .hero,
    .grid,
    .grid2,
    .sidebar-layout,
    .stats,
    .form-row{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:32px;
    }

    .menu-btn{
        display:block;
    }

    .navlinks{
        display:none;
        position:absolute;
        left:4%;
        right:4%;
        top:60px;
        flex-direction:column;
        align-items:stretch;
        background:#fff;
        border:1px solid var(--line);
        border-radius:16px;
        padding:14px;
    }

    .nav-open .navlinks{
        display:flex;
    }

    .job-card{
        grid-template-columns:1fr;
    }

    .container{
        width:94%;
    }

    .site-logo{
        height:28px;
        max-width:95px;
    }

    .brand-text small{
        display:none;
    }

    .brand-text b{
        font-size:15px;
    }

    .logo{
        width:32px;
        height:32px;
        border-radius:9px;
    }
}

@media(max-width:720px){
    .sidebar-layout{
        grid-template-columns:1fr;
    }

    .sidebar{
        position:static;
        display:flex;
        overflow-x:auto;
    }

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

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

    .topbar{
        flex-wrap:wrap;
        padding:9px 4%;
    }

    .navlinks{
        width:auto;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .searchbar{
        flex-direction:column;
    }

    .hero-actions .btn{
        width:100%;
    }
}

@media(max-width:420px){
    .site-logo{
        height:24px;
        max-width:80px;
    }

    .brand-text b{
        font-size:14px;
        max-width:130px;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .stats{
        grid-template-columns:1fr;
    }
}
/* Register role buttons and captcha protection */
.auth-card{
    max-width:760px;
    margin:auto;
}
.auth-head{
    margin-bottom:16px;
}
.auth-head h2{
    margin:10px 0 6px;
}
.role-switch{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:18px 0;
}
.role-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 16px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    color:#334155;
    font-weight:800;
    box-shadow:0 10px 24px #0f172a08;
}
.role-btn:hover,
.role-btn.active{
    background:linear-gradient(135deg,var(--primary),#14b8a6);
    color:#fff;
    border-color:transparent;
}
.captcha-box{
    border:1px dashed #99f6e4;
    background:#f0fdfa;
    border-radius:16px;
    padding:14px;
}
.captcha-row{
    display:grid;
    grid-template-columns:150px 1fr;
    gap:10px;
    align-items:center;
    margin-top:8px;
}
.captcha-question{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 12px;
    border-radius:12px;
    background:#fff;
    border:1px solid var(--line);
    color:var(--dark);
    font-weight:900;
    letter-spacing:.5px;
}
.hp-field{
    position:absolute !important;
    left:-10000px !important;
    top:auto !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
    opacity:0 !important;
}
@media(max-width:720px){
    .role-switch,
    .captcha-row{
        grid-template-columns:1fr;
    }
}

/* Captcha spam protection - register/contact */
.captcha-box{
    background:#f8fafc;
    border:1px solid var(--line);
    border-radius:16px;
    padding:16px;
    margin:4px 0;
}

.captcha-label{
    display:block;
    font-size:16px;
    font-weight:800;
    margin-bottom:10px;
    color:var(--dark);
}

.captcha-row{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.captcha-question{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:10px 16px;
    border-radius:14px;
    background:#e0f2f1;
    color:#0f766e;
    font-size:24px;
    font-weight:900;
    letter-spacing:.4px;
    white-space:nowrap;
}

.captcha-answer{
    max-width:180px;
    min-height:48px;
    font-size:22px;
    font-weight:800;
    text-align:center;
}

.captcha-help{
    display:block;
    margin-top:10px;
    font-size:13px;
}

.hp-field{
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    opacity:0 !important;
    pointer-events:none !important;
}

@media(max-width:720px){
    .captcha-row{
        flex-direction:column;
        align-items:stretch;
    }
    .captcha-question{
        width:100%;
        font-size:22px;
    }
    .captcha-answer{
        max-width:100%;
        width:100%;
    }
}


/* Captcha final fix: hide honeypot and keep only one visible answer field */
.hp-field,
input[name="website"]{
    display:none !important;
    position:absolute !important;
    left:-99999px !important;
    width:1px !important;
    height:1px !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
}

.captcha-box{
    background:#f8fafc;
    border:1px solid var(--line);
    border-radius:16px;
    padding:16px;
    margin:4px 0 14px;
}

.captcha-label{
    display:block;
    font-size:17px;
    font-weight:900;
    margin-bottom:10px;
    color:var(--dark);
}

.captcha-row{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.captcha-question{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:10px 18px;
    border-radius:14px;
    background:#e0f2f1;
    color:#0f766e;
    font-size:25px;
    font-weight:900;
    letter-spacing:.4px;
    white-space:nowrap;
}

.captcha-answer{
    max-width:190px;
    min-height:50px;
    font-size:22px;
    font-weight:800;
    text-align:center;
}

.captcha-help{
    display:block;
    margin-top:10px;
    font-size:13px;
}

@media(max-width:720px){
    .captcha-row{
        flex-direction:column;
        align-items:stretch;
    }
    .captcha-question{
        width:100%;
        font-size:22px;
    }
    .captcha-answer{
        max-width:100%;
        width:100%;
    }
}


/* Password recovery */
.auth-card .role-switch{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:16px 0;
}
.role-btn{
    flex:1 1 180px;
    text-align:center;
    padding:12px 14px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    color:var(--dark);
    font-weight:800;
}
.role-btn.active{
    background:#e0f2f1;
    color:var(--primary);
    border-color:#99f6e4;
}
.login-help{
    margin-top:16px;
    text-align:center;
    color:var(--muted);
    line-height:1.7;
}

/* Professional public homepage */
.job-hero{position:relative;display:grid;grid-template-columns:1.08fr .92fr;gap:42px;align-items:center;min-height:590px;padding:42px 46px;border-radius:30px;overflow:hidden;background:linear-gradient(135deg,#f0fdfa 0%,#ffffff 50%,#eef2ff 100%);border:1px solid #dbeafe;box-shadow:0 24px 70px rgba(15,23,42,.08)}
.job-hero:before{content:"";position:absolute;width:350px;height:350px;border-radius:50%;background:rgba(20,184,166,.1);left:-170px;top:-180px}.hero-copy{position:relative;z-index:2}.hero-kicker,.section-label{display:inline-flex;align-items:center;gap:7px;text-transform:uppercase;letter-spacing:.09em;font-size:12px;font-weight:800;color:#0f766e}.hero-copy h1{font-size:56px;line-height:1.06;letter-spacing:-.045em;margin:14px 0 18px;color:#0f172a}.hero-copy h1 span{color:#0f766e}.hero-copy>p{font-size:18px;line-height:1.75;max-width:650px;margin:0 0 24px;color:#526174}.hero-search{display:grid;grid-template-columns:1.2fr .8fr auto;gap:10px;background:#fff;padding:10px;border-radius:17px;box-shadow:0 16px 40px rgba(15,23,42,.12);border:1px solid #e2e8f0}.hero-field{display:flex;align-items:center;gap:8px;padding-left:10px;border-right:1px solid #e2e8f0}.hero-field input,.hero-field select{border:0!important;box-shadow:none;padding:12px 5px;background:transparent}.hero-field select:focus,.hero-field input:focus{outline:0}.hero-search button{white-space:nowrap;border-radius:12px;padding:13px 19px}.popular-searches{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:18px 0;color:#64748b;font-size:13px}.popular-searches a{background:#fff;border:1px solid #e2e8f0;border-radius:99px;padding:6px 10px;color:#475569}.popular-searches a:hover{border-color:#14b8a6;color:#0f766e}.hero-visual{position:relative;min-height:500px;display:grid;place-items:center}.hero-visual img{position:relative;width:100%;max-width:570px;z-index:2;filter:drop-shadow(0 25px 32px rgba(15,23,42,.08))}.visual-glow{position:absolute;width:390px;height:390px;border-radius:50%;background:radial-gradient(circle,rgba(45,212,191,.26),rgba(99,102,241,.04) 68%,transparent 70%)}.floating-card{position:absolute;z-index:3;display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.96);border:1px solid #e2e8f0;border-radius:15px;padding:12px 15px;box-shadow:0 18px 40px rgba(15,23,42,.14);animation:homeFloat 4s ease-in-out infinite}.floating-card>span{display:grid;place-items:center;width:37px;height:37px;border-radius:11px;background:#ecfeff;font-size:19px}.floating-card b,.floating-card small{display:block}.floating-card b{font-size:14px}.floating-card small{font-size:11px;color:#64748b;margin-top:2px}.card-job{left:0;top:95px}.card-company{right:-5px;top:180px;animation-delay:-1.2s}.card-match{left:34px;bottom:55px;animation-delay:-2.3s}@keyframes homeFloat{50%{transform:translateY(-9px)}}
.trust-strip{display:grid;grid-template-columns:repeat(4,1fr);margin:-28px 34px 0;position:relative;z-index:4;background:#fff;border:1px solid #e2e8f0;border-radius:20px;box-shadow:0 18px 45px rgba(15,23,42,.1)}.trust-strip>div{display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;column-gap:12px;align-items:center;padding:22px 25px;border-right:1px solid #e2e8f0}.trust-strip>div:last-child{border:0}.trust-strip span{grid-row:1/3;font-size:26px}.trust-strip b{font-size:24px;line-height:1}.trust-strip small{color:#64748b;margin-top:5px}
.home-section{padding:70px 0 5px}.section-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:25px}.section-heading h2{font-size:34px;letter-spacing:-.025em;margin:7px 0 4px}.section-heading p{margin:0;color:#64748b}.section-heading.centered{justify-content:center;text-align:center}.category-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.category-cards>a{display:flex;align-items:center;gap:14px;padding:20px;background:#fff;border:1px solid #e2e8f0;border-radius:18px;color:#0f172a;transition:.2s ease;box-shadow:0 8px 20px rgba(15,23,42,.035)}.category-cards>a:hover{transform:translateY(-4px);border-color:#5eead4;box-shadow:0 18px 35px rgba(15,118,110,.11)}.category-cards>a>span{display:grid;place-items:center;flex:0 0 50px;height:50px;border-radius:14px;background:linear-gradient(135deg,#f0fdfa,#e0e7ff);font-size:25px}.category-cards b,.category-cards small{display:block}.category-cards small{margin-top:5px;color:#64748b}.category-cards em{font-style:normal;margin-left:auto;font-size:22px;color:#94a3b8}.how-section{padding-bottom:25px}.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.step-card{position:relative;text-align:center;background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:34px 25px;overflow:hidden}.step-no{position:absolute;right:15px;top:6px;font-size:54px;font-weight:900;color:#f1f5f9}.step-icon{position:relative;width:68px;height:68px;display:grid;place-items:center;margin:0 auto 16px;border-radius:20px;background:linear-gradient(135deg,#ccfbf1,#e0e7ff);font-size:31px}.step-card h3{margin:5px 0 9px}.step-card p{color:#64748b;line-height:1.65;margin:0}
.professional-searchbar{display:grid;grid-template-columns:1.1fr .85fr .85fr auto auto;gap:10px;align-items:end;padding:18px;background:#fff;border:1px solid #e2e8f0;border-radius:18px;margin-bottom:20px;box-shadow:0 10px 30px rgba(15,23,42,.05)}.professional-searchbar label{display:block;margin:0 0 7px;font-size:12px;color:#475569}.modern-jobs{gap:15px}.modern-job-card{display:grid;grid-template-columns:auto 1fr;gap:17px;padding:22px;background:#fff;border:1px solid #e2e8f0;border-radius:20px;transition:.2s;box-shadow:0 8px 22px rgba(15,23,42,.035)}.modern-job-card:hover{transform:translateY(-2px);border-color:#99f6e4;box-shadow:0 17px 38px rgba(15,118,110,.09)}.company-avatar{width:58px;height:58px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(135deg,#0f766e,#14b8a6);color:#fff;font-size:24px;font-weight:900}.job-title-row{display:flex;justify-content:space-between;gap:18px}.job-title-row h3{margin:7px 0 5px;font-size:21px}.company-line{margin:0;color:#475569}.job-salary{text-align:right;white-space:nowrap}.job-salary b,.job-salary small{display:block}.job-salary small{color:#64748b;margin-top:4px}.job-meta{display:flex;flex-wrap:wrap;gap:8px;margin:15px 0 10px}.job-meta span,.skill-tags span{font-size:12px;padding:6px 9px;border-radius:8px;background:#f8fafc;border:1px solid #e2e8f0;color:#475569}.job-description{color:#64748b;line-height:1.6;margin:10px 0 14px}.job-footer{display:flex;align-items:center;justify-content:space-between;gap:15px}.skill-tags{display:flex;gap:7px;flex-wrap:wrap}.skill-tags span{background:#ecfdf5;border-color:#d1fae5;color:#047857}.empty-jobs{text-align:center;background:#fff;border:1px dashed #cbd5e1;border-radius:20px;padding:45px}.empty-jobs>span{font-size:42px}.employer-cta{display:flex;align-items:center;justify-content:space-between;gap:25px;margin:70px 0 25px;padding:40px 45px;border-radius:26px;color:#fff;background:linear-gradient(120deg,#0f172a,#0f766e);position:relative;overflow:hidden}.employer-cta:after{content:"";position:absolute;width:230px;height:230px;border-radius:50%;right:-80px;top:-120px;background:rgba(255,255,255,.08)}.employer-cta>div,.employer-cta>a{position:relative;z-index:1}.employer-cta h2{font-size:34px;margin:8px 0}.employer-cta p{margin:0;color:#ccfbf1}.section-label.light{color:#99f6e4}.cta-btn{background:#fff;color:#0f766e}
@media(max-width:980px){.job-hero{grid-template-columns:1fr;padding:38px}.hero-copy h1{font-size:48px}.hero-visual{min-height:440px}.trust-strip{grid-template-columns:repeat(2,1fr)}.trust-strip>div:nth-child(2){border-right:0}.trust-strip>div:nth-child(-n+2){border-bottom:1px solid #e2e8f0}.category-cards{grid-template-columns:repeat(2,1fr)}.professional-searchbar{grid-template-columns:1fr 1fr}.professional-searchbar button,.professional-searchbar>.btn{height:45px}}
@media(max-width:700px){.job-hero{padding:28px 20px;min-height:unset}.hero-copy h1{font-size:39px}.hero-copy>p{font-size:16px}.hero-search{grid-template-columns:1fr}.hero-field{border-right:0;border-bottom:1px solid #e2e8f0}.hero-visual{min-height:340px}.floating-card{transform:scale(.82)}.card-job{left:-13px;top:45px}.card-company{right:-18px;top:130px}.card-match{bottom:15px;left:4px}.trust-strip{margin:-10px 10px 0}.category-cards,.steps-grid{grid-template-columns:1fr}.home-section{padding-top:50px}.section-heading{align-items:start}.section-heading h2{font-size:29px}.professional-searchbar{grid-template-columns:1fr}.modern-job-card{grid-template-columns:1fr}.company-avatar{width:50px;height:50px}.job-title-row,.job-footer,.employer-cta{align-items:flex-start;flex-direction:column}.job-salary{text-align:left}.employer-cta{padding:30px 25px}.employer-cta h2{font-size:29px}.employer-cta .btn{width:100%}}
@media(max-width:460px){.hero-copy h1{font-size:34px}.hero-actions .btn{width:100%}.hero-visual{min-height:275px}.floating-card{display:none}.trust-strip{grid-template-columns:1fr}.trust-strip>div{border-right:0!important;border-bottom:1px solid #e2e8f0!important}.trust-strip>div:last-child{border-bottom:0!important}.category-cards>a{padding:16px}.section-heading{display:block}.section-heading>a{display:inline-block;margin-top:10px}}


/* ===== Professional responsive navigation ===== */
.menu-btn{
    width:44px;
    height:42px;
    padding:9px 10px;
    flex-direction:column;
    gap:5px;
    background:linear-gradient(135deg,var(--primary),#14b8a6);
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 8px 18px rgba(15,118,110,.24);
}
.menu-btn span{
    display:block;
    width:22px;
    height:2.5px;
    border-radius:99px;
    background:#fff !important;
    transition:transform .2s ease,opacity .2s ease;
}
.nav-open .menu-btn span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.nav-open .menu-btn span:nth-child(2){opacity:0}
.nav-open .menu-btn span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

/* ===== Professional admin interface ===== */
.admin-shell{display:grid;grid-template-columns:270px minmax(0,1fr);gap:22px;align-items:start}
.admin-sidebar{
    position:sticky;top:82px;overflow:hidden;background:linear-gradient(180deg,#0f172a,#172554);
    border:0;border-radius:22px;padding:14px;box-shadow:0 20px 45px rgba(15,23,42,.18)
}
.admin-sidebar-title{padding:14px 12px 18px;color:#fff;border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:8px}
.admin-sidebar-title strong{display:block;font-size:17px}.admin-sidebar-title small{color:#cbd5e1}
.admin-sidebar a{display:flex;align-items:center;gap:10px;color:#dbeafe;padding:11px 12px;border-radius:11px;margin:3px 0;font-weight:650}
.admin-sidebar a:hover,.admin-sidebar a.active{background:rgba(20,184,166,.2);color:#fff;transform:translateX(2px)}
.admin-main{min-width:0}
.admin-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:18px}
.admin-heading h1{margin:0 0 5px;font-size:30px}.admin-heading p{margin:0;color:var(--muted)}
.admin-chip{display:inline-flex;align-items:center;gap:7px;background:#dcfce7;color:#166534;border:1px solid #bbf7d0;padding:8px 12px;border-radius:99px;font-size:13px;font-weight:800}
.admin-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:15px;margin-bottom:20px}
.admin-stat{position:relative;overflow:hidden;background:#fff;border:1px solid var(--line);border-radius:20px;padding:19px;box-shadow:0 12px 28px rgba(15,23,42,.06)}
.admin-stat:after{content:"";position:absolute;width:82px;height:82px;border-radius:50%;right:-25px;top:-30px;background:rgba(20,184,166,.1)}
.admin-stat-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:#e6fffb;font-size:21px;margin-bottom:12px}
.admin-stat-label{color:var(--muted);font-size:13px;font-weight:700}.admin-stat-value{font-size:30px;font-weight:850;line-height:1.2;margin-top:3px}.admin-stat-note{font-size:12px;color:#64748b;margin-top:6px}
.admin-grid{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(270px,.65fr);gap:18px}
.admin-panel{background:#fff;border:1px solid var(--line);border-radius:20px;box-shadow:0 12px 28px rgba(15,23,42,.05);overflow:hidden}
.admin-panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 20px;border-bottom:1px solid var(--line)}
.admin-panel-head h2{font-size:18px;margin:0}.admin-panel-body{padding:18px 20px}
.quick-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}.quick-action{display:flex;align-items:center;gap:10px;padding:12px;border:1px solid var(--line);border-radius:13px;color:#334155;background:#f8fafc;font-weight:700}.quick-action:hover{border-color:#99f6e4;background:#f0fdfa;color:#0f766e}
.status-dot{width:9px;height:9px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 4px #dcfce7}
.empty-state{text-align:center;padding:30px;color:var(--muted)}

@media(max-width:900px){
    .topbar{padding:10px 4%;background:#0f766e;border-bottom-color:#0f766e}
    .brand-text b{color:#fff}.brand-text small,.brand small{color:#ccfbf1}
    .menu-btn{display:inline-flex;margin-left:auto}
    .navlinks{display:none;position:absolute;left:4%;right:4%;top:66px;flex-direction:column;align-items:stretch;gap:4px;background:#fff;border:1px solid var(--line);border-radius:16px;padding:12px;box-shadow:0 22px 45px rgba(15,23,42,.18)}
    .nav-open .navlinks{display:flex}.navlinks a{padding:11px 12px;border-radius:10px}.navlinks a:hover{background:#f0fdfa}
    .admin-shell,.sidebar-layout{grid-template-columns:1fr}
    .admin-sidebar,.sidebar{position:static;display:flex;overflow-x:auto;white-space:nowrap;border-radius:16px;gap:5px}
    .admin-sidebar-title{display:none}.admin-sidebar a,.sidebar a{flex:0 0 auto}
    .admin-stats,.stats{grid-template-columns:repeat(2,minmax(0,1fr))}.admin-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
    .brand-text small{display:none}.site-logo{max-width:96px;height:30px}.container{width:94%;margin:18px auto}
    .admin-heading{display:block}.admin-chip{margin-top:10px}.admin-stats,.stats{grid-template-columns:1fr 1fr;gap:10px}
    .admin-stat{padding:15px}.admin-stat-value{font-size:25px}.quick-actions{grid-template-columns:1fr}
    .form-row,.grid,.grid2{grid-template-columns:1fr}.hero{grid-template-columns:1fr}.hero h1{font-size:34px}
}
