* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    font-weight: 400;
}

* a {
    text-decoration: none;
    color: white;
}


html {
    scroll-behavior: smooth;
}

::selection {
    background: #e25cff;
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #f09dff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e25cff;
}


/* Hero Start */
.nyw_herostn_container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nyw_herostn_bg_pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 50% 15%, rgba(139, 92, 246, 0.04) 0%, transparent 35%);
    animation: nyw_herostn_pattern_move 25s ease-in-out infinite;
}

@keyframes nyw_herostn_pattern_move {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    33% { 
        transform: translate(30px, -15px) scale(1.05); 
    }
    66% { 
        transform: translate(-20px, 25px) scale(0.95); 
    }
}

.nyw_herostn_content {
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.nyw_herostn_title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    animation: nyw_herostn_fadeInUp 0.8s ease-out;
}

.nyw_herostn_title span {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nyw_herostn_subtitle {
    font-size: 1.35rem;
    color: #64748b;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: nyw_herostn_fadeInUp 0.8s ease-out 0.2s both;
}

.nyw_herostn_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: nyw_herostn_fadeInUp 0.8s ease-out 0.4s both;
}

.nyw_herostn_btn_primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.nyw_herostn_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.7s;
}

.nyw_herostn_btn_primary:hover::before {
    left: 100%;
}

.nyw_herostn_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.3);
}

.nyw_herostn_btn_secondary {
    padding: 16px 36px;
    background: white;
    color: #3b82f6;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nyw_herostn_btn_secondary:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.nyw_herostn_search_section {
    max-width: 800px;
    margin: 0 auto;
    animation: nyw_herostn_fadeInUp 0.8s ease-out 0.6s both;
}

.nyw_herostn_search_wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 8px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f1f5f9;
}

.nyw_herostn_search_wrapper:focus-within {
    box-shadow: 
        0 15px 30px rgba(59, 130, 246, 0.15),
        0 0 0 2px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.nyw_herostn_search_form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nyw_herostn_search_input_wrapper {
    flex: 1;
    position: relative;
}

.nyw_herostn_search_input {
    width: 100%;
    border: none;
    outline: none;
    padding: 18px 24px;
    font-size: 1.1rem;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: inherit;
    border: 1px solid #e2e8f0;
}

.nyw_herostn_search_input:focus {
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nyw_herostn_search_input::placeholder {
    color: #94a3b8;
}

.nyw_herostn_search_btn {
    padding: 18px 32px;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.2);
}

.nyw_herostn_search_btn:hover:not(:disabled) {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.nyw_herostn_search_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nyw_herostn_search_icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nyw_herostn_suggestions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.nyw_herostn_suggestion {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nyw_herostn_suggestion:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.2);
}

.nyw_herostn_disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
}

.nyw_herostn_disclaimer a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nyw_herostn_disclaimer a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.nyw_herostn_error {
    margin-top: 12px;
    color: #dc2626;
    font-size: 0.9rem;
    text-align: center;
    display: none;
    animation: nyw_herostn_shake 0.5s;
    background: rgba(220, 38, 38, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

@keyframes nyw_herostn_shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes nyw_herostn_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nyw_herostn_particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nyw_herostn_particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: nyw_herostn_float 15s infinite linear;
}

@keyframes nyw_herostn_float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .nyw_herostn_container {
        padding: 30px 16px;
    }

    .nyw_herostn_title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .nyw_herostn_subtitle {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }

    .nyw_herostn_buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 50px;
    }

    .nyw_herostn_btn_primary,
    .nyw_herostn_btn_secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .nyw_herostn_search_form {
        flex-direction: column;
        gap: 10px;
    }

    .nyw_herostn_search_btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .nyw_herostn_suggestions {
        gap: 10px;
    }

    .nyw_herostn_suggestion {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nyw_herostn_title {
        font-size: 2rem;
    }

    .nyw_herostn_subtitle {
        font-size: 1rem;
    }
}
/* Hero End */


/* Pricing Start */
.nyw-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nyw-pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.nyw-pricing-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.nyw-pricing-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.nyw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.nyw-pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f8f9fa;
}

.nyw-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.nyw-pricing-card.popular {
    border-color: #3498db;
    transform: scale(1.05);
}

.nyw-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.nyw-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.nyw-pricing-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.nyw-pricing-price {
    margin-bottom: 25px;
}

