/* =========================================================
   SP ENGINEERING SUITE
   PROFESSIONAL WEBSITE THEME
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --navy: #082b57;
    --navy-dark: #041b38;
    --navy-light: #123f73;

    --blue: #1769aa;
    --blue-light: #eaf4ff;
    --blue-soft: #f4f9ff;

    --orange: #f97316;
    --orange-dark: #ea580c;

    --green: #10b981;
    --purple: #7c3aed;

    --white: #ffffff;

    --gray-25: #fcfdff;
    --gray-50: #f7f9fc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;

    --shadow-sm: 0 4px 15px rgba(8, 43, 87, 0.06);
    --shadow-md: 0 12px 35px rgba(8, 43, 87, 0.10);
    --shadow-lg: 0 25px 60px rgba(8, 43, 87, 0.15);

    --radius: 14px;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    background: var(--gray-50);
    color: var(--navy);

    line-height: 1.6;
}


a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 76px;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--gray-200);

    z-index: 1000;
}


.nav-content {

    max-width: 1400px;

    height: 100%;

    margin: auto;

    padding: 0 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;
}


.brand-logo,
.footer-logo {

    width: 43px;
    height: 43px;

    border-radius: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: white;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: -1px;

    box-shadow:
        0 5px 15px rgba(8, 43, 87, 0.20);
}


.brand-text {

    font-size: 19px;

    font-weight: 800;

    line-height: 1.1;

    color: var(--navy);
}


.brand-subtitle {

    margin-top: 3px;

    font-size: 11px;

    color: var(--blue);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.nav-links {

    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-links a {

    color: var(--gray-600);

    font-size: 14px;

    font-weight: 600;

    transition: .25s;
}


.nav-links a:hover {

    color: var(--blue);
}


.nav-cta {

    padding: 11px 20px;

    border-radius: 8px;

    background: var(--navy);

    color: white !important;

    box-shadow:
        0 5px 15px rgba(8, 43, 87, .15);
}


.nav-cta:hover {

    background: var(--blue);

    transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    padding: 155px 35px 95px;

    background:

        radial-gradient(
            circle at 80% 30%,
            rgba(23, 105, 170, .10),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 60%,
            #f5f9fd 100%
        );

    overflow: hidden;
}


.hero-grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, .95fr);

    gap: 70px;

    align-items: center;
}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 20px;
}


.eyebrow-dot {

    width: 7px;
    height: 7px;

    background: var(--green);

    border-radius: 50%;
}


.hero h1 {

    max-width: 720px;

    font-size: clamp(44px, 5vw, 68px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 900;

    color: var(--navy-dark);

    margin-bottom: 25px;
}


.hero h1 span {

    color: var(--blue);
}


.hero-description {

    max-width: 680px;

    color: var(--gray-600);

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 32px;
}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border-radius: 9px;

    font-weight: 750;

    transition: .25s;
}


.btn-primary {

    color: white;

    background: var(--orange);

    box-shadow:
        0 8px 20px rgba(249, 115, 22, .22);
}


.btn-primary:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}


.btn-secondary {

    color: var(--navy);

    background: white;

    border: 1px solid var(--gray-300);
}


.btn-secondary:hover {

    border-color: var(--blue);

    color: var(--blue);

    transform: translateY(-2px);
}


.hero-note {

    margin-top: 22px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--gray-500);

    font-size: 12px;
}


/* =========================================================
   SOFTWARE PREVIEW
========================================================= */

.hero-preview {

    perspective: 1000px;
}


.preview-window {

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: 15px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);

    transform: rotateY(-2deg) rotateX(1deg);
}


.window-header {

    height: 54px;

    background: var(--navy);

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 18px;
}


.window-title {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 700;
}


.window-logo {

    width: 29px;
    height: 29px;

    border-radius: 7px;

    background: white;

    color: var(--navy);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 11px;

    font-weight: 900;
}


.window-controls {

    display: flex;

    gap: 5px;
}


.window-controls span {

    width: 7px;
    height: 7px;

    background: rgba(255,255,255,.55);

    border-radius: 50%;
}


