@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");


* {
    font-family: 'Sora', sans-serif;
}


a {
    text-decoration: none !important;
}





:root {
    --dwc-blue: #4295d0;
    --dwc-blue-dark: #176ca8;
    --dwc-yellow: #f3ca2f;
    --dwc-green: #72b743;

    --dark: #10202d;
    --text: #52616d;
    --white: #ffffff;
    --light: #f6fafc;

    --shadow: 0 25px 70px rgba(25, 83, 115, 0.12);
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--dark);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    font-family: inherit;
}



.dwc-maintenance-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(66, 149, 208, 0.10),
            transparent 28%),
        radial-gradient(circle at 90% 80%,
            rgba(114, 183, 67, 0.10),
            transparent 28%),
        #f8fbfd;
}




.dwc-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dwc-bg-shape-1 {
    width: 430px;
    height: 430px;
    top: -230px;
    left: -180px;
    background: rgba(66, 149, 208, 0.09);
}

.dwc-bg-shape-2 {
    width: 360px;
    height: 360px;
    bottom: -210px;
    right: -120px;
    background: rgba(243, 202, 47, 0.12);
}

.dwc-bg-shape-3 {
    width: 180px;
    height: 180px;
    top: 15%;
    right: 7%;
    background: rgba(114, 183, 67, 0.08);
}



.dwc-dots {
    position: absolute;
    width: 90px;
    height: 90px;

    background-image: radial-gradient(var(--dwc-blue) 2px,
            transparent 2px);

    background-size: 16px 16px;
    opacity: 0.35;
}

.dwc-dots-left {
    left: 5%;
    bottom: 13%;
}

.dwc-dots-right {
    right: 5%;
    top: 17%;

    background-image: radial-gradient(var(--dwc-yellow) 2px,
            transparent 2px);
}




.dwc-maintenance-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 45px 25px;
    position: relative;
    z-index: 2;
}




.dwc-logo-wrapper {
    text-align: center;
    margin-bottom: 35px;
}

.dwc-logo {
    width: 290px;
    max-width: 85%;
    margin: auto;
    object-fit: contain;
    background: #060606;
    padding: 10px;
}




.dwc-maintenance-card {
    max-width: 1050px;
    margin: auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(66, 149, 208, 0.12);
    border-radius: 35px;
    padding: 65px 70px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}



.dwc-maintenance-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--dwc-blue),
            var(--dwc-yellow),
            var(--dwc-green));
}




.dwc-illustration {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dwc-illustration-circle {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: linear-gradient(145deg,
            rgba(66, 149, 208, 0.13),
            rgba(114, 183, 67, 0.10));

    position: absolute;
}




.dwc-gear {
    position: absolute;

    font-size: 190px;

    color: var(--dwc-blue);

    animation: dwcRotate 10s linear infinite;

    filter: drop-shadow(0 12px 20px rgba(66, 149, 208, 0.18));
}

.dwc-gear-small {
    position: absolute;

    font-size: 90px;

    color: var(--dwc-yellow);

    right: 45px;
    top: 35px;

    animation: dwcRotateReverse 7s linear infinite;
}


/* =========================================
           TOOL ICON
        ========================================= */

.dwc-tool {
    position: absolute;

    font-size: 100px;

    color: var(--dwc-green);

    bottom: 40px;
    left: 40px;

    transform: rotate(-35deg);

    animation: dwcFloat 3s ease-in-out infinite;
}


/* =========================================
           ANIMATIONS
        ========================================= */

@keyframes dwcRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dwcRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes dwcFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-35deg);
    }

    50% {
        transform: translateY(-12px) rotate(-28deg);
    }
}


/* =========================================
           CONTENT
        ========================================= */

.dwc-content {
    position: relative;
}


/* =========================================
           BADGE
        ========================================= */

.dwc-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 16px;

    border-radius: 50px;

    background: rgba(66, 149, 208, 0.10);

    color: var(--dwc-blue-dark);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;

    margin-bottom: 20px;
}

.dwc-badge i {
    font-size: 15px;
}


/* =========================================
           HEADING
        ========================================= */

.dwc-content h1 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2.5px;

    margin-bottom: 22px;

    color: var(--dark);
}

.dwc-content h1 span {
    color: var(--dwc-blue);
}


/* =========================================
           DESCRIPTION
        ========================================= */

.dwc-description {
    font-size: 17px;

    line-height: 1.8;

    color: var(--text);

    max-width: 600px;

    margin-bottom: 28px;
}


/* =========================================
           PROGRESS
        ========================================= */

.dwc-progress-wrapper {
    margin-bottom: 28px;
}

.dwc-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 9px;

    font-size: 13px;

    font-weight: 600;

    color: var(--text);
}

.dwc-progress-bar {
    width: 100%;
    height: 8px;

    background: #e9f0f4;

    border-radius: 20px;

    overflow: hidden;
}