.nyw-price-main {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.nyw-price-currency {
    font-size: 1.5rem;
    margin-top: 5px;
}

.nyw-price-period {
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 15px;
}

.nyw-price-saving {
    background: #e8f6ff;
    color: #3498db;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.nyw-pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.nyw-pricing-features li {
    padding: 8px 0;
    color: #5a6c7d;
    border-bottom: 1px solid #f1f2f6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nyw-pricing-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
}

.nyw-pricing-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #3498db;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.nyw-pricing-button:hover {
    background: #2980b9;
}

.nyw-pricing-card.popular .nyw-pricing-button {
    background: #e74c3c;
}

.nyw-pricing-card.popular .nyw-pricing-button:hover {
    background: #c0392b;
}

.nyw-price-comparison {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.nyw-comparison-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.nyw-comparison-savings {
    color: #27ae60;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nyw-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .nyw-pricing-card.popular {
        transform: none;
    }
    
    .nyw-pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}
/* Pricing End */


/* Partners Start */
.nyw_partners_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding: 60px 0;
}

.nyw_partners_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nyw_partners_header {
    text-align: center;
    margin-bottom: 40px;
}

.nyw_partners_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.nyw_partners_subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.nyw_partners_slider_wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.nyw_partners_slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nyw_partners_slider::-webkit-scrollbar {
    display: none;
}

.nyw_partners_slider:active {
    cursor: grabbing;
}

.nyw_partners_track {
    display: flex;
    animation: nyw_partners_scroll 30s linear infinite;
    width: fit-content;
}

.nyw_partners_slider:hover .nyw_partners_track {
    animation-play-state: paused;
}

.nyw_partners_item {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nyw_partners_logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.nyw_partners_logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes nyw_partners_scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nyw_partners_section {
        padding: 40px 0;
    }

    .nyw_partners_title {
        font-size: 2rem;
    }

    .nyw_partners_subtitle {
        font-size: 1rem;
    }
    
    .nyw_partners_item {
        padding: 0 30px;
    }
    
    .nyw_partners_logo {
        height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .nyw_partners_section {
        padding: 30px 0;
    }

    .nyw_partners_title {
        font-size: 1.75rem;
    }

    .nyw_partners_subtitle {
        font-size: 0.95rem;
    }
    
    .nyw_partners_item {
        padding: 0 20px;
    }
    
    .nyw_partners_logo {
        height: 40px;
        max-width: 100px;
    }
}
/* Partners End */

/* Features Start */
.nyw_features_section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.nyw_features_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nyw_features_header {
    text-align: center;
    margin-bottom: 60px;
}

.nyw_features_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.nyw_features_subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.nyw_features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.nyw_features_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.nyw_features_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nyw_features_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.nyw_features_icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #000 0%, #161616 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.nyw_features_card:hover .nyw_features_icon {
    transform: scale(1.1) rotate(5deg);
}

.nyw_features_icon svg {
    color: #ffffff;
    width: 40px;
    height: 40px;
}

.nyw_features_card_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.nyw_features_card_text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .nyw_features_section {
        padding: 60px 0;
    }

    .nyw_features_title {
        font-size: 2.2rem;
    }

    .nyw_features_subtitle {
        font-size: 1.1rem;
    }

    .nyw_features_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nyw_features_card {
        padding: 35px 25px;
    }

    .nyw_features_icon {
        width: 70px;
        height: 70px;
    }

    .nyw_features_icon svg {
        width: 35px;
        height: 35px;
    }

    .nyw_features_card_title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .nyw_features_section {
        padding: 40px 0;
    }

    .nyw_features_header {
        margin-bottom: 40px;
    }

    .nyw_features_title {
        font-size: 1.9rem;
    }

    .nyw_features_subtitle {
        font-size: 1rem;
    }

    .nyw_features_card {
        padding: 30px 20px;
    }

    .nyw_features_icon {
        width: 65px;
        height: 65px;
    }

    .nyw_features_icon svg {
        width: 32px;
        height: 32px;
    }

    .nyw_features_card_title {
        font-size: 1.2rem;
    }

    .nyw_features_card_text {
        font-size: 0.95rem;
    }
}
/* Features End */

/* FAQ Start */
.nyw_faq_section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.nyw_faq_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.nyw_faq_header {
    text-align: center;
    margin-bottom: 50px;
}

.nyw_faq_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.nyw_faq_subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin: 0;
}

.nyw_faq_search_wrapper {
    position: relative;
    margin-bottom: 40px;
}

.nyw_faq_search_box {
    position: relative;
    display: flex;
    align-items: center;
}

.nyw_faq_search_icon {
    position: absolute;
    left: 20px;
    color: #a0aec0;
    pointer-events: none;
}

