.customweb-page {

    --customweb-primary: #ff4495;
    --customweb-primary-dark: #e82d7d;
    --customweb-primary-soft: #fff1f7;

    --customweb-dark: #19191d;
    --customweb-text: #4d4d55;
    --customweb-muted: #797982;

    --customweb-border: #eeeeF2;

    --customweb-shadow:
        0 18px 55px rgba(38, 25, 32, 0.08);

    width: 100%;
    overflow: hidden;

    color: var(--customweb-text);

    background: #fff;

    font-family: inherit;

    line-height: 2;
}


.customweb-page *,
.customweb-page *::before,
.customweb-page *::after {

    box-sizing: border-box;
}


.customweb-page img {

    display: block;

    max-width: 100%;

    height: auto;
}


.customweb-page a {

    text-decoration: none;
}


.customweb-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}



/* --------------------------------------------------
   GENERAL
-------------------------------------------------- */


.customweb-section {

    padding: 90px 0;
}


.customweb-label {

    display: inline-flex;

    align-items: center;

    margin-bottom: 16px;

    padding: 5px 16px;

    color: var(--customweb-primary);

    background: var(--customweb-primary-soft);

    border-radius: 50px;

    font-size: 14px;

    font-weight: 800;
}


.customweb-section-title {

    max-width: 800px;

    margin: 0 auto 48px;

    text-align: center;
}


.customweb-section-title > span {

    display: inline-flex;

    padding: 4px 14px;

    color: var(--customweb-primary);

    background: var(--customweb-primary-soft);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 800;
}


.customweb-section-title h2,
.customweb-features-content h2,
.customweb-why-content h2 {

    margin: 10px 0 12px;

    color: var(--customweb-dark);

    font-size: clamp(28px, 3.5vw, 43px);

    line-height: 1.5;

    font-weight: 900;
}


.customweb-section-title h2 strong,
.customweb-features-content h2 strong,
.customweb-why-content h2 strong {

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


.customweb-section-title p,
.customweb-features-content > p,
.customweb-why-content > p {

    margin: 0;

    color: var(--customweb-muted);

    font-size: 16px;
}



/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */


.customweb-button,
.customweb-button-outline {

    min-height: 50px;

    padding: 10px 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50px;

    font-weight: 800;

    transition: 0.3s;
}


.customweb-button {

    color: #fff !important;

    background: var(--customweb-primary);

    box-shadow:
        0 12px 30px rgba(255, 68, 149, 0.23);
}


.customweb-button:hover {

    color: #fff !important;

    background: var(--customweb-primary-dark);

    transform: translateY(-3px);
}


.customweb-button-outline {

    color: var(--customweb-dark) !important;

    background: #fff;

    border: 1px solid #dcdce2;
}


.customweb-button-outline:hover {

    color: var(--customweb-primary) !important;

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

    transform: translateY(-3px);
}



/* --------------------------------------------------
   HERO
-------------------------------------------------- */


.customweb-hero {

    padding: 75px 0 70px;

    /*background:*/

    /*    radial-gradient(*/
    /*        circle at 15% 25%,*/
    /*        rgba(255, 68, 149, 0.10),*/
    /*        transparent 27%*/
    /*    ),*/

    /*    linear-gradient(*/
    /*        180deg,*/
    /*        #fff,*/
    /*        #fffafd*/
    /*    );*/
}


.customweb-hero-grid {

    min-height: 610px;

    display: grid;

    grid-template-columns: 1fr 1.08fr;

    align-items: center;

    gap: 70px;
}


.customweb-hero-content h1 {

    margin: 0 0 20px;

    color: var(--customweb-dark);

    font-size: clamp(39px, 5vw, 62px);

    line-height: 1.38;

    font-weight: 900;
}


.customweb-hero-content h1 strong {

    display: block;

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


.customweb-hero-content > p {

    max-width: 630px;

    margin: 0 0 28px;

    color: var(--customweb-muted);

    font-size: 17px;
}


.customweb-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;
}


.customweb-hero-features {

    margin-top: 38px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}


.customweb-mini-feature {

    display: flex;

    align-items: center;

    gap: 9px;
}


.customweb-mini-feature > span {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--customweb-primary);

    background: var(--customweb-primary-soft);

    border-radius: 13px;

    font-size: 17px;

    font-weight: bold;
}


