:root {

    --primary: #4f46e5;
    --primary-hover: #4338ca;

    --body-bg: #f8fafc;

    --sidebar-bg: #ffffff;

    --border-color: #e5e7eb;

    --text-color: #111827;

    --text-muted: #6b7280;

    --card-shadow: 0 1px 3px rgba(0,0,0,.05);

    --card-shadow-hover: 0 10px 25px rgba(0,0,0,.08);
}

body {

    background: var(--body-bg);

    color: var(--text-color);

    font-size: 14px;

    font-family: Inter, system-ui, sans-serif;
}

.app-wrapper {

    display: flex;
}

/* ========================================
   SIDEBAR
======================================== */

.sidebar {

    width: 260px;

    min-height: 100vh;

    background: var(--sidebar-bg);

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

    position: fixed;

    left: 0;

    top: 0;

    overflow-y: auto;

    z-index: 999;
}

.sidebar-logo {

    height: 70px;

    display: flex;

    align-items: center;

    padding: 0 24px;

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

    font-weight: 700;

    font-size: 18px;
}

.sidebar-menu {

    list-style: none;

    padding: 20px 15px;

    margin: 0;
}

.sidebar-menu li {

    margin-bottom: 8px;
}

.sidebar-menu a {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: var(--text-muted);

    padding: 12px 15px;

    border-radius: 12px;

    transition: all .25s ease;
}

.sidebar-menu a i {

    font-size: 16px;
}

.sidebar-menu a:hover {

    background: #eef2ff;

    color: var(--primary);
}

.sidebar-menu a.active {

    background: #eef2ff;

    color: var(--primary);

    font-weight: 600;
}

.sidebar-section {

    font-size: 11px;

    font-weight: 700;

    color: #9ca3af;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin: 25px 15px 10px;
}

.sidebar-footer {

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

    padding: 20px;

    margin-top: 20px;
}

/* ========================================
   MAIN AREA
======================================== */

.main-wrapper {

    width: 100%;

    margin-left: 260px;
}

.top-header {

    height: 70px;

    background: #fff;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 25px;

    position: sticky;

    top: 0;

    z-index: 100;
}

.page-title {

    font-weight: 600;
}

.content-wrapper {

    padding: 25px;
}

.mobile-menu-btn {

    display: none;

    border: none;

    background: transparent;

    font-size: 24px;
}

.header-left {

    display: flex;

    align-items: center;

    gap: 15px;
}

.profile-btn {

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

    border-radius: 10px;
}

/* ========================================
   CARDS
======================================== */

.card {

    border: 0 !important;

    border-radius: 16px !important;

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

    transition: .25s ease;
}

.card:hover {

    box-shadow: var(--card-shadow-hover);
}

.card-header {

    border-bottom: 1px solid var(--border-color) !important;

    padding: 16px 20px !important;
}

.card-body {

    padding: 20px !important;
}

/* ========================================
   STAT CARDS
======================================== */

.stat-card {

    background: #fff;

    border-radius: 16px;

    padding: 24px;

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

    height: 100%;

    transition: .25s ease;
}

.stat-card:hover {

    transform: translateY(-3px);

    box-shadow: var(--card-shadow-hover);
}

.stat-icon {

    width: 50px;

    height: 50px;

    background: #eef2ff;

    color: var(--primary);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    font-size: 20px;
}

.stat-card h3 {

    font-weight: 700;

    margin-bottom: 5px;
}

.stat-card p {

    color: var(--text-muted);

    margin: 0;
}

/* ========================================
   TABLES
======================================== */

.table {

    margin-bottom: 0;
}

.table thead th {

    background: #f9fafb;

    font-weight: 600;

    border-bottom-width: 1px;
}

.table td,
.table th {

    vertical-align: middle;
}

.table-hover tbody tr:hover {

    background: rgba(79,70,229,.03);
}

/* ========================================
   FORMS
======================================== */

.form-control,
.form-select {

    border-radius: 10px;

    min-height: 44px;

    border-color: var(--border-color);
}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 .15rem rgba(79,70,229,.15);
}

textarea.form-control {

    min-height: auto;
}

/* ========================================
   BUTTONS
======================================== */

.btn {

    border-radius: 10px;

    font-weight: 500;
}

.btn-primary {

    background: var(--primary);

    border-color: var(--primary);
}

.btn-primary:hover {

    background: var(--primary-hover);

    border-color: var(--primary-hover);
}

/* ========================================
   BADGES
======================================== */

.badge {

    padding: 8px 10px;

    font-weight: 500;
}

/* ========================================
   ALERTS
======================================== */

.alert {

    border: 0;

    border-radius: 12px;
}

/* ========================================
   PAGINATION
======================================== */

.pagination {

    margin-bottom: 0;
}

/* ========================================
   MOBILE
======================================== */

@media(max-width:991px) {

    .sidebar {

        left: -260px;

        transition: .3s;
    }

    .sidebar.show {

        left: 0;
    }

    .main-wrapper {

        margin-left: 0;
    }

    .mobile-menu-btn {

        display: block;
    }

    .content-wrapper {

        padding: 15px;
    }
}

