/* =========================================================
   WEB DESIGN PAGE
   FazaSaz
========================================================= */


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body.web-page {

    margin: 0;

    overflow-x: hidden;

    background:
        linear-gradient(
            180deg,
            #f2f8ff 0%,
            #ffffff 38%,
            #f0fbf8 100%
        );

    color: #173e61;
}


/* =========================================================
   CONTAINER
========================================================= */

.web-container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin-inline: auto;
}


/* =========================================================
   HERO
========================================================= */

.web-hero {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        90px 0;
}


.web-hero::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -330px;
    right: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8,107,215,.18),
            transparent 68%
        );
}


.web-hero::after {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    left: -300px;
    bottom: -320px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(16,185,129,.14),
            transparent 68%
        );
}


.web-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.02fr
        .98fr;

    align-items: center;

    gap: 65px;
    margin-top:10%;
}


/* =========================================================
   HERO TEXT
========================================================= */

.web-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 23px;

    padding:
        9px 15px;

    border:
        1px solid
        rgba(8,107,215,.13);

    border-radius: 999px;

    color: #0871d8;

    background:
        rgba(8,107,215,.06);

    font-size: 11px;

    font-weight: 900;
}


.web-badge-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #10b981;

    box-shadow:
        0 0 0 6px
        rgba(16,185,129,.10);
}


.web-hero h1 {

    margin:
        0 0 24px;

    color: #12385b;

    font-size:
        clamp(
            43px,
            5vw,
            69px
        );

    line-height: 1.18;

    letter-spacing: -2.5px;
}


.web-gradient-text {

    display: block;

    background:
        linear-gradient(
            90deg,
            #086bd7,
            #087fe0,
            #0ba77b
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.web-hero-description {

    max-width: 600px;

    margin:
        0 0 29px;

    color: #657d95;

    font-size: 16px;

    line-height: 2.1;
}


.web-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.web-btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 22px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.web-btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            #086bd7,
            #087fdf
        );

    box-shadow:
        0 15px 35px
        rgba(8,107,215,.22);
}


.web-btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 45px
        rgba(8,107,215,.28);
}


.web-btn-secondary {

    color: #086bd7;

    background:
        rgba(255,255,255,.78);

    border:
        1px solid
        rgba(8,107,215,.13);
}


.web-btn-secondary:hover {

    transform:
        translateY(-3px);

    background: white;
}


.web-hero-trust {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 25px;

    color: #70849a;

    font-size: 10px;

    font-weight: 800;
}


.web-hero-trust > div {

    display: flex;

    align-items: center;

    gap: 7px;
}


.trust-icon {

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    color: #0a9d79;

    background:
        rgba(16,185,129,.09);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.web-visual {

    position: relative;

    min-height: 460px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.web-glow {

    position: absolute;

    width: 410px;
    height: 410px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8,107,215,.14),
            transparent 70%
        );
}


.web-orbit {

    position: absolute;

    width: 425px;
    height: 425px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(8,107,215,.17);

    animation:
        web-orbit
        24s linear infinite;
}


.web-orbit::before {

    content: "";

    position: absolute;

    width: 13px;
    height: 13px;

    top: 36px;
    right: 68px;

    border-radius: 50%;

    background: #0875dc;

    box-shadow:
        0 0 0 8px
        rgba(8,117,220,.10);
}


.web-orbit::after {

    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    left: 29px;
    bottom: 69px;

    border-radius: 50%;

    background: #10b981;

    box-shadow:
        0 0 0 8px
        rgba(16,185,129,.10);
}


@keyframes web-orbit {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   BROWSER
========================================================= */

.web-browser {

    position: relative;

    z-index: 3;

    width:
        min(
            455px,
            92%
        );

    padding: 9px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf6ff
        );

    border:
        1px solid
        rgba(8,107,215,.12);

    box-shadow:
        0 40px 90px
        rgba(8,74,145,.18);

    transform:
        perspective(1000px)
        rotateY(-4deg);

    transition:
        transform .5s ease;
}


.web-browser:hover {

    transform:
        perspective(1000px)
        rotateY(0)
        translateY(-5px);
}