.customweb-mini-feature div {

    display: flex;

    flex-direction: column;
}


.customweb-mini-feature strong {

    color: var(--customweb-dark);

    font-size: 12px;

    line-height: 1.6;
}


.customweb-mini-feature small {

    color: var(--customweb-muted);

    font-size: 9px;

    line-height: 1.7;
}



/* HERO IMAGE */


.customweb-hero-image {

    position: relative;

    padding: 25px;
}


.customweb-hero-shape {

    position: absolute;

    width: 430px;

    height: 430px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    background:

        linear-gradient(
            135deg,
            rgba(255, 68, 149, 0.22),
            rgba(255, 68, 149, 0.03)
        );

    border-radius: 50%;
}


.customweb-hero-image > img {

    position: relative;

    z-index: 2;

    width: 100%;

    border-radius: 24px;

    filter:
        drop-shadow(
            0 35px 35px rgba(32, 22, 27, 0.15)
        );
}


.customweb-floating-card {

    position: absolute;

    z-index: 4;

    min-width: 145px;

    padding: 13px 17px;

    display: flex;

    flex-direction: column;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 16px;

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

    backdrop-filter: blur(8px);
}


.customweb-floating-card span {

    color: var(--customweb-primary);

    font-size: 22px;

    font-weight: 900;

    line-height: 1.4;
}


.customweb-floating-card small {

    color: var(--customweb-muted);

    font-size: 11px;
}


.customweb-float-one {

    right: -10px;

    top: 105px;
}


.customweb-float-two {

    left: 0;

    bottom: 85px;
}



/* --------------------------------------------------
   DIFFERENCE
-------------------------------------------------- */


.customweb-difference {

    background: #fff;
}


.customweb-difference-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.customweb-difference-card {

    position: relative;

    min-height: 285px;

    padding: 30px;

    overflow: hidden;

    background: #fff;

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

    border-radius: 22px;

    transition: 0.35s;
}


.customweb-difference-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 68, 149, 0.28);

    box-shadow: var(--customweb-shadow);
}


.customweb-number {

    position: absolute;

    left: 20px;

    top: 12px;

    color: rgba(255, 68, 149, 0.09);

    font-size: 60px;

    line-height: 1;

    font-weight: 900;
}


.customweb-difference-icon {

    width: 64px;

    height: 64px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--customweb-primary);

    background: var(--customweb-primary-soft);

    border-radius: 18px;

    font-size: 24px;

    font-weight: 900;
}


.customweb-difference-card h3 {

    position: relative;

    margin: 0 0 9px;

    color: var(--customweb-dark);

    font-size: 18px;
}


.customweb-difference-card p {

    position: relative;

    margin: 0;

    color: var(--customweb-muted);

    font-size: 13px;
}



/* --------------------------------------------------
   COMPARE
-------------------------------------------------- */


/*.customweb-compare {*/

/*    background: #fffafd;*/
/*}*/


.customweb-compare-grid {

    max-width: 950px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    align-items: stretch;
}


.customweb-compare-card {

    position: relative;

    padding: 35px;

    background: #fff;

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

    border-radius: 24px;
}


.customweb-compare-special {

    border: 2px solid rgba(255, 68, 149, 0.42);

    box-shadow: var(--customweb-shadow);
}


.customweb-popular {

    position: absolute;

    top: -15px;

    right: 28px;

    padding: 5px 16px;

    color: #fff;

    background: var(--customweb-primary);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;
}


.customweb-compare-head {

    padding-bottom: 20px;

    margin-bottom: 20px;

    border-bottom: 1px solid var(--customweb-border);
}