.dwc-progress-fill {
    height: 100%;
    width: 75%;

    border-radius: 20px;

    background: linear-gradient(90deg,
            var(--dwc-blue),
            var(--dwc-yellow),
            var(--dwc-green));

    animation: dwcProgress 2.5s ease-in-out infinite alternate;
}

@keyframes dwcProgress {

    from {
        width: 68%;
    }

    to {
        width: 82%;
    }
}


/* =========================================
           BUTTONS
        ========================================= */

.dwc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.dwc-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 23px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.dwc-btn-primary {
    color: var(--white);

    background: var(--dwc-blue);

    box-shadow:
        0 10px 25px rgba(66, 149, 208, 0.25);
}

.dwc-btn-primary:hover {
    color: var(--white);

    background: var(--dwc-blue-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(66, 149, 208, 0.30);
}

.dwc-btn-secondary {
    color: var(--dark);

    background: #ffffff;

    border: 1px solid #dce7ed;
}

.dwc-btn-secondary:hover {
    color: var(--dwc-blue);

    border-color: var(--dwc-blue);

    transform: translateY(-3px);
}


/* =========================================
           FOOTER
        ========================================= */

.dwc-footer {
    text-align: center;

    margin-top: 28px;

    color: #71808b;

    font-size: 13px;
}

.dwc-footer strong {
    color: var(--dwc-blue);
}

.dwc-footer .dwc-green-text {
    color: var(--dwc-green);
}

.dwc-footer .dwc-yellow-text {
    color: #c19b00;
}


/* =========================================
           FLOATING STARS / SHAPES
        ========================================= */

.dwc-floating-shape {
    position: absolute;

    animation: dwcFloating 5s ease-in-out infinite;
}

.dwc-floating-shape-1 {
    color: var(--dwc-yellow);

    font-size: 30px;

    top: 18%;
    left: 18%;
}

.dwc-floating-shape-2 {
    color: var(--dwc-green);

    font-size: 25px;

    bottom: 17%;
    right: 20%;

    animation-delay: 1s;
}

.dwc-floating-shape-3 {
    color: var(--dwc-blue);

    font-size: 20px;

    top: 12%;
    right: 25%;

    animation-delay: 2s;
}

@keyframes dwcFloating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}


/* =========================================
           TABLET
        ========================================= */

@media (max-width: 900px) {

    .dwc-maintenance-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 55px 45px;

        text-align: center;
    }

    .dwc-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dwc-description {
        max-width: 650px;
    }

    .dwc-buttons {
        justify-content: center;
    }

    .dwc-illustration {
        height: 300px;
    }

    .dwc-illustration-circle {
        width: 240px;
        height: 240px;
    }

    .dwc-gear {
        font-size: 155px;
    }

    .dwc-gear-small {
        font-size: 75px;

        right: 25%;
    }

    .dwc-tool {
        font-size: 80px;

        left: 27%;
    }

    .dwc-dots {
        display: none;
    }
}


/* =========================================
           MOBILE
        ========================================= */

@media (max-width: 600px) {

    .dwc-maintenance-page {
        min-height: 100svh;
    }

    .dwc-maintenance-container {
        padding: 25px 15px;
    }

    .dwc-logo-wrapper {
        margin-bottom: 25px;
    }

    .dwc-logo {
        width: 280px;
    }

    .dwc-maintenance-card {
        border-radius: 25px;

        padding: 35px 22px 30px;

        gap: 5px;
    }

    .dwc-illustration {
        height: 235px;
    }

    .dwc-illustration-circle {
        width: 190px;
        height: 190px;
    }

    .dwc-gear {
        font-size: 125px;
    }

    .dwc-gear-small {
        font-size: 60px;

        right: 15%;
        top: 20px;
    }

    .dwc-tool {
        font-size: 65px;

        left: 20%;
        bottom: 15px;
    }

    .dwc-badge {
        font-size: 11px;

        padding: 8px 13px;
    }

    .dwc-content h1 {
        font-size: 40px;

        letter-spacing: -1.5px;

        margin-bottom: 17px;
    }

    .dwc-description {
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 23px;
    }

    .dwc-buttons {
        width: 100%;

        flex-direction: column;
    }

    .dwc-btn {
        width: 100%;
    }

    .dwc-footer {
        font-size: 11px;

        line-height: 1.7;

        margin-top: 20px;
    }

    .dwc-floating-shape {
        display: none;
    }
}


/* =========================================
           SMALL MOBILE
        ========================================= */

@media (max-width: 380px) {

    .dwc-content h1 {
        font-size: 34px;
    }

    .dwc-illustration {
        height: 205px;
    }

    .dwc-illustration-circle {
        width: 165px;
        height: 165px;
    }

    .dwc-gear {
        font-size: 105px;
    }

    .dwc-gear-small {
        font-size: 50px;
    }

    .dwc-tool {
        font-size: 55px;
    }
}