/* ============================================================================
   MUSE Pricing Page - Interactive Enhancements
   All Phases: 3D Effects, Animations, ROI Calculator, Comparison Mode
   ============================================================================ */

/* ============================================================================
   TIKTOK THEME - Hero Section
   ============================================================================ */

/* TikTok Color Variables */
:root {
    --tiktok-black: #000000;
    --tiktok-dark: #121212;
    --tiktok-cyan: #25F4EE;
    --tiktok-pink: #FE2C55;
    --tiktok-white: #ffffff;
    --tiktok-gray: #8a8a8a;
}

/* TikTok Hero Section */
.tiktok-hero {
    background: var(--tiktok-black);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.tiktok-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 244, 238, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(254, 44, 85, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 244, 238, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* TikTok Navigation Tabs */
.tiktok-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 0 40px;
    position: relative;
    z-index: 10;
}

.tiktok-nav-tab {
    background: transparent;
    border: none;
    color: var(--tiktok-gray);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

.tiktok-nav-tab:hover {
    color: var(--tiktok-white);
}

.tiktok-nav-tab.active {
    color: var(--tiktok-white);
}

.tiktok-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tiktok-white);
    border-radius: 2px;
}

/* TikTok Hero Container */
.tiktok-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    min-height: calc(100vh - 200px);
}

/* TikTok Hero Content */
.tiktok-hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 5;
}

/* TikTok Hero Title */
.tiktok-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--tiktok-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.tiktok-strike {
    position: relative;
    color: var(--tiktok-cyan);
}

.tiktok-strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 4px;
    background: var(--tiktok-cyan);
    transform: rotate(-5deg);
    animation: tiktokStrike 1s ease-out 0.5s forwards;
    box-shadow: 0 0 20px var(--tiktok-cyan);
}

@keyframes tiktokStrike {
    to { width: 100%; }
}

.tiktok-gradient {
    background: linear-gradient(90deg, var(--tiktok-cyan) 0%, var(--tiktok-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tiktokGradientShift 3s ease infinite;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 30px rgba(254, 44, 85, 0.5));
}

@keyframes tiktokGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* TikTok Hero Description */
.tiktok-hero-description {
    font-size: 18px;
    color: var(--tiktok-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* TikTok Stats */
.tiktok-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.tiktok-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tiktok-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tiktok-pink);
    transform: scale(1.05);
}

.tiktok-stat:nth-child(1):hover {
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.3);
}

.tiktok-stat:nth-child(2):hover {
    box-shadow: 0 0 30px rgba(37, 244, 238, 0.3);
}

.tiktok-stat:nth-child(3):hover {
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.3);
}

.tiktok-stat-icon {
    width: 28px;
    height: 28px;
    color: var(--tiktok-white);
    transition: all 0.3s ease;
}

.tiktok-stat:nth-child(1) .tiktok-stat-icon {
    color: var(--tiktok-pink);
}

.tiktok-stat:nth-child(2) .tiktok-stat-icon {
    color: var(--tiktok-cyan);
}

.tiktok-stat:nth-child(3) .tiktok-stat-icon {
    color: var(--tiktok-pink);
}

.tiktok-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--tiktok-white);
}

.tiktok-stat-label {
    font-size: 13px;
    color: var(--tiktok-gray);
    text-transform: lowercase;
}

/* TikTok Sound/Music Indicator */
.tiktok-sound {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.tiktok-sound-disc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--tiktok-dark), #333);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinDisc 3s linear infinite;
    box-shadow:
        0 0 0 3px var(--tiktok-black),
        0 0 0 6px #333;
}

.tiktok-sound-disc img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

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

.tiktok-sound-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    max-width: 220px;
    overflow: hidden;
}

.tiktok-music-note {
    width: 14px;
    height: 14px;
    color: var(--tiktok-white);
    flex-shrink: 0;
}

.tiktok-sound-name {
    font-size: 13px;
    color: var(--tiktok-white);
    white-space: nowrap;
    animation: marquee 8s linear infinite;
}

.tiktok-sound-marquee {
    display: none;
}

@keyframes marquee {
    0%, 20% { transform: translateX(0); }
    80%, 100% { transform: translateX(-100%); }
}

/* TikTok Right Side Action Bar */
.tiktok-action-bar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.tiktok-action-profile {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
}