.preview-body {

    display: grid;

    grid-template-columns: 165px 1fr;

    min-height: 350px;
}


.preview-sidebar {

    background: #f6f9fc;

    border-right: 1px solid var(--gray-200);

    padding: 18px 10px;
}


.preview-sidebar-title {

    font-size: 9px;

    font-weight: 800;

    color: var(--gray-500);

    padding: 0 10px 12px;

    letter-spacing: 1px;
}


.preview-item {

    padding: 11px 10px;

    border-radius: 7px;

    font-size: 10px;

    font-weight: 600;

    color: var(--gray-600);

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 3px;
}


.preview-item i {

    width: 14px;

    color: var(--blue);
}


.preview-item.active {

    background: var(--blue);

    color: white;

    box-shadow:
        0 5px 12px rgba(23,105,170,.18);
}


.preview-item.active i {

    color: white;
}


.preview-main {

    padding: 25px;
}


.preview-main-title {

    font-size: 18px;

    font-weight: 800;

    color: var(--navy);

    margin-bottom: 15px;
}


.preview-level {

    background: var(--blue-light);

    border: 1px solid #cce3fa;

    padding: 10px 12px;

    border-radius: 7px;

    font-size: 10px;

    color: var(--blue);

    margin-bottom: 20px;
}


.preview-level i {

    margin-right: 6px;
}


.preview-table {

    border: 1px solid var(--gray-200);

    border-radius: 8px;

    overflow: hidden;
}


.table-row {

    display: grid;

    grid-template-columns:
        .65fr
        1fr
        1fr
        1fr;

    padding: 11px 12px;

    font-size: 10px;

    border-bottom: 1px solid var(--gray-100);

    align-items: center;
}


.table-row:last-child {

    border-bottom: none;
}


.table-head {

    background: var(--gray-100);

    color: var(--gray-500);

    font-size: 8px;

    font-weight: 800;
}


.beam-mark {

    color: var(--blue);

    font-weight: 800;
}


.preview-status {

    margin-top: 18px;

    padding: 11px;

    background: #ecfdf5;

    color: #047857;

    border-radius: 7px;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    max-width: 1250px;

    margin: -35px auto 0;

    position: relative;

    z-index: 5;

    background: white;

    border: 1px solid var(--gray-200);

    box-shadow: var(--shadow-md);

    border-radius: 12px;

    padding: 22px 28px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-right: 20px;

    border-right: 1px solid var(--gray-200);
}


.trust-item:last-child {

    border-right: none;
}


.trust-item > i {

    width: 39px;
    height: 39px;

    border-radius: 9px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);
}


.trust-item strong {

    display: block;

    font-size: 12px;

    color: var(--navy);
}


