.pcv2index_main {
    font-family: 'Epilogue', sans-serif;
    color: #0f172a;
    background: #fff;
    overflow-x: hidden;
}

.pcv2index_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO SLIDER */
.pcv2index_hero_slider {
    position: relative;
    width: 100%;
    height: 720px;
    background: #fff;
}

.pcv2index_slides_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.pcv2index_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
}

.pcv2index_slide.active {
    opacity: 1;
    visibility: visible;
}

.pcv2index_slide_inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.pcv2index_hero_content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.pcv2index_slide.active .pcv2index_hero_content {
    opacity: 1;
    transform: translateY(0);
}

.pcv2index_hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.05);
    color: #0066ff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pcv2index_hero_title {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.pcv2index_hero_title mark {
    background: transparent;
    color: #0066ff;
    background: linear-gradient(135deg, #0066ff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pcv2index_hero_desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
}

.pcv2index_hero_actions {
    display: flex;
    gap: 16px;
}

.pcv2index_btn {
    padding: 16px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
}

.pcv2index_btn_primary {
    background: #0066ff;
    color: #fff;
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.3);
}

.pcv2index_btn_primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 102, 255, 0.4);
}

.pcv2index_btn_secondary {
    background: #f1f5f9;
    color: #0f172a;
}

.pcv2index_btn_secondary:hover {
    background: #e2e8f0;
    transform: translateY(-4px);
}

.pcv2index_hero_visual {
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.pcv2index_slide.active .pcv2index_hero_visual {
    opacity: 1;
    transform: scale(1);
}

.pcv2index_hero_visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    border-radius: 48px;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.pcv2index_float_tag {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.tag-1 {
    top: 10%;
    right: -5%;
    animation: pcv2-float 4s ease-in-out infinite;
}

.tag-2 {
    bottom: 15%;
    left: -5%;
    animation: pcv2-float 5s ease-in-out infinite 1s;
}

@keyframes pcv2-float {

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

    50% {
        transform: translateY(-15px);
    }
}

.pcv2index_slider_dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.pcv2index_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pcv2index_dot.active {
    width: 32px;
    background: #0066ff;
    border-radius: 100px;
}

.pcv2index_slider_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pcv2index_slider_arrow:hover {
    background: #0066ff;
    color: #fff;
    border-color: #0066ff;
}

.pcv2index_arrow_prev {
    left: 40px;
}

.pcv2index_arrow_next {
    right: 40px;
}

/* TICKER */
.pcv2index_ticker_section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
}

.pcv2index_ticker_wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: pcv2-ticker 40s linear infinite;
    padding: 10px 0;
}

.pcv2index_ticker_section:hover .pcv2index_ticker_wrapper {
    animation-play-state: paused;
}