.tiktok-action-profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--tiktok-white);
    object-fit: cover;
}

.tiktok-follow-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--tiktok-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.tiktok-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.tiktok-action-item:hover {
    transform: scale(1.1);
}

.tiktok-action-item svg {
    width: 36px;
    height: 36px;
    color: var(--tiktok-white);
    transition: all 0.3s ease;
}

.tiktok-action-item:nth-child(2) svg {
    filter: drop-shadow(0 0 8px rgba(254, 44, 85, 0.5));
}

.tiktok-action-item:nth-child(2):hover svg {
    color: var(--tiktok-pink);
    filter: drop-shadow(0 0 15px rgba(254, 44, 85, 0.8));
}

.tiktok-action-item:nth-child(3):hover svg {
    color: var(--tiktok-cyan);
    filter: drop-shadow(0 0 15px rgba(37, 244, 238, 0.8));
}

.tiktok-action-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--tiktok-white);
}

/* TikTok Mobile Responsive */
@media (max-width: 768px) {
    .tiktok-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .tiktok-hero-container {
        min-height: auto;
        padding: 0 16px;
    }

    .tiktok-nav {
        gap: 24px;
        padding: 16px 0 32px;
    }

    .tiktok-nav-tab {
        font-size: 15px;
    }

    .tiktok-hero-title {
        font-size: 2rem;
    }

    .tiktok-hero-description {
        font-size: 15px;
        padding: 0 16px;
    }

    .tiktok-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .tiktok-stat {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 12px 20px;
    }

    .tiktok-action-bar {
        position: fixed;
        right: 12px;
        top: auto;
        bottom: 100px;
        transform: none;
    }

    .tiktok-action-profile {
        width: 44px;
        height: 44px;
    }

    .tiktok-action-item svg {
        width: 28px;
        height: 28px;
    }

    .tiktok-action-item span {
        font-size: 11px;
    }

    .tiktok-sound {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================================================
   PHASE 1: Hero Animations & Visual Polish
   ============================================================================ */

/* Animated Hero Title */
.pricing-hero-title {
    overflow: hidden;
}

.pricing-hero-title .word {
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-hero-title .word-highlight {
    position: relative;
    display: inline-block;
}

.pricing-hero-title .word-strike {
    position: relative;
}

.pricing-hero-title .word-strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 4px;
    background: #ef4444;
    transform: rotate(-5deg);
    animation: strikeThrough 1s ease-out 0.5s forwards;
}

@keyframes strikeThrough {
    to { width: 100%; }
}

.pricing-hero-title .word-gradient {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 50%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Social Proof Badges */
.floating-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    flex-wrap: wrap;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.6s ease forwards;
}

.floating-badge:nth-child(1) { animation-delay: 0.8s; }
.floating-badge:nth-child(2) { animation-delay: 1s; }
.floating-badge:nth-child(3) { animation-delay: 1.2s; }

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

.floating-badge .badge-icon {
    font-size: 1.2em;
}

.floating-badge .badge-value {
    color: var(--color-primary);
    font-weight: 800;
}

/* Reduce hero section bottom padding */
.page-hero {
    padding-bottom: var(--space-8);
}

/* Reduce pricing section top padding */
/* TikTok Light Theme - Pricing Section */
.pricing-tiers-section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-16);
    background: #f8f8f8;
    position: relative;
}

