:root {
    --blue: #075dd8;
    --blue-dark: #082451;
    --light: #f4f8ff;
    --text: #10264a;
    --muted: #60718f;
    --line: #dbe6f5;
    --green: #21a65b;
    --danger: #d83a3a;
    --shadow: 0 24px 60px rgba(8,36,81,.16);
}

* {
    box-sizing: border-box
}

.dropdown {
    position: relative;
}



.why-section {
    display: grid;
    grid-template-columns: .9fr 1.3fr;
    gap: 56px;
    padding: 68px 0;
    border-top: 1px solid var(--line);
}

.why-left h2 {
    text-align: left;
    margin-bottom: 18px;
}

.why-left p {
    color: #4b6080;
    font-size: 18px;
    margin: 0;
}

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

    .why-grid article {
        background: #fff;
        border: 1px solid #d7e3f4;
        border-radius: 14px;
        padding: 26px 24px;
        box-shadow: 0 14px 35px rgba(8,36,81,.08);
    }

    .why-grid h3 {
        margin: 12px 0 8px;
    }

    .why-grid p {
        color: #4b6080;
        font-size: 15px;
        margin: 0;
    }

@media(max-width:960px) {
    .why-section {
        grid-template-columns: 1fr;
    }



    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block;
        min-width: auto;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

        .dropdown-menu a {
            padding-left: 40px;
            font-size: 14px;
            color: #60718f;
        }

    .arrow {
        display: none;
    }
}







@media(max-width:620px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-photo {
    overflow: hidden;
    border-radius: 12px;
}

    .comparison-photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

body {
    margin: 0;
    font-family: Inter,Segoe UI,Roboto,Arial,sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5
}

a {
    color: inherit;
    text-decoration: none
}

.wrapper {
    width: min(1180px,calc(100% - 48px));
    margin-inline: auto
}

.site-header {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px)
}

.brand {
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 22px;
    display: flex;
    gap: 10px;
    align-items: center
}

.brand-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--blue);
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 14px
}

.nav {
    display: flex;
    gap: 34px;
    font-weight: 700;
    font-size: 14px
}

.header-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 700;
    font-size: 14px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-weight: 800;
    border: 1px solid transparent;
    box-shadow: 0 10px 22px rgba(7,93,216,.18);
    transition: .2s ease;
    white-space: nowrap
}

    .btn:hover {
        transform: translateY(-1px)
    }

.btn-primary {
    background: var(--blue);
    color: #fff
}

.btn-secondary {
    background: #fff;
    color: var(--blue);
    border-color: #cddcf1
}

.btn-dark {
    background: #061a39;
    color: #fff
}

.btn-lg {
    height: 56px;
    padding: 0 34px
}

.site-header .btn {
    height: 42px;
    padding: 0 22px
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 645px;
    background-image: linear-gradient( 90deg, rgba(255,255,255,0.95) 0%, rgba(247,251,255,0.85) 45%, rgba(232,243,255,0.6) 100% ), url("/NewImages/BG.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg {
    display: none;
}

    .hero-bg:after {
        content: "";
        position: absolute;
        right: 8%;
        top: 30px;
        width: 260px;
        height: 420px;
        border-left: 5px solid rgba(183,119,43,.35);
        transform: rotate(-22deg);
        filter: blur(.2px)
    }

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.35fr;
    gap: 56px;
    align-items: center;
    padding: 86px 0 64px
}

.hero-copy h1 {
    font-size: 56px;
    line-height: 1.04;
    margin: 0 0 26px;
    letter-spacing: -.045em;
    color: #092755
}

.hero-copy p {
    font-size: 19px;
    max-width: 600px;
    color: #2d4569;
    margin: 0 0 30px
}

.cta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 38px
}

.trust-row {
    display: flex;
    gap: 28px;
    font-weight: 800;
    font-size: 14px;
    color: #324d73
}

    .trust-row span:before {
        color: var(--blue)
    }

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

.gantt-card {
    min-height: 455px
}

.app-topbar {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    font-size: 13px
}

    .app-topbar strong {
        margin-right: auto
    }

    .app-topbar span:first-of-type {
        color: var(--blue);
        font-weight: 900;
        border-bottom: 3px solid var(--blue);
        align-self: stretch;
        display: flex;
        align-items: center
    }