.customweb-compare-head > span {

    color: var(--customweb-primary);

    font-size: 13px;

    font-weight: 800;
}


.customweb-compare-head h3 {

    margin: 4px 0 0;

    color: var(--customweb-dark);

    font-size: 22px;
}


.customweb-compare-card ul {

    padding: 0;

    margin: 0;

    list-style: none;
}


.customweb-compare-card li {

    position: relative;

    padding: 8px 31px 8px 0;

    color: var(--customweb-text);
}


.customweb-compare-card li::before {

    content: "✓";

    position: absolute;

    right: 0;

    top: 11px;

    width: 19px;

    height: 19px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--customweb-primary);

    background: var(--customweb-primary-soft);

    border-radius: 50%;

    font-size: 10px;

    font-weight: bold;
}



/* --------------------------------------------------
   TWO COLUMNS
-------------------------------------------------- */


.customweb-two-columns {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}



/* --------------------------------------------------
   FEATURES
-------------------------------------------------- */


.customweb-features {

    background: #fff;
}


.customweb-features-image,
.customweb-why-image {

    position: relative;

    padding: 25px;
}


.customweb-image-shape,
.customweb-why-shape {

    position: absolute;

    width: 88%;

    height: 88%;

    right: 0;

    top: 0;

    background:

        linear-gradient(
            135deg,
            rgba(255, 68, 149, 0.20),
            rgba(255, 68, 149, 0.03)
        );

    border-radius:
        45% 55% 48% 52% /
        52% 43% 57% 48%;
}


.customweb-features-image img,
.customweb-why-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    border-radius: 25px;

    box-shadow: var(--customweb-shadow);
}


.customweb-check-list {

    padding: 0;

    margin: 27px 0 30px;

    list-style: none;
}


.customweb-check-list li {

    position: relative;

    padding-right: 33px;

    margin-bottom: 10px;
}


.customweb-check-list li::before {

    content: "✓";

    position: absolute;

    right: 0;

    top: 7px;

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    background: var(--customweb-primary);

    border-radius: 50%;

    font-size: 11px;

    line-height: 1;
}



/* --------------------------------------------------
   PROJECT TYPES
-------------------------------------------------- */


/*.customweb-project-types {*/

/*    background: #fffafd;*/
/*}*/


.customweb-project-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.customweb-project-card {

    min-height: 215px;

    padding: 28px;

    text-align: center;

    background: #fff;

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

    border-radius: 20px;

    transition: 0.3s;
}


.customweb-project-card:hover {

    transform: translateY(-7px);

    border-color: rgba(255, 68, 149, 0.30);

    box-shadow: var(--customweb-shadow);
}


.customweb-project-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--customweb-primary);

    background: var(--customweb-primary-soft);

    border-radius: 18px;

    font-size: 26px;
}


.customweb-project-card h3 {

    margin: 0 0 6px;

    color: var(--customweb-dark);

    font-size: 18px;
}


.customweb-project-card p {

    margin: 0;

    color: var(--customweb-muted);

    font-size: 13px;
}



/* --------------------------------------------------
   PROCESS
-------------------------------------------------- */


.customweb-process {

    background: #fff;
}


.customweb-process-grid {

    position: relative;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}


.customweb-process-grid::before {

    content: "";
    position: absolute;
    top: 70px;
    right: 9%;
    left: 9%;
    height: 1px;
    background: #e5e5ea;
}


.customweb-process-item {

    position: relative;

    z-index: 2;

    text-align: center;
}


.customweb-process-number {

    display: block;

    margin-bottom: 9px;

    color: var(--customweb-primary);

    font-size: 13px;

    font-weight: 900;
}


.customweb-process-icon {

    width: 68px;

    height: 68px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--customweb-primary);

    background: #fff;

    border: 2px solid #f1e5eb;

    border-radius: 50%;

    font-size: 21px;

    font-weight: 900;

    box-shadow:
        0 10px 30px rgba(38, 24, 32, 0.06);
}