.trust-item span {

    display: block;

    font-size: 10px;

    color: var(--gray-500);

    margin-top: 2px;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.features-section,
.workflow-section {

    max-width: 1300px;

    margin: auto;

    padding: 110px 35px;
}


.section-heading {

    max-width: 750px;

    margin-bottom: 55px;
}


.section-label {

    display: inline-block;

    color: var(--blue);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: 1.5px;

    margin-bottom: 13px;
}


.section-heading h2 {

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    color: var(--navy-dark);

    margin-bottom: 17px;
}


.section-heading h2 span {

    color: var(--blue);
}


.section-heading p {

    color: var(--gray-600);

    font-size: 16px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}


.feature-card {

    position: relative;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: 15px;

    padding: 32px;

    overflow: hidden;

    transition: .3s;
}


.feature-card:hover {

    transform: translateY(-5px);

    border-color: #bdd5ed;

    box-shadow: var(--shadow-md);
}


.feature-card-main {

    border-top: 4px solid var(--blue);
}


.feature-icon {

    width: 48px;
    height: 48px;

    border-radius: 11px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    margin-bottom: 22px;
}


.feature-icon.blue {

    background: var(--blue-light);

    color: var(--blue);
}


.feature-icon.orange {

    background: #fff4ec;

    color: var(--orange);
}


.feature-icon.green {

    background: #ecfdf5;

    color: var(--green);
}


.feature-icon.purple {

    background: #f5f3ff;

    color: var(--purple);
}


.feature-number {

    position: absolute;

    top: 27px;
    right: 30px;

    font-size: 12px;

    font-weight: 800;

    color: var(--gray-300);
}


.feature-card h3 {

    font-size: 23px;

    color: var(--navy);

    margin-bottom: 10px;
}


.feature-card p {

    color: var(--gray-600);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;
}


.feature-card ul {

    list-style: none;
}


.feature-card li {

    display: flex;

    gap: 9px;

    align-items: center;

    color: var(--gray-600);

    font-size: 13px;

    margin-bottom: 9px;
}


.feature-card li i {

    color: var(--green);

    font-size: 11px;
}


/* =========================================================
   WORKFLOW
========================================================= */

.workflow-section {

    max-width: 1400px;
}


.workflow {

    display: grid;

    grid-template-columns:
        1fr 60px
        1fr 60px
        1fr 60px
        1fr;

    align-items: center;
}


.workflow-step {

    text-align: center;

    position: relative;

    padding: 25px 10px;
}


.workflow-step > i {

    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 21px;
}


.step-number {

    font-size: 10px;

    color: var(--orange);

    font-weight: 900;

    margin-bottom: 8px;
}


.workflow-step h3 {

    font-size: 18px;

    color: var(--navy);

    margin-bottom: 7px;
}


.workflow-step p {

    color: var(--gray-500);

    font-size: 12px;

    max-width: 190px;

    margin: auto;
}


.workflow-line {

    height: 1px;

    background: var(--gray-300);

    position: relative;
}


.workflow-line::after {

    content: "\f061";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    right: -5px;

    top: -8px;

    background: var(--gray-50);

    color: var(--gray-300);

    font-size: 12px;

    padding: 2px;
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-section {

    padding: 100px 35px;

    background: #f1f6fb;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        430px;

    gap: 80px;

    align-items: center;
}


.product-content {

    max-width: 650px;

    margin-left: auto;
}


.product-badge {

    display: inline-block;

    padding: 6px 10px;

    border-radius: 5px;

    background: var(--navy);

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


.product-content h2 {

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    color: var(--navy-dark);

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}


.product-content h2 span {

    color: var(--blue);
}


.product-content p {

    color: var(--gray-600);

    margin-bottom: 14px;

    font-size: 15px;

    line-height: 1.8;
}


.product-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;
}


.product-points div {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 13px;

    color: var(--navy);

    font-weight: 600;
}


.product-points i {

    color: var(--green);
}


/* PRODUCT CARD */

.product-card {

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: 16px;

    padding: 30px;

    box-shadow: var(--shadow-md);

    margin-right: auto;
}


.product-card-top {

    display: flex;

    align-items: center;

    gap: 14px;
}


.product-logo {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: white;

    border-radius: 11px;

    font-size: 18px;

    font-weight: 900;
}


.product-card-top strong {

    display: block;

    font-size: 17px;

    color: var(--navy);
}


.product-card-top span {

    display: block;

    font-size: 11px;

    color: var(--gray-500);

    margin-top: 2px;
}


.product-card-divider {

    height: 1px;

    background: var(--gray-200);

    margin: 25px 0 10px;
}


.product-card-row {

    display: flex;

    justify-content: space-between;

    padding: 13px 0;

    border-bottom: 1px solid var(--gray-100);

    font-size: 13px;
}


.product-card-row span {

    color: var(--gray-500);
}


.product-card-row strong {

    color: var(--navy);
}


.product-card-button {

    margin-top: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    padding: 13px;

    background: var(--orange);

    color: white;

    border-radius: 8px;

    font-weight: 750;

    font-size: 13px;

    transition: .25s;
}


.product-card-button:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 75px 35px;

    background: var(--navy);
}


.cta-inner {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.section-label.light {

    color: #8fc8ff;
}


.cta-inner h2 {

    max-width: 700px;

    color: white;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.15;

    margin-bottom: 12px;
}


.cta-inner p {

    color: #b9c9dc;

    font-size: 14px;
}


.cta-button {

    white-space: nowrap;

    background: var(--orange);

    color: white;

    padding: 15px 24px;

    border-radius: 9px;

    font-weight: 750;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .25s;
}


.cta-button:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer-modern {

    background: var(--navy-dark);

    color: white;

    padding: 45px 35px 25px;
}


.footer-main {

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1.3fr;

    gap: 40px;

    align-items: center;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;
}


.footer-logo {

    background: white;

    color: var(--navy);

    box-shadow: none;
}


.footer-brand strong {

    display: block;

    font-size: 15px;
}


.footer-brand span {

    display: block;

    color: #9eb2ca;

    font-size: 11px;

    margin-top: 3px;
}


.footer-company strong {

    display: block;

    font-size: 13px;
}


.footer-company span {

    display: block;

    margin-top: 4px;

    color: #9eb2ca;

    font-size: 11px;
}


.footer-links {

    display: flex;

    justify-content: flex-end;

    gap: 18px;

    flex-wrap: wrap;
}


.footer-links a {

    color: #b7c6d8;

    font-size: 11px;

    transition: .2s;
}


.footer-links a:hover {

    color: white;
}


.footer-bottom {

    max-width: 1300px;

    margin: 22px auto 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #8da1b8;

    font-size: 11px;
}


.footer-credit strong {

    color: white;
}


.footer-disclaimer {

    max-width: 1300px;

    margin: 25px auto 0;

    padding: 14px 16px;

    border: 1px solid rgba(255,255,255,.10);

    background: rgba(255,255,255,.035);

    border-radius: 8px;

    display: flex;

    gap: 10px;

    align-items: flex-start;

    color: #91a4bb;

    font-size: 10px;

    line-height: 1.6;
}


.footer-disclaimer i {

    color: #8fc8ff;

    margin-top: 2px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .hero-content {

        text-align: center;

        margin: auto;
    }


    .hero-description {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions {

        justify-content: center;
    }


    .hero-note {

        justify-content: center;
    }


    .hero-preview {

        max-width: 700px;

        width: 100%;

        margin: auto;
    }


    .trust-bar {

        margin-left: 20px;
        margin-right: 20px;
    }


    .product-section {

        grid-template-columns: 1fr;

        padding-left: 50px;
        padding-right: 50px;
    }


    .product-content {

        margin: auto;
    }


    .product-card {

        margin: auto;

        width: 100%;

        max-width: 430px;
    }

}


@media (max-width: 900px) {

    .nav-links a:not(.nav-cta) {

        display: none;
    }


    .trust-bar {

        grid-template-columns: 1fr 1fr;
    }


    .trust-item:nth-child(2) {

        border-right: none;
    }


    .feature-grid {

        grid-template-columns: 1fr;
    }


    .workflow {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .workflow-line {

        display: none;
    }


    .footer-main {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-brand {

        justify-content: center;
    }


    .footer-links {

        justify-content: center;
    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 600px) {

    .navbar {

        height: 68px;
    }


    .nav-content {

        padding: 0 18px;
    }


    .brand-text {

        font-size: 15px;
    }


    .brand-subtitle {

        font-size: 9px;
    }


    .brand-logo {

        width: 37px;
        height: 37px;
    }


    .nav-cta {

        padding: 9px 12px;

        font-size: 11px !important;
    }


    .hero {

        padding: 125px 20px 70px;
    }


    .hero h1 {

        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .hero-description {

        font-size: 15px;
    }


    .preview-body {

        grid-template-columns: 1fr;
    }


    .preview-sidebar {

        display: none;
    }


    .preview-main {

        padding: 18px;
    }


    .trust-bar {

        grid-template-columns: 1fr;

        margin-top: -20px;
    }


    .trust-item {

        border-right: none;

        border-bottom: 1px solid var(--gray-200);

        padding-bottom: 15px;
    }


    .trust-item:last-child {

        border-bottom: none;
    }


    .features-section,
    .workflow-section {

        padding: 75px 20px;
    }


    .product-section {

        padding: 70px 20px;
    }


    .product-points {

        grid-template-columns: 1fr;
    }


    .cta-section {

        padding: 60px 20px;
    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-modern {

        padding-left: 20px;
        padding-right: 20px;
    }

}

/* ============================================================
   PROJECT WORKSPACE
   ============================================================ */

.project-workspace {

    max-width: 1280px;

    margin:
        110px auto
        50px;

    padding:
        0 30px;

}


/* ============================================================
   PROJECT HEADER
   ============================================================ */

.project-header-card {

    background:
        white;

    border:
        1px solid
        var(--gray-200);

    border-radius:
        16px;

    padding:
        30px 34px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    margin-bottom:
        24px;

}


.project-header-label {

    font-size:
        12px;

    font-weight:
        800;

    color:
        var(--orange);

    letter-spacing:
        1px;

    margin-bottom:
        7px;

}


.project-header-card h1 {

    margin:
        0 0 8px;

    font-size:
        32px;

}


.project-header-meta {

    color:
        var(--gray-600);

    font-size:
        14px;

}


.project-header-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

}


.workspace-back {

    border:
        1px solid
        var(--gray-200);

    background:
        white;

    padding:
        10px 16px;

    border-radius:
        8px;

    font-weight:
        700;

    cursor:
        pointer;

}


.workspace-back:hover {

    border-color:
        var(--orange);

    color:
        var(--orange);

}


/* ============================================================
   WORKSPACE GRID
   ============================================================ */

.workspace-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        24px;

    margin-bottom:
        24px;

}


.workspace-card {

    background:
        white;

    border:
        1px solid
        var(--gray-200);

    border-radius:
        16px;

    overflow:
        hidden;

}


.workspace-card-header {

    padding:
        24px 28px;

    border-bottom:
        1px solid
        var(--gray-200);

}


.workspace-card-header h2 {

    margin:
        0 0 5px;

    font-size:
        19px;

}


.workspace-card-header p {

    margin:
        0;

    color:
        var(--gray-600);

    font-size:
        13px;

}


/* ============================================================
   PROJECT INFORMATION
   ============================================================ */

.workspace-info-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        22px;

    padding:
        26px 28px;

}


.workspace-info-grid span {

    display:
        block;

    color:
        var(--gray-600);

    font-size:
        12px;

    margin-bottom:
        5px;

}


.workspace-info-grid strong {

    display:
        block;

    font-size:
        15px;

}


/* ============================================================
   WORKSPACE PROGRESS
   ============================================================ */

.workspace-progress {

    padding:
        18px 28px;

}


.workspace-progress-row {

    display:
        flex;

    justify-content:
        space-between;

    padding:
        12px 0;

    border-bottom:
        1px solid
        var(--gray-200);

    font-size:
        14px;

}


.workspace-progress-row:last-child {

    border-bottom:
        none;

}


.workspace-progress-row strong {

    color:
        var(--green);

}


.workspace-progress-row .not-ready {

    color:
        #94a3b8;

}


/* ============================================================
   WORKSPACE SECTION
   ============================================================ */

.workspace-section {

    margin-bottom:
        24px;

}


.workspace-section-heading {

    margin-bottom:
        16px;

}


.workspace-section-heading h2 {

    margin:
        0 0 5px;

    font-size:
        22px;

}


.workspace-section-heading p {

    margin:
        0;

    color:
        var(--gray-600);

    font-size:
        14px;

}


/* ============================================================
   MODULE GRID
   ============================================================ */

.module-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        20px;

}


.module-card {

    background:
        white;

    border:
        1px solid
        var(--gray-200);

    border-radius:
        14px;

    padding:
        24px;

    display:
        flex;

    gap:
        18px;

    transition:
        0.2s ease;

}


.module-card:hover {

    border-color:
        #cbd5e1;

    transform:
        translateY(-1px);

}


.module-icon {

    width:
        46px;

    height:
        46px;

    min-width:
        46px;

    border-radius:
        11px;

    background:
        #fff7ed;

    color:
        var(--orange);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-weight:
        900;

    font-size:
        18px;

}


.module-card h3 {

    margin:
        0 0 6px;

    font-size:
        17px;

}


.module-card p {

    margin:
        0 0 14px;

    color:
        var(--gray-600);

    font-size:
        13px;

    line-height:
        1.6;

}


.module-card button {

    border:
        1px solid
        var(--gray-200);

    background:
        var(--gray-50);

    color:
        #94a3b8;

    border-radius:
        7px;

    padding:
        7px 12px;

    font-size:
        12px;

    font-weight:
        700;

}


/* ============================================================
   METADATA
   ============================================================ */

.metadata-card {

    margin-bottom:
        30px;

}


.metadata-placeholder {

    padding:
        50px 30px;

    text-align:
        center;

}


.metadata-placeholder-icon {

    width:
        50px;

    height:
        50px;

    margin:
        0 auto 15px;

    border-radius:
        50%;

    background:
        var(--gray-50);

    color:
        #94a3b8;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        25px;

}


.metadata-placeholder h3 {

    margin:
        0 0 7px;

    font-size:
        16px;

}


.metadata-placeholder p {

    max-width:
        550px;

    margin:
        auto;

    color:
        var(--gray-600);

    font-size:
        13px;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 800px) {

    .project-header-card {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;

    }


    .workspace-grid {

        grid-template-columns:
            1fr;

    }


    .module-grid {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 600px) {

    .project-workspace {

        padding:
            0 15px;

    }


    .workspace-info-grid {

        grid-template-columns:
            1fr;

    }

}

/* ============================================================
   PROJECT EDIT FORM
   ============================================================ */

.project-form {

    padding: 28px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

}


.project-field {

    display: flex;

    flex-direction: column;

}


.project-field-wide {

    grid-column:
        1 / -1;

}


.project-field label {

    font-size:
        13px;

    font-weight:
        800;

    color:
        var(--navy);

    margin-bottom:
        7px;

}


.project-field input,
.project-field select {

    width:
        100%;

    padding:
        12px 14px;

    border:
        1px solid
        var(--gray-200);

    border-radius:
        8px;

    background:
        white;

    color:
        var(--navy);

    font-family:
        inherit;

    font-size:
        14px;

    outline:
        none;

    transition:
        0.2s ease;

}


.project-field input:focus,
.project-field select:focus {

    border-color:
        var(--orange);

    box-shadow:
        0 0 0 3px
        rgba(249,115,22,0.08);

}


.project-field small {

    margin-top:
        6px;

    color:
        var(--gray-600);

    font-size:
        11px;

}


/* ============================================================
   LOCKED PROJECT ID
   ============================================================ */

.locked-field {

    background:
        #f1f5f9 !important;

    color:
        #64748b !important;

    border-color:
        #e2e8f0 !important;

    cursor:
        not-allowed;

    font-weight:
        800;

}


/* ============================================================
   DRAWING FLOOR OPTIONS
   ============================================================ */

.drawing-floor-options {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    padding:
        4px 0;

}


.floor-check {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        10px 14px;

    border:
        1px solid
        var(--gray-200);

    border-radius:
        8px;

    background:
        #fff;

    cursor:
        pointer;

    font-size:
        13px;

    font-weight:
        700;

}


.floor-check:hover {

    border-color:
        var(--orange);

}


.floor-check input {

    width:
        auto;

}


/* ============================================================
   ACTION INPUT
   ============================================================ */

.input-with-action {

    display:
        flex;

    gap:
        7px;

}


.input-with-action input {

    min-width:
        0;

    flex:
        1;

}


.input-with-action button {

    border:
        1px solid
        var(--gray-200);

    background:
        var(--gray-50);

    color:
        var(--navy);

    border-radius:
        8px;

    padding:
        0 12px;

    font-size:
        11px;

    font-weight:
        700;

    cursor:
        pointer;

    white-space:
        nowrap;

}


.input-with-action button:hover {

    border-color:
        var(--orange);

    color:
        var(--orange);

}


/* ============================================================
   FORM FOOTER
   ============================================================ */

.project-form-footer {

    padding:
        18px 28px;

    border-top:
        1px solid
        var(--gray-200);

    display:
        flex;

    justify-content:
        flex-end;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 800px) {

    .project-form {

        grid-template-columns:
            1fr;

    }


    .project-field-wide {

        grid-column:
            auto;

    }

}


@media (max-width: 550px) {

    .input-with-action {

        flex-direction:
            column;

    }


    .input-with-action button {

        padding:
            10px;

    }

}