.sidebar-logo {
    padding: 15px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar-logo-img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
    display: block;
}

.sidebar-logo-text {
    font-size: 20px;
    line-height: 1.2;
}

.settings-logo-preview {
    max-height: 80px;
    width: auto;
    display: block;
}

.settings-favicon-preview {
    max-height: 48px;
    width: auto;
    display: block;
}
body{
    background:#f8fafc;
}

.login-card{
    border:none;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.login-input{
    height:50px;
    border-radius:10px;
}

.login-btn{
    height:50px;
    border-radius:10px;
    font-weight:600;
}

.min-vh-100{
    min-height:100vh;
}

.landing-navbar{
    padding:25px 0;
    background:#fff;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand-logo{
    font-size:30px;
    font-weight:800;
    color:#111827;
    text-decoration:none;
}

.nav-menu{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
}

.nav-menu a{
    text-decoration:none;
    color:#64748b;
    font-weight:500;
}

.nav-actions{
    display:flex;
    gap:12px;
}

.hero-section{
    padding:80px 0;
}

.hero-badge{
    background:#eef2ff;
    color:#4338ca;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.hero-title{
    font-size:68px;
    line-height:1.05;
    font-weight:800;
    margin-top:25px;
    color:#0f172a;
}

.hero-description{
    margin-top:25px;
    font-size:18px;
    color:#64748b;
    max-width:550px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.hero-stats{
    margin-top:50px;
    display:flex;
    gap:50px;
}

.hero-stats h4{
    font-weight:800;
    margin-bottom:5px;
}

.hero-stats span{
    color:#64748b;
}

.hero-image-placeholder{
    height:500px;
    border:2px dashed #dbeafe;
    border-radius:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8fafc;
    font-weight:700;
    color:#94a3b8;
}

.dashboard-preview-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.dashboard-top{
    display:flex;
    gap:8px;
    margin-bottom:20px;
}

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

.dashboard-content{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.dashboard-box{
    background:#f8fafc;
    padding:20px;
    border-radius:16px;
}

.trusted-section{
    padding:80px 0 40px;
}

.trusted-title{
    text-align:center;
    font-size:13px;
    letter-spacing:3px;
    color:#94a3b8;
    margin-bottom:40px;
    font-weight:600;
}

.trusted-logos{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.trusted-logo{
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:#94a3b8;
}

.features-section{
    padding:100px 0;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#eef2ff;
    color:#4338ca;
    font-size:14px;
    font-weight:600;
}

.section-header h2{
    margin-top:20px;
    font-size:48px;
    font-weight:800;
    color:#0f172a;
}

.section-header p{
    margin-top:15px;
    color:#64748b;
    font-size:18px;
}

.feature-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.feature-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.feature-card p{
    color:#64748b;
    margin:0;
}

@media(max-width:991px){

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

    .section-header h2{
        font-size:34px;
    }

}

.workflow-section{
    padding:120px 0;
    background:#f8fafc;
}

.workflow-grid{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.workflow-item{
    width:180px;
    text-align:center;
}

.workflow-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin:0 auto 20px;
}

.workflow-arrow{
    font-size:34px;
    color:#94a3b8;
}

.screenshots-section{
    padding:120px 0;
}

.screenshot-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #eef2f7;
    transition:.3s;
}

.screenshot-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.screenshot-placeholder{
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8fafc;
    color:#94a3b8;
    font-weight:700;
    border-bottom:1px solid #eef2f7;
}

.screenshot-card h5{
    padding:20px;
    margin:0;
    text-align:center;
    font-weight:700;
}

.cta-section{
    padding:120px 0;
}

.cta-box{
    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );
    padding:70px;
    border-radius:32px;
    color:#fff;
}

.cta-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    font-size:14px;
    font-weight:600;
}

.cta-title{
    font-size:52px;
    font-weight:800;
    margin-top:20px;
    margin-bottom:20px;
}

.cta-description{
    font-size:18px;
    opacity:.9;
    max-width:650px;
}

.footer-section{
    padding:100px 0 40px;
    background:#0f172a;
    color:#fff;
}

.footer-logo{
    font-weight:800;
    margin-bottom:20px;
}

.footer-text{
    color:#94a3b8;
    line-height:1.8;
}

.footer-heading{
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#94a3b8;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
}

.footer-divider{
    border-color:#1e293b;
    margin:50px 0 30px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#94a3b8;
}

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

.footer-social a{
    color:#94a3b8;
    font-size:18px;
}

.footer-social a:hover{
    color:#fff;
}

@media(max-width:991px){

    .cta-box{
        padding:40px;
        text-align:center;
    }

    .cta-title{
        font-size:36px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}

/* ========================================
   LANDING PAGE
======================================== */

.landing-page {
    background: #f6f8fb;
    color: #0f172a;
}

.landing-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-page .container {
    max-width: 1180px;
}

.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(148, 163, 184, .22);
    backdrop-filter: blur(18px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.brand-logo:hover {
    color: #0f172a;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #0f766e;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0;
}

.brand-logo-img {
    width: auto;
    max-width: 180px;
    max-height: 46px;
    object-fit: contain;
}

.landing-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-menu a {
    color: #475569;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu a:hover {
    color: #0f766e;
}

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

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #0f172a;
}

.landing-page .btn {
    border-radius: 8px;
    font-weight: 700;
}

.landing-page .btn-primary {
    background: #0f766e;
    border-color: #0f766e;
}

.landing-page .btn-primary:hover {
    background: #115e59;
    border-color: #115e59;
}

.landing-page .btn-light {
    color: #0f172a;
    background: #fff;
    border-color: #e2e8f0;
}

.hero-section {
    position: relative;
    padding: 94px 0 72px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .08), rgba(37, 99, 235, .06) 46%, rgba(245, 158, 11, .08)),
        #fff;
    border-bottom: 1px solid #e8eef6;
}

