﻿/*==========================================================
WEBSITE DESIGNING HERO
==========================================================*/

.webdesign-hero {
    padding: 100px 0;
    background: #f8fbff;
}

.webdesign-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.webdesign-hero-content h1 {
    margin: 15px 0 25px;
    color: #111827;
    font-size: 56px;
    line-height: 1.15;
}

    .webdesign-hero-content h1 span {
        display: block;
        color: #2563eb;
    }

.webdesign-hero-content p {
    max-width: 650px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.webdesign-hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.webdesign-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

    .webdesign-call-btn:hover {
        border-color: #2563eb;
        color: #2563eb;
    }

.webdesign-trust {
    display: flex;
    gap: 40px;
    margin-top: 45px;
}

    .webdesign-trust div {
        display: flex;
        flex-direction: column;
    }

    .webdesign-trust strong {
        color: #2563eb;
        font-size: 25px;
    }

    .webdesign-trust span {
        margin-top: 4px;
        color: #6b7280;
        font-size: 13px;
    }


/*==========================================================
WEBSITE MOCKUP
==========================================================*/

.webdesign-hero-visual {
    padding: 20px;
}

.webdesign-browser {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(15,23,42,.15);
}

.browser-top {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 18px;
    background: #1f2937;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

    .browser-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #64748b;
    }

.browser-address {
    flex: 1;
    padding: 8px 15px;
    border-radius: 6px;
    background: #374151;
    color: #cbd5e1;
    font-size: 12px;
}

.website-preview {
    min-height: 390px;
    background: #fff;
}

.preview-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #edf0f4;
    color: #64748b;
    font-size: 10px;
}

    .preview-navbar strong {
        color: #2563eb;
        font-size: 14px;
    }

.preview-hero {
    padding: 45px 35px;
    background: #f8fbff;
}

    .preview-hero small {
        color: #2563eb;
        font-size: 9px;
        font-weight: 700;
    }

    .preview-hero h3 {
        max-width: 320px;
        margin: 10px 0;
        color: #111827;
        font-size: 28px;
        line-height: 1.2;
    }

    .preview-hero p {
        color: #6b7280;
        font-size: 12px;
    }

.preview-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 17px;
    border-radius: 5px;
    background: #2563eb;
    color: #fff;
    font-size: 10px;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    padding: 22px 25px;
}

    .preview-cards span {
        height: 55px;
        border-radius: 7px;
        background: #eef4ff;
    }


/*==========================================================
SECTION HEADING
==========================================================*/

.section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

    .section-heading h2 {
        margin: 15px 0 18px;
        color: #111827;
        font-size: 40px;
        line-height: 1.3;
    }

        .section-heading h2 span {
            color: #2563eb;
        }

    .section-heading p {
        color: #6b7280;
        line-height: 1.8;
    }


/*==========================================================
WHY WEBSITE
==========================================================*/

.webdesign-why {
    padding: 100px 0;
}

.webdesign-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 55px;
}

.webdesign-benefit {
    padding: 32px;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    background: #fff;
    transition: .3s;
}

    .webdesign-benefit:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(15,23,42,.07);
    }

.webdesign-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #eef5ff;
    font-size: 22px;
}

.webdesign-benefit h3 {
    margin-bottom: 12px;
    color: #111827;
    font-size: 20px;
}

.webdesign-benefit p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}


/*==========================================================
PRICING
==========================================================*/

.webdesign-pricing {
    padding: 100px 0;
    background: #f8fbff;
}

.webdesign-price-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 55px;
}

.webdesign-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    background: #fff;
    transition: .3s;
}

    .webdesign-price-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 45px rgba(15,23,42,.08);
    }

    .webdesign-price-card.popular {
        border: 2px solid #2563eb;
    }

.webdesign-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 18px;
    border-radius: 30px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.webdesign-price-card h3 {
    margin-bottom: 10px;
    color: #111827;
    font-size: 24px;
}