.gantt-shell {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 395px
}

.gantt-sidebar {
    padding: 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-right: 1px solid var(--line);
    font-size: 13px
}

    .gantt-sidebar small {
        color: #677891;
        padding-left: 12px
    }

.gantt-grid {
    position: relative;
    background: repeating-linear-gradient(90deg,#fff 0,#fff 57px,#edf2fa 58px),repeating-linear-gradient(0deg,transparent 0,transparent 41px,#edf2fa 42px);
    padding-top: 38px
}

.months {
    position: absolute;
    top: 10px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    color: #7888a2;
    font-size: 12px
}

.bar {
    position: absolute;
    height: 14px;
    border-radius: 8px;
    background: linear-gradient(90deg,#126ae4,#6ea7ff);
    box-shadow: 0 2px 8px rgba(7,93,216,.25)
}

.green {
    background: linear-gradient(90deg,#15884a,#68c786)
}

.b1 {
    top: 70px;
    left: 40px;
    width: 150px
}

.b2 {
    top: 108px;
    left: 150px;
    width: 250px
}

.b3 {
    top: 146px;
    left: 90px;
    width: 170px
}

.b4 {
    top: 184px;
    left: 250px;
    width: 260px
}

.b5 {
    top: 222px;
    left: 220px;
    width: 160px
}

.b6 {
    top: 260px;
    left: 355px;
    width: 215px
}

.b7 {
    top: 298px;
    left: 420px;
    width: 145px
}

.b8 {
    top: 336px;
    left: 500px;
    width: 170px
}

.b9 {
    top: 374px;
    left: 570px;
    width: 130px
}

.dependency {
    position: absolute;
    border-top: 2px solid rgba(7,93,216,.45);
    border-right: 2px solid rgba(7,93,216,.45);
    width: 60px;
    height: 40px
}

.d1 {
    top: 84px;
    left: 180px
}

.d2 {
    top: 234px;
    left: 360px
}

.critical {
    position: absolute;
    top: 160px;
    bottom: 40px;
    left: 472px;
    border-left: 3px solid #e62a2a
}

.features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 34px;
    padding: 58px 0;
    text-align: center
}

    .features article {
        padding: 10px 18px
    }

.icon {
    font-size: 38px;
    color: var(--blue)
}

h2 {
    font-size: 36px;
    letter-spacing: -.03em;
    margin: 0 0 30px;
    text-align: center
}

h3 {
    margin: 12px 0 10px
}

.features p, .workflow p {
    color: #4b6080;
    font-size: 15px;
    margin: 0
}

.comparison-section {
    background-image:
        linear-gradient(
            rgba(255,255,255,.92),
            rgba(255,255,255,.92)
        ),
        url("/NewImages/construction-manager.jpg");

    background-size: cover;
    background-position: center;
}
    .comparison-section:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 38%;
        height: 100%;
        background: radial-gradient(circle at 65% 65%,rgba(7,93,216,.12),transparent 38%),linear-gradient(130deg,transparent,rgba(255,211,125,.28));
        clip-path: polygon(25% 0,100% 0,100% 100%,0 100%)
    }

.comparison-wrap {
    position: relative;
    z-index: 1
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    align-items: stretch;
    background: rgba(255,255,255,.88);
    border: 1px solid #d5e1f2;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 970px;
    padding: 32px;
    margin: 0 auto
}

    .comparison-card h3 {
        margin-top: 0
    }

    .comparison-card ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: grid;
        gap: 14px
    }

    .comparison-card li:before {
        font-weight: 900;
        margin-right: 10px
    }

.bad li:before {
    content: "×";
    color: var(--danger)
}

.good li:before {
    content: "✓";
    color: var(--green);
}

.vs {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #e2eaf5;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(8,36,81,.1)
}

.workflow {
    padding: 66px 0
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr;
    align-items: center;
    text-align: center;
    gap: 16px
}

.workflow h3 {
    color: var(--blue);
    font-size: 16px
}

.mini-screen {
    height: 140px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dfe8f5;
    box-shadow: 0 16px 35px rgba(8,36,81,.12);
    margin: 16px 0;
    position: relative;
    overflow: hidden
}