.hero-badge,
.section-badge,
.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 13px;
    font-weight: 800;
}

.hero-title {
    max-width: 620px;
    margin: 22px 0 0;
    color: #0f172a;
    font-size: 58px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: 0;
}

.hero-description {
    max-width: 560px;
    margin: 22px 0 0;
    color: #526173;
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
    margin-top: 38px;
}

.hero-stats > div {
    padding: 16px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.hero-stats h4 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 850;
}

.hero-stats span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-preview-card {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

.hero-dashboard {
    max-width: 560px;
    margin-left: auto;
}

.dashboard-top {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}

.dashboard-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dashboard-top span:first-child {
    background: #f97316;
}

.dashboard-top span:nth-child(2) {
    background: #facc15;
}

.dashboard-top span:nth-child(3) {
    background: #22c55e;
}

.preview-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.preview-toolbar small {
    display: block;
    color: #64748b;
    font-weight: 700;
}

.preview-toolbar strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    color: #92400e;
    background: #fef3c7;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.preview-stage {
    position: relative;
    min-height: 250px;
    margin: 18px 0;
    padding: 22px;
    overflow: hidden;
    background: #102a43;
    border-radius: 8px;
}

.preview-artboard {
    width: 72%;
    min-height: 204px;
    padding: 22px;
    background: #fff;
    border-radius: 8px;
}

.artboard-line,
.artboard-media {
    display: block;
    height: 12px;
    margin-bottom: 13px;
    background: #dbe5ef;
    border-radius: 8px;
}

.artboard-line.wide {
    width: 78%;
    height: 18px;
    background: #0f766e;
}

.artboard-line {
    width: 58%;
}

.artboard-line.short {
    width: 42%;
    background: #f59e0b;
}

