/* 394852137 */
.promo-banner {
    background: linear-gradient(135deg, var(--main-color) 0%, #8451ff 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03125rem;
    width: 60%;
    margin: 0 auto 0.625rem auto;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.promo-banner img {
    width: 2.5rem;
    height: 2.5rem;
}

.promo-banner span.code {
    background-color: #fff;
    color: #ff4757;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.promo-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.3125rem;
    margin-bottom: 1.875rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 48rem) {
    .promo-banner {
        width: 90%;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .promo-banner img {
        width: 1.875rem;
        height: 1.875rem;
    }
}
/* 394852137 */

/* HP Start */
.hp_first-section .main-banner {
    min-height: 100vh;
    background: white;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hp_first-section .main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, #ffffff 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, #fff 0%, #fff 50%);
}

.hp_first-section .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hp_first-section .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hp_first-section .floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hp_first-section .floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.hp_first-section .floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

hp_first-section .hp_first-section .floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hp_first-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hp_first-section .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}

.hp_first-section .brand-tag {
    display: inline-block;
    background: var(--main-color);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.hp_first-section .main-heading {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--main-color);
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hp_first-section .gradient-text {
    background: linear-gradient(135deg, var(--main-color) 0%, #8451ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp_first-section .main-banner .description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hp_first-section .cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hp_first-section .btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.hp_first-section .btn-primary {
    background: linear-gradient(135deg, var(--main-color) 0%, #8451ff 100%);
    color: #ffffff;
}

.hp_first-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hp_first-section .btn-primary:hover::before {
    left: 100%;
}

.hp_first-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(182 132 255);
}

.hp_first-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hp_first-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hp_first-section .right-content {
    position: relative;
}

.hp_first-section .server-illustration {
    position: relative;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hp_first-section .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.hp_first-section .stats-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    color: #ffffff;
    animation: floatUp 2s ease-out infinite alternate;
}

.hp_first-section .stats-card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0.5s;
}

.hp_first-section .stats-card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1s;
}

.hp_first-section .stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--main-color);
    display: block;
}

.hp_first-section .stats-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--main-color);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hp_first-section .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hp_first-section .main-heading {
        font-size: 2.5rem;
    }

    .hp_first-section .description {
        font-size: 1.1rem;
    }

    .hp_first-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hp_first-section .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hp_first-section .stats-card-1,
    .stats-card-2 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 10px;
    }
}

/* HP End */

/* Domain Start */
.nyw_domain-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nyw_domain-section {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 60px 16px;
    position: relative;
    overflow: hidden;
}

.nyw_domain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.nyw_domain-section .container {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nyw_domain-section .header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.nyw_domain-section .header h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--main-color) 0%, #330091 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nyw_domain-section .header p {
    font-size: 0.95rem;
    color: #777;
    font-weight: 400;
    line-height: 1.5;
}

.nyw_domain-section .search-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 24px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.nyw_domain-section .search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.nyw_domain-section .search-section>* {
    position: relative;
    z-index: 1;
}

.nyw_domain-section .search-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.nyw_domain-section .search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.nyw_domain-section .search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 14px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.nyw_domain-section .search-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.nyw_domain-section .search-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--main-color) 0%, #330091 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.nyw_domain-section .search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nyw_domain-section .search-btn:hover::before {
    left: 100%;
}

.nyw_domain-section .search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.nyw_domain-section .search-btn:active {
    transform: translateY(-1px);
}

.nyw_domain-section .domain-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.nyw_domain-section .domain-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.nyw_domain-section .domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nyw_domain-section .domain-card:hover::before {
    opacity: 1;
}

.nyw_domain-section .domain-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.nyw_domain-section .domain-card>* {
    position: relative;
    z-index: 1;
}

.nyw_domain-section .domain-extension {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
}

.nyw_domain-section .domain-description {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.nyw_domain-section .price-section {
    margin-bottom: 20px;
}

.nyw_domain-section .price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--main-color) 0%, #330091 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.nyw_domain-section .price-period {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

.nyw_domain-section .buy-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--main-color) 0%, #330091 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nyw_domain-section .buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nyw_domain-section .buy-button:hover::before {
    left: 100%;
}

.nyw_domain-section .buy-button:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3);
}

.nyw_domain-section .buy-button:active {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 480px) {
    .nyw_domain-section {
        padding: 80px 20px;
    }

    .nyw_domain-section .container {
        max-width: 500px;
    }

    .nyw_domain-section .search-section {
        padding: 40px 32px;
    }

    .nyw_domain-section .search-form {
        flex-direction: row;
        gap: 16px;
    }

    .nyw_domain-section .search-input {
        flex: 1;
        padding: 18px 24px;
        font-size: 1.05rem;
    }

    .nyw_domain-section .search-btn {
        width: auto;
        padding: 18px 28px;
        font-size: 1.05rem;
    }
}