.browser-top {

    height: 40px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        0 12px;

    border-bottom:
        1px solid
        rgba(8,107,215,.07);
}


.browser-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #c5d2df;
}


.browser-address {

    flex: 1;

    height: 9px;

    margin-right: 12px;

    border-radius: 20px;

    background: #e4edf6;
}


.browser-content {

    min-height: 320px;

    padding: 28px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #ecfaf6
        );
}


.browser-brand {

    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 23px;

    border-radius: 17px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #086bd7,
            #10b981
        );

    box-shadow:
        0 13px 28px
        rgba(8,107,215,.19);
}


.browser-brand span {

    font-size: 24px;

    font-weight: 900;
}


.browser-line {

    height: 13px;

    margin-bottom: 12px;

    border-radius: 20px;

    background: #d7e6f4;
}


.browser-line.medium {

    width: 74%;
}


.browser-line.short {

    width: 52%;
}


.browser-cards {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

    margin-top: 28px;
}


.browser-card {

    height: 78px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf5ff
        );

    border:
        1px solid
        rgba(8,107,215,.07);

    box-shadow:
        0 7px 20px
        rgba(8,74,145,.04);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        11px 14px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.91);

    border:
        1px solid
        rgba(8,107,215,.09);

    box-shadow:
        0 15px 35px
        rgba(8,74,145,.12);

    backdrop-filter:
        blur(12px);

    animation:
        floating-card
        4s ease-in-out infinite;
}


.floating-card-one {

    top: 65px;

    right: 4px;
}


.floating-card-two {

    left: 5px;

    bottom: 60px;

    animation-delay:
        -1.8s;
}


.floating-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: #0871d8;

    background:
        rgba(8,107,215,.08);
}


.floating-icon.green {

    color: #0a9d79;

    background:
        rgba(16,185,129,.10);
}


.floating-card strong {

    display: block;

    color: #234663;

    font-size: 10px;
}


.floating-card small {

    display: block;

    margin-top: 4px;

    color: #8495a6;

    font-size: 8px;
}


@keyframes floating-card {

    0%,
    100% {

        transform:
            translateY(0);
    }

    50% {

        transform:
            translateY(-8px);
    }

}


/* =========================================================
   SECTIONS
========================================================= */

.web-section {

    padding:
        95px 0;
}


.web-heading {



    margin:
        0 auto 55px;

    text-align: center;
}


.web-heading-label {

    display: inline-block;

    margin-bottom: 13px;

    color: #0ba27a;

    font-size: 11px;

    font-weight: 900;
}


.web-heading h2 {

    margin:
        0 0 15px;

    color: #12385b;

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height: 1.35;
}


.web-heading p {

    margin: 0;

    color: #70849a;

    line-height: 2;

    font-size: 14px;
}


/* =========================================================
   WEBSITE TYPES
========================================================= */

.web-types {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 25px;
}


.web-type-card {

    position: relative;

    overflow: hidden;

    padding: 38px;

    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f7ff
        );

    border:
        1px solid
        rgba(8,107,215,.10);

    box-shadow:
        0 20px 60px
        rgba(8,74,145,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.web-type-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 30px 75px
        rgba(8,74,145,.14);
}


.web-type-card.custom {

    background:
        linear-gradient(
            145deg,
            #f1f8ff,
            #eefbf7
        );

    border-color:
        rgba(16,185,129,.13);
}


.web-type-card::after {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: -110px;
    bottom: -140px;

    border-radius: 50%;

    background:
        rgba(16,185,129,.07);

    pointer-events: none;
}


.web-type-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 20px;
}


.web-type-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #086bd7,
            #10a77c
        );

    box-shadow:
        0 14px 30px
        rgba(8,107,215,.18);
}


.web-type-icon svg {

    width: 31px;
    height: 31px;
}


.web-type-number {

    padding:
        7px 12px;

    border-radius: 999px;

    color: #0871d8;

    background:
        rgba(8,107,215,.07);

    font-size: 10px;

    font-weight: 900;
}