.artboard-media {
    width: 100%;
    height: 92px;
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.comment-pin {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: #2563eb;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 10px 30px rgba(37, 99, 235, .35);
}

.pin-one {
    top: 74px;
    right: 94px;
}

.pin-two {
    right: 48px;
    bottom: 64px;
    background: #f97316;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.dashboard-box {
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.dashboard-box h6 {
    margin: 0 0 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.dashboard-box h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 850;
}

.trusted-section,
.features-section,
.workflow-section,
.screenshots-section,
.cta-section {
    padding: 88px 0;
}

.trusted-section {
    background: #fff;
}

.trusted-title {
    margin-bottom: 26px;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 2px;
    text-align: center;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 16px;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 850;
}

.features-section,
.screenshots-section {
    background: #f6f8fb;
}

.workflow-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(15, 118, 110, .09), transparent 28%),
        linear-gradient(180deg, #fff, #f8fafc);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-header h2 {
    margin: 16px 0 0;
    color: #0f172a;
    font-size: 42px;
    line-height: 1.14;
    font-weight: 850;
    letter-spacing: 0;
}

.section-header p {
    margin: 14px auto 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.feature-card,
.screenshot-card,
.workflow-item {
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card {
    padding: 28px;
}

.feature-card:hover,
.screenshot-card:hover,
.workflow-item:hover {
    transform: translateY(-4px);
    border-color: #99f6e4;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
}

.feature-card h5,
.workflow-item h5,
.screenshot-card h5 {
    color: #0f172a;
    font-size: 19px;
    font-weight: 850;
}

.feature-card p,
.workflow-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}

.workflow-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.workflow-grid:before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 44px;
    height: 2px;
    background: linear-gradient(90deg, #99f6e4, #bfdbfe, #fde68a);
}

.workflow-item {
    position: relative;
    z-index: 1;
    padding: 24px 18px 26px;
    text-align: left;
    background: rgba(255, 255, 255, .92);
    border-color: #e5edf5;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.workflow-item:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #0f766e, #2563eb);
    border-radius: 14px 14px 0 0;
}

.workflow-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: #0f766e;
    background: #ccfbf1;
    border: 6px solid #fff;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(15, 118, 110, .16);
    font-size: 21px;
    font-weight: 850;
}

.workflow-item:nth-child(even) .workflow-icon {
    color: #2563eb;
    background: #dbeafe;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .14);
}

.workflow-step {
    display: block;
    margin-bottom: 8px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.workflow-item h5 {
    margin-bottom: 9px;
}

.workflow-arrow {
    display: none;
}

.screenshot-card {
    overflow: hidden;
}

.screenshot-placeholder {
    aspect-ratio: 16 / 10;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.screenshot-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

.screenshot-card h5 {
    padding: 18px 20px;
    margin: 0;
}

.cta-section {
    background: #fff;
}

.cta-box {
    padding: 54px;
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #2563eb 68%, #f59e0b);
    border-radius: 8px;
}

.cta-badge {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.cta-title {
    max-width: 760px;
    margin: 16px 0 14px;
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 850;
}

.cta-description {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.7;
}

.footer-section {
    padding: 64px 0 30px;
    background: #0f172a;
    color: #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 850;
}

.footer-logo-img {
    width: auto;
    max-width: 180px;
    max-height: 48px;
    object-fit: contain;
    padding: 4px;
    background: #fff;
    border-radius: 8px;
}

.footer-text,
.footer-links a,
.footer-links span,
.footer-bottom,
.footer-social a {
    color: #94a3b8;
}

.footer-text {
    max-width: 440px;
    line-height: 1.8;
}

.footer-heading {
    margin-bottom: 16px;
    color: #fff;
    font-weight: 800;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links span,
.footer-social a {
    text-decoration: none;
}

.footer-links span {
    display: inline-block;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #fff;
}

.footer-divider {
    margin: 42px 0 24px;
    border-color: rgba(148, 163, 184, .22);
}

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

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

@media (min-width: 992px) {
    .landing-menu-wrap {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .landing-navbar {
        padding: 12px 0;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .landing-menu-wrap {
        flex-basis: 100%;
        padding-top: 16px;
    }

    .landing-menu-wrap.show,
    .landing-menu-wrap.collapsing {
        display: block;
    }

    .nav-menu,
    .nav-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        margin-bottom: 12px;
    }

    .nav-menu a {
        display: block;
        padding: 11px 12px;
        background: #f8fafc;
        border-radius: 8px;
    }

    .nav-actions .btn {
        display: block;
        padding: 11px 12px;
        border-radius: 8px;
        text-align: center;
    }

    .nav-actions .btn-primary {
        color: #fff;
        background: #0f766e;
        border-color: #0f766e;
    }

    .nav-actions .btn-light {
        color: #0f172a;
        background: #fff;
        border-color: #e2e8f0;
    }

    .hero-section {
        padding: 62px 0 56px;
    }

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

    .hero-dashboard {
        margin: 0;
    }

    .trusted-logos,
    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-grid {
        max-width: 760px;
        margin: 0 auto;
        justify-content: center;
    }

    .workflow-grid:before {
        display: none;
    }

    .workflow-item {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
    }

    .section-header h2 {
        font-size: 34px;
    }

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

    .cta-box {
        padding: 36px;
        text-align: center;
    }

    .cta-title {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-description,
    .section-header p,
    .cta-description {
        font-size: 16px;
    }

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

    .hero-stats,
    .trusted-logos,
    .workflow-grid,
    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .workflow-item {
        max-width: 380px;
        padding: 22px;
        text-align: center;
    }

    .preview-stage {
        min-height: 220px;
        padding: 14px;
    }

    .preview-artboard {
        width: 86%;
    }

    .pin-one {
        right: 42px;
    }

    .pin-two {
        right: 24px;
    }

    .trusted-section,
    .features-section,
    .workflow-section,
    .screenshots-section,
    .cta-section {
        padding: 62px 0;
    }
}

/* ========================================
   AUTH REDESIGN
======================================== */

.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, .14), transparent 34%),
        linear-gradient(135deg, #f8fafc, #eef6f5);
}

.auth-shell {
    min-height: 100vh;
    padding: 28px;
}

.auth-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    width: min(1160px, 100%);
    min-height: calc(100vh - 56px);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(15, 23, 42, .12);
}

.auth-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .92), rgba(37, 99, 235, .92)),
        #0f766e;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #fff;
    font-size: 22px;
    font-weight: 850;
    text-decoration: none;
}

.auth-brand:hover {
    color: #fff;
}

.auth-brand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #0f766e;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
}

.auth-brand-img {
    width: auto;
    max-width: 150px;
    max-height: 42px;
    object-fit: contain;
    padding: 4px;
    background: #fff;
    border-radius: 8px;
}

.auth-visual-content {
    max-width: 560px;
    margin: 70px 0;
}

.auth-kicker {
    display: inline-flex;
    padding: 8px 12px;
    color: #ccfbf1;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.auth-visual h1 {
    margin: 18px 0 16px;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: 0;
}

.auth-visual p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.75;
}

.auth-preview-card,
.auth-metric-grid > div {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    backdrop-filter: blur(16px);
}

.auth-preview-card {
    padding: 14px;
}

.auth-preview-row {
    display: grid;
    grid-template-columns: 12px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px;
    color: #fff;
}