.nyw_faq_search_input {
    width: 100%;
    padding: 18px 55px 18px 55px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.nyw_faq_search_input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.nyw_faq_search_clear {
    position: absolute;
    right: 20px;
    cursor: pointer;
    color: #a0aec0;
    transition: color 0.2s ease;
    padding: 5px;
}

.nyw_faq_search_clear:hover {
    color: #718096;
}

.nyw_faq_search_results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.nyw_faq_search_results::-webkit-scrollbar {
    width: 8px;
}

.nyw_faq_search_results::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.nyw_faq_search_results::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.nyw_faq_search_result_item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f7fafc;
    transition: background 0.2s ease;
}

.nyw_faq_search_result_item:last-child {
    border-bottom: none;
}

.nyw_faq_search_result_item:hover {
    background: #f7fafc;
}

.nyw_faq_search_result_question {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.nyw_faq_search_result_answer {
    font-size: 0.9rem;
    color: #718096;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nyw_faq_highlight {
    background: #fef3c7;
    padding: 2px 0;
    font-weight: 600;
}

.nyw_faq_items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nyw_faq_item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nyw_faq_item:hover {
    border-color: #cbd5e0;
}

.nyw_faq_item.nyw_faq_active {
    border-color: #667eea;
}

.nyw_faq_question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    transition: background 0.2s ease;
}

.nyw_faq_question:hover {
    background: #f7fafc;
}

.nyw_faq_question_text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.nyw_faq_icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nyw_faq_item.nyw_faq_active .nyw_faq_icon {
    background: #667eea;
    transform: rotate(180deg);
}

.nyw_faq_icon svg {
    width: 16px;
    height: 16px;
    color: #4a5568;
    transition: color 0.3s ease;
}

.nyw_faq_item.nyw_faq_active .nyw_faq_icon svg {
    color: #ffffff;
}

.nyw_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.nyw_faq_item.nyw_faq_active .nyw_faq_answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.nyw_faq_answer_text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

.nyw_faq_no_results {
    text-align: center;
    padding: 60px 20px;
}

.nyw_faq_no_results svg {
    color: #cbd5e0;
    margin-bottom: 20px;
}

.nyw_faq_no_results h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.nyw_faq_no_results p {
    color: #718096;
    margin: 0;
}

@media (max-width: 768px) {
    .nyw_faq_section {
        padding: 60px 0;
    }

    .nyw_faq_title {
        font-size: 2.2rem;
    }

    .nyw_faq_subtitle {
        font-size: 1.1rem;
    }

    .nyw_faq_search_input {
        padding: 16px 50px 16px 50px;
        font-size: 0.95rem;
    }

    .nyw_faq_question {
        padding: 20px 20px;
    }

    .nyw_faq_question_text {
        font-size: 1rem;
    }

    .nyw_faq_item.nyw_faq_active .nyw_faq_answer {
        padding: 0 20px 20px 20px;
    }

    .nyw_faq_answer_text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .nyw_faq_section {
        padding: 40px 0;
    }

    .nyw_faq_title {
        font-size: 1.9rem;
    }

    .nyw_faq_subtitle {
        font-size: 1rem;
    }

    .nyw_faq_search_input {
        padding: 14px 45px 14px 45px;
    }

    .nyw_faq_question {
        padding: 18px 15px;
    }

    .nyw_faq_question_text {
        font-size: 0.95rem;
    }

    .nyw_faq_item.nyw_faq_active .nyw_faq_answer {
        padding: 0 15px 18px 15px;
    }

    .nyw_faq_icon {
        width: 24px;
        height: 24px;
    }

    .nyw_faq_icon svg {
        width: 14px;
        height: 14px;
    }
}
/* FAQ End */

/* CTA Start */
.nyw_cta_section {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

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

.nyw_cta_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.nyw_cta_header {
    text-align: center;
    margin-bottom: 60px;
}

.nyw_cta_title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.nyw_cta_subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.nyw_cta_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.nyw_cta_card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nyw_cta_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.nyw_cta_card_featured {
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    background: rgba(251, 191, 36, 0.05);
}

.nyw_cta_card_featured:hover {
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.08);
}

.nyw_cta_card_icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f2aa24 0%, #7450aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.nyw_cta_card:hover .nyw_cta_card_icon {
    transform: scale(1.1) rotate(5deg);
}

.nyw_cta_card_icon svg {
    color: #ffffff;
}

.nyw_cta_card_badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.nyw_cta_badge_featured {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

.nyw_cta_card_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.nyw_cta_card_description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
}