.pricing-tiers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 244, 238, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(254, 44, 85, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-tiers-section .container {
    position: relative;
    z-index: 1;
}

/* TikTok Light Theme - Pricing Tier Text Colors */
.pricing-tier-header {
    border-bottom-color: #e5e5e5;
}

.pricing-tier-name {
    color: #161823;
}

.pricing-tier-subtitle {
    color: #606060;
}

.pricing-tier-card.featured .pricing-tier-subtitle {
    color: #505050;
}

/* TikTok Light Theme - CTA Buttons */
.pricing-tier-card .btn {
    background: transparent;
    border: 2px solid #161823;
    color: #161823;
}

.pricing-tier-card .btn:hover {
    background: var(--tiktok-pink, #FE2C55);
    border-color: var(--tiktok-pink, #FE2C55);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.3);
}

.pricing-tier-card.featured .btn {
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    border: none;
    color: #ffffff;
}

.pricing-tier-card.featured .btn:hover {
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.4);
    transform: translateY(-2px);
}

/* ============================================================================
   PHASE 1: Billing Toggle
   ============================================================================ */

/* TikTok Light Theme - Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin: 0 0 var(--space-4);
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.billing-label {
    font-size: var(--text-base);
    font-weight: 600;
    color: #8a8a8a;
    transition: all 0.3s ease;
}

.billing-label.active {
    color: #161823;
}

.billing-toggle {
    position: relative;
    width: 64px;
    height: 32px;
    background: #e5e5e5;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-toggle.annual {
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
}

.billing-toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.billing-toggle.annual .billing-toggle-knob {
    left: 36px;
}

.savings-badge {
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 15px rgba(254, 44, 85, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================================================
   PHASE 1: 3D Tilt Pricing Cards
   ============================================================================ */

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    perspective: 1500px;
    padding: var(--space-4);
}

.pricing-tier-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    transform-style: preserve-3d;
    will-change: transform;
    overflow: visible;
}

/* Staggered entrance animation */
.pricing-tier-card {
    opacity: 0;
    transform: translateY(60px) rotateX(10deg);
    animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pricing-tier-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-tier-card:nth-child(2) { animation-delay: 0.25s; }
.pricing-tier-card:nth-child(3) { animation-delay: 0.4s; }

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

/* 3D Tilt effect hover */
.pricing-tier-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(254, 44, 85, 0.1);
    border-color: var(--tiktok-pink, #FE2C55);
    z-index: 10;
}

/* Dim other cards on hover */
.pricing-tiers-grid:hover .pricing-tier-card:not(:hover):not(.featured) {
    opacity: 0.7;
    transform: scale(0.98);
}

/* Featured card - Most Popular */
.pricing-tier-card.featured {
    border-color: var(--tiktok-pink, #FE2C55);
    border-width: 2px;
    background: #ffffff;
    transform: scale(1.02);
    z-index: 5;
}

.pricing-tier-card.featured:hover {
    transform: translateY(-16px) scale(1.05);
}

/* Glowing animated border for featured */
.pricing-tier-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: linear-gradient(
        90deg,
        #25F4EE,
        #FE2C55,
        #25F4EE,
        #FE2C55,
        #25F4EE
    );
    background-size: 400% 100%;
    animation: glowingBorder 8s linear infinite;
    z-index: -1;
    opacity: 0.7;
    filter: blur(12px);
}

@keyframes glowingBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* Badge styling - TikTok Theme */
.pricing-tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(254, 44, 85, 0.5);
    animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(254, 44, 85, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(254, 44, 85, 0.7); }
}

/* ============================================================================
   PHASE 1: Price Counter Animation
   ============================================================================ */

