/* ============================================
   PRICING CARDS - Main page v2
   ============================================ */

.pricing-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-service-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.pricing-service-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}

.pricing-card-photo {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-card-photo svg {
    width: 48px;
    height: 48px;
    color: #bbb;
}

.pricing-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-card-body h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    margin: 0;
}

.pricing-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.pricing-card-btn:hover {
    background: #333;
    transform: translateX(4px);
}

.pricing-card-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pricing-card-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .pricing-service-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .pricing-card-photo {
        width: 100%;
        height: 160px;
    }
    .pricing-card-body {
        align-items: center;
    }
    .pricing-card-body h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   PRICING SUB-PAGES v2 - 9:16 carousel
   ============================================ */

.pricing-subpage {
    min-height: 100vh;
    background: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.pricing-subpage-header {
    text-align: center;
    padding: 100px 20px 30px;
}

.pricing-subpage-header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.pricing-916-carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-916-track {
    display: flex;
    transition: transform 0.5s ease;
}

.pricing-916-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 20px 10px 30px;
}

.pricing-916-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    width: 240px;
    aspect-ratio: 9 / 16;
    background: #000;
    margin: 0 auto;
    cursor: pointer;
    animation: videoFloat916 4s ease-in-out infinite;
}

@keyframes videoFloat916 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.pricing-916-wrapper:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 35px rgba(0, 0, 0, 0.1);
    animation-play-state: paused;
}

.pricing-916-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pricing-916-wrapper .play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.pricing-916-wrapper .play-btn-overlay svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 3px;
}

.pricing-916-wrapper.playing .play-btn-overlay {
    opacity: 0;
}

.pricing-916-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #999;
    font-size: 0.9rem;
}

.pricing-916-placeholder svg {
    width: 48px;
    height: 48px;
    color: #bbb;
}

.pricing-916-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pricing-916-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-916-dot.active {
    background: #1a1a1a;
    transform: scale(1.3);
}

.pricing-916-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.pricing-916-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-916-arrow:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.pricing-916-arrow svg {
    width: 20px;
    height: 20px;
}

.pricing-bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-nav-link:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.pricing-nav-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .pricing-subpage-header { padding: 80px 16px 20px; }
    .pricing-subpage-header h1 { font-size: 1.8rem; }
    .pricing-916-wrapper { width: 200px; }
    .pricing-bottom-nav { padding: 24px 16px; }
    .pricing-nav-link { font-size: 0.85rem; padding: 10px 16px; }
}

@media (max-width: 480px) {
    .pricing-916-wrapper { width: 180px; }
    .pricing-subpage-header h1 { font-size: 1.5rem; }
}

/* === Pricing Circle Video Style === */
.pricing-circle-video {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: relative;
    margin: 24px auto 12px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pricing-circle-video:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
}
.pricing-circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #333 100%);
}
.pricing-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.pricing-circle-video:hover .pricing-play-btn {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.6);
    transform: translate(-50%, -50%) scale(1.1);
}
.pricing-play-btn svg {
    margin-left: 3px;
}

/* Remove old photo styles */
.pricing-card-photo {
    display: none !important;
}

/* Adjust card layout for circle */
.pricing-service-card {
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-circle-video {
        width: 130px;
        height: 130px;
    }
    .pricing-play-btn {
        width: 44px;
        height: 44px;
    }
    .pricing-play-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Fix card body alignment */
.pricing-card-body {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
}
.pricing-card-btn {
    text-align: center !important;
    display: inline-flex !important;
    margin: 0 auto !important;
}

.pricing-cards-grid {
    margin: 0 auto !important;
}