.nyw_cta_card_price {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nyw_cta_price_currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.nyw_cta_price_amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 5px;
}

.nyw_cta_price_period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.nyw_cta_card_features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.nyw_cta_card_features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.nyw_cta_card_features li svg {
    color: #667eea;
    flex-shrink: 0;
}

.nyw_cta_card_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nyw_cta_button_primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.nyw_cta_button_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.nyw_cta_button_featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000;
}

.nyw_cta_button_featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.5);
}

.nyw_cta_card_button svg {
    transition: transform 0.3s ease;
}

.nyw_cta_card_button:hover svg {
    transform: translateX(5px);
}

.nyw_cta_footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nyw_cta_footer_text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.nyw_cta_footer_link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nyw_cta_footer_link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .nyw_cta_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nyw_cta_section {
        padding: 60px 0;
    }

    .nyw_cta_title {
        font-size: 2.2rem;
    }

    .nyw_cta_subtitle {
        font-size: 1.1rem;
    }

    .nyw_cta_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nyw_cta_card {
        padding: 35px 25px;
    }

    .nyw_cta_card_icon {
        width: 70px;
        height: 70px;
    }

    .nyw_cta_card_icon svg {
        width: 35px;
        height: 35px;
    }

    .nyw_cta_card_title {
        font-size: 1.5rem;
    }

    .nyw_cta_price_amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .nyw_cta_section {
        padding: 40px 0;
    }

    .nyw_cta_header {
        margin-bottom: 40px;
    }

    .nyw_cta_title {
        font-size: 1.9rem;
    }

    .nyw_cta_subtitle {
        font-size: 1rem;
    }

    .nyw_cta_card {
        padding: 30px 20px;
    }

    .nyw_cta_card_icon {
        width: 65px;
        height: 65px;
    }

    .nyw_cta_card_icon svg {
        width: 32px;
        height: 32px;
    }

    .nyw_cta_card_title {
        font-size: 1.3rem;
    }

    .nyw_cta_card_description {
        font-size: 0.95rem;
    }

    .nyw_cta_price_amount {
        font-size: 2.2rem;
    }

    .nyw_cta_card_button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .nyw_cta_footer_text {
        font-size: 1rem;
    }

    .nyw_cta_footer_link {
        font-size: 1rem;
        padding: 10px 24px;
    }
}
/* CTA End */


/* Section B Start */
.nyw_sectionb_wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, system-ui, sans-serif;
    color: #333;
    line-height: 1.7;
}

.nyw_sectionb_title {
    font-size: 2.8em;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.nyw_sectionb_subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.nyw_sectionb_content h2 {
    font-size: 2em;
    color: #1a1a1a;
    margin: 50px 0 20px 0;
    font-weight: 600;
    border-left: 5px solid #6366f1;
    padding-left: 15px;
}

.nyw_sectionb_content h3 {
    font-size: 1.5em;
    color: #2d3748;
    margin: 35px 0 15px 0;
    font-weight: 600;
}

.nyw_sectionb_content p {
    font-size: 1.1em;
    color: #4a5568;
    margin-bottom: 20px;
}

.nyw_sectionb_box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #6366f1;
}

.nyw_sectionb_box p {
    margin: 0;
    color: #555;
}

.nyw_sectionb_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.nyw_sectionb_card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.nyw_sectionb_card h4 {
    color: #1a1a1a;
    font-size: 1.2em;
    margin: 15px 0 10px 0;
}

.nyw_sectionb_card .nyw_sectionb_num {
    font-size: 2.5em;
    font-weight: 700;
    color: #6366f1;
    margin: 10px 0;
}

.nyw_sectionb_card p {
    font-size: 0.95em;
    color: #666;
    margin: 0;
}

.nyw_sectionb_list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.nyw_sectionb_list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #4a5568;
    font-size: 1.05em;
}

.nyw_sectionb_list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
}

.nyw_sectionb_divider {
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
    border-radius: 2px;
    margin: 50px 0;
    opacity: 0.3;
}

.nyw_sectionb_highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0;
}

.nyw_sectionb_highlight h3 {
    color: white;
    margin-top: 0;
}

.nyw_sectionb_highlight p {
    color: rgba(255,255,255,0.95);
}

.nyw_sectionb_decorator {
    width: 60px;
    height: 4px;
    background: #6366f1;
    margin: 20px 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nyw_sectionb_title {
        font-size: 2em;
    }
    
    .nyw_sectionb_grid {
        grid-template-columns: 1fr;
    }
}
/* Section B End */