.auth-preview-row + .auth-preview-row {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.auth-preview-row span {
    width: 10px;
    height: 10px;
    background: #fbbf24;
    border-radius: 50%;
}

.auth-preview-row:nth-child(2) span {
    background: #22c55e;
}

.auth-preview-row:nth-child(3) span {
    background: #93c5fd;
}

.auth-preview-row small {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.auth-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.auth-metric-grid > div {
    padding: 20px;
}

.auth-metric-grid strong {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.auth-metric-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
}

.auth-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
}

.auth-card {
    width: 100%;
}

.auth-card-header {
    margin-bottom: 28px;
}

.auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 8px;
    font-size: 22px;
}

.auth-card h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 30px;
    font-weight: 850;
}

.auth-card p {
    margin: 0;
    color: #64748b;
}

.auth-card-footer {
    margin-top: 22px;
    color: #64748b;
    text-align: center;
}

.auth-card-footer a {
    color: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

.auth-page .form-control,
.auth-page .form-select {
    min-height: 48px;
    background: #f8fafc;
    border-color: #dbe5ef;
}

.auth-page .form-control:focus,
.auth-page .form-select:focus {
    background: #fff;
    border-color: #0f766e;
    box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .12);
}

.auth-page .login-btn {
    height: 50px;
    border-radius: 8px;
}

/* ========================================
   ADMIN PANEL REDESIGN
======================================== */

.admin-body {
    --primary: #0f766e;
    --primary-hover: #115e59;
    --body-bg: #f4f7fb;
    --sidebar-bg: #0f172a;
    --border-color: #dbe5ef;
    --text-color: #0f172a;
    --text-muted: #64748b;
    --card-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    --card-shadow-hover: 0 18px 44px rgba(15, 23, 42, .09);
    background:
        linear-gradient(180deg, rgba(15, 118, 110, .05), transparent 320px),
        var(--body-bg);
}

.admin-body .app-wrapper {
    min-height: 100vh;
}

.admin-body .sidebar {
    width: 280px;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--sidebar-bg);
    border-right: 0;
    box-shadow: 18px 0 50px rgba(15, 23, 42, .18);
    overflow: hidden;
    transition: left .25s ease;
}

.admin-body .sidebar-logo {
    height: auto;
    min-height: 86px;
    padding: 20px 22px;
    color: #fff;
    border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.admin-body .logo-wrapper small {
    color: #94a3b8 !important;
}

.admin-body .sidebar-logo-text {
    color: #fff;
    font-weight: 850;
}

.admin-body .sidebar-logo-img {
    max-width: 170px;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
}

.admin-body .sidebar-menu {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, .45) transparent;
}

.admin-body .sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.admin-body .sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, .45);
    border-radius: 999px;
}

.admin-body .sidebar-section {
    margin: 24px 12px 10px;
    color: #64748b;
    font-size: 10px;
    letter-spacing: 1.4px;
}

.admin-body .sidebar-menu a {
    gap: 12px;
    min-height: 46px;
    padding: 12px 14px;
    color: #cbd5e1;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.admin-body .sidebar-menu a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    color: #94a3b8;
    font-size: 17px;
}

.admin-body .sidebar-menu a:hover,
.admin-body .sidebar-menu a.active {
    color: #fff;
    background: rgba(15, 118, 110, .24);
    transform: translateX(2px);
}

.admin-body .sidebar-menu a:hover i,
.admin-body .sidebar-menu a.active i {
    color: #5eead4;
}

.admin-body .sidebar-menu a.active {
    box-shadow: inset 3px 0 0 #5eead4;
    font-weight: 750;
}

.admin-body .sidebar-footer {
    flex: 0 0 auto;
    padding: 16px;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .75), #0f172a);
    border-top: 1px solid rgba(148, 163, 184, .16);
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: none;
    background: rgba(15, 23, 42, .48);
}

.admin-body.sidebar-open {
    overflow: hidden;
}

.sidebar-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.sidebar-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: #0f172a;
    background: #5eead4;
    border-radius: 8px;
    font-weight: 850;
}

.admin-body .main-wrapper {
    margin-left: 280px;
}

.admin-body .top-header {
    height: 78px;
    padding: 0 28px;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(219, 229, 239, .9);
    backdrop-filter: blur(18px);
}

.app-header {
    gap: 16px;
}

.app-header-left,
.app-header-right {
    display: flex;
    align-items: center;
}

.app-header-left {
    min-width: 0;
    gap: 15px;
}

.app-header-right {
    flex: 0 0 auto;
    gap: 12px;
}

.header-title-wrap {
    min-width: 0;
}

.admin-body .page-title {
    overflow: hidden;
    color: #0f172a;
    font-size: 20px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-subtitle {
    overflow: hidden;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-body .content-wrapper {
    padding: 28px;
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: #334155;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
}

.header-icon-btn:hover {
    color: #0f766e;
    border-color: #99f6e4;
}

.admin-body .profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 240px;
    min-height: 44px;
    padding: 5px 12px 5px 6px;
    color: #0f172a;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
}

.profile-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: #0f766e;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
}

.profile-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.15;
}

