/* WordPress Plugin Page Styles */

/* Pricing card featured glow */
.wp-pricing-featured {
    box-shadow: 0 25px 60px -15px rgba(29, 75, 167, 0.15);
}

/* Platform badge hover */
.platform-badge {
    transition: all 0.4s ease;
}
.platform-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(29, 75, 167, 0.15);
}

/* --- Revamped Hero & Interactive Simulator Styles --- */

/* Glassmorphic Metrics Card */
.metric-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.metric-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(29, 75, 167, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(29, 75, 167, 0.1);
}

/* Trust Strip Sleek Divider */
.trust-strip-item {
    position: relative;
    padding-left: 1.5rem;
}
.trust-strip-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1D4BA7;
    font-weight: 900;
    font-size: 0.95rem;
}

/* WooCommerce Mock Card */
.mock-product-card {
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mock-product-card:hover {
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.12);
}

/* VTO Simulator Panel overlay */
.vto-simulator-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 20;
    border-radius: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.vto-simulator-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Pulse animation for Live VTO indicator */
.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}
.pulse-indicator::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #10B981;
    animation: ping-pulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Virtual Glasses Overlay Positioner */
.glasses-overlay {
    position: absolute;
    top: 36.5%; /* Eye level relative to the generated model face image height */
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 58%;
    z-index: 25;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.25));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy elastic entry */
}
.glasses-overlay.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Mini custom-scrollbar for product thumbnails/options */
.vto-scroll-container::-webkit-scrollbar {
    height: 4px;
}
.vto-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}
.vto-scroll-container::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 2px;
}

/* Glow on primary try-on button */
.btn-tryon-glow {
    position: relative;
    overflow: hidden;
}
.btn-tryon-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer-effect 3s infinite;
}

@keyframes shimmer-effect {
    0% {
        transform: translateX(-100%);
    }
    30%, 100% {
        transform: translateX(100%);
    }
}

/* --- Section 2: Problem → Solution Bridge --- */

/* Improved Transformation Table Container and Cells */
.transformation-table-container {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 2rem;
    box-shadow: 0 30px 70px -10px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.transformation-cell-mirrago {
    background: rgba(29, 75, 167, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation-cell-mirrago:hover {
    background: rgba(29, 75, 167, 0.04);
}

.transformation-row {
    transition: background-color 0.3s ease;
}

@media (min-width: 1024px) {
    .transformation-row:hover {
        background-color: rgba(248, 250, 252, 0.4);
    }
}

/* Transition text link arrow slide animation */
.transition-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: #475569;
    transition: all 0.3s ease;
}
.transition-text-link:hover {
    color: #1D4BA7;
}
.transition-text-link .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}
.transition-text-link:hover .arrow {
    transform: translateX(4px);
}

/* --- Section 3: Dual Onboarding Paths Styles --- */

.onboarding-path-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
    border-radius: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.05);
    border-color: rgba(29, 75, 167, 0.15);
}

.onboarding-path-card:nth-child(2):hover {
    border-color: rgba(99, 102, 241, 0.15);
}

.stepper-container {
    position: relative;
    padding-left: 2.5rem;
}

.stepper-container::before {
    content: '';
    position: absolute;
    left: 11px; /* Centers with the 24px wide circle */
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(226, 232, 240, 0.7);
    z-index: 0;
}

.stepper-item {
    position: relative;
    z-index: 10;
}

.stepper-badge {
    position: absolute;
    left: -2.5rem;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
}

.onboarding-path-card:hover .stepper-badge {
    border-color: rgba(29, 75, 167, 0.3);
    color: #1D4BA7;
    background: rgba(29, 75, 167, 0.05);
}

.onboarding-path-card:nth-child(2):hover .stepper-badge {
    border-color: rgba(99, 102, 241, 0.3);
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

/* --- Section 3: Setup Timeline Styles --- */

.step-timeline-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border-color: rgba(29, 75, 167, 0.15);
}
.step-timeline-card:nth-child(2):hover {
    border-color: rgba(38, 91, 192, 0.15);
}
.step-timeline-card:nth-child(3):hover {
    border-color: rgba(16, 185, 129, 0.15);
}