@media (min-width: 768px) {
    .nyw_domain-section .container {
        max-width: 600px;
    }

    .nyw_domain-section .header h2 {
        font-size: 2.5rem;
    }

    .nyw_domain-section .header p {
        font-size: 1.1rem;
    }

    .nyw_domain-section .domain-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .nyw_domain-section .container {
        max-width: 900px;
    }

    .nyw_domain-section .domain-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.success-popup h3 {
    color: #059669;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.success-popup p {
    color: #64748b;
    margin-bottom: 24px;
}

.close-btn {
    padding: 12px 24px;
    background: #059669;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

/* Domain End */

/* Pricing Start */
.nyw_pricing_section_1 {
    background: white;
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.nyw_pricing_section_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.nyw_pricing_section_1 * {
    box-sizing: border-box;
}

.nyw_pricing_section_1 .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.nyw_pricing_section_1 .header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 20px;
    color: white;
}

.nyw_pricing_section_1 .header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--main-color) 0%, #8451ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nyw_pricing_section_1 .header p {
    font-size: 1.25rem;
    color: #444;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.nyw_filter_tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.nyw_filter_tab {
    background: var(--main-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.nyw_filter_tab:hover {
    background: #2c43ad;
    color: #fff;
    transform: translateY(-2px);
}

.nyw_filter_tab.active {
    background: linear-gradient(135deg, var(--main-color) 0%, #8451ff 100%);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nyw_pricing_section_1 .cards-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: nyw_fadeInUp 0.8s ease forwards;
}

@keyframes nyw_fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricinghp_card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.pricinghp_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.pricinghp_card:hover::before {
    transform: scaleX(1);
}

.pricinghp_card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricinghp_card.popular {
    border: 2px solid #667eea;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.pricinghp_card.popular::before {
    transform: scaleX(1);
}

.pricinghp_popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: nyw_pulse 2s infinite;
}

@keyframes nyw_pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.pricinghp_card-header h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricinghp_price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricinghp_price del {
    color: #bbb;
    font-size: 0.5em;
    margin-right: 8px;
    text-decoration: line-through;
    font-weight: 400;
}

.pricinghp_price-period {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
}

.pricinghp_features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
    text-align: left;
}

.pricinghp_features li {
    padding: 12px 0;
    color: #2c3e50;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.pricinghp_features li:last-child {
    border-bottom: none;
}

.pricinghp_features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricinghp_features li:hover {
    color: #1a202c;
    padding-left: 30px;
}

.pricinghp_cta-button {
    background: linear-gradient(135deg, var(--main-color) 0%, #5a67d8 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.pricinghp_cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricinghp_cta-button:hover::before {
    left: 100%;
}

.pricinghp_cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.pricinghp_cta-button:active {
    transform: translateY(-1px);
}

#pricinghp_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: nyw_modalFadeIn 0.3s ease;
}

@keyframes nyw_modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#pricinghp_modal>div {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: nyw_modalSlideIn 0.3s ease;
}

@keyframes nyw_modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#pricinghp_modal span {
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    font-size: 2rem;
    color: #999;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#pricinghp_modal span:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

#pricinghp_modalTitle {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

#pricinghp_modal p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

#pricinghp_modalFeatures {
    list-style: none;
    padding: 0;
}

#pricinghp_modalFeatures li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #2c3e50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#pricinghp_modalFeatures li:last-child {
    border-bottom: none;
}

#pricinghp_modalFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nyw_pricing_section_1 .header h2 {
        font-size: 2.5rem;
    }

    .nyw_pricing_section_1 .cards-view {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricinghp_card {
        padding: 30px 25px;
    }

    .pricinghp_card.popular {
        transform: none;
    }

    .pricinghp_price {
        font-size: 2.5rem;
    }

    .nyw_filter_tabs {
        gap: 0.5rem;
    }

    .nyw_filter_tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    #pricinghp_modal>div {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .nyw_pricing_section_1 .container {
        padding: 0 15px;
    }

    .nyw_pricing_section_1 {
        padding: 40px 0;
    }

    .pricinghp_card {
        padding: 25px 20px;
    }

    #pricinghp_modal>div {
        padding: 25px 20px;
        width: 95%;
    }
}

.pricinghp_cta-button.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: nyw_spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes nyw_spin {
    to {
        transform: rotate(360deg);
    }
}