.profile-meta,
.profile-meta small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-meta small {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.profile-menu {
    min-width: 190px;
}

.admin-body .dropdown-menu {
    padding: 8px;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
}

.admin-body .dropdown-item {
    border-radius: 6px;
}

.admin-body .mobile-menu-btn {
    width: 42px;
    height: 42px;
    color: #0f172a;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
}

.admin-body .card,
.admin-body .stat-card,
.admin-body .alert {
    border: 1px solid #dbe5ef !important;
    border-radius: 8px !important;
}

.admin-body .card,
.admin-body .stat-card {
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--card-shadow);
}

.admin-body .card:hover {
    box-shadow: var(--card-shadow);
}

.admin-body .card-header,
.admin-body .card-footer {
    background: #fff !important;
    border-color: #e5edf5 !important;
}

.admin-body .card-header {
    min-height: 62px;
    padding: 18px 22px !important;
}

.admin-body .card-body {
    padding: 22px !important;
}

.admin-body .card-body.p-0 {
    padding: 0 !important;
}

.admin-body .stat-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.admin-body .stat-card:after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    background: rgba(15, 118, 110, .08);
    border-radius: 50%;
}

.admin-body .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.admin-body .stat-icon {
    width: 48px;
    height: 48px;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 8px;
    font-size: 19px;
}

.admin-body .stat-card h3 {
    color: #0f172a;
    font-size: 34px;
    font-weight: 850;
}

.admin-body .stat-card p,
.admin-body .text-muted {
    color: #64748b !important;
}

.admin-body .table {
    color: #334155;
}

.admin-body .table thead th {
    padding: 14px 16px;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e5edf5;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.admin-body .table tbody td {
    padding: 16px;
    border-color: #edf2f7;
}

.admin-body .table-hover tbody tr:hover {
    background: #f0fdfa;
}

.admin-body .table a {
    color: #0f766e;
}

.data-table-controls,
.data-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 22px;
    background: #fff;
}

.data-table-controls {
    border-bottom: 1px solid #e5edf5;
}

.data-table-footer {
    border-top: 1px solid #e5edf5;
}

.data-table-search {
    position: relative;
    width: min(340px, 100%);
}

.data-table-search i {
    position: absolute;
    top: 50%;
    left: 13px;
    color: #94a3b8;
    transform: translateY(-50%);
}

.data-table-search .form-control {
    padding-left: 38px;
}

.data-table-length,
.data-table-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-table-length span,
.data-table-info,
.data-table-pagination span {
    color: #64748b;
    font-size: 13px;
    font-weight: 750;
}

.data-table-length .form-select {
    width: 86px;
}

.admin-body .table thead th.data-table-sortable {
    cursor: pointer;
    user-select: none;
}

.data-table-sort-icon {
    display: inline-flex;
    margin-left: 7px;
    color: #94a3b8;
    font-size: 12px;
}

.admin-body .table thead th.sorted-asc,
.admin-body .table thead th.sorted-desc {
    color: #0f766e;
}

.admin-body .form-label,
.admin-body label {
    color: #334155;
    font-weight: 700;
}

.admin-body .form-control,
.admin-body .form-select {
    min-height: 46px;
    color: #0f172a;
    background-color: #f8fafc;
    border-color: #dbe5ef;
    border-radius: 8px;
}

.admin-body .form-control:focus,
.admin-body .form-select:focus {
    background-color: #fff;
    border-color: #0f766e;
    box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .12);
}

.admin-body .btn {
    border-radius: 8px;
    font-weight: 750;
}

.admin-body .btn-primary {
    background: #0f766e;
    border-color: #0f766e;
}

.admin-body .btn-primary:hover,
.admin-body .btn-primary:focus {
    background: #115e59;
    border-color: #115e59;
}

.admin-body .btn-info {
    color: #075985;
    background: #e0f2fe;
    border-color: #bae6fd;
}

.admin-body .btn-warning,
.admin-body .btn-outline-warning:hover {
    color: #78350f;
    background: #fef3c7;
    border-color: #fde68a;
}

.admin-body .btn-outline-primary {
    color: #0f766e;
    border-color: #99f6e4;
}

.admin-body .btn-outline-primary:hover {
    color: #fff;
    background: #0f766e;
    border-color: #0f766e;
}

.admin-body .badge {
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
}

.admin-body .bg-primary {
    background-color: #0f766e !important;
}

.admin-body .bg-info {
    color: #075985 !important;
    background-color: #e0f2fe !important;
}

.admin-body .bg-success {
    background-color: #16a34a !important;
}

.admin-body .bg-warning {
    background-color: #f59e0b !important;
}

.admin-body .pagination {
    gap: 6px;
}

.admin-body .page-link {
    color: #0f766e;
    border-color: #dbe5ef;
    border-radius: 8px;
}

.admin-body .active > .page-link,
.admin-body .page-link.active {
    color: #fff;
    background: #0f766e;
    border-color: #0f766e;
}

.admin-body .page-item.active .page-link {
    color: #fff !important;
}

.admin-body hr {
    border-color: #dbe5ef;
    opacity: 1;
}

.admin-body .border-bottom {
    border-color: #e5edf5 !important;
}