.webdesign-price-description {
    min-height: 70px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.webdesign-price {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

    .webdesign-price small {
        display: block;
        margin-bottom: 5px;
        color: #6b7280;
        font-size: 12px;
    }

    .webdesign-price strong {
        color: #2563eb;
        font-size: 38px;
    }

.webdesign-price-card ul {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.webdesign-price-card li {
    padding: 9px 0;
    border-bottom: 1px solid #f2f3f5;
    color: #4b5563;
    font-size: 14px;
}

    .webdesign-price-card li::before {
        content: "✓";
        margin-right: 9px;
        color: #2563eb;
        font-weight: 700;
    }

.webdesign-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: auto;
    border-radius: 9px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

    .webdesign-price-btn:hover {
        background: #1d4ed8;
        color: #fff;
    }

.webdesign-pricing-note {
    margin-top: 30px;
    color: #6b7280;
    text-align: center;
    font-size: 13px;
}


/*==========================================================
WEBSITE SOLUTIONS
==========================================================*/

.webdesign-solutions {
    padding: 100px 0;
}

.webdesign-solution-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 55px;
}

.webdesign-solution-card {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    transition: .3s;
}

    .webdesign-solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(15,23,42,.07);
    }

    .webdesign-solution-card > span {
        color: #2563eb;
        font-size: 13px;
        font-weight: 700;
    }

    .webdesign-solution-card h3 {
        margin: 15px 0 10px;
        color: #111827;
        font-size: 20px;
    }

    .webdesign-solution-card p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }


/*==========================================================
FEATURES
==========================================================*/

.webdesign-features {
    padding: 100px 0;
    background: #f8fbff;
}

.webdesign-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

    .webdesign-feature-grid h2 {
        margin: 15px 0 20px;
        color: #111827;
        font-size: 40px;
        line-height: 1.3;
    }

        .webdesign-feature-grid h2 span {
            color: #2563eb;
        }

    .webdesign-feature-grid p {
        color: #6b7280;
        line-height: 1.8;
    }

.webdesign-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .webdesign-check-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #fff;
    }

    .webdesign-check-list span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 27px;
        height: 27px;
        border-radius: 50%;
        background: #eef5ff;
        color: #2563eb;
        font-weight: 700;
    }

    .webdesign-check-list strong {
        color: #374151;
        font-size: 13px;
    }


/*==========================================================
PROCESS
==========================================================*/

.webdesign-process {
    padding: 100px 0;
}

.webdesign-process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 55px;
}

    .webdesign-process-grid > div {
        padding: 30px;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
    }

    .webdesign-process-grid span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
        border-radius: 50%;
        background: #eef5ff;
        color: #2563eb;
        font-weight: 700;
    }

    .webdesign-process-grid h3 {
        margin-bottom: 10px;
        color: #111827;
        font-size: 20px;
    }

    .webdesign-process-grid p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }


/*==========================================================
CTA
==========================================================*/

.webdesign-cta {
    padding: 90px 0;
    background: #111827;
}

.webdesign-cta-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

    .webdesign-cta-content h2 {
        margin: 15px 0 20px;
        color: #fff;
        font-size: 42px;
        line-height: 1.3;
    }

        .webdesign-cta-content h2 span {
            color: #60a5fa;
        }

    .webdesign-cta-content p {
        color: #cbd5e1;
        font-size: 17px;
        line-height: 1.8;
    }

.webdesign-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:992px) {

    .webdesign-hero {
        padding: 75px 0;
    }

    .webdesign-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .webdesign-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .webdesign-hero-buttons {
        justify-content: center;
    }

    .webdesign-trust {
        justify-content: center;
    }

    .webdesign-hero-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .webdesign-benefit-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .webdesign-price-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .webdesign-solution-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .webdesign-feature-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .webdesign-process-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


@media(max-width:768px) {

    .webdesign-hero {
        padding: 60px 0;
    }

    .webdesign-hero-content h1 {
        font-size: 40px;
    }

    .webdesign-hero-content p {
        font-size: 16px;
    }

    .webdesign-hero-buttons {
        flex-direction: column;
    }

    .webdesign-call-btn {
        width: 100%;
    }

    .webdesign-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .webdesign-benefit-grid {
        grid-template-columns: 1fr;
    }

    .webdesign-solution-grid {
        grid-template-columns: 1fr;
    }

    .webdesign-process-grid {
        grid-template-columns: 1fr;
    }

    .webdesign-feature-grid h2 {
        font-size: 32px;
    }

    .webdesign-check-list {
        grid-template-columns: 1fr;
    }

    .webdesign-cta-content h2 {
        font-size: 32px;
    }

    .webdesign-cta-buttons {
        flex-direction: column;
    }
}


@media(max-width:480px) {

    .webdesign-hero-content h1 {
        font-size: 34px;
    }

    .webdesign-trust {
        grid-template-columns: 1fr;
    }

        .webdesign-trust div {
            align-items: center;
        }

    .browser-top {
        padding: 12px;
    }

    .website-preview {
        min-height: 340px;
    }

    .preview-navbar div {
        display: none;
    }

    .preview-hero {
        padding: 35px 25px;
    }

        .preview-hero h3 {
            font-size: 24px;
        }

    .webdesign-price strong {
        font-size: 34px;
    }
}