.pricing-tier-price {
    margin: var(--space-4) 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0 4px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #161823;
    line-height: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

.price-amount.counting {
    animation: countPulse 0.1s ease;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.price-currency {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #606060;
    vertical-align: top;
}

.price-period {
    font-size: var(--text-lg);
    color: #606060;
    font-weight: 500;
}

/* Annual pricing display */
.price-annual {
    display: none;
    width: 100%;
    text-align: center;
    font-size: var(--text-sm);
    color: #606060;
    margin-top: var(--space-2);
}

.price-annual.visible {
    display: block;
}

.price-savings {
    color: var(--tiktok-pink, #FE2C55);
    font-weight: 700;
}

/* ============================================================================
   PHASE 2: Expandable Feature Groups
   ============================================================================ */

/* TikTok Light Theme - Feature Groups */
.feature-group {
    margin-bottom: var(--space-5);
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: var(--space-4);
}

.feature-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-group h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #161823;
    margin-bottom: var(--space-3);
    padding: var(--space-2) 0;
    transition: all 0.2s ease;
}

.feature-group h4:hover {
    color: var(--tiktok-pink, #FE2C55);
}

.feature-group h4::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23606060'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    transition: transform 0.3s ease;
}

.feature-group.collapsed h4::after {
    transform: rotate(-90deg);
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.feature-group.collapsed ul {
    max-height: 0;
    opacity: 0;
}

.feature-group li {
    position: relative;
    padding: var(--space-2) 0 var(--space-2) var(--space-6);
    color: #505050;
    font-size: var(--text-base);
    transition: all 0.2s ease;
}

.feature-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--space-2);
    width: 18px;
    height: 18px;
    background: var(--tiktok-pink, #FE2C55);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    animation: checkmarkPop 0.3s ease forwards;
}

.feature-group li:nth-child(1)::before { animation-delay: 0.1s; }
.feature-group li:nth-child(2)::before { animation-delay: 0.15s; }
.feature-group li:nth-child(3)::before { animation-delay: 0.2s; }
.feature-group li:nth-child(4)::before { animation-delay: 0.25s; }
.feature-group li:nth-child(5)::before { animation-delay: 0.3s; }

@keyframes checkmarkPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Feature highlight on hover across cards */
.feature-group li:hover {
    background: #f5f5f5;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: calc(var(--space-6) + 8px);
    padding-right: 8px;
    border-radius: var(--radius-md);
}

.feature-group li.highlighted {
    background: rgba(254, 44, 85, 0.08);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: calc(var(--space-6) + 8px);
    padding-right: 8px;
    border-radius: var(--radius-md);
}

/* ============================================================================
   PHASE 2: TikTok Calculator - Video Player Style (NEW)
   ============================================================================ */

/* Section */
.tiktok-calc-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tiktok-calc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 244, 238, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(254, 44, 85, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Header */
.tiktok-calc-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.tiktok-calc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tiktok-cyan, #25F4EE);
    margin-bottom: 20px;
}

.tiktok-calc-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.tiktok-calc-subtitle {
    font-size: 18px;
    color: #8a8a8a;
    margin: 0;
}

/* Video Frame Container */
.tiktok-video-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(254, 44, 85, 0.1),
        0 0 100px rgba(37, 244, 238, 0.1);
}

/* Hearts Animation Container */
.tiktok-hearts-container {
    position: absolute;
    right: 100px;
    bottom: 100px;
    width: 50px;
    height: 200px;
    pointer-events: none;
    z-index: 100;
}

.floating-heart {
    position: absolute;
    bottom: 0;
    animation: floatHeart 2s ease-out forwards;
    font-size: 24px;
}

@keyframes floatHeart {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-150px) scale(0.5);
    }
}

/* Main Content Area */
.tiktok-video-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Top Bar */
.tiktok-video-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tiktok-live-badge {
    padding: 4px 12px;
    background: var(--tiktok-pink, #FE2C55);
    color: white;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tiktok-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #ffffff;
}

.tiktok-viewers svg {
    color: #8a8a8a;
}

/* Calc Input */
.tiktok-calc-input {
    text-align: center;
}

.tiktok-calc-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-icon {
    font-size: 18px;
}

/* Pill Selector */
.tiktok-pill-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tiktok-calc-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tiktok-calc-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tiktok-cyan, #25F4EE);
    transform: translateY(-2px);
}

.tiktok-calc-pill.active {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.2) 0%, rgba(254, 44, 85, 0.2) 100%);
    border-color: var(--tiktok-pink, #FE2C55);
    box-shadow:
        0 0 20px rgba(254, 44, 85, 0.3),
        inset 0 0 20px rgba(254, 44, 85, 0.1);
    transform: translateY(-4px) scale(1.05);
}