.customweb-process-item h3 {

    margin: 0 0 7px;

    color: var(--customweb-dark);

    font-size: 16px;
}


.customweb-process-item p {

    margin: 0;

    color: var(--customweb-muted);

    font-size: 12px;

    line-height: 1.9;
}



/* --------------------------------------------------
   PORTFOLIO
-------------------------------------------------- */


/*.customweb-portfolio {*/

/*    background: #fffafd;*/
/*}*/


.customweb-portfolio-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 21px;
}


.customweb-portfolio-card {

    overflow: hidden;

    background: #fff;

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

    border-radius: 20px;

    transition: 0.35s;
}


.customweb-portfolio-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--customweb-shadow);
}


.customweb-portfolio-image {

    position: relative;

    overflow: hidden;

    aspect-ratio: 1.2 / 1;
}


.customweb-portfolio-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.45s;
}


.customweb-portfolio-card:hover
.customweb-portfolio-image img {

    transform: scale(1.06);
}


.customweb-portfolio-image span {

    position: absolute;

    right: 14px;

    top: 14px;

    padding: 4px 11px;

    color: var(--customweb-primary);

    background: rgba(255, 255, 255, 0.94);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;
}


.customweb-portfolio-content {

    padding: 18px;
}


.customweb-portfolio-content h3 {

    margin: 0 0 4px;

    color: var(--customweb-dark);

    font-size: 17px;
}


.customweb-portfolio-content p {

    min-height: 52px;

    margin: 0 0 8px;

    color: var(--customweb-muted);

    font-size: 12px;
}


.customweb-portfolio-content a {

    color: var(--customweb-primary) !important;

    font-size: 12px;

    font-weight: 800;
}



/* --------------------------------------------------
   WHY US
-------------------------------------------------- */


.customweb-why {

    background: #fff;
}


.customweb-why-list {

    margin-top: 28px;

    display: grid;

    gap: 15px;
}