.nyw_filter_tab:focus,
.pricinghp_cta-button:focus {
    outline: 2px solid #f093fb;
    outline-offset: 2px;
}

.nyw_pricing_section_1 {
    scroll-behavior: smooth;
}

/* Pricing End */

/* 349314 Start */
.nyw_hero_section {
    background: linear-gradient(135deg, var(--main-color) 0%, rgba(102, 126, 234, 0.8) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.nyw_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.nyw_hero_content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.nyw_hero_title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: nyw_fadeInUp 1s ease-out;
}

.nyw_hero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
    animation: nyw_fadeInUp 1s ease-out 0.2s both;
}

.nyw_cta_button {
    display: inline-block;
    background: white;
    color: black;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: nyw_fadeInUp 1s ease-out 0.4s both;
}

.nyw_cta_button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: black;
    color: white;
}

.nyw_features_section {
    padding: 80px 20px;
    background: #fafafa;
}

.nyw_section_title {
    text-align: center;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 48px;
    font-weight: 600;
}

.nyw_features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.nyw_feature_card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.nyw_feature_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--main-color);
}

.nyw_feature_icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--main-color);
}

.nyw_feature_title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.nyw_feature_desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.nyw_testimonials_section {
    padding: 80px 20px;
    background: white;
}

.nyw_testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.nyw_testimonial_card {
    background: #fafafa;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--main-color);
    transition: all 0.3s ease;
}

.nyw_testimonial_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nyw_testimonial_text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
}

.nyw_testimonial_author {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.nyw_testimonial_star {
    color: #e7c200;
    font-size: 1.2rem;
    margin-top: 4px;
}

.nyw_faqsection {
    padding: 80px 20px;
    background: #fafafa;
    max-width: 800px;
    margin: 0 auto;
}

.nyw_faq_item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.nyw_faq_question {
    padding: 24px 28px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nyw_faq_question:hover {
    background: #fafafa;
}

.nyw_faq_question::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.nyw_faq_question.nyw_active::after {
    transform: translateY(-50%) rotate(45deg);
}

.nyw_faq_answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.nyw_faq_answer.nyw_active {
    padding: 20px 28px;
    max-height: 500px;
}

.nyw_faq_answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.nyw_stats_section {
    padding: 60px 20px;
    background: var(--main-color);
    color: white;
}

.nyw_stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.nyw_stat_number {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.nyw_stat_label {
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes nyw_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nyw_hero_title {
        font-size: 2.2rem;
    }

    .nyw_section_title {
        font-size: 1.8rem;
    }

    .nyw_features_grid,
    .nyw_testimonials_grid {
        grid-template-columns: 1fr;
    }

    .nyw_hero_section {
        padding: 60px 20px;
    }

    .nyw_features_section {
        padding: 60px 20px;
    }

    .nyw_testimonials_section {
        padding: 60px 20px;
    }

    .nyw_faqsection {
        padding: 60px 20px;
    }
}
/* 349314 End */


.xzc7mn2x .hosting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

.xzc7mn2x .hosting-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #e0e7ff;
}

.xzc7mn2x .hosting-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
}

.xzc7mn2x .hosting-hero p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.xzc7mn2x .hosting-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.xzc7mn2x .hosting-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.xzc7mn2x .hosting-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.xzc7mn2x .hosting-card h2 {
    color: var(--main-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.xzc7mn2x .hosting-card h3 {
    color: var(--main-color);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.xzc7mn2x .hosting-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.xzc7mn2x .hosting-feature-list {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.xzc7mn2x .hosting-feature-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
}

.xzc7mn2x .hosting-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/*
.xzc7mn2x .hosting-highlight {
    background: linear-gradient(120deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: #1e40af;
}
*/

.xzc7mn2x .hosting-faq {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.xzc7mn2x .hosting-faq h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.xzc7mn2x .hosting-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.xzc7mn2x .hosting-faq-question {
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.xzc7mn2x .hosting-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e0e7ff;
    margin-top: 30px;
}

.xzc7mn2x .hosting-cta h2 {
    color: var(--main-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.xzc7mn2x .hosting-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.xzc7mn2x .hosting-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .xzc7mn2x .hosting-hero h2 {
        font-size: 2rem;
    }

    .xzc7mn2x .hosting-hero {
        padding: 30px 20px;
    }

    .xzc7mn2x .hosting-card,
    .xzc7mn2x .hosting-faq,
    .xzc7mn2x .hosting-cta {
        padding: 25px;
    }

    .xzc7mn2x .hosting-content-grid {
        grid-template-columns: 1fr;
    }
}