.pill-value {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.tiktok-calc-pill.active .pill-value {
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pill-label {
    font-size: 11px;
    font-weight: 600;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tiktok-calc-pill.active .pill-label {
    color: var(--tiktok-pink, #FE2C55);
}

/* Results */
.tiktok-calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tiktok-result-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.tiktok-result-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.tiktok-result-box.featured {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.1) 0%, rgba(254, 44, 85, 0.1) 100%);
    border-color: rgba(254, 44, 85, 0.3);
}

.result-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.result-icon svg {
    color: var(--tiktok-cyan, #25F4EE);
}

.tiktok-result-box.featured .result-icon svg {
    color: var(--tiktok-pink, #FE2C55);
}

.tiktok-result-box:nth-child(3) .result-icon svg {
    color: var(--tiktok-pink, #FE2C55);
}

.result-label {
    font-size: 12px;
    font-weight: 600;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.result-value.updating {
    animation: valuePop 0.4s ease;
}

@keyframes valuePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.result-timeframe {
    font-size: 12px;
    color: #606060;
}

/* Progress Bar */
.tiktok-progress-container {
    padding: 0 20px;
}

.tiktok-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tiktok-progress-labels span:nth-child(2) {
    color: #ffffff;
}

.tiktok-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: visible;
}

.tiktok-progress-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    border-radius: 4px;
    transition: width 0.8s ease;
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.4);
    animation: progressGlow 2s ease infinite;
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(254, 44, 85, 0.4); }
    50% { box-shadow: 0 0 25px rgba(254, 44, 85, 0.6); }
}

.tiktok-progress-milestone {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    background: #333;
    border: 2px solid #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tiktok-progress-fill ~ .tiktok-progress-milestone .milestone-dot {
    background: var(--tiktok-pink, #FE2C55);
    border-color: var(--tiktok-pink, #FE2C55);
}

.milestone-label {
    position: absolute;
    top: 20px;
    font-size: 10px;
    color: #606060;
    white-space: nowrap;
}

/* Features Grid */
.tiktok-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tiktok-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.tiktok-feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--tiktok-cyan, #25F4EE);
    transform: translateX(4px);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    color: white;
}

.tiktok-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Platforms Row */
.tiktok-platforms-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platforms-label {
    font-size: 13px;
    color: #8a8a8a;
    font-weight: 500;
}

.platforms-icons {
    display: flex;
    gap: 8px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8a8a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: translateY(-4px) scale(1.1);
}

.platform-icon[data-platform="tiktok"]:hover {
    background: rgba(37, 244, 238, 0.2);
    border-color: var(--tiktok-cyan, #25F4EE);
    color: var(--tiktok-cyan, #25F4EE);
    box-shadow: 0 0 20px rgba(37, 244, 238, 0.3);
}

.platform-icon[data-platform="instagram"]:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2));
    border-color: #E1306C;
    color: #E1306C;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.platform-icon[data-platform="linkedin"]:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077B5;
    color: #0077B5;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.3);
}

.platform-icon[data-platform="youtube"]:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
    color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.platform-icon[data-platform="x"]:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* CTA */
.tiktok-calc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(254, 44, 85, 0.4);
    position: relative;
    overflow: hidden;
}

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

.tiktok-calc-cta:hover::before {
    left: 100%;
}

.tiktok-calc-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(254, 44, 85, 0.5);
}

.cta-arrow svg {
    transition: transform 0.2s ease;
}

.tiktok-calc-cta:hover .cta-arrow svg {
    transform: translateX(4px);
}

.tiktok-calc-disclaimer {
    font-size: 12px;
    color: #606060;
    text-align: center;
    margin: 0;
}