@keyframes timeline-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.animate-timeline-fill {
    animation: timeline-fill 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Mid-Page CTA Strip Styles (Full-Width, Compact) --- */
.cta-full-strip {
    background: #0B0F19;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #1D4BA7 0%, #265BC0 50%, #5BCBFA 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 25px -5px rgba(29, 75, 167, 0.4);
    background-size: 200% auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.btn-primary-gradient:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(29, 75, 167, 0.5);
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.04);
    color: #f1f5f9 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

/* --- Section 4: Bento Grid Features Styles --- */
.bento-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 2.5rem;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border-color: rgba(29, 75, 167, 0.15);
}

.bento-badge-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Feature Mockups Styling */
.f-mockup-container {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

/* 1. WooCommerce Integration Mockup */
.mockup-woo-sync {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #ffffff;
    padding: 0.85rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}
.mockup-woo-logo {
    color: #96588a;
    font-size: 1.75rem;
    animation: pulse 2s infinite;
}
.mockup-sync-line {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #cbd5e1 0px, #cbd5e1 4px, transparent 4px, transparent 8px);
    position: relative;
}
.mockup-sync-line::after {
    content: "⚡";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    animation: bounce 1.5s infinite;
}
.mockup-mirgo-logo {
    color: #1D4BA7;
    font-size: 1.75rem;
}

/* 2. Guided Setup Wizard Mockup */
.mockup-wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 85%;
}
.mockup-wizard-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.45rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}
.mockup-wizard-step.completed {
    border-color: rgba(16, 185, 129, 0.3);
    color: #059669;
    background: rgba(16, 185, 129, 0.02);
}
.mockup-wizard-step.active {
    border-color: rgba(29, 75, 167, 0.3);
    color: #1D4BA7;
    background: rgba(29, 75, 167, 0.02);
    position: relative;
}
.mockup-wizard-step.active::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1D4BA7;
    animation: ping-pulse 2s infinite;
}

/* 3. Button Editor Panel Mockup */
.mockup-editor-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 0.85rem;
    width: 85%;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}