.web-card-label {

    display: inline-flex;

    position: relative;

    z-index: 2;

    margin-bottom: 10px;

    padding:
        6px 10px;

    border-radius: 8px;

    color: #0871d8;

    background:
        rgba(8,107,215,.06);

    font-size: 9px;

    font-weight: 900;
}


.green-label {

    color: #079875;

    background:
        rgba(16,185,129,.08);
}


.web-type-card h3 {

    position: relative;

    z-index: 2;

    margin:
        0 0 13px;

    color: #143b5e;

    font-size: 25px;
}


.web-type-description {

    position: relative;

    z-index: 2;

    margin:
        0 0 25px;

    color: #6d8198;

    font-size: 13px;

    line-height: 2;
}


.web-list {

    position: relative;

    z-index: 2;

    display: grid;

    gap: 12px;

    padding: 0;

    margin:
        0 0 28px;

    list-style: none;
}


.web-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #435c75;

    font-size: 12px;
}


.web-list li span {

    width: 23px;
    height: 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 7px;

    color: #0ba27a;

    background:
        rgba(16,185,129,.10);

    font-size: 10px;

    font-weight: 900;
}


.web-type-footer {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.web-type-tag {

    display: inline-flex;

    align-items: center;

    padding:
        9px 13px;

    border-radius: 10px;

    color: #086bd7;

    background:
        rgba(8,107,215,.06);

    font-size: 9px;

    font-weight: 900;
}


.green-tag {

    color: #079875;

    background:
        rgba(16,185,129,.08);
}


.web-card-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #086bd7;

    text-decoration: none;

    font-size: 10px;

    font-weight: 900;
}


.web-card-link span {

    transition:
        transform .2s ease;
}


.web-card-link:hover span {

    transform:
        translateX(-4px);
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {

    background:
        linear-gradient(
            180deg,
            rgba(8,107,215,.025),
            rgba(16,185,129,.035)
        );
}


.web-audience {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.web-audience-card {

    padding:
        28px 23px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.86);

    border:
        1px solid
        rgba(8,107,215,.08);

    box-shadow:
        0 12px 35px
        rgba(8,74,145,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.web-audience-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(8,74,145,.08);
}


.web-audience-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    border-radius: 14px;

    color: #0871d8;

    background:
        linear-gradient(
            135deg,
            rgba(8,107,215,.10),
            rgba(16,185,129,.10)
        );

    font-size: 19px;
}


.web-audience-card h3 {

    margin:
        0 0 9px;

    color: #173e61;

    font-size: 15px;
}


.web-audience-card p {

    margin: 0;

    color: #71849a;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   TABLE
========================================================= */

.web-table-wrap {

    overflow-x: auto;

    border-radius: 24px;

    background: white;

    border:
        1px solid
        rgba(8,107,215,.09);

    box-shadow:
        0 20px 60px
        rgba(8,74,145,.06);
}


.web-table {

    width: 100%;

    min-width: 650px;

    border-collapse: collapse;
}


.web-table th,
.web-table td {

    padding:
        19px 22px;

    text-align: right;

    border-bottom:
        1px solid #edf2f7;
}


.web-table th {

    color: #12385b;

    background:
        #f3f8fd;

    font-size: 12px;
}


.web-table td {

    color: #657c94;

    font-size: 12px;
}


.web-table tr:last-child td {

    border-bottom: 0;
}


.web-check {

    color: #0ba27a !important;

    font-weight: 900;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f3fbf9
        );
}


.web-features {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 17px;
}


.web-feature {

    padding:
        28px 22px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.90);

    border:
        1px solid
        rgba(8,107,215,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.web-feature:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(8,74,145,.07);
}


.web-feature-icon {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    border-radius: 13px;

    color: #0871d8;

    background:
        rgba(8,107,215,.07);

    font-size: 19px;
}


.web-feature h3 {

    margin:
        0 0 8px;

    color: #173e61;

    font-size: 14px;
}


.web-feature p {

    margin: 0;

    color: #71849a;

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   PROCESS
========================================================= */

.web-process {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;
}


.web-process-card {

    position: relative;

    padding:
        29px 22px;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            white,
            #f0f7ff
        );

    border:
        1px solid
        rgba(8,107,215,.08);

    overflow: hidden;
}


.web-process-card::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -45px;
    bottom: -55px;

    border-radius: 50%;

    background:
        rgba(16,185,129,.07);
}