.customweb-why-list > div {

    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.customweb-why-list > div > span {

    width: 27px;

    height: 27px;

    flex: 0 0 27px;

    margin-top: 3px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    background: var(--customweb-primary);

    border-radius: 50%;

    font-size: 11px;
}


.customweb-why-list h3 {

    margin: 0 0 2px;

    color: var(--customweb-dark);

    font-size: 16px;
}


.customweb-why-list p {

    margin: 0;

    color: var(--customweb-muted);

    font-size: 13px;
}




/* --------------------------------------------------
   FAQ
-------------------------------------------------- */


.customweb-faq {

    background: #fffafd;
}


.customweb-faq-grid {

    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.customweb-faq-item {

    padding: 0 21px;

    background: #fff;

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

    border-radius: 16px;

    transition: 0.25s;
}


.customweb-faq-item[open] {

    border-color:
        rgba(255, 68, 149, 0.35);

    box-shadow:
        0 12px 35px rgba(46, 30, 39, 0.06);
}


.customweb-faq-item summary {

    position: relative;

    padding: 18px 0 18px 30px;

    color: var(--customweb-dark);

    cursor: pointer;

    font-size: 14px;

    font-weight: 800;

    list-style: none;
}


.customweb-faq-item summary::-webkit-details-marker {

    display: none;
}


.customweb-faq-item summary::after {

    content: "+";

    position: absolute;

    left: 0;

    top: 18px;

    color: var(--customweb-primary);

    font-size: 21px;
}


.customweb-faq-item[open] summary::after {

    content: "−";
}


.customweb-faq-item p {

    margin: 0;

    padding: 0 0 18px;

    color: var(--customweb-muted);

    font-size: 13px;
}



/* --------------------------------------------------
   CTA
-------------------------------------------------- */


.customweb-contact {

    background: #fff;
}


.customweb-cta {

    position: relative;

    min-height: 240px;

    padding: 45px 55px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 35px;

    color: #fff;

    background:

        linear-gradient(
            135deg,
            var(--customweb-primary),
            #f32279
        );

    border-radius: 30px;
}


.customweb-cta-shape {

    position: absolute;

    border:
        45px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.customweb-cta-shape-one {

    width: 260px;

    height: 260px;

    right: -90px;

    bottom: -120px;
}


.customweb-cta-shape-two {

    width: 190px;

    height: 190px;

    left: -70px;

    top: -90px;
}


.customweb-cta-content,
.customweb-cta-action {

    position: relative;

    z-index: 2;
}


.customweb-cta-content > span {

    font-size: 13px;

    font-weight: 700;

    opacity: 0.88;
}


.customweb-cta-content h2 {

    margin: 5px 0 7px;

    color: #fff;

    font-size: clamp(28px, 3vw, 41px);

    line-height: 1.5;
}


.customweb-cta-content p {

    margin: 0;

    color: #fff;

    opacity: 0.9;
}


.customweb-cta-action {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}


.customweb-cta-button {

    min-height: 52px;

    padding: 10px 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: var(--customweb-primary) !important;

    background: #fff;

    border-radius: 50px;

    font-weight: 900;

    white-space: nowrap;

    transition: 0.3s;
}


.customweb-cta-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(83, 5, 40, 0.18);
}


.customweb-cta-action small {

    color: #fff;

    font-size: 11px;

    opacity: 0.83;
}



/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */


@media (max-width: 1050px) {

    .customweb-hero-grid,
    .customweb-two-columns {

        gap: 45px;
    }


    .customweb-difference-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .customweb-project-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .customweb-portfolio-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .customweb-process-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 35px 18px;
    }


    .customweb-process-grid::before {

        display: none;
    }


    .customweb-hero-features {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



@media (max-width: 800px) {

    .customweb-section {

        padding: 65px 0;
    }


    .customweb-hero {

        padding-top: 55px;
    }


    .customweb-hero-grid,
    .customweb-two-columns {

        grid-template-columns: 1fr;
    }


    .customweb-hero-image {

        max-width: 650px;

        margin: 0 auto;
    }


    .customweb-float-one {

        right: 0;
    }


    .customweb-float-two {

        left: 0;
    }


    .customweb-compare-grid {

        grid-template-columns: 1fr;
    }


    .customweb-process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .customweb-stats-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .customweb-stat {

        border-left: 0;

        border-bottom:
            1px solid #eee4e9;
    }


    .customweb-faq-grid {

        grid-template-columns: 1fr;
    }


    .customweb-cta {

        grid-template-columns: 1fr;

        text-align: center;
    }

}



@media (max-width: 580px) {

    .customweb-container {

        width:
            min(100% - 26px, 1180px);
    }


    .customweb-hero {

        padding: 40px 0 55px;
    }


    .customweb-hero-grid {

        min-height: auto;
    }


    .customweb-hero-content h1 {

        font-size: 36px;
    }


    .customweb-hero-content > p {

        font-size: 15px;
    }


    .customweb-hero-features,
    .customweb-difference-grid,
    .customweb-project-grid,
    .customweb-process-grid,
    .customweb-portfolio-grid,
    .customweb-stats-grid {

        grid-template-columns: 1fr;
    }


    .customweb-hero-image {

        padding: 5px;
    }


    .customweb-hero-shape {

        width: 280px;

        height: 280px;
    }


    .customweb-floating-card {

        display: none;
    }


    .customweb-mini-feature {

        padding: 10px;

        background: #fff;

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

        border-radius: 14px;
    }


    .customweb-difference-card {

        min-height: auto;
    }


    .customweb-features-image,
    .customweb-why-image {

        padding: 7px;
    }


    .customweb-process-item {

        padding-bottom: 10px;
    }


    .customweb-stat {

        padding: 15px;
    }


    .customweb-cta {

        padding: 35px 20px;

        border-radius: 22px;
    }


    .customweb-cta-button {

        width: 100%;

        white-space: normal;
    }

}