.mockup-editor-controls {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    justify-content: center;
    align-items: center;
}
.mockup-editor-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}
.mockup-editor-dot.active {
    border-color: #94a3b8;
    box-shadow: 0 0 0 2px #f1f5f9;
}
.mockup-editor-preview-btn {
    text-align: center;
    background: #1D4BA7;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(29, 75, 167, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* 4. Mobile Mockup */
.mockup-phone-frame {
    width: 100px;
    height: 150px;
    border: 4px solid #0f172a;
    border-radius: 1.5rem;
    background: #ffffff;
    position: relative;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
}
.mockup-phone-notch {
    width: 36px;
    height: 6px;
    background: #0f172a;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.mockup-phone-content {
    background: #f8fafc;
    flex: 1;
    border-radius: 1rem;
    padding: 0.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.mockup-phone-img {
    height: 48px;
    background: #e2e8f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
}
.mockup-phone-btn {
    background: #1D4BA7;
    color: #ffffff;
    font-size: 0.5rem;
    font-weight: 800;
    text-align: center;
    padding: 0.25rem;
    border-radius: 9999px;
    box-shadow: 0 4px 8px rgba(29, 75, 167, 0.2);
}

/* 5. Secure Token Mockup */
.mockup-token-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 85%;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}
.mockup-token-key {
    background: #f8fafc;
    color: #475569;
    font-family: monospace;
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    flex: 1;
    letter-spacing: 0.05em;
}

/* 6. Product Try-On Button Mockup */
.mockup-product-page {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 0.85rem;
    width: 85%;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}
.mockup-product-title {
    height: 10px;
    width: 60%;
    background: #e2e8f0;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}
.mockup-product-price {
    height: 8px;
    width: 30%;
    background: #f1f5f9;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}
.mockup-product-btn {
    background: #1D4BA7;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    text-align: center;
    padding: 0.45rem;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(29, 75, 167, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -4px);
    }
}

/* --- Section 5: Social Proof Section Styles --- */
.brand-logo-card-wp {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.brand-logo-card-wp:hover {
    background: #ffffff;
    border-color: rgba(91, 203, 250, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(91, 203, 250, 0.15);
}
.brand-logo-card-wp img {
    opacity: 0.85;
    transition: all 0.3s ease;
}
.brand-logo-card-wp:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.social-review-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 203, 250, 0.25);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px rgba(91, 203, 250, 0.04);
}

.stats-banner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stats-banner:hover {
    border-color: rgba(91, 203, 250, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(91, 203, 250, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #5BCBFA;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-icon {
    background: rgba(91, 203, 250, 0.15);
    border-color: rgba(91, 203, 250, 0.4);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(91, 203, 250, 0.3);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-number {
    background: linear-gradient(135deg, #5BCBFA 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}
.stat-item:hover .stat-label {
    color: #cbd5e1;
}

.stats-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Section 6: Video Demo Player Styles --- */
.video-player-wrapper {
    position: relative;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-player-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 45px 90px rgba(15, 23, 42, 0.22);
}

.btn-play-ripple {
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-ripple::before,
.btn-play-ripple::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(29, 75, 167, 0.15);
    z-index: -1;
    animation: play-ripple-pulse 2.5s infinite;
}

.btn-play-ripple::after {
    animation-delay: 1.25s;
    background: rgba(29, 75, 167, 0.08);
}

@keyframes play-ripple-pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Section 7: Before & After ROI Styles --- */
.roi-card-before {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-card-after {
    background: #ffffff;
    border: 2px solid #1D4BA7;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(29, 75, 167, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-card-after::before {
    content: "⚡ HIGH ROI";
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #1D4BA7 0%, #265BC0 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    box-shadow: 0 5px 15px rgba(29, 75, 167, 0.3);
    z-index: 10;
}

.roi-card-after:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(29, 75, 167, 0.14);
    border-color: #265BC0;
}

.roi-card-before:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.thought-bubble-before {
    background: #f8fafc;
    border-left: 4px solid #cbd5e1;
    border-radius: 1rem;
    position: relative;
}

.thought-bubble-before::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f8fafc;
}

.thought-bubble-after {
    background: rgba(29, 75, 167, 0.03);
    border-left: 4px solid #1D4BA7;
    border-radius: 1rem;
    position: relative;
}

.thought-bubble-after::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(29, 75, 167, 0.03);
}

.roi-metric-item {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.roi-metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.roi-metric-item i {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roi-card-before:hover .roi-metric-item i {
    color: #64748b;
    transform: scale(1.1);
}

.roi-card-after:hover .roi-metric-item i {
    color: #10B981;
    transform: scale(1.2) rotate(5deg);
}

.roi-card-after:hover .roi-metric-item span.text-emerald-600 {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.roi-quote-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-quote-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06);
    border-color: rgba(29, 75, 167, 0.2);
}

/* --- Section 8: Pricing Section Styles --- */
.wp-pricing-card-growth {
    background: #ffffff;
    border: 2px solid #1D4BA7;
    border-radius: 2.5rem;
    box-shadow: 0 15px 40px rgba(29, 75, 167, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-pricing-card-growth:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(29, 75, 167, 0.15), 0 0 40px rgba(29, 75, 167, 0.05);
    border-color: #265BC0;
}

.wp-pricing-card-compare {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-pricing-card-compare:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08), 0 0 30px rgba(29, 75, 167, 0.02);
    border-color: rgba(29, 75, 167, 0.25);
}

.wp-pricing-btn-primary {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-pricing-btn-primary:hover {
    transform: translateY(-2px);
}

.wp-pricing-btn-secondary {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wp-pricing-btn-secondary:hover {
    transform: translateY(-2px);
}

/* Pricing comparison chips transitions */
.wp-pricing-card-compare .flex-wrap span {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wp-pricing-card-compare .flex-wrap span:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.05);
}