.web-process-number {

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #086bd7,
            #10a77c
        );

    font-size: 10px;

    font-weight: 900;
}


.web-process-card h3 {

    margin:
        0 0 8px;

    color: #173e61;

    font-size: 14px;
}


.web-process-card p {

    margin: 0;

    color: #71849a;

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   CTA
========================================================= */

.web-cta {

    position: relative;

    overflow: hidden;

    padding:
        58px;

    border-radius: 31px;

    background:
        linear-gradient(
            120deg,
            #075fca,
            #087cdd 52%,
            #079b7a
        );

    box-shadow:
        0 30px 70px
        rgba(8,107,215,.20);
}


.web-cta::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -190px;
    top: -270px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.13);
}


.web-cta::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    bottom: -170px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);
}


.web-cta-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.web-cta-label {

    display: inline-block;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.70);

    font-size: 10px;

    font-weight: 900;
}


.web-cta h2 {

    margin:
        0 0 10px;

    color: white;

    font-size:
        clamp(
            25px,
            3vw,
            38px
        );
}


.web-cta p {

    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,.82);

    line-height: 2;

    font-size: 13px;
}


.web-cta-btn {

    flex-shrink: 0;

    color: #086bd7;

    background: white;

    box-shadow: none;
}


.web-cta-btn:hover {

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.12);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .web-hero-grid {

        gap: 35px;
    }

}


@media (max-width: 950px) {

    .web-hero {

        padding:
            80px 0 70px;
    }


    .web-hero-grid {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .web-hero-description {

        margin-inline: auto;
    }


    .web-actions {

        justify-content: center;
    }


    .web-hero-trust {

        justify-content: center;
    }


    .web-visual {

        min-height: 420px;
    }


    .web-features,
    .web-process {

        grid-template-columns:
            repeat(2,1fr);
    }

}


@media (max-width: 700px) {

    .web-container {

        width:
            min(
                100% - 28px,
                1180px
            );
    }


    .web-hero {

        min-height: auto;

        padding:
            65px 0;
    }


    .web-hero h1 {

        font-size: 39px;

        letter-spacing: -1px;
    }


    .web-hero-description {

        font-size: 13px;
    }


    .web-orbit {

        width: 300px;
        height: 300px;
    }


    .web-glow {

        width: 330px;
        height: 330px;
    }


    .web-visual {

        min-height: 350px;
    }


    .floating-card-one {

        top: 30px;
        right: 0;
    }


    .floating-card-two {

        left: 0;
        bottom: 25px;
    }


    .web-types,
    .web-audience {

        grid-template-columns: 1fr;
    }


    .web-section {

        padding:
            70px 0;
    }


    .web-heading {

        margin-bottom: 40px;
    }


    .web-heading h2 {

        font-size: 30px;
    }


    .web-type-card {

        padding: 28px;
    }


    .web-cta {

        padding:
            38px 25px;
    }


    .web-cta-content {

        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 450px) {

    .web-hero h1 {

        font-size: 33px;
    }


    .web-hero-description {

        font-size: 12px;
    }


    .web-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .web-btn {

        width: 100%;
    }


    .web-browser {

        width: 95%;

        transform: none;
    }


    .web-browser:hover {

        transform:
            translateY(-3px);
    }


    .browser-content {

        min-height: 250px;

        padding: 22px;
    }


    .browser-cards {

        gap: 6px;
    }


    .floating-card {

        padding:
            8px 10px;
    }


    .floating-card-one {

        right: -5px;
    }


    .floating-card-two {

        left: -5px;
    }


    .floating-card strong {

        font-size: 8px;
    }


    .floating-card small {

        font-size: 7px;
    }


    .web-type-footer {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .web-features,
    .web-process {

        grid-template-columns: 1fr;
    }


    .web-table-wrap {

        border-radius: 17px;
    }


    .web-cta-btn {

        width: auto;
    }

}