.start-now-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 120px 8%;
    overflow: hidden;
    isolation: isolate;
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.18) 1px, transparent 1px);
    background-size: 52px 52px;
}

.start-now-glow {
    display: none;
}

.start-now-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.start-now-title {
    max-width: 1180px;
    margin: 0 auto 22px;
    color: #111827;
    font-size: clamp(34px, 4.15vw, 58px);
    font-weight: 900;
    line-height: 1.65;
    letter-spacing: -2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 14px;
    overflow: visible;
}

.start-now-rotator {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 clamp(230px, 25vw, 390px);
    width: clamp(230px, 25vw, 390px);
    min-width: 0;
    height: 86px;
    margin: 0 4px;
    vertical-align: middle;
    overflow: hidden;
}

.start-now-word {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 24px;
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    filter: blur(8px);
    white-space: nowrap;
    pointer-events: none;
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.start-now-word.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.start-now-word.leaving {
    opacity: 0;
    transform: translateY(-28px) scale(0.96);
    filter: blur(8px);
}

.start-now-word::before {
    content: "";
    position: absolute;
    inset: 8px 6px;
    z-index: -1;
    border-radius: 24px;
    opacity: 0.18;
}

.start-now-word::after {
    content: "";
    position: absolute;
    right: 14px;
    left: 14px;
    bottom: 6px;
    height: 10px;
    z-index: -1;
    border-radius: 999px;
    opacity: 0.40;
    filter: blur(10px);
}

.design-site {
    color: #7DA78C;
}

.design-site::before,
.design-site::after {
    background: #7DA78C;
}

.redesign-site {
    color: #F96E5B;
}

.redesign-site::before,
.redesign-site::after {
    background: #F96E5B;
}

.wordpress-site {
    color: #D96868;
}

.wordpress-site::before,
.wordpress-site::after {
    background: #D96868;
}

.logo-design {
    color: #744577;
}

.logo-design::before,
.logo-design::after {
    background: #744577;
}

.banner-design {
    color: #547792;
}

.banner-design::before,
.banner-design::after {
    background: #547792;
}

.start-now-content p {
    max-width: 820px;
    margin: 0 auto 38px;
    color: #475569;
    font-size: 20px;
    font-weight: 650;
    line-height: 2.1;
}

.start-now-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 18px 44px;
    overflow: hidden;
    border-radius: 18px;
    background: #D6DAC8;
    color: #5f6652;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(214, 218, 200, 0.48);
    transition: 0.3s ease;
    animation: startNowButtonPulse 2.2s infinite ease-out;
}

.start-now-btn::after {
    content: "";
    position: absolute;
    top: -70%;
    right: -95%;
    width: 34%;
    height: 240%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.58),
        transparent
    );
    transform: rotate(25deg);
    animation: startButtonShine 6s infinite ease-in-out;
}

@keyframes startNowButtonPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(214, 218, 200, 0.72),
            0 18px 44px rgba(214, 218, 200, 0.48);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(214, 218, 200, 0),
            0 18px 44px rgba(214, 218, 200, 0.48);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(214, 218, 200, 0),
            0 18px 44px rgba(214, 218, 200, 0.48);
    }
}

.start-now-btn:hover {
    transform: translateY(-4px);
    background: #c8ceb8;
    color: #515744;
    box-shadow:
        0 0 0 14px rgba(214, 218, 200, 0.22),
        0 24px 58px rgba(214, 218, 200, 0.58);
}

/* Responsive */

@media (max-width: 1300px) {
    .start-now-title {
        max-width: 980px;
        font-size: clamp(32px, 4vw, 48px);
        line-height: 1.7;
    }

    .start-now-rotator {
        flex-basis: clamp(220px, 28vw, 340px);
        width: clamp(220px, 28vw, 340px);
        height: 78px;
    }
}

@media (max-width: 900px) {
    .start-now-section {
        min-height: auto;
        padding: 90px 7%;
        background-size: 44px 44px;
    }

    .start-now-title {
        max-width: 720px;
        font-size: 38px;
        line-height: 1.75;
        letter-spacing: -1px;
        gap: 4px 10px;
    }

    .start-now-rotator {
        flex: 0 0 270px;
        width: 270px;
        height: 66px;
        margin: 4px auto;
    }

    .start-now-content p {
        font-size: 17px;
    }
}

@media (max-width: 620px) {
    .start-now-section {
        padding: 76px 18px;
        background-size: 36px 36px;
    }

    .start-now-title {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.85;
        display: block;
    }

    .start-now-rotator {
        display: flex;
        width: 230px;
        height: 58px;
        margin: 8px auto;
    }

    .start-now-word {
        padding: 4px 12px;
        border-radius: 18px;
    }

    .start-now-content p {
        font-size: 15px;
    }

    .start-now-btn {
        width: 100%;
        min-height: 58px;
        padding: 16px 24px;
    }
}