/*====================================
    WORDPRESS DEVELOPMENT PAGE
====================================*/

.sm-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    background: var(--bg-primary);
}

.sm-hero-section .container {
    position: relative;
    z-index: 2;
}


/*====================================
    HERO TAG
====================================*/

.sm-hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    margin-bottom: 24px;

    border: 1px solid rgba(212,175,55,.25);
    border-radius: 50px;

    background: rgba(212,175,55,.06);

    color: var(--gold-primary);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}


/*====================================
    HERO TITLE
====================================*/

.sm-hero-title {
    max-width: 680px;
    margin: 0;

    color: var(--text-primary);

    font-size:clamp(2.4rem,5vw,3.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
}

.sm-hero-title span {
    display: block;
    margin-top: 8px;

    background: linear-gradient(
        135deg,
        var(--gold-primary),
        var(--gold-light),
        var(--gold-dark)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*====================================
    HERO DESCRIPTION
====================================*/

.sm-hero-description {
    max-width: 620px;
    margin: 28px 0 0;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.85;
}


/*====================================
    HERO ACTIONS
====================================*/

.sm-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.sm-hero-actions .btn {
    min-height: 52px;
}


/*====================================
    HERO POINTS
====================================*/

.sm-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sm-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 30px;

    background: rgba(255,255,255,.025);

    color: var(--text-secondary);

    font-size: 13px;
}

.sm-hero-points i {
    color: var(--gold-primary);
}


/*====================================
    HERO VISUAL
====================================*/

.sm-hero-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 560px;
}

.sm-hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212,175,55,.18),
        rgba(212,175,55,.06) 45%,
        transparent 72%
    );

    filter: blur(30px);
}

.sm-hero-image {
    position: relative;

    display: block;

    width: 100%;
    max-width: 560px;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 30px 60px rgba(0,0,0,.5))
        drop-shadow(0 0 35px rgba(212,175,55,.15));

    animation: wpHeroFloat 6s ease-in-out infinite;
}

@keyframes wpHeroFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/*====================================
    SECTION HEADING
====================================*/

.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}


/*====================================
    BENEFITS
====================================*/

.sm-benefits-section,
.sm-services-section,
.sm-process-section,
.sm-tech-section{
    position: relative;
    overflow: hidden;
}

.sm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.sm-benefit-card,
.sm-service-card,
.sm-process-card,
.sm-tech-card {
    background: var(--bg-card);

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 18px;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.sm-benefit-card {
    padding: 32px 25px;
    text-align: center;
}

.sm-benefit-card:hover,
.sm-service-card:hover,
.sm-process-card:hover,
.sm-tech-card:hover {
    transform: translateY(-7px);

    border-color: rgba(212,175,55,.35);

    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        0 0 25px rgba(212,175,55,.08);
}

.sm-benefit-icon,
.sm-service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 15px;

    background: rgba(212,175,55,.08);

    color: var(--gold-primary);

    font-size: 24px;
}

.sm-benefit-card h3,
.sm-service-card h3,
.sm-process-card h3 {
    color: var(--text-primary);

    font-size: 19px;
    font-weight: 700;
}

.sm-benefit-card p,
.sm-service-card p,
.sm-process-card p {
    margin: 12px 0 0;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.75;
}


/*====================================
    SERVICES
====================================*/

.sm-services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.sm-service-card {
    padding: 30px 25px;
}

.sm-service-card .sm-service-icon {
    margin-left: 0;
}

/*====================================
    PROCESS
====================================*/

.sm-process-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px;
}

.sm-process-card {
    position: relative;
    padding: 35px 22px 28px;
}

.sm-process-number {
    position: absolute;
    top: -15px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--gold-primary),
        var(--gold-light)
    );

    color: #111;

    font-size: 13px;
    font-weight: 800;

    box-shadow: 0 0 25px rgba(212,175,55,.25);
}

.sm-process-card > i {
    color: var(--gold-primary);
    font-size: 27px;
    margin-bottom: 20px;
}

/*====================================
    TECHNOLOGIES
====================================*/

.sm-tech-section {
    background: rgba(255,255,255,.015);
}

.sm-tech-grid {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 14px;
}

.sm-tech-card {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 20px 10px;

    text-align: center;
}

.sm-tech-card i {
    color: var(--gold-primary);
    font-size: 34px;
}

.sm-tech-card span {
    color: var(--text-primary);

    font-size: 13px;
    font-weight: 600;
}



/*====================================
    TABLET / LAPTOP
====================================*/

@media (max-width: 1199.98px) {

    .sm-benefits-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .sm-services-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .sm-process-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .sm-tech-grid {
        grid-template-columns: repeat(4,1fr);
    }

}


/*====================================
    TABLET
====================================*/

@media (max-width: 991.98px) {

    .sm-hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .sm-hero-title {
        font-size: clamp(2.8rem,7vw,4rem);
    }

    .sm-hero-visual {
        min-height: 450px;
        margin-top: 20px;
    }

    .sm-hero-image {
        max-width: 480px;
    }

    .sm-services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .sm-process-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/*====================================
    MOBILE
====================================*/

@media (max-width: 767.98px) {

    .sm-hero-section {
        padding: 105px 0 70px;
        text-align: center;
    }

    .sm-hero-title {
        font-size: 2.35rem;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .sm-hero-description {
        margin: 24px auto 0;
        font-size: 15px;
        line-height: 1.75;
    }

    .sm-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .sm-hero-actions .btn {
        width: 100%;
    }

    .sm-hero-points {
        justify-content: center;
    }

    .sm-hero-visual {
        min-height: auto;
        margin-top: 30px;
    }

    .sm-hero-image {
        max-width: 100%;
    }

    .sm-benefits-grid,
    .sm-services-grid,
    .sm-process-grid {
        grid-template-columns: 1fr;
    }

    .sm-tech-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cta-box {
        padding: 60px 22px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

}


/*====================================
    SMALL MOBILE
====================================*/

@media (max-width: 575.98px) {

    .sm-hero-title {
        font-size: 2rem;
    }

    .sm-hero-description {
        font-size: 14px;
    }

    .sm-tech-grid {
        gap: 10px;
    }

    .sm-tech-card {
        min-height: 110px;
    }

}