.admin-body .border {
    border-color: #dbe5ef !important;
}

.admin-body .settings-logo-preview,
.admin-body .settings-favicon-preview {
    padding: 10px;
    background: #f8fafc;
    border: 1px solid #dbe5ef;
    border-radius: 8px;
}

.dashboard-screen {
    display: grid;
    gap: 22px;
}

.dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, .35), transparent 34%),
        linear-gradient(135deg, #0f172a, #0f766e);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.dashboard-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 10px;
    color: #ccfbf1;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dashboard-hero h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
}

.dashboard-hero p {
    max-width: 620px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .78);
}

.dashboard-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

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

.dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 122px;
    padding: 18px;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.dashboard-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
}

.dashboard-stat-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    font-weight: 900;
}

.dashboard-stat-card p {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-stat-teal .dashboard-stat-icon {
    color: #0f766e;
    background: #ccfbf1;
}

.dashboard-stat-blue .dashboard-stat-icon {
    color: #1d4ed8;
    background: #dbeafe;
}

.dashboard-stat-green .dashboard-stat-icon {
    color: #15803d;
    background: #dcfce7;
}

.dashboard-stat-amber .dashboard-stat-icon {
    color: #b45309;
    background: #fef3c7;
}

.dashboard-stat-purple .dashboard-stat-icon {
    color: #7c3aed;
    background: #ede9fe;
}

.dashboard-stat-rose .dashboard-stat-icon {
    color: #be123c;
    background: #ffe4e6;
}

.dashboard-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 22px;
    align-items: start;
}

.dashboard-panel {
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.dashboard-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid #e5edf5;
}

.dashboard-panel-header span {
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dashboard-panel-header h2 {
    margin: 2px 0 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.dashboard-project-list,
.dashboard-activity-list {
    display: grid;
}

.dashboard-project-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto 94px;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
}

.dashboard-project-row:hover {
    background: #f8fafc;
}

.dashboard-project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0f766e);
    border-radius: 14px;
    font-weight: 900;
}

.dashboard-project-main {
    min-width: 0;
}

.dashboard-project-main strong,
.dashboard-project-main span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-project-main strong {
    color: #0f172a;
}

.dashboard-project-main span,
.dashboard-project-date {
    color: #64748b;
    font-size: 13px;
}

.dashboard-project-date {
    text-align: right;
}

.dashboard-activity-list {
    padding: 18px 20px;
    gap: 0;
}

.dashboard-activity-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 18px;
}

.dashboard-activity-item:not(:last-child):before {
    content: "";
    position: absolute;
    left: 5px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.dashboard-activity-dot {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    background: #0f766e;
    border: 3px solid #ccfbf1;
    border-radius: 999px;
}

.dashboard-activity-item strong {
    color: #0f172a;
}

.dashboard-activity-item p {
    margin: 4px 0;
    color: #64748b;
    line-height: 1.45;
}

.dashboard-activity-item span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 750;
}

.dashboard-empty-state {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 42px 20px;
    color: #64748b;
    text-align: center;
}

.dashboard-empty-state i {
    color: #0f766e;
    font-size: 34px;
}

.dashboard-empty-state strong {
    color: #0f172a;
}

.review-workspace {
    margin: -10px;
}

.review-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.review-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 650;
}

.review-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.review-title-row h2 {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    font-weight: 850;
}

.review-version-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 10px;
    color: #1d4ed8;
    background: #dbeafe;
    font-weight: 800;
}

.review-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.review-status-badge {
    padding: 10px 12px;
    border-radius: 999px;
}

.review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    align-items: start;
}

.review-main,
.review-sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.review-canvas-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.review-zoom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-section-title {
    margin: 0 0 4px;
    color: #0f172a;
    font-weight: 850;
}

.review-section-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.review-zoom span {
    padding: 8px 10px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
}

.review-canvas {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    padding: 28px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.review-canvas > img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .16);
}

.review-file-preview {
    width: min(560px, 100%);
    padding: 46px 30px;
    text-align: center;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
}

.review-file-preview i {
    display: block;
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 54px;
}

.review-file-preview h4 {
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 850;
}

.review-file-preview p {
    color: #64748b;
}

.review-file-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
}

.review-file-card,
.review-upload-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.review-file-card.active {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.review-file-thumb {
    flex: 0 0 68px;
    width: 68px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #2563eb;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
}

.review-file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-file-thumb i {
    font-size: 26px;
}

.review-file-meta {
    min-width: 0;
    flex: 1;
}

.review-file-meta strong,
.review-file-meta span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-file-meta strong {
    color: #0f172a;
    font-size: 13px;
}

.review-file-meta span {
    color: #64748b;
    font-size: 12px;
}

.review-upload-card {
    align-items: stretch;
    flex-direction: column;
}

.review-sidebar {
    position: sticky;
    top: 92px;
}

.review-side-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.review-side-header h4 {
    margin: 0;
    color: #0f172a;
    font-weight: 850;
}

.review-side-header span:not(.review-version-pill) {
    color: #64748b;
    font-size: 13px;
}

.review-feedback-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.review-feedback-summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px;
    color: #334155;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.review-feedback-summary i {
    color: #2563eb;
}