/* Right Side Action Bar */
.tiktok-video-actions {
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 15px;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action-item:hover {
    transform: scale(1.15);
}

.action-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.action-icon.heart svg {
    color: var(--tiktok-pink, #FE2C55);
    filter: drop-shadow(0 0 8px rgba(254, 44, 85, 0.5));
}

.action-item:hover .action-icon.heart svg {
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.action-count {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.action-disc {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    animation: spinDisc 4s linear infinite;
    margin-top: 10px;
}

.action-disc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tiktok-calc-section {
        padding: 60px 0;
    }

    .tiktok-calc-title {
        font-size: 32px;
    }

    .tiktok-video-frame {
        flex-direction: column;
        border-radius: 16px;
    }

    .tiktok-video-content {
        padding: 24px 20px;
        gap: 20px;
    }

    .tiktok-pill-selector {
        gap: 8px;
    }

    .tiktok-calc-pill {
        padding: 12px 16px;
    }

    .pill-value {
        font-size: 18px;
    }

    .tiktok-calc-results {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tiktok-features-grid {
        grid-template-columns: 1fr;
    }

    .tiktok-video-actions {
        flex-direction: row;
        width: 100%;
        padding: 16px;
        justify-content: space-around;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .action-disc {
        margin-top: 0;
    }
}

/* Old ROI Calculator Styles (keeping for backwards compatibility) */
.roi-calculator-section {
    display: none; /* Hide old calculator */
}

.roi-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.roi-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.roi-input-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.roi-slider-container {
    position: relative;
}

.roi-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.roi-slider-value {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: white;
    margin-top: var(--space-2);
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-result-item {
    text-align: center;
}

.roi-result-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-2);
}

.roi-result-value {
    font-size: var(--text-4xl);
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-result-value.highlight {
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-vs-agency {
    text-align: center;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-vs-agency p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
}

.roi-vs-agency .savings-amount {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: #22c55e;
}

/* ============================================================================
   PHASE 3: Trust Badges
   ============================================================================ */

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    margin: var(--space-12) 0;
    padding: var(--space-8);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.trust-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.trust-badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
}

/* ============================================================================
   PHASE 3: Comparison Mode
   ============================================================================ */

.comparison-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-8);
}

.comparison-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #606060;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.comparison-btn:hover {
    border-color: var(--tiktok-pink, #FE2C55);
    color: var(--tiktok-pink, #FE2C55);
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.15);
}

.comparison-btn.active {
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    border-color: transparent;
    color: white;
}

/* Comparison Table Mode */
.pricing-comparison-table {
    display: none;
    overflow-x: auto;
    margin: var(--space-8) 0;
}

.pricing-comparison-table.visible {
    display: block;
    animation: fadeSlideIn 0.5s ease;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--gray-50);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.comparison-table th.featured {
    background: linear-gradient(135deg, rgba(91, 81, 216, 0.1) 0%, rgba(91, 81, 216, 0.05) 100%);
    color: var(--color-accent);
}

.comparison-table td {
    font-size: var(--text-base);
    color: var(--gray-700);
}

.comparison-table tr:hover td {
    background: var(--gray-50);
}

.comparison-check {
    color: #22c55e;
    font-weight: 700;
}

.comparison-cross {
    color: var(--gray-300);
}

.comparison-table .plan-header {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-primary);
}

.comparison-table .plan-price {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* ============================================================================
   What's Included Section - Minimalist List
   ============================================================================ */

.whats-included-minimal {
    padding: var(--space-12) 0;
    background: var(--gray-50);
}

.included-minimal-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.included-minimal-header h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
}

.included-minimal-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    max-width: 1000px;
    margin: 0 auto;
}

.included-minimal-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    transition: all 0.2s ease;
}

.included-minimal-item:hover {
    transform: translateY(-2px);
}

.minimal-icon {
    font-size: 1.1rem;
    color: var(--color-accent);
}

.minimal-text {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary);
}

.included-minimal-divider {
    width: 4px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 50%;
}

/* Hide dividers on mobile, stack items */
@media (max-width: 768px) {
    .included-minimal-list {
        flex-direction: column;
        gap: var(--space-3);
    }

    .included-minimal-divider {
        display: none;
    }

    .included-minimal-item {
        padding: var(--space-3) var(--space-5);
        background: white;
        border-radius: var(--radius-full);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

/* ============================================================================
   TikTok FAQ Section - Comment Thread Style
   ============================================================================ */

.tiktok-faq-section {
    background: #121212;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tiktok-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 244, 238, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(254, 44, 85, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.tiktok-faq-section .container {
    position: relative;
    z-index: 1;
}

/* Header */
.tiktok-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.tiktok-faq-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--tiktok-cyan, #25F4EE);
}

.tiktok-faq-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.tiktok-faq-subtitle {
    font-size: 18px;
    color: #8a8a8a;
    margin: 0;
}

/* Grid */
.tiktok-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* FAQ Item - Comment Style */
.tiktok-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tiktok-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(254, 44, 85, 0.3);
}

.tiktok-faq-item.expanded {
    border-color: var(--tiktok-pink, #FE2C55);
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.15);
}

/* Comment Structure */
.tiktok-faq-comment {
    display: flex;
    gap: 12px;
}

.tiktok-faq-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #8a8a8a;
}