.mini-gantt {
    background: repeating-linear-gradient(90deg,#fff 0,#fff 38px,#edf2fa 39px),repeating-linear-gradient(0deg,transparent 0,transparent 27px,#edf2fa 28px)
}

    .mini-gantt:after {
        content: "";
        position: absolute;
        left: 28px;
        top: 35px;
        width: 210px;
        height: 70px;
        background: linear-gradient(#126ae4,#126ae4) 0 0/95px 9px no-repeat,linear-gradient(#21a65b,#21a65b) 90px 26px/125px 9px no-repeat,linear-gradient(#126ae4,#126ae4) 45px 56px/150px 9px no-repeat;
        border-radius: 9px
    }

.mini-board {
    background: linear-gradient(90deg,#f7faff 33%,#fff 33% 66%,#f7faff 66%)
}

    .mini-board:after {
        content: "";
        position: absolute;
        inset: 24px;
        background: repeating-linear-gradient(0deg,#fff 0,#fff 24px,#dce7f7 25px);
        border-radius: 8px
    }

.mini-list {
    background: repeating-linear-gradient(0deg,#fff 0,#fff 31px,#e1eaf7 32px)
}

    .mini-list:after {
        content: "✓ ✓ ✓";
        position: absolute;
        left: 24px;
        top: 24px;
        color: var(--green);
        font-weight: 900;
        word-spacing: 30px
    }

.arrow {
    font-size: 42px;
    color: #516b91
}

.social-proof {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    padding: 58px 0;
    border-top: 1px solid var(--line)
}

    .social-proof h2 {
        text-align: left
    }

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

    .stats strong {
        display: block;
        font-size: 24px;
        color: var(--blue)
    }

    .stats span {
        font-size: 13px;
        color: #546886
    }

.proof-left blockquote {
    background: #f2f7ff;
    border-radius: 12px;
    padding: 28px 34px;
    margin: 0;
    color: #263d61;
    font-weight: 700
}

.logos {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    align-content: center
}

    .logos span {
        font-size: 31px;
        font-weight: 900;
        color: #0d3974;
        letter-spacing: .03em;
        text-align: center
    }

.final-cta {
    margin: 34px auto 70px;
    background: linear-gradient(100deg,#065fe2,#0046b1);
    color: #fff;
    border-radius: 12px;
    padding: 34px 42px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow)
}

    .final-cta h2 {
        text-align: left;
        margin: 0 0 4px
    }

    .final-cta p {
        margin: 0;
        color: #dce9ff
    }

    .final-cta form {
        display: grid;
        grid-template-columns: 1fr 220px;
        gap: 14px;
        align-items: center
    }

    .final-cta input {
        height: 56px;
        border-radius: 7px;
        border: 0;
        padding: 0 18px;
        font-size: 16px
    }

    .final-cta small {
        grid-column: 2;
        text-align: center;
        color: #dce9ff
    }

    .final-cta .btn {
        height: 56px
    }

@media(max-width:960px) {
   
    .hero-content, .social-proof, .final-cta {
        grid-template-columns: 1fr
    }

    .hero-copy h1 {
        font-size: 42px
    }

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

    .workflow-grid {
        grid-template-columns: 1fr
    }

    .arrow {
        display: none
    }

    .comparison-card {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .vs {
        margin: auto
    }

    .gantt-shell {
        grid-template-columns: 150px 1fr
    }

    .final-cta form {
        grid-template-columns: 1fr
    }

    .final-cta small {
        grid-column: auto
    }
}

@media(max-width:620px) {
    .wrapper {
        width: min(100% - 28px,1180px)
    }

    .site-header {
        padding: 0 14px
    }

    .header-actions a:first-child {
        display: none
    }

    .hero-content {
        padding-top: 48px
    }

    .hero-copy h1 {
        font-size: 36px
    }

    .cta-row, .trust-row {
        flex-direction: column
    }

    .features, .stats {
        grid-template-columns: 1fr
    }

    .gantt-card {
        display: none
    }

    .comparison-card {
        padding: 22px
    }

    .logos {
        grid-template-columns: 1fr
    }

    .final-cta {
        padding: 28px 22px
    }
}