.review-new-comment {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.review-form-label {
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
}

.review-form-label strong {
    color: #0f172a;
}

.review-form-label span {
    color: #64748b;
    font-size: 13px;
}

.review-comments {
    display: grid;
    gap: 14px;
    max-height: 560px;
    padding: 16px 20px;
    overflow: auto;
}

.review-comment-card {
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.review-comment-card.is-resolved {
    background: #fbfdfc;
    border-color: #d1fae5;
}

.review-comment-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.review-comment-head > div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
}

.review-thread-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    margin-top: 4px;
    color: #fff;
    background: #f59e0b;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: #172554;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.review-comment-meta {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.review-comment-meta strong {
    overflow: hidden;
    color: #0f172a;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-comment-meta span {
    color: #64748b;
    font-size: 12px;
}

.review-state-pill {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.review-state-pill.open {
    color: #92400e;
    background: #fef3c7;
}

.review-state-pill.resolved {
    color: #047857;
    background: #d1fae5;
}

.review-primary-message {
    padding: 12px;
    margin-bottom: 10px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 12px;
}

.review-primary-message p {
    margin: 0 0 6px;
    color: #0f172a;
    line-height: 1.55;
}

.review-primary-message span {
    color: #64748b;
    font-size: 12px;
}

.review-thread-body {
    position: relative;
    display: grid;
    gap: 10px;
    margin: 12px 0 0 16px;
    padding-left: 18px;
    border-left: 2px solid #e2e8f0;
}

.review-reply {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
}

.review-reply-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 12px;
}

.review-reply p {
    margin: 0;
    color: #334155;
}

.review-reply-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eef2f7;
}

.review-reply-form .form-control {
    min-height: 38px;
}

.review-thread-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.review-resolved-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    color: #047857;
    background: #ecfdf5;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 750;
}

.review-empty-comments {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 30px 16px;
    color: #64748b;
    text-align: center;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
}

.review-empty-comments i {
    color: #2563eb;
    font-size: 34px;
}

.review-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.review-details .full {
    grid-column: 1 / -1;
}

.review-details span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.review-details strong,
.review-details p {
    margin: 0;
    color: #0f172a;
}

@media (max-width: 1199px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .review-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .data-table-controls,
    .data-table-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .data-table-search {
        width: 100%;
    }

    .data-table-length,
    .data-table-pagination {
        justify-content: space-between;
    }

    .dashboard-hero {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

    .dashboard-hero h1 {
        font-size: 26px;
    }

    .dashboard-hero-actions {
        justify-content: flex-start;
    }

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

    .dashboard-stat-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-project-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .dashboard-project-row .badge,
    .dashboard-project-date {
        grid-column: 2;
        justify-self: start;
        text-align: left;
    }

    .review-workspace {
        margin: 0;
    }

    .review-toolbar,
    .review-title-row,
    .review-toolbar-actions,
    .review-canvas-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .review-title-row h2 {
        font-size: 22px;
    }

    .review-canvas {
        min-height: 360px;
        padding: 16px;
    }

    .review-side-header,
    .review-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .auth-shell {
        padding: 18px;
    }

    .auth-panel {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        padding: 30px;
    }

    .auth-visual-content {
        margin: 46px 0;
    }

    .auth-visual h1 {
        font-size: 34px;
    }

    .auth-form-wrap {
        padding: 30px;
    }

    .admin-body .sidebar {
        left: -280px;
        width: 280px;
    }

    .admin-body .sidebar.show {
        left: 0;
    }

    .admin-body .sidebar-backdrop.show {
        display: block;
    }

    .admin-body .main-wrapper {
        margin-left: 0;
    }

    .admin-body .top-header {
        height: 70px;
        padding: 0 16px;
    }

    .admin-body .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 42px;
        height: 42px;
        color: #0f172a;
        background: #fff;
        border: 1px solid #dbe5ef;
        border-radius: 8px;
    }

    .admin-body .content-wrapper {
        padding: 18px;
    }

    .profile-meta {
        display: none;
    }
}

@media (max-width: 575px) {
    .auth-shell {
        padding: 0;
    }

    .auth-panel {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    .auth-visual {
        display: none;
    }

    .auth-form-wrap {
        padding: 26px;
    }

    .admin-body .header-right {
        gap: 8px !important;
    }

    .app-header {
        gap: 10px;
    }

    .app-header-left {
        flex: 1 1 auto;
        gap: 10px;
    }

    .app-header-right {
        gap: 8px;
    }

    .admin-body .page-title {
        max-width: 42vw;
        font-size: 16px;
    }

    .admin-body .page-subtitle {
        display: none;
    }

    .header-icon-btn,
    .admin-body .profile-btn {
        justify-content: center;
        width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
    }

    .admin-body .profile-btn:after {
        display: none;
    }

    .profile-avatar {
        width: 30px;
        height: 30px;
    }

    .profile-menu {
        min-width: 180px;
    }
}