.pcv2index_ticker_item {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

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

.pcv2index_ticker_item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes pcv2-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.pcv2index_ticker_container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* PRICING */
.pcv2index_pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

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

.pcv2index_period_switcher {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.pcv2index_period_btn {
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
    z-index: 2;
}

.pcv2index_period_btn.active {
    color: #fff;
    background: var(--pcv2-primary);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.discount_tag {
    font-size: 12px;
    background: rgba(0, 102, 255, 0.12);
    color: var(--pcv2-primary);
    padding: 4px 10px;
    border-radius: 8px;
    margin-left: 8px;
    font-weight: 800;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.pcv2index_period_btn.active .discount_tag {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.discount_tag.firsat {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.pcv2index_period_btn.active .discount_tag.firsat {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.pcv2index_pricing_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pcv2index_plan_card {
    background: #fff;
    border-radius: 32px;
    padding: 40px 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pcv2index_plan_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.pcv2index_plan_card.popular {
    border: 2px solid var(--pcv2-primary);
}

.pcv2index_pop_label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pcv2-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pcv2index_plan_icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.pcv2index_plan_name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.pcv2index_plan_desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 24px;
    height: 40px;
}

.pcv2index_plan_price_box {
    padding: 24px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 32px;
    position: relative;
}

.pcv2index_price_monthly {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pcv2index_save_badge {
    position: absolute;
    top: 10px;
    right: 0;
    background: #10b981;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 800;
}

.pcv2index_features_list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.pcv2index_feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 14px;
}

.pcv2index_plan_btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.pcv2index_btn_outline {
    border: 2px solid #f1f5f9;
    color: #0f172a;
}

.pcv2index_btn_outline:hover {
    background: #f1f5f9;
}

.pcv2index_btn_solid {
    background: #0066ff;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* CLEAN SERVICES SECTION */
.pcv2index_services_section {
    padding: 100px 0;
}

.pcv2index_section_header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.pcv2index_section_title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #0f172a;
}

.pcv2index_services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pcv2index_service_card {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pcv2index_service_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -10px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.1);
}

.pcv2index_service_icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.05);
    color: #0066ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 28px;
}

.pcv2index_service_name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pcv2index_service_desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 32px;
}

/* TESTIMONIALS (CLEAN TEXT STYLE) */
.pcv2index_testimonials {
    padding: 100px 0;
    background: #f8faff;
}

.pcv2index_testi_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pcv2index_testi_card {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    border: 1px solid #f1f5f9;
    position: relative;
}

.pcv2index_testi_quote {
    font-size: 48px;
    color: #0066ff;
    opacity: 0.1;
    position: absolute;
    top: 30px;
    left: 30px;
}

.pcv2index_testi_text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.pcv2index_testi_user_info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.pcv2index_testi_initials {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.pcv2index_testi_name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.pcv2index_testi_role {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

/* FAQ */
.pcv2index_faq {
    padding: 100px 0;
}

.pcv2index_faq_search {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.pcv2index_faq_input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.pcv2index_faq_input:focus {
    border-color: #0066ff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    outline: none;
}

.pcv2index_faq_search i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #94a3b8;
}

.pcv2index_faq_grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pcv2index_faq_item {
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.pcv2index_faq_q {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 17px;
}

.pcv2index_faq_a {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.pcv2index_faq_item.active .pcv2index_faq_a {
    padding: 0 32px 32px;
    max-height: 300px;
}

.pcv2index_faq_item.active .pcv2index_faq_q {
    color: #0066ff;
}

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

@media (max-width: 1024px) {
    .pcv2index_hero_slider {
        height: auto;
        min-height: 500px;
        padding: 180px 0 60px;
        display: flex;
        align-items: center;
    }

    .pcv2index_slide_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        width: 100%;
    }

    .pcv2index_hero_content {
        max-width: 100%;
        width: 100%;
    }

    .pcv2index_hero_visual {
        display: none !important;
    }

    .pcv2index_hero_title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .pcv2index_hero_desc {
        font-size: 16px;
        margin: 0 auto 32px;
        max-width: 100%;
    }

    .pcv2index_slider_arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .pcv2index_arrow_prev {
        left: 24px;
    }

    .pcv2index_arrow_next {
        right: 24px;
    }

    .pcv2index_slider_dots {
        bottom: 34px;
    }

    .pcv2index_services_grid {
        grid-template-columns: 1fr 1fr;
    }

    .pcv2index_testi_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pcv2index_pricing_grid {
        grid-template-columns: 1fr;
    }

    .pcv2index_period_switcher {
        display: flex;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        padding: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .pcv2index_period_btn {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
    }

    .pcv2index_services_grid {
        grid-template-columns: 1fr;
    }

    .pcv2index_hero_title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    .pcv2index_hero_desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .pcv2index_section_header {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .pcv2index_hero_actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .pcv2index_hero_actions .pcv2-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pcv2index_hero_slider {
        padding-top: 120px;
    }

    .pcv2index_hero_visual img {
        display: none;
    }

    .pcv2index_float_tag {
        display: none;
    }

    .pcv2index_plan_card {
        padding: 32px 24px;
    }

    .pcv2index_price_monthly {
        font-size: 36px;
    }
}