.tiktok-faq-avatar.muse {
    background: linear-gradient(135deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    color: white;
}

.tiktok-faq-content {
    flex: 1;
}

.tiktok-faq-question {
    margin-bottom: 8px;
}

.tiktok-faq-user {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    display: block;
}

.tiktok-faq-user.muse {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--tiktok-cyan, #25F4EE);
}

.tiktok-faq-user.muse svg {
    background: var(--tiktok-cyan, #25F4EE);
    border-radius: 50%;
    padding: 2px;
    color: #121212;
}

.tiktok-faq-question p {
    font-size: 15px;
    color: #e5e5e5;
    margin: 0;
    line-height: 1.5;
}

/* Meta - Likes & Reply Button */
.tiktok-faq-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.tiktok-faq-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #8a8a8a;
    transition: all 0.2s ease;
}

.tiktok-faq-likes svg {
    transition: all 0.2s ease;
}

.tiktok-faq-item:hover .tiktok-faq-likes svg {
    color: var(--tiktok-pink, #FE2C55);
}

.tiktok-faq-reply-btn {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #8a8a8a;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.tiktok-faq-reply-btn:hover {
    color: var(--tiktok-cyan, #25F4EE);
}

.tiktok-faq-item.expanded .tiktok-faq-reply-btn {
    color: var(--tiktok-pink, #FE2C55);
}

/* Answer - Reply Style */
.tiktok-faq-answer {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.tiktok-faq-item.expanded .tiktok-faq-answer {
    max-height: 300px;
    opacity: 1;
}

.tiktok-faq-reply {
    flex: 1;
}

.tiktok-faq-reply p {
    font-size: 14px;
    color: #b0b0b0;
    margin: 4px 0 0 0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tiktok-faq-section {
        padding: 60px 0;
    }

    .tiktok-faq-title {
        font-size: 28px;
    }

    .tiktok-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tiktok-faq-item {
        padding: 16px;
    }

    .tiktok-faq-avatar {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
}

/* Old FAQ Styles - Hidden */
.pricing-faq-section {
    display: none;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-6);
}

.pricing-faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-faq-question {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.pricing-faq-item.expanded .pricing-faq-question::after {
    transform: rotate(45deg);
}

.pricing-faq-answer {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pricing-faq-item.expanded .pricing-faq-answer {
    max-height: 500px;
}

/* ============================================================================
   Responsive Adjustments
   ============================================================================ */

@media (max-width: 968px) {
    .pricing-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 var(--space-2);
    }

    .pricing-tier-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-tier-card.featured {
        transform: none;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .roi-calculator {
        padding: var(--space-8);
    }

    .roi-results {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }

    .floating-badges {
        display: none;
    }
}

@media (max-width: 640px) {
    .pricing-tiers-grid {
        padding: 0;
    }

    .pricing-tier-card {
        padding: var(--space-6);
        border-radius: var(--radius-lg);
    }

    .billing-toggle-container {
        flex-wrap: wrap;
    }

    .pricing-comparison-table {
        margin: var(--space-4) 0;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        font-size: var(--text-xs);
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--space-2) var(--space-3);
        white-space: nowrap;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: white;
        z-index: 1;
        box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    }

    .comparison-table th:first-child {
        background: var(--gray-50);
    }
}

/* ============================================================================
   TikTok CTA Section
   ============================================================================ */

.tiktok-cta-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tiktok-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(254, 44, 85, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(37, 244, 238, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tiktok-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tiktok-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tiktok-cyan, #25F4EE);
    margin-bottom: 28px;
}

.tiktok-cta-badge svg {
    color: var(--tiktok-pink, #FE2C55);
}

.tiktok-cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.tiktok-cta-description {
    font-size: 18px;
    color: #8a8a8a;
    line-height: 1.7;
    margin: 0 0 36px 0;
}

.tiktok-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 30px rgba(254, 44, 85, 0.4),
        0 0 60px rgba(254, 44, 85, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.tiktok-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 40px rgba(254, 44, 85, 0.5),
        0 0 80px rgba(254, 44, 85, 0.3);
}

.tiktok-cta-button svg {
    transition: transform 0.2s ease;
}

.tiktok-cta-button:hover svg {
    transform: translateX(4px);
}

/* CTA Stats */
.tiktok-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cta-stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--tiktok-cyan, #25F4EE) 0%, var(--tiktok-pink, #FE2C55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    font-size: 13px;
    color: #8a8a8a;
    font-weight: 500;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tiktok-cta-section {
        padding: 60px 0;
    }

    .tiktok-cta-title {
        font-size: 32px;
    }

    .tiktok-cta-description {
        font-size: 16px;
    }

    .tiktok-cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .tiktok-cta-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }

    .cta-stat-divider {
        display: none;
    }

    .cta-stat-value {
        font-size: 22px;
    }

    .cta-stat-label {
        font-size: 11px;
